/* -------------------------------------------------------------------------- */
/*                                 Theme                                      */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/* -------------------------------------------------------------------------- */
/*                                  Utilities                                 */
/* -------------------------------------------------------------------------- */
/*-----------------------------------------------
|   Bootstrap Styles
-----------------------------------------------*/
/*!
 * Bootstrap v5.0.0-alpha1 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #3011BC;
  --bs-indigo: #0057F2;
  --bs-purple: #7E11BC;
  --bs-pink: #F8A2FF;
  --bs-red: #FF705C;
  --bs-orange: #B98F7D;
  --bs-yellow: #FFA15C;
  --bs-green: #19CC61;
  --bs-teal: #00D9B0;
  --bs-cyan: #00A1FC;
  --bs-white: #FFFEFE;
  --bs-gray: #9E9E9E;
  --bs-gray-dark: #616161;
  --bs-primary: #B98F7D;
  --bs-secondary: #9E9E9E;
  --bs-success: #19CC61;
  --bs-info: #00A1FC;
  --bs-warning: #FFA15C;
  --bs-danger: #FF705C;
  --bs-light: #F9FAFD;
  --bs-dark: #212121;
  --bs-font-sans-serif: "Roboto Condensed", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --bs-font-monospace: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 254, 254, 0.15), rgba(255, 254, 254, 0));
}

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

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

body {
  margin: 0;
  font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #BDBDBD;
  background-color: #000;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: #EEEEEE;
  background-color: currentColor;
  border: 0;
  opacity: 1;
}

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

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Roboto Condensed", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 700;
  line-height: 1.2;
  color: #F9FAFD;
}

h1, .h1 {
  font-size: calc(1.37383rem + 1.48598vw);
}

@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.48832rem;
  }
}

h2, .h2 {
  font-size: calc(1.33236rem + 0.98832vw);
}

@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2.0736rem;
  }
}

h3, .h3 {
  font-size: calc(1.2978rem + 0.5736vw);
}

@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.728rem;
  }
}

h4, .h4 {
  font-size: calc(1.269rem + 0.228vw);
}

@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.44rem;
  }
}

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

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

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

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

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

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: 800;
}

small, .small {
  font-size: 75%;
}

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

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #212121;
  text-decoration: none;
}

a:hover {
  color: #1a1a1a;
  text-decoration: none;
}

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: 75%;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 75%;
  color: #F8A2FF;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 75%;
  color: #FFFEFE;
  background-color: #424242;
  border-radius: 0.625rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

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

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

.XvIaFv9 {
  font-size: 1.2rem;
  font-weight: 400;
}

.NPinrE {
  font-size: calc(1.55498rem + 3.65978vw);
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 1200px) {
  .NPinrE {
    font-size: 4.29982rem;
  }
}

.UxysZdRiGzm {
  font-size: calc(1.48332rem + 2.79982vw);
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 1200px) {
  .UxysZdRiGzm {
    font-size: 3.58318rem;
  }
}

.TCxjndcqua {
  font-size: calc(1.4236rem + 2.08318vw);
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 1200px) {
  .TCxjndcqua {
    font-size: 2.98598rem;
  }
}

.cg2d1swN3K {
  font-size: calc(1.37383rem + 1.48598vw);
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 1200px) {
  .cg2d1swN3K {
    font-size: 2.48832rem;
  }
}

.TQpY5X {
  font-size: calc(1.33236rem + 0.98832vw);
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 1200px) {
  .TQpY5X {
    font-size: 2.0736rem;
  }
}

.JKVSB1MZOh {
  font-size: calc(1.2978rem + 0.5736vw);
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 1200px) {
  .JKVSB1MZOh {
    font-size: 1.728rem;
  }
}

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

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

.hx9k7M {
  display: inline-block;
}

.hx9k7M:not(:last-child) {
  margin-right: 0.5rem;
}

.v1oQjwV9Zow {
  font-size: 75%;
  text-transform: uppercase;
}

.Awjw2kkf8uQ {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.Awjw2kkf8uQ > :last-child {
  margin-bottom: 0;
}

.TkrUf4YAgc {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 75%;
  color: #9E9E9E;
}

.TkrUf4YAgc::before {
  content: "\2014\00A0";
}

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

.PQXPoLIra5A {
  padding: 0.25rem;
  background-color: #000;
  border: 1px solid #EEEEEE;
  border-radius: 0;
  max-width: 100%;
  height: auto;
}

.UcLt3On {
  display: inline-block;
}

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

.O28zcU {
  font-size: 75%;
  color: #9E9E9E;
}

.container,
.XXXfST4Zgs,
.OgEV5C,
.KMt7eJRVhO,
.MWnd8fpY6,
.Q9fkizG,
.J5dpWzb {
  width: 100%;
  padding-right: var(--bs-gutter-x, 1rem);
  padding-left: var(--bs-gutter-x, 1rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .OgEV5C {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container, .OgEV5C, .KMt7eJRVhO {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container, .OgEV5C, .KMt7eJRVhO, .MWnd8fpY6 {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container, .OgEV5C, .KMt7eJRVhO, .MWnd8fpY6, .Q9fkizG {
    max-width: 1140px;
  }
}

@media (min-width: 1540px) {
  .container, .OgEV5C, .KMt7eJRVhO, .MWnd8fpY6, .Q9fkizG, .J5dpWzb {
    max-width: 1480px;
  }
}

.row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

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

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

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

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

.pyZPyhA > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333%;
}

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

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

.ANfp7nDzEj > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66667%;
}

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

.SvG2PQ0ez {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333%;
}

.q073WrgjQ {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66667%;
}

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

.D6pVjYD {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333%;
}

.FKnjPBo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66667%;
}

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

.gohhxHsPxd {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333%;
}

.Pkk8Ou {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66667%;
}

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

.cmDadoUPp {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333%;
}

.CjwmHn {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66667%;
}

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

.wrjIhePQ {
  margin-left: 8.33333%;
}

.wj01dhva {
  margin-left: 16.66667%;
}

.LuLIFu {
  margin-left: 25%;
}

.dd7H8q8 {
  margin-left: 33.33333%;
}

.zAvTVFX {
  margin-left: 41.66667%;
}

.bKk2ISh {
  margin-left: 50%;
}

.NSWlZ8NVR0 {
  margin-left: 58.33333%;
}

.gknz6W6KtOe {
  margin-left: 66.66667%;
}

.rKrSGEzlmZT {
  margin-left: 75%;
}

.ExqdgCI {
  margin-left: 83.33333%;
}

.jH29Ko9GhJ0 {
  margin-left: 91.66667%;
}

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

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

.DUeePQQB0,
.FuPbO5E55Lh {
  --bs-gutter-x: 0.25rem;
}

.DUeePQQB0,
.qf97Lix {
  --bs-gutter-y: 0.25rem;
}

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

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

.g-3,
.ZicTDaDga {
  --bs-gutter-x: 1rem;
}

.g-3,
.BAQYccox3Fs {
  --bs-gutter-y: 1rem;
}

.g-4,
.p0acaGkFF {
  --bs-gutter-x: 1.8rem;
}

.g-4,
.SrQm0G9Po {
  --bs-gutter-y: 1.8rem;
}

.Z2HofdiPeP,
.crWqaXg3 {
  --bs-gutter-x: 3rem;
}

.Z2HofdiPeP,
.jni0A7 {
  --bs-gutter-y: 3rem;
}

.rs56TYjJGe,
.raxKLrbEaNN {
  --bs-gutter-x: 4rem;
}

.rs56TYjJGe,
.sGamMYI {
  --bs-gutter-y: 4rem;
}

.jujIVipoAC,
.dpFbig97Jx {
  --bs-gutter-x: 5rem;
}

.jujIVipoAC,
.HwI2Xrz {
  --bs-gutter-y: 5rem;
}

.lCXSS5Lg3tW,
.dK4HLxA {
  --bs-gutter-x: 7.5rem;
}

.lCXSS5Lg3tW,
.TBOrFOXjS {
  --bs-gutter-y: 7.5rem;
}

.q1l51STTh6b,
.C3PbCYLWlaO {
  --bs-gutter-x: 10rem;
}

.q1l51STTh6b,
.wneTf2U3 {
  --bs-gutter-y: 10rem;
}

.Obi6Eg,
.BJSpKIGWpqx {
  --bs-gutter-x: 12.5rem;
}

.Obi6Eg,
.sat1QVBI9x {
  --bs-gutter-y: 12.5rem;
}

.z3EyZRTVT,
.U4DIAAp {
  --bs-gutter-x: 15rem;
}

.z3EyZRTVT,
.loOqBb0Ss {
  --bs-gutter-y: 15rem;
}

@media (min-width: 576px) {
  .rrwa8oiEF {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .LFq5ZTIGvpM > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .PVd0yc98Yh > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .jU8wAZUEpE > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .TmLXS7j0Hi > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .XfgYnjgdHUw > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .xy8ANxpT6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .DgoLZrGK > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .I2AbT2zdo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .ReBhSsgqLrE {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .yOhPycHwxeq {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .yEBtNAoh {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .PdaHFc36Fj {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .edkUd3uW {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .Y1uLzckTh {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .wzKht6moPXD {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .cqRUl8LU {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .ObxOwd {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .pRF4ng {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .UpJ4vhyfl {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .aYplEw {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .aYYSEfef {
    margin-left: 0;
  }
  .TP2v81Wb {
    margin-left: 8.33333%;
  }
  .uhmnmYrOS3 {
    margin-left: 16.66667%;
  }
  .GdicMziA {
    margin-left: 25%;
  }
  .tgB4vT {
    margin-left: 33.33333%;
  }
  .J0gA0ad {
    margin-left: 41.66667%;
  }
  .QzCh9hqN {
    margin-left: 50%;
  }
  .V56L8ym {
    margin-left: 58.33333%;
  }
  .Z3ta4j7MDxl {
    margin-left: 66.66667%;
  }
  .i4Zmf4 {
    margin-left: 75%;
  }
  .qDE9QJAwS6 {
    margin-left: 83.33333%;
  }
  .veRgjy24mi {
    margin-left: 91.66667%;
  }
  .LEFn9t7BU,
  .UN5F7BzZ {
    --bs-gutter-x: 0;
  }
  .LEFn9t7BU,
  .NfyeVwBeNdG {
    --bs-gutter-y: 0;
  }
  .dhwzqE,
  .fc34qcgOr5d {
    --bs-gutter-x: 0.25rem;
  }
  .dhwzqE,
  .VGYYkDZR010 {
    --bs-gutter-y: 0.25rem;
  }
  .RU4LSGs5dpl,
  .hsHsRdfPFN {
    --bs-gutter-x: 0.5rem;
  }
  .RU4LSGs5dpl,
  .f73wgIaA {
    --bs-gutter-y: 0.5rem;
  }
  .khuBcSPb,
  .Du3tLO {
    --bs-gutter-x: 1rem;
  }
  .khuBcSPb,
  .kBcy2KywW {
    --bs-gutter-y: 1rem;
  }
  .kCk1DaE,
  .dnULhaNyc {
    --bs-gutter-x: 1.8rem;
  }
  .kCk1DaE,
  .sPY0cMT {
    --bs-gutter-y: 1.8rem;
  }
  .oIGaOry,
  .s3HXNaLz {
    --bs-gutter-x: 3rem;
  }
  .oIGaOry,
  .rnzxjSk {
    --bs-gutter-y: 3rem;
  }
  .xvuj5RBneuk,
  .pvoKT3OFMR {
    --bs-gutter-x: 4rem;
  }
  .xvuj5RBneuk,
  .HqIwIhe {
    --bs-gutter-y: 4rem;
  }
  .pHb1AYzir6,
  .PeWvx3jS {
    --bs-gutter-x: 5rem;
  }
  .pHb1AYzir6,
  .ac13s8Y9 {
    --bs-gutter-y: 5rem;
  }
  .I4MUDhEKt,
  .mSKkde8q {
    --bs-gutter-x: 7.5rem;
  }
  .I4MUDhEKt,
  .YSRNor5e {
    --bs-gutter-y: 7.5rem;
  }
  .RezLihHblb9,
  .BJNMtaM {
    --bs-gutter-x: 10rem;
  }
  .RezLihHblb9,
  .xxQ4FN {
    --bs-gutter-y: 10rem;
  }
  .Z2QFGKlv,
  .zyfdnlBKWz {
    --bs-gutter-x: 12.5rem;
  }
  .Z2QFGKlv,
  .uf8YxQWlv {
    --bs-gutter-y: 12.5rem;
  }
  .jQ3lwmgo8bg,
  .juKWaop {
    --bs-gutter-x: 15rem;
  }
  .jQ3lwmgo8bg,
  .FofAzy {
    --bs-gutter-y: 15rem;
  }
}

@media (min-width: 768px) {
  .pDVRHr {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .aLx60zrfB4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .AFtZ0lXCw6q > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .GjIbY06o > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .AVRmAbAfW > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .bpzDV3pi6s > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .veDisdh > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .VlvdMOvMf > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .ddvqn8Fb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .F8bijDZvHgk {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .AtBAaKeuaI {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .fd6Zkhi1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .aIee7JHEf {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .BytFJAJJWzw {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .RoyfUoh {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .iSBbHpJmvd {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .UwCW2defXV {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .mteeL8A {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .XZh7l8Hli {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .Ah2JAA6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .J00WKdgzo7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .XZ6XtIypbD {
    margin-left: 0;
  }
  .Wt4KFXBw0b9 {
    margin-left: 8.33333%;
  }
  .N34PeRXu2q {
    margin-left: 16.66667%;
  }
  .BWdnOf {
    margin-left: 25%;
  }
  .WdFVDwy6LHq {
    margin-left: 33.33333%;
  }
  .wBg3MULSI {
    margin-left: 41.66667%;
  }
  .lY4NZz8bB2 {
    margin-left: 50%;
  }
  .V2raiJKgkHK {
    margin-left: 58.33333%;
  }
  .KtQTxlTZ {
    margin-left: 66.66667%;
  }
  .EHvi6ww {
    margin-left: 75%;
  }
  .HEXIMffqXJm {
    margin-left: 83.33333%;
  }
  .BkjNYf {
    margin-left: 91.66667%;
  }
  .azU7EdgX,
  .FjxD2LXXf1 {
    --bs-gutter-x: 0;
  }
  .azU7EdgX,
  .Zu55igD4r {
    --bs-gutter-y: 0;
  }
  .tEpw5e8O,
  .zMgrer {
    --bs-gutter-x: 0.25rem;
  }
  .tEpw5e8O,
  .JA7e2P4P {
    --bs-gutter-y: 0.25rem;
  }
  .XOrG7oaz15,
  .YCxvsZ {
    --bs-gutter-x: 0.5rem;
  }
  .XOrG7oaz15,
  .dIPnFPbIeNw {
    --bs-gutter-y: 0.5rem;
  }
  .pJWwF6D,
  .tlzbLe {
    --bs-gutter-x: 1rem;
  }
  .pJWwF6D,
  .Giaa6yP7UpN {
    --bs-gutter-y: 1rem;
  }
  .Fx7QBbD,
  .PS0b29 {
    --bs-gutter-x: 1.8rem;
  }
  .Fx7QBbD,
  .a4Gy9rQlE {
    --bs-gutter-y: 1.8rem;
  }
  .HqSh9njI25,
  .oL6Jenu {
    --bs-gutter-x: 3rem;
  }
  .HqSh9njI25,
  .DmMFFY6 {
    --bs-gutter-y: 3rem;
  }
  .HPaaSwVgo,
  .t5PuQrn4 {
    --bs-gutter-x: 4rem;
  }
  .HPaaSwVgo,
  .C3ofPQQWMUO {
    --bs-gutter-y: 4rem;
  }
  .Xehk36,
  .YhzNyG0Vvf {
    --bs-gutter-x: 5rem;
  }
  .Xehk36,
  .Kc6CdyI {
    --bs-gutter-y: 5rem;
  }
  .h4hi0cZV,
  .qLXWl5J {
    --bs-gutter-x: 7.5rem;
  }
  .h4hi0cZV,
  .Co4CZ053j {
    --bs-gutter-y: 7.5rem;
  }
  .mlLopjh,
  .BoIide3ZGny {
    --bs-gutter-x: 10rem;
  }
  .mlLopjh,
  .MmlaYSj {
    --bs-gutter-y: 10rem;
  }
  .DzZNya,
  .pkfpRi6wA {
    --bs-gutter-x: 12.5rem;
  }
  .DzZNya,
  .N0773mUrp3 {
    --bs-gutter-y: 12.5rem;
  }
  .yrxMqb,
  .vYsTKdwcyFj {
    --bs-gutter-x: 15rem;
  }
  .yrxMqb,
  .k1bBxbdqc9f {
    --bs-gutter-y: 15rem;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .kCOXaZeYLj > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .NDBlMyvR > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .UTpwTO > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .YNlxvZ > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .mmIJxmedzfj > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .tEqxv7QPcXA > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .jVg8jbMHU > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .kRLsb5ebd {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .pfRMUjlsiwi {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .cmxaPt3E {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .UCfmBI {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .IBWGVb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .zwkDDGWGCE {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .Qu6WbtoPo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .tiPOQGqc {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .vHRj5szom0 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .yQRnsjt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .roDsOFFvI {
    margin-left: 0;
  }
  .JHd7UhOIWE {
    margin-left: 8.33333%;
  }
  .hva8uCx1H7I {
    margin-left: 16.66667%;
  }
  .odcCQP {
    margin-left: 25%;
  }
  .VwdAPOP {
    margin-left: 33.33333%;
  }
  .AOIWM2I5G {
    margin-left: 41.66667%;
  }
  .nG3YX6rq {
    margin-left: 50%;
  }
  .W5NBW9McZea {
    margin-left: 58.33333%;
  }
  .su8QO91MdH {
    margin-left: 66.66667%;
  }
  .bdKnzLoUvKH {
    margin-left: 75%;
  }
  .GpUg0xhblj {
    margin-left: 83.33333%;
  }
  .nVQWUfnTbl {
    margin-left: 91.66667%;
  }
  .FRRrKlCVYMf,
  .D1EuqN {
    --bs-gutter-x: 0;
  }
  .FRRrKlCVYMf,
  .tvubwd {
    --bs-gutter-y: 0;
  }
  .NKYPZyaZv,
  .Ojg65fOcs {
    --bs-gutter-x: 0.25rem;
  }
  .NKYPZyaZv,
  .KhkyQkm0UE {
    --bs-gutter-y: 0.25rem;
  }
  .lAjcaUUhYUl,
  .nSBAPjp {
    --bs-gutter-x: 0.5rem;
  }
  .lAjcaUUhYUl,
  .bkSPK5YDsa {
    --bs-gutter-y: 0.5rem;
  }
  .FwZJFt6fc,
  .MkY5Yf47S {
    --bs-gutter-x: 1rem;
  }
  .FwZJFt6fc,
  .bKMeKT {
    --bs-gutter-y: 1rem;
  }
  .GuZAfx,
  .BqOX9men {
    --bs-gutter-x: 1.8rem;
  }
  .GuZAfx,
  .BdKCcRB0Xq {
    --bs-gutter-y: 1.8rem;
  }
  .fNFYLOsyI,
  .CqfIi8vPEfa {
    --bs-gutter-x: 3rem;
  }
  .fNFYLOsyI,
  .N2cLfivv5 {
    --bs-gutter-y: 3rem;
  }
  .NstgXHOQ,
  .eahMOp {
    --bs-gutter-x: 4rem;
  }
  .NstgXHOQ,
  .TbXcYkq6mne {
    --bs-gutter-y: 4rem;
  }
  .l62zmc2L6f,
  .KJw6ongcxD {
    --bs-gutter-x: 5rem;
  }
  .l62zmc2L6f,
  .vciyDXPP {
    --bs-gutter-y: 5rem;
  }
  .yRawOO8Rll,
  .B3YKNPp34Q {
    --bs-gutter-x: 7.5rem;
  }
  .yRawOO8Rll,
  .Ocqt8vZtf5 {
    --bs-gutter-y: 7.5rem;
  }
  .VrbwiKMFMM,
  .ZEBcMb {
    --bs-gutter-x: 10rem;
  }
  .VrbwiKMFMM,
  .ur2201kv {
    --bs-gutter-y: 10rem;
  }
  .EICUSd,
  .l9oB9D {
    --bs-gutter-x: 12.5rem;
  }
  .EICUSd,
  .gTaXbl {
    --bs-gutter-y: 12.5rem;
  }
  .AG2Rb1,
  .uRljL6 {
    --bs-gutter-x: 15rem;
  }
  .AG2Rb1,
  .IEBrpnzh {
    --bs-gutter-y: 15rem;
  }
}

@media (min-width: 1200px) {
  .y098DjG1R8e {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .yJUNn3BxZQk > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .FgsgTxKx > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .Ebk2UaxzCr > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .nESvVc9XI > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .Sd9LkmGW > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .rEX1TC5CZ > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .IhlVsVJgW > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .phBY3gr3KE8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .Mhekdp {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .bmxAXTte9G {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .WgO6ROYNo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .Kbl5el {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .MfTZecv {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .X4ZneD7bL {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .HtPWT7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .EpzxfqK {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .HAmgN5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .I4psg4FwPA {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .jJb5U6AZpq6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .tj27b1EnxKo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .jy4PnUYu {
    margin-left: 0;
  }
  .jF8ggBXJ1eQ {
    margin-left: 8.33333%;
  }
  .syiRlK5LxM {
    margin-left: 16.66667%;
  }
  .FimnNZS {
    margin-left: 25%;
  }
  .lxuldj {
    margin-left: 33.33333%;
  }
  .BoJAjrLJnB {
    margin-left: 41.66667%;
  }
  .sEFpN7naYMT {
    margin-left: 50%;
  }
  .kTBK6NJKUhZ {
    margin-left: 58.33333%;
  }
  .Ui9fDV {
    margin-left: 66.66667%;
  }
  .hMQrdbfss {
    margin-left: 75%;
  }
  .RdrVyek {
    margin-left: 83.33333%;
  }
  .k1MSdn5 {
    margin-left: 91.66667%;
  }
  .ueX777,
  .ZQ9PjxIAbQv {
    --bs-gutter-x: 0;
  }
  .ueX777,
  .M4niLrJ8 {
    --bs-gutter-y: 0;
  }
  .Yrg7gNbk6GK,
  .CQEpNgjUl {
    --bs-gutter-x: 0.25rem;
  }
  .Yrg7gNbk6GK,
  .jtZlIvI {
    --bs-gutter-y: 0.25rem;
  }
  .kSSWQcGk79,
  .hnSeqy9DU {
    --bs-gutter-x: 0.5rem;
  }
  .kSSWQcGk79,
  .LhItWQt {
    --bs-gutter-y: 0.5rem;
  }
  .iG8Zcv,
  .BgE87RNlwr {
    --bs-gutter-x: 1rem;
  }
  .iG8Zcv,
  .jM8HEwhVo {
    --bs-gutter-y: 1rem;
  }
  .L77cH59Vq9Y,
  .PcbQ9wbof3R {
    --bs-gutter-x: 1.8rem;
  }
  .L77cH59Vq9Y,
  .UVjroPmcSv {
    --bs-gutter-y: 1.8rem;
  }
  .HCMNtW,
  .S3lIBGj16 {
    --bs-gutter-x: 3rem;
  }
  .HCMNtW,
  .xbx51WjVGe {
    --bs-gutter-y: 3rem;
  }
  .H0JZHtY,
  .nex4ARHfZc {
    --bs-gutter-x: 4rem;
  }
  .H0JZHtY,
  .as67QNad50 {
    --bs-gutter-y: 4rem;
  }
  .dZyWLhbx,
  .rmNWLMOIjt {
    --bs-gutter-x: 5rem;
  }
  .dZyWLhbx,
  .yOxFLQw {
    --bs-gutter-y: 5rem;
  }
  .P3OuvIyqaA,
  .wjdfII {
    --bs-gutter-x: 7.5rem;
  }
  .P3OuvIyqaA,
  .EL44dAu4N5 {
    --bs-gutter-y: 7.5rem;
  }
  .D8ddLitgl,
  .NlL3rkcg {
    --bs-gutter-x: 10rem;
  }
  .D8ddLitgl,
  .tYpKpHo0G {
    --bs-gutter-y: 10rem;
  }
  .Z3VuIIDi5v,
  .qPywiSj0VYf {
    --bs-gutter-x: 12.5rem;
  }
  .Z3VuIIDi5v,
  .Zc6QXn {
    --bs-gutter-y: 12.5rem;
  }
  .Prbuny,
  .E7ax5j8jS {
    --bs-gutter-x: 15rem;
  }
  .Prbuny,
  .rbqVYY6QOJ {
    --bs-gutter-y: 15rem;
  }
}

@media (min-width: 1540px) {
  .m8uQK4v {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .h2qhMjx9 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .Q5QheK > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .WmqMxRb > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .IpvfGD6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .LZiVelRILJS > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .RP03N75 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .hYwuULHidGR > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .MSqQm2r {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .Ee8YSjCJVj {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .Is0X4qdNHz {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .mJRJIah {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .drchTKIbuxv {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .f44ekk {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .aLXKfe7tfd9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .waR9mhJdA {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .eOze4HIZcCE {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .Lm8Q9oS {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .s1MXZ14ehHp {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .Biz5RimWdny {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .gxEPkwHQTU {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .lcvllhd {
    margin-left: 0;
  }
  .Ua317VZ3 {
    margin-left: 8.33333%;
  }
  .Cuh7Tau {
    margin-left: 16.66667%;
  }
  .T2aajf3kD0 {
    margin-left: 25%;
  }
  .zW3AJ4OAix1 {
    margin-left: 33.33333%;
  }
  .NDhFWA3dj {
    margin-left: 41.66667%;
  }
  .im5RwVv {
    margin-left: 50%;
  }
  .TXONAMLYJ {
    margin-left: 58.33333%;
  }
  .wq80AYd69O {
    margin-left: 66.66667%;
  }
  .Zve7NiB5w {
    margin-left: 75%;
  }
  .ORClXx {
    margin-left: 83.33333%;
  }
  .xFrMcDME {
    margin-left: 91.66667%;
  }
  .qZzy99p2K,
  .QeQKRkr {
    --bs-gutter-x: 0;
  }
  .qZzy99p2K,
  .WMxuF3U {
    --bs-gutter-y: 0;
  }
  .Qd2bCScIZK,
  .UmkiD3bd {
    --bs-gutter-x: 0.25rem;
  }
  .Qd2bCScIZK,
  .HkVy52keip {
    --bs-gutter-y: 0.25rem;
  }
  .ywKd0qtfeD,
  .ECrGtl {
    --bs-gutter-x: 0.5rem;
  }
  .ywKd0qtfeD,
  .xnnBV9GJA {
    --bs-gutter-y: 0.5rem;
  }
  .SOBNZay,
  .nR8yBdz {
    --bs-gutter-x: 1rem;
  }
  .SOBNZay,
  .wfkMYumt {
    --bs-gutter-y: 1rem;
  }
  .RdXRnA,
  .dEY5lBEt {
    --bs-gutter-x: 1.8rem;
  }
  .RdXRnA,
  .Stvd1Q3 {
    --bs-gutter-y: 1.8rem;
  }
  .ZXYFdn7usF6,
  .FGkNAkA0 {
    --bs-gutter-x: 3rem;
  }
  .ZXYFdn7usF6,
  .sNTDl3 {
    --bs-gutter-y: 3rem;
  }
  .TLNu7vF,
  .FEwLb35hC {
    --bs-gutter-x: 4rem;
  }
  .TLNu7vF,
  .XcmrhJT {
    --bs-gutter-y: 4rem;
  }
  .s1TRFU,
  .gmfPdD {
    --bs-gutter-x: 5rem;
  }
  .s1TRFU,
  .Oe796i {
    --bs-gutter-y: 5rem;
  }
  .GehAsdU,
  .LFuw73e79j {
    --bs-gutter-x: 7.5rem;
  }
  .GehAsdU,
  .HJpWNz59u {
    --bs-gutter-y: 7.5rem;
  }
  .KM2NpdHN,
  .yo1pzoUG1 {
    --bs-gutter-x: 10rem;
  }
  .KM2NpdHN,
  .ydVlE1WsZKg {
    --bs-gutter-y: 10rem;
  }
  .O6645qy,
  .ySsdpSz {
    --bs-gutter-x: 12.5rem;
  }
  .O6645qy,
  .dOvJSMebQx {
    --bs-gutter-y: 12.5rem;
  }
  .Te8IlUqDqUe,
  .rmQauTfsyB {
    --bs-gutter-x: 15rem;
  }
  .Te8IlUqDqUe,
  .uuyqkDlUP {
    --bs-gutter-y: 15rem;
  }
}

.table {
  --bs-table-bg: transparent;
  --bs-table-striped-color: #BDBDBD;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #BDBDBD;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #BDBDBD;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #BDBDBD;
  vertical-align: top;
  border-color: #EEEEEE;
}

.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table > tbody {
  vertical-align: inherit;
}

.table > thead {
  vertical-align: bottom;
}

.table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}

.lKTItFYa90y {
  caption-side: top;
}

.y4zKhEjilSP > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.JMW4em > :not(caption) > * {
  border-width: 1px 0;
}

.JMW4em > :not(caption) > * > * {
  border-width: 0 1px;
}

.l68yXq > :not(caption) > * > * {
  border-bottom-width: 0;
}

.lnDHNepbB > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.iHUt0nCIh7 {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.OwFoqQ > tbody > tr:hover {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.ovca83T {
  --bs-table-bg: #f1e9e5;
  --bs-table-striped-bg: #eae2de;
  --bs-table-striped-color: #616161;
  --bs-table-active-bg: #e3dbd8;
  --bs-table-active-color: #616161;
  --bs-table-hover-bg: #e6dfdb;
  --bs-table-hover-color: #616161;
  color: #616161;
  border-color: #e3dbd8;
}

.FHt4rYJA8tW {
  --bs-table-bg: #ececec;
  --bs-table-striped-bg: #e5e5e5;
  --bs-table-striped-color: #616161;
  --bs-table-active-bg: #dedede;
  --bs-table-active-color: #616161;
  --bs-table-hover-bg: #e2e2e2;
  --bs-table-hover-color: #616161;
  color: #616161;
  border-color: #dedede;
}

.bo41Pv {
  --bs-table-bg: #d1f5df;
  --bs-table-striped-bg: #cbeed9;
  --bs-table-striped-color: #616161;
  --bs-table-active-bg: #c6e6d2;
  --bs-table-active-color: #616161;
  --bs-table-hover-bg: #c9ead6;
  --bs-table-hover-color: #616161;
  color: #616161;
  border-color: #c6e6d2;
}

.fe4AMaUph {
  --bs-table-bg: #ccecfe;
  --bs-table-striped-bg: #c7e5f6;
  --bs-table-striped-color: #616161;
  --bs-table-active-bg: #c1deee;
  --bs-table-active-color: #616161;
  --bs-table-hover-bg: #c4e2f2;
  --bs-table-hover-color: #616161;
  color: #616161;
  border-color: #c1deee;
}

.yTt6OC7K {
  --bs-table-bg: #ffecde;
  --bs-table-striped-bg: #f7e5d8;
  --bs-table-striped-color: #616161;
  --bs-table-active-bg: #efded2;
  --bs-table-active-color: #616161;
  --bs-table-hover-bg: #f3e2d5;
  --bs-table-hover-color: #616161;
  color: #616161;
  border-color: #efded2;
}

.ozUgzuu {
  --bs-table-bg: #ffe2de;
  --bs-table-striped-bg: #f7dcd8;
  --bs-table-striped-color: #616161;
  --bs-table-active-bg: #efd5d2;
  --bs-table-active-color: #616161;
  --bs-table-hover-bg: #f3d8d5;
  --bs-table-hover-color: #616161;
  color: #616161;
  border-color: #efd5d2;
}

.dc7Dnza {
  --bs-table-bg: #F9FAFD;
  --bs-table-striped-bg: #f1f2f5;
  --bs-table-striped-color: #616161;
  --bs-table-active-bg: #eaebed;
  --bs-table-active-color: #616161;
  --bs-table-hover-bg: #eeeff1;
  --bs-table-hover-color: #616161;
  color: #616161;
  border-color: #eaebed;
}

.u15qv7Hg5S {
  --bs-table-bg: #212121;
  --bs-table-striped-bg: #2c2c2c;
  --bs-table-striped-color: #FFFEFE;
  --bs-table-active-bg: #373737;
  --bs-table-active-color: #FFFEFE;
  --bs-table-hover-bg: #323232;
  --bs-table-hover-color: #FFFEFE;
  color: #FFFEFE;
  border-color: #373737;
}

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

@media (max-width: 575.98px) {
  .mp7rLVndVOe {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  .DdFOzi {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 991.98px) {
  .NlV3xi5iad {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1199.98px) {
  .nh4EMRc {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1539.98px) {
  .lhpSAmx5Zo {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.SqxWzv0 {
  margin-bottom: 0.5rem;
}

.fa1TKqPN0 {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.vuFREX {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1rem;
}

.ZN1AFASvBGt {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 0.875rem;
}

.eosEr5rZZ {
  margin-top: 0.25rem;
  font-size: 75%;
  color: #BDBDBD;
}

.FCUGBztZN {
  display: block;
  width: 100%;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #BDBDBD;
  background-color: #fdfdfd;
  background-clip: padding-box;
  border: 1px solid #E0E0E0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .FCUGBztZN {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.FCUGBztZN[type="file"] {
  overflow: hidden;
}

.FCUGBztZN[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.FCUGBztZN:focus {
  color: #BDBDBD;
  background-color: #fdfdfd;
  border-color: #dcc7be;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
}

.FCUGBztZN::-webkit-date-and-time-value {
  height: 1.5em;
}

.FCUGBztZN::-webkit-input-placeholder {
  color: #212121 !important;
  opacity: 1;
}

.FCUGBztZN::-moz-placeholder {
  color: #212121 !important;
  opacity: 1;
}

.FCUGBztZN:-ms-input-placeholder {
  color: #212121 !important;
  opacity: 1;
}

.FCUGBztZN::-ms-input-placeholder {
  color: #212121 !important;
  opacity: 1;
}

.FCUGBztZN::placeholder {
  color: #212121 !important;
  opacity: 1;
}

.FCUGBztZN:disabled, .FCUGBztZN[readonly] {
  background-color: #F5F5F5;
  opacity: 1;
}

.FCUGBztZN::file-selector-button {
  padding: 0.5rem 2rem;
  margin: -0.5rem -2rem;
  -webkit-margin-end: 2rem;
  margin-inline-end: 2rem;
  color: #BDBDBD;
  background-color: #F5F5F5;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .FCUGBztZN::file-selector-button {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.FCUGBztZN:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #e9e9e9;
}

.FCUGBztZN::-webkit-file-upload-button {
  padding: 0.5rem 2rem;
  margin: -0.5rem -2rem;
  -webkit-margin-end: 2rem;
  margin-inline-end: 2rem;
  color: #BDBDBD;
  background-color: #F5F5F5;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .FCUGBztZN::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}

.FCUGBztZN:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #e9e9e9;
}

.ocv02bwFV {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #BDBDBD;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.ocv02bwFV.Sl2gODel5j, .ocv02bwFV.IxCzWshf {
  padding-right: 0;
  padding-left: 0;
}

.Sl2gODel5j {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  border-radius: 0.625rem;
}

.Sl2gODel5j::file-selector-button {
  padding: 0.5rem 1.5rem;
  margin: -0.5rem -1.5rem;
  -webkit-margin-end: 1.5rem;
  margin-inline-end: 1.5rem;
}

.Sl2gODel5j::-webkit-file-upload-button {
  padding: 0.5rem 1.5rem;
  margin: -0.5rem -1.5rem;
  -webkit-margin-end: 1.5rem;
  margin-inline-end: 1.5rem;
}

.IxCzWshf {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 3rem;
  font-size: 1rem;
  border-radius: 1.25rem;
}

.IxCzWshf::file-selector-button {
  padding: 0.5rem 3rem;
  margin: -0.5rem -3rem;
  -webkit-margin-end: 3rem;
  margin-inline-end: 3rem;
}

.IxCzWshf::-webkit-file-upload-button {
  padding: 0.5rem 3rem;
  margin: -0.5rem -3rem;
  -webkit-margin-end: 3rem;
  margin-inline-end: 3rem;
}

textarea.FCUGBztZN {
  min-height: calc(1.5em + 1rem + 2px);
}

textarea.Sl2gODel5j {
  min-height: calc(1.5em + 1rem + 2px);
}

textarea.IxCzWshf {
  min-height: calc(1.5em + 1rem + 2px);
}

.JM2Keuk {
  max-width: 3rem;
  height: auto;
  padding: 0.5rem;
}

.JM2Keuk:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.JM2Keuk::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0;
}

.JM2Keuk::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0;
}

.vMGruEr {
  display: block;
  width: 100%;
  padding: 0.5rem 6rem 0.5rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #BDBDBD;
  background-color: #fdfdfd;
  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='%23616161' 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 2rem center;
  background-size: 16px 12px;
  border: 1px solid #E0E0E0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.vMGruEr:focus {
  border-color: #dcc7be;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
}

.vMGruEr[multiple], .vMGruEr[size]:not([size="1"]) {
  padding-right: 2rem;
  background-image: none;
}

.vMGruEr:disabled {
  background-color: #F5F5F5;
}

.vMGruEr:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #BDBDBD;
}

.Ae2q0Zehe {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.5rem;
  font-size: 0.875rem;
}

.TNftcoLdSS {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 3rem;
  font-size: 1rem;
}

.I1eli6c {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.I1eli6c .Aux5rygKh {
  float: left;
  margin-left: -1.5em;
}

.Aux5rygKh {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fdfdfd;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

.Aux5rygKh[type="checkbox"] {
  border-radius: 0.25em;
}

.Aux5rygKh[type="radio"] {
  border-radius: 50%;
}

.Aux5rygKh:active {
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
}

.Aux5rygKh:focus {
  border-color: #dcc7be;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
}

.Aux5rygKh:checked {
  background-color: #B98F7D;
  border-color: #B98F7D;
}

.Aux5rygKh:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFFEFE' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.Aux5rygKh: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='%23FFFEFE'/%3e%3c/svg%3e");
}

.Aux5rygKh[type="checkbox"]:indeterminate {
  background-color: #B98F7D;
  border-color: #B98F7D;
  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='%23FFFEFE' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.Aux5rygKh:disabled {
  pointer-events: none;
  -webkit-filter: none;
  filter: none;
  opacity: 0.5;
}

.Aux5rygKh[disabled] ~ .E1ldWZa, .Aux5rygKh:disabled ~ .E1ldWZa {
  opacity: 0.5;
}

.MJr0ggUotGC {
  padding-left: 2.5em;
}

.MJr0ggUotGC .Aux5rygKh {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  -webkit-transition: background-position 0.15s ease-in-out;
  -o-transition: background-position 0.15s ease-in-out;
  transition: background-position 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .MJr0ggUotGC .Aux5rygKh {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.MJr0ggUotGC .Aux5rygKh: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='%23dcc7be'/%3e%3c/svg%3e");
}

.MJr0ggUotGC .Aux5rygKh: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='%23FFFEFE'/%3e%3c/svg%3e");
}

.nb1sAmnVY {
  display: inline-block;
  margin-right: 1rem;
}

.easbWj5Na {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.easbWj5Na[disabled] + .btn, .easbWj5Na:disabled + .btn {
  pointer-events: none;
  -webkit-filter: none;
  filter: none;
  opacity: 0.65;
}

.UG5NiHoePkh {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.UG5NiHoePkh:focus {
  outline: 0;
}

.UG5NiHoePkh:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #000, 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
  box-shadow: 0 0 0 1px #000, 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
}

.UG5NiHoePkh:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #000, 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
}

.UG5NiHoePkh::-moz-focus-outer {
  border: 0;
}

.UG5NiHoePkh::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #B98F7D;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .UG5NiHoePkh::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.UG5NiHoePkh::-webkit-slider-thumb:active {
  background-color: #eaddd8;
}

.UG5NiHoePkh::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #EEEEEE;
  border-color: transparent;
  border-radius: 1rem;
}

.UG5NiHoePkh::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #B98F7D;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .UG5NiHoePkh::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.UG5NiHoePkh::-moz-range-thumb:active {
  background-color: #eaddd8;
}

.UG5NiHoePkh::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #EEEEEE;
  border-color: transparent;
  border-radius: 1rem;
}

.UG5NiHoePkh:disabled {
  pointer-events: none;
}

.UG5NiHoePkh:disabled::-webkit-slider-thumb {
  background-color: #BDBDBD;
}

.UG5NiHoePkh:disabled::-moz-range-thumb {
  background-color: #BDBDBD;
}

.C9iQq6j7 {
  position: relative;
}

.C9iQq6j7 > .FCUGBztZN,
.C9iQq6j7 > .vMGruEr {
  height: calc(3.5rem + 2px);
  padding: 1rem 2rem;
}

.C9iQq6j7 > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 2rem;
  pointer-events: none;
  border: 1px solid transparent;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  -o-transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .C9iQq6j7 > label {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.C9iQq6j7 > .FCUGBztZN::-webkit-input-placeholder {
  color: transparent;
}

.C9iQq6j7 > .FCUGBztZN::-moz-placeholder {
  color: transparent;
}

.C9iQq6j7 > .FCUGBztZN:-ms-input-placeholder {
  color: transparent;
}

.C9iQq6j7 > .FCUGBztZN::-ms-input-placeholder {
  color: transparent;
}

.C9iQq6j7 > .FCUGBztZN::placeholder {
  color: transparent;
}

.C9iQq6j7 > .FCUGBztZN:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.C9iQq6j7 > .FCUGBztZN:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.C9iQq6j7 > .FCUGBztZN:focus, .C9iQq6j7 > .FCUGBztZN:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.C9iQq6j7 > .FCUGBztZN:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.C9iQq6j7 > .vMGruEr {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.C9iQq6j7 > .FCUGBztZN:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.C9iQq6j7 > .FCUGBztZN:not(:-ms-input-placeholder) ~ label {
  opacity: 0.65;
  -ms-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.C9iQq6j7 > .FCUGBztZN:focus ~ label,
.C9iQq6j7 > .FCUGBztZN:not(:placeholder-shown) ~ label,
.C9iQq6j7 > .vMGruEr ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  -ms-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.C9iQq6j7 > .FCUGBztZN:-webkit-autofill ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.gn5RV2ccn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.gn5RV2ccn > .FCUGBztZN,
.gn5RV2ccn > .vMGruEr {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.gn5RV2ccn > .FCUGBztZN:focus,
.gn5RV2ccn > .vMGruEr:focus {
  z-index: 3;
}

.gn5RV2ccn .btn {
  position: relative;
  z-index: 2;
}

.gn5RV2ccn .btn:focus {
  z-index: 3;
}

.Nf09UVbtQ {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #BDBDBD;
  text-align: center;
  white-space: nowrap;
  background-color: #F5F5F5;
  border: 1px solid #E0E0E0;
  border-radius: 0;
}

.YaZYgEe > .FCUGBztZN,
.YaZYgEe > .vMGruEr,
.YaZYgEe > .Nf09UVbtQ,
.YaZYgEe > .btn {
  padding: 0.5rem 3rem;
  font-size: 1rem;
  border-radius: 1.25rem;
}

.fFZabR6 > .FCUGBztZN,
.fFZabR6 > .vMGruEr,
.fFZabR6 > .Nf09UVbtQ,
.fFZabR6 > .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  border-radius: 0.625rem;
}

.YaZYgEe > .vMGruEr,
.fFZabR6 > .vMGruEr {
  padding-right: 8rem;
}

.gn5RV2ccn:not(.up2NgIm4S) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.gn5RV2ccn:not(.up2NgIm4S) > .dropdown-toggle:nth-last-child(n + 3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.gn5RV2ccn.up2NgIm4S > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.gn5RV2ccn.up2NgIm4S > .dropdown-toggle:nth-last-child(n + 4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.gn5RV2ccn > :not(:first-child):not(.dropdown-menu):not(.No4a4GU3BO):not(.hCkRgm8v1ei):not(.iTCc5gfx):not(.zVk0pfcQola) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.hCkRgm8v1ei {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 75%;
  color: #19CC61;
}

.No4a4GU3BO {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  color: #FFFEFE;
  background-color: rgba(25, 204, 97, 0.9);
  border-radius: 0;
}

.oKhu0nc0z :valid ~ .hCkRgm8v1ei,
.oKhu0nc0z :valid ~ .No4a4GU3BO,
.JniEkqvAfAg ~ .hCkRgm8v1ei,
.JniEkqvAfAg ~ .No4a4GU3BO {
  display: block;
}

.oKhu0nc0z .FCUGBztZN:valid, .FCUGBztZN.JniEkqvAfAg {
  border-color: #19CC61;
  padding-right: calc(1.5em + 1rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2319CC61' 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.25rem) center;
  background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}

.oKhu0nc0z .FCUGBztZN:valid:focus, .FCUGBztZN.JniEkqvAfAg:focus {
  border-color: #19CC61;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 204, 97, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(25, 204, 97, 0.25);
}

.oKhu0nc0z textarea.FCUGBztZN:valid, textarea.FCUGBztZN.JniEkqvAfAg {
  padding-right: calc(1.5em + 1rem);
  background-position: top calc(0.375em + 0.25rem) right calc(0.375em + 0.25rem);
}

.oKhu0nc0z .vMGruEr:valid, .vMGruEr.JniEkqvAfAg {
  border-color: #19CC61;
  padding-right: 11rem;
  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='%23616161' 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='%2319CC61' 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 2rem center, center right 6rem;
  background-size: 16px 12px, calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}

.oKhu0nc0z .vMGruEr:valid:focus, .vMGruEr.JniEkqvAfAg:focus {
  border-color: #19CC61;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 204, 97, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(25, 204, 97, 0.25);
}

.oKhu0nc0z .Aux5rygKh:valid, .Aux5rygKh.JniEkqvAfAg {
  border-color: #19CC61;
}

.oKhu0nc0z .Aux5rygKh:valid:checked, .Aux5rygKh.JniEkqvAfAg:checked {
  background-color: #19CC61;
}

.oKhu0nc0z .Aux5rygKh:valid:focus, .Aux5rygKh.JniEkqvAfAg:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 204, 97, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(25, 204, 97, 0.25);
}

.oKhu0nc0z .Aux5rygKh:valid ~ .E1ldWZa, .Aux5rygKh.JniEkqvAfAg ~ .E1ldWZa {
  color: #19CC61;
}

.nb1sAmnVY .Aux5rygKh ~ .hCkRgm8v1ei {
  margin-left: .5em;
}

.oKhu0nc0z .gn5RV2ccn .FCUGBztZN:valid, .gn5RV2ccn .FCUGBztZN.JniEkqvAfAg, .oKhu0nc0z
.gn5RV2ccn .vMGruEr:valid,
.gn5RV2ccn .vMGruEr.JniEkqvAfAg {
  z-index: 3;
}

.zVk0pfcQola {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 75%;
  color: #FF705C;
}

.iTCc5gfx {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  color: #FFFEFE;
  background-color: rgba(255, 112, 92, 0.9);
  border-radius: 0;
}

.oKhu0nc0z :invalid ~ .zVk0pfcQola,
.oKhu0nc0z :invalid ~ .iTCc5gfx,
.MK0AyH ~ .zVk0pfcQola,
.MK0AyH ~ .iTCc5gfx {
  display: block;
}

.oKhu0nc0z .FCUGBztZN:invalid, .FCUGBztZN.MK0AyH {
  border-color: #FF705C;
  padding-right: calc(1.5em + 1rem);
  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='%23FF705C'%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='%23FF705C' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.25rem) center;
  background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}

.oKhu0nc0z .FCUGBztZN:invalid:focus, .FCUGBztZN.MK0AyH:focus {
  border-color: #FF705C;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 112, 92, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(255, 112, 92, 0.25);
}

.oKhu0nc0z textarea.FCUGBztZN:invalid, textarea.FCUGBztZN.MK0AyH {
  padding-right: calc(1.5em + 1rem);
  background-position: top calc(0.375em + 0.25rem) right calc(0.375em + 0.25rem);
}

.oKhu0nc0z .vMGruEr:invalid, .vMGruEr.MK0AyH {
  border-color: #FF705C;
  padding-right: 11rem;
  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='%23616161' 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='%23FF705C'%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='%23FF705C' stroke='none'/%3e%3c/svg%3e");
  background-position: right 2rem center, center right 6rem;
  background-size: 16px 12px, calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}

.oKhu0nc0z .vMGruEr:invalid:focus, .vMGruEr.MK0AyH:focus {
  border-color: #FF705C;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 112, 92, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(255, 112, 92, 0.25);
}

.oKhu0nc0z .Aux5rygKh:invalid, .Aux5rygKh.MK0AyH {
  border-color: #FF705C;
}

.oKhu0nc0z .Aux5rygKh:invalid:checked, .Aux5rygKh.MK0AyH:checked {
  background-color: #FF705C;
}

.oKhu0nc0z .Aux5rygKh:invalid:focus, .Aux5rygKh.MK0AyH:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 112, 92, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(255, 112, 92, 0.25);
}

.oKhu0nc0z .Aux5rygKh:invalid ~ .E1ldWZa, .Aux5rygKh.MK0AyH ~ .E1ldWZa {
  color: #FF705C;
}

.nb1sAmnVY .Aux5rygKh ~ .zVk0pfcQola {
  margin-left: .5em;
}

.oKhu0nc0z .gn5RV2ccn .FCUGBztZN:invalid, .gn5RV2ccn .FCUGBztZN.MK0AyH, .oKhu0nc0z
.gn5RV2ccn .vMGruEr:invalid,
.gn5RV2ccn .vMGruEr.MK0AyH {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-weight: 700;
  line-height: 1.5;
  color: #BDBDBD;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.btn:hover {
  color: #BDBDBD;
}

.easbWj5Na:focus + .btn, .btn:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
}

.btn:disabled, .btn.disabled,
fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.kBxm1p0d {
  color: #FFFEFE;
  background-color: #B98F7D;
  border-color: #B98F7D;
}

.kBxm1p0d:hover {
  color: #FFFEFE;
  background-color: #9d7a6a;
  border-color: #947264;
}

.easbWj5Na:focus + .kBxm1p0d, .kBxm1p0d:focus {
  color: #FFFEFE;
  background-color: #9d7a6a;
  border-color: #947264;
  -webkit-box-shadow: 0 0 0 0 rgba(196, 160, 144, 0.5);
  box-shadow: 0 0 0 0 rgba(196, 160, 144, 0.5);
}

.easbWj5Na:checked + .kBxm1p0d,
.easbWj5Na:active + .kBxm1p0d, .kBxm1p0d:active, .kBxm1p0d.active,
.show > .kBxm1p0d.dropdown-toggle {
  color: #FFFEFE;
  background-color: #947264;
  border-color: #8b6b5e;
}

.easbWj5Na:checked + .kBxm1p0d:focus,
.easbWj5Na:active + .kBxm1p0d:focus, .kBxm1p0d:active:focus, .kBxm1p0d.active:focus,
.show > .kBxm1p0d.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(196, 160, 144, 0.5);
  box-shadow: 0 0 0 0 rgba(196, 160, 144, 0.5);
}

.kBxm1p0d:disabled, .kBxm1p0d.disabled {
  color: #FFFEFE;
  background-color: #B98F7D;
  border-color: #B98F7D;
}

.laoaIfw {
  color: #FFFEFE;
  background-color: #9E9E9E;
  border-color: #9E9E9E;
}

.laoaIfw:hover {
  color: #FFFEFE;
  background-color: #868686;
  border-color: #7e7e7e;
}

.easbWj5Na:focus + .laoaIfw, .laoaIfw:focus {
  color: #FFFEFE;
  background-color: #868686;
  border-color: #7e7e7e;
  -webkit-box-shadow: 0 0 0 0 rgba(173, 172, 172, 0.5);
  box-shadow: 0 0 0 0 rgba(173, 172, 172, 0.5);
}

.easbWj5Na:checked + .laoaIfw,
.easbWj5Na:active + .laoaIfw, .laoaIfw:active, .laoaIfw.active,
.show > .laoaIfw.dropdown-toggle {
  color: #FFFEFE;
  background-color: #7e7e7e;
  border-color: #777777;
}

.easbWj5Na:checked + .laoaIfw:focus,
.easbWj5Na:active + .laoaIfw:focus, .laoaIfw:active:focus, .laoaIfw.active:focus,
.show > .laoaIfw.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(173, 172, 172, 0.5);
  box-shadow: 0 0 0 0 rgba(173, 172, 172, 0.5);
}

.laoaIfw:disabled, .laoaIfw.disabled {
  color: #FFFEFE;
  background-color: #9E9E9E;
  border-color: #9E9E9E;
}

.qn839q5 {
  color: #FFFEFE;
  background-color: #19CC61;
  border-color: #19CC61;
}

.qn839q5:hover {
  color: #FFFEFE;
  background-color: #15ad52;
  border-color: #14a34e;
}

.easbWj5Na:focus + .qn839q5, .qn839q5:focus {
  color: #FFFEFE;
  background-color: #15ad52;
  border-color: #14a34e;
  -webkit-box-shadow: 0 0 0 0 rgba(60, 212, 121, 0.5);
  box-shadow: 0 0 0 0 rgba(60, 212, 121, 0.5);
}

.easbWj5Na:checked + .qn839q5,
.easbWj5Na:active + .qn839q5, .qn839q5:active, .qn839q5.active,
.show > .qn839q5.dropdown-toggle {
  color: #FFFEFE;
  background-color: #14a34e;
  border-color: #139949;
}

.easbWj5Na:checked + .qn839q5:focus,
.easbWj5Na:active + .qn839q5:focus, .qn839q5:active:focus, .qn839q5.active:focus,
.show > .qn839q5.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(60, 212, 121, 0.5);
  box-shadow: 0 0 0 0 rgba(60, 212, 121, 0.5);
}

.qn839q5:disabled, .qn839q5.disabled {
  color: #FFFEFE;
  background-color: #19CC61;
  border-color: #19CC61;
}

.mVgUJoZ1cp {
  color: #FFFEFE;
  background-color: #00A1FC;
  border-color: #00A1FC;
}

.mVgUJoZ1cp:hover {
  color: #FFFEFE;
  background-color: #0089d6;
  border-color: #0081ca;
}

.easbWj5Na:focus + .mVgUJoZ1cp, .mVgUJoZ1cp:focus {
  color: #FFFEFE;
  background-color: #0089d6;
  border-color: #0081ca;
  -webkit-box-shadow: 0 0 0 0 rgba(38, 175, 252, 0.5);
  box-shadow: 0 0 0 0 rgba(38, 175, 252, 0.5);
}

.easbWj5Na:checked + .mVgUJoZ1cp,
.easbWj5Na:active + .mVgUJoZ1cp, .mVgUJoZ1cp:active, .mVgUJoZ1cp.active,
.show > .mVgUJoZ1cp.dropdown-toggle {
  color: #FFFEFE;
  background-color: #0081ca;
  border-color: #0079bd;
}

.easbWj5Na:checked + .mVgUJoZ1cp:focus,
.easbWj5Na:active + .mVgUJoZ1cp:focus, .mVgUJoZ1cp:active:focus, .mVgUJoZ1cp.active:focus,
.show > .mVgUJoZ1cp.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(38, 175, 252, 0.5);
  box-shadow: 0 0 0 0 rgba(38, 175, 252, 0.5);
}

.mVgUJoZ1cp:disabled, .mVgUJoZ1cp.disabled {
  color: #FFFEFE;
  background-color: #00A1FC;
  border-color: #00A1FC;
}

.UaxlsMMDhd {
  color: #616161;
  background-color: #FFA15C;
  border-color: #FFA15C;
}

.UaxlsMMDhd:hover {
  color: #616161;
  background-color: #ffaf74;
  border-color: #ffaa6c;
}

.easbWj5Na:focus + .UaxlsMMDhd, .UaxlsMMDhd:focus {
  color: #616161;
  background-color: #ffaf74;
  border-color: #ffaa6c;
  -webkit-box-shadow: 0 0 0 0 rgba(231, 151, 93, 0.5);
  box-shadow: 0 0 0 0 rgba(231, 151, 93, 0.5);
}

.easbWj5Na:checked + .UaxlsMMDhd,
.easbWj5Na:active + .UaxlsMMDhd, .UaxlsMMDhd:active, .UaxlsMMDhd.active,
.show > .UaxlsMMDhd.dropdown-toggle {
  color: #616161;
  background-color: #ffb47d;
  border-color: #ffaa6c;
}

.easbWj5Na:checked + .UaxlsMMDhd:focus,
.easbWj5Na:active + .UaxlsMMDhd:focus, .UaxlsMMDhd:active:focus, .UaxlsMMDhd.active:focus,
.show > .UaxlsMMDhd.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(231, 151, 93, 0.5);
  box-shadow: 0 0 0 0 rgba(231, 151, 93, 0.5);
}

.UaxlsMMDhd:disabled, .UaxlsMMDhd.disabled {
  color: #616161;
  background-color: #FFA15C;
  border-color: #FFA15C;
}

.wLQ0FEh {
  color: #FFFEFE;
  background-color: #FF705C;
  border-color: #FF705C;
}

.wLQ0FEh:hover {
  color: #FFFEFE;
  background-color: #d95f4e;
  border-color: #cc5a4a;
}

.easbWj5Na:focus + .wLQ0FEh, .wLQ0FEh:focus {
  color: #FFFEFE;
  background-color: #d95f4e;
  border-color: #cc5a4a;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 133, 116, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 133, 116, 0.5);
}

.easbWj5Na:checked + .wLQ0FEh,
.easbWj5Na:active + .wLQ0FEh, .wLQ0FEh:active, .wLQ0FEh.active,
.show > .wLQ0FEh.dropdown-toggle {
  color: #FFFEFE;
  background-color: #cc5a4a;
  border-color: #bf5445;
}

.easbWj5Na:checked + .wLQ0FEh:focus,
.easbWj5Na:active + .wLQ0FEh:focus, .wLQ0FEh:active:focus, .wLQ0FEh.active:focus,
.show > .wLQ0FEh.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 133, 116, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 133, 116, 0.5);
}

.wLQ0FEh:disabled, .wLQ0FEh.disabled {
  color: #FFFEFE;
  background-color: #FF705C;
  border-color: #FF705C;
}

.n0L0FNif2 {
  color: #616161;
  background-color: #F9FAFD;
  border-color: #F9FAFD;
}

.n0L0FNif2:hover {
  color: #616161;
  background-color: #fafbfd;
  border-color: #fafbfd;
}

.easbWj5Na:focus + .n0L0FNif2, .n0L0FNif2:focus {
  color: #616161;
  background-color: #fafbfd;
  border-color: #fafbfd;
  -webkit-box-shadow: 0 0 0 0 rgba(226, 227, 230, 0.5);
  box-shadow: 0 0 0 0 rgba(226, 227, 230, 0.5);
}

.easbWj5Na:checked + .n0L0FNif2,
.easbWj5Na:active + .n0L0FNif2, .n0L0FNif2:active, .n0L0FNif2.active,
.show > .n0L0FNif2.dropdown-toggle {
  color: #616161;
  background-color: #fafbfd;
  border-color: #fafbfd;
}

.easbWj5Na:checked + .n0L0FNif2:focus,
.easbWj5Na:active + .n0L0FNif2:focus, .n0L0FNif2:active:focus, .n0L0FNif2.active:focus,
.show > .n0L0FNif2.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(226, 227, 230, 0.5);
  box-shadow: 0 0 0 0 rgba(226, 227, 230, 0.5);
}

.n0L0FNif2:disabled, .n0L0FNif2.disabled {
  color: #616161;
  background-color: #F9FAFD;
  border-color: #F9FAFD;
}

.DKIgLqLHdGt {
  color: #FFFEFE;
  background-color: #212121;
  border-color: #212121;
}

.DKIgLqLHdGt:hover {
  color: #FFFEFE;
  background-color: #1c1c1c;
  border-color: #1a1a1a;
}

.easbWj5Na:focus + .DKIgLqLHdGt, .DKIgLqLHdGt:focus {
  color: #FFFEFE;
  background-color: #1c1c1c;
  border-color: #1a1a1a;
  -webkit-box-shadow: 0 0 0 0 rgba(66, 66, 66, 0.5);
  box-shadow: 0 0 0 0 rgba(66, 66, 66, 0.5);
}

.easbWj5Na:checked + .DKIgLqLHdGt,
.easbWj5Na:active + .DKIgLqLHdGt, .DKIgLqLHdGt:active, .DKIgLqLHdGt.active,
.show > .DKIgLqLHdGt.dropdown-toggle {
  color: #FFFEFE;
  background-color: #1a1a1a;
  border-color: #191919;
}

.easbWj5Na:checked + .DKIgLqLHdGt:focus,
.easbWj5Na:active + .DKIgLqLHdGt:focus, .DKIgLqLHdGt:active:focus, .DKIgLqLHdGt.active:focus,
.show > .DKIgLqLHdGt.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(66, 66, 66, 0.5);
  box-shadow: 0 0 0 0 rgba(66, 66, 66, 0.5);
}

.DKIgLqLHdGt:disabled, .DKIgLqLHdGt.disabled {
  color: #FFFEFE;
  background-color: #212121;
  border-color: #212121;
}

.bmZPq07WL {
  color: #B98F7D;
  border-color: #B98F7D;
}

.bmZPq07WL:hover {
  color: #FFFEFE;
  background-color: #B98F7D;
  border-color: #B98F7D;
}

.easbWj5Na:focus + .bmZPq07WL, .bmZPq07WL:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(185, 143, 125, 0.5);
  box-shadow: 0 0 0 0 rgba(185, 143, 125, 0.5);
}

.easbWj5Na:checked + .bmZPq07WL,
.easbWj5Na:active + .bmZPq07WL, .bmZPq07WL:active, .bmZPq07WL.active, .bmZPq07WL.dropdown-toggle.show {
  color: #FFFEFE;
  background-color: #B98F7D;
  border-color: #B98F7D;
}

.easbWj5Na:checked + .bmZPq07WL:focus,
.easbWj5Na:active + .bmZPq07WL:focus, .bmZPq07WL:active:focus, .bmZPq07WL.active:focus, .bmZPq07WL.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(185, 143, 125, 0.5);
  box-shadow: 0 0 0 0 rgba(185, 143, 125, 0.5);
}

.bmZPq07WL:disabled, .bmZPq07WL.disabled {
  color: #B98F7D;
  background-color: transparent;
}

.Lxy9aO2BB {
  color: #9E9E9E;
  border-color: #9E9E9E;
}

.Lxy9aO2BB:hover {
  color: #FFFEFE;
  background-color: #9E9E9E;
  border-color: #9E9E9E;
}

.easbWj5Na:focus + .Lxy9aO2BB, .Lxy9aO2BB:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(158, 158, 158, 0.5);
  box-shadow: 0 0 0 0 rgba(158, 158, 158, 0.5);
}

.easbWj5Na:checked + .Lxy9aO2BB,
.easbWj5Na:active + .Lxy9aO2BB, .Lxy9aO2BB:active, .Lxy9aO2BB.active, .Lxy9aO2BB.dropdown-toggle.show {
  color: #FFFEFE;
  background-color: #9E9E9E;
  border-color: #9E9E9E;
}

.easbWj5Na:checked + .Lxy9aO2BB:focus,
.easbWj5Na:active + .Lxy9aO2BB:focus, .Lxy9aO2BB:active:focus, .Lxy9aO2BB.active:focus, .Lxy9aO2BB.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(158, 158, 158, 0.5);
  box-shadow: 0 0 0 0 rgba(158, 158, 158, 0.5);
}

.Lxy9aO2BB:disabled, .Lxy9aO2BB.disabled {
  color: #9E9E9E;
  background-color: transparent;
}

.i2XbJ04wF5 {
  color: #19CC61;
  border-color: #19CC61;
}

.i2XbJ04wF5:hover {
  color: #FFFEFE;
  background-color: #19CC61;
  border-color: #19CC61;
}

.easbWj5Na:focus + .i2XbJ04wF5, .i2XbJ04wF5:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(25, 204, 97, 0.5);
  box-shadow: 0 0 0 0 rgba(25, 204, 97, 0.5);
}

.easbWj5Na:checked + .i2XbJ04wF5,
.easbWj5Na:active + .i2XbJ04wF5, .i2XbJ04wF5:active, .i2XbJ04wF5.active, .i2XbJ04wF5.dropdown-toggle.show {
  color: #FFFEFE;
  background-color: #19CC61;
  border-color: #19CC61;
}

.easbWj5Na:checked + .i2XbJ04wF5:focus,
.easbWj5Na:active + .i2XbJ04wF5:focus, .i2XbJ04wF5:active:focus, .i2XbJ04wF5.active:focus, .i2XbJ04wF5.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(25, 204, 97, 0.5);
  box-shadow: 0 0 0 0 rgba(25, 204, 97, 0.5);
}

.i2XbJ04wF5:disabled, .i2XbJ04wF5.disabled {
  color: #19CC61;
  background-color: transparent;
}

.AmgLTdygjl {
  color: #00A1FC;
  border-color: #00A1FC;
}

.AmgLTdygjl:hover {
  color: #FFFEFE;
  background-color: #00A1FC;
  border-color: #00A1FC;
}

.easbWj5Na:focus + .AmgLTdygjl, .AmgLTdygjl:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 161, 252, 0.5);
  box-shadow: 0 0 0 0 rgba(0, 161, 252, 0.5);
}

.easbWj5Na:checked + .AmgLTdygjl,
.easbWj5Na:active + .AmgLTdygjl, .AmgLTdygjl:active, .AmgLTdygjl.active, .AmgLTdygjl.dropdown-toggle.show {
  color: #FFFEFE;
  background-color: #00A1FC;
  border-color: #00A1FC;
}

.easbWj5Na:checked + .AmgLTdygjl:focus,
.easbWj5Na:active + .AmgLTdygjl:focus, .AmgLTdygjl:active:focus, .AmgLTdygjl.active:focus, .AmgLTdygjl.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 161, 252, 0.5);
  box-shadow: 0 0 0 0 rgba(0, 161, 252, 0.5);
}

.AmgLTdygjl:disabled, .AmgLTdygjl.disabled {
  color: #00A1FC;
  background-color: transparent;
}

.eSFixPBw {
  color: #FFA15C;
  border-color: #FFA15C;
}

.eSFixPBw:hover {
  color: #616161;
  background-color: #FFA15C;
  border-color: #FFA15C;
}

.easbWj5Na:focus + .eSFixPBw, .eSFixPBw:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 161, 92, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 161, 92, 0.5);
}

.easbWj5Na:checked + .eSFixPBw,
.easbWj5Na:active + .eSFixPBw, .eSFixPBw:active, .eSFixPBw.active, .eSFixPBw.dropdown-toggle.show {
  color: #616161;
  background-color: #FFA15C;
  border-color: #FFA15C;
}

.easbWj5Na:checked + .eSFixPBw:focus,
.easbWj5Na:active + .eSFixPBw:focus, .eSFixPBw:active:focus, .eSFixPBw.active:focus, .eSFixPBw.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 161, 92, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 161, 92, 0.5);
}

.eSFixPBw:disabled, .eSFixPBw.disabled {
  color: #FFA15C;
  background-color: transparent;
}

.FIc9EpR1SXC {
  color: #FF705C;
  border-color: #FF705C;
}

.FIc9EpR1SXC:hover {
  color: #FFFEFE;
  background-color: #FF705C;
  border-color: #FF705C;
}

.easbWj5Na:focus + .FIc9EpR1SXC, .FIc9EpR1SXC:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 112, 92, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 112, 92, 0.5);
}

.easbWj5Na:checked + .FIc9EpR1SXC,
.easbWj5Na:active + .FIc9EpR1SXC, .FIc9EpR1SXC:active, .FIc9EpR1SXC.active, .FIc9EpR1SXC.dropdown-toggle.show {
  color: #FFFEFE;
  background-color: #FF705C;
  border-color: #FF705C;
}

.easbWj5Na:checked + .FIc9EpR1SXC:focus,
.easbWj5Na:active + .FIc9EpR1SXC:focus, .FIc9EpR1SXC:active:focus, .FIc9EpR1SXC.active:focus, .FIc9EpR1SXC.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 112, 92, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 112, 92, 0.5);
}

.FIc9EpR1SXC:disabled, .FIc9EpR1SXC.disabled {
  color: #FF705C;
  background-color: transparent;
}

.BWp4TbCM {
  color: #F9FAFD;
  border-color: #F9FAFD;
}

.BWp4TbCM:hover {
  color: #616161;
  background-color: #F9FAFD;
  border-color: #F9FAFD;
}

.easbWj5Na:focus + .BWp4TbCM, .BWp4TbCM:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(249, 250, 253, 0.5);
  box-shadow: 0 0 0 0 rgba(249, 250, 253, 0.5);
}

.easbWj5Na:checked + .BWp4TbCM,
.easbWj5Na:active + .BWp4TbCM, .BWp4TbCM:active, .BWp4TbCM.active, .BWp4TbCM.dropdown-toggle.show {
  color: #616161;
  background-color: #F9FAFD;
  border-color: #F9FAFD;
}

.easbWj5Na:checked + .BWp4TbCM:focus,
.easbWj5Na:active + .BWp4TbCM:focus, .BWp4TbCM:active:focus, .BWp4TbCM.active:focus, .BWp4TbCM.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(249, 250, 253, 0.5);
  box-shadow: 0 0 0 0 rgba(249, 250, 253, 0.5);
}

.BWp4TbCM:disabled, .BWp4TbCM.disabled {
  color: #F9FAFD;
  background-color: transparent;
}

.OZKRgMd5Wzf {
  color: #212121;
  border-color: #212121;
}

.OZKRgMd5Wzf:hover {
  color: #FFFEFE;
  background-color: #212121;
  border-color: #212121;
}

.easbWj5Na:focus + .OZKRgMd5Wzf, .OZKRgMd5Wzf:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(33, 33, 33, 0.5);
  box-shadow: 0 0 0 0 rgba(33, 33, 33, 0.5);
}

.easbWj5Na:checked + .OZKRgMd5Wzf,
.easbWj5Na:active + .OZKRgMd5Wzf, .OZKRgMd5Wzf:active, .OZKRgMd5Wzf.active, .OZKRgMd5Wzf.dropdown-toggle.show {
  color: #FFFEFE;
  background-color: #212121;
  border-color: #212121;
}

.easbWj5Na:checked + .OZKRgMd5Wzf:focus,
.easbWj5Na:active + .OZKRgMd5Wzf:focus, .OZKRgMd5Wzf:active:focus, .OZKRgMd5Wzf.active:focus, .OZKRgMd5Wzf.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(33, 33, 33, 0.5);
  box-shadow: 0 0 0 0 rgba(33, 33, 33, 0.5);
}

.OZKRgMd5Wzf:disabled, .OZKRgMd5Wzf.disabled {
  color: #212121;
  background-color: transparent;
}

.SgX4l0Hf {
  font-weight: 400;
  color: #212121;
  text-decoration: none;
}

.SgX4l0Hf:hover {
  color: #1a1a1a;
  text-decoration: none;
}

.SgX4l0Hf:focus {
  text-decoration: none;
}

.SgX4l0Hf:disabled, .SgX4l0Hf.disabled {
  color: #9E9E9E;
}

.Q7gi9DQpO, .uZJjhy > .btn {
  padding: 0.5rem 3rem;
  font-size: 1rem;
  border-radius: 0;
}

.btn-sm, .eKxC5kNiTz > .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  border-radius: 0;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

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

.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #BDBDBD;
  text-align: left;
  list-style: none;
  background-color: #FFFEFE;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
}

.dropdown-menu[data-bs-popper] {
  left: 0;
  margin-top: 0.125rem;
}

.BoJ172 {
  --bs-position: start;
}

.BoJ172[data-bs-popper] {
  right: auto /* rtl:ignore */;
  left: 0 /* rtl:ignore */;
}

.qhCTNxq91mY {
  --bs-position: end;
}

.qhCTNxq91mY[data-bs-popper] {
  right: 0 /* rtl:ignore */;
  left: auto /* rtl:ignore */;
}

@media (min-width: 576px) {
  .c8axOung {
    --bs-position: start;
  }
  .c8axOung[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .yaS4fgFR {
    --bs-position: end;
  }
  .yaS4fgFR[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}

@media (min-width: 768px) {
  .HAEIkXo4ceS {
    --bs-position: start;
  }
  .HAEIkXo4ceS[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .HGgPZtJlrm {
    --bs-position: end;
  }
  .HGgPZtJlrm[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}

@media (min-width: 992px) {
  .doXkhHjeidz {
    --bs-position: start;
  }
  .doXkhHjeidz[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .T4Op65cox {
    --bs-position: end;
  }
  .T4Op65cox[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}

@media (min-width: 1200px) {
  .ZjpRaB2 {
    --bs-position: start;
  }
  .ZjpRaB2[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .DRnYYO7EMb {
    --bs-position: end;
  }
  .DRnYYO7EMb[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}

@media (min-width: 1540px) {
  .or7VvFBKqS6 {
    --bs-position: start;
  }
  .or7VvFBKqS6[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .UUYJwDXi {
    --bs-position: end;
  }
  .UUYJwDXi[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}

.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 {
  top: 0;
  right: auto;
  left: 100%;
}

.dropend .dropdown-menu[data-bs-popper] {
  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 {
  top: 0;
  right: 100%;
  left: auto;
}

.dropstart .dropdown-menu[data-bs-popper] {
  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;
}

.LR4uelwnif {
  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: #424242;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #3b3b3b;
  background-color: #F5F5F5;
}

.dropdown-item.active, .dropdown-item:active {
  color: #FFFEFE;
  text-decoration: none;
  background-color: #B98F7D;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #BDBDBD;
  pointer-events: none;
  background-color: transparent;
}

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

.qycBoIh {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #9E9E9E;
  white-space: nowrap;
}

.gOyBK9K {
  display: block;
  padding: 0.25rem 1rem;
  color: #424242;
}

.tJAytm3UhfV {
  color: #EEEEEE;
  background-color: #616161;
  border-color: rgba(0, 0, 0, 0.15);
}

.tJAytm3UhfV .dropdown-item {
  color: #EEEEEE;
}

.tJAytm3UhfV .dropdown-item:hover, .tJAytm3UhfV .dropdown-item:focus {
  color: #FFFEFE;
  background-color: rgba(255, 254, 254, 0.15);
}

.tJAytm3UhfV .dropdown-item.active, .tJAytm3UhfV .dropdown-item:active {
  color: #FFFEFE;
  background-color: #B98F7D;
}

.tJAytm3UhfV .dropdown-item.disabled, .tJAytm3UhfV .dropdown-item:disabled {
  color: #BDBDBD;
}

.tJAytm3UhfV .LR4uelwnif {
  border-color: rgba(0, 0, 0, 0.15);
}

.tJAytm3UhfV .gOyBK9K {
  color: #EEEEEE;
}

.tJAytm3UhfV .qycBoIh {
  color: #BDBDBD;
}

.Q6alTQzjdA,
.AU5zApq {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.Q6alTQzjdA > .btn,
.AU5zApq > .btn {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.Q6alTQzjdA > .easbWj5Na:checked + .btn,
.Q6alTQzjdA > .easbWj5Na:focus + .btn,
.Q6alTQzjdA > .btn:hover,
.Q6alTQzjdA > .btn:focus,
.Q6alTQzjdA > .btn:active,
.Q6alTQzjdA > .btn.active,
.AU5zApq > .easbWj5Na:checked + .btn,
.AU5zApq > .easbWj5Na:focus + .btn,
.AU5zApq > .btn:hover,
.AU5zApq > .btn:focus,
.AU5zApq > .btn:active,
.AU5zApq > .btn.active {
  z-index: 1;
}

.cJFTIMH9ip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.cJFTIMH9ip .gn5RV2ccn {
  width: auto;
}

.Q6alTQzjdA > .btn:not(:first-child),
.Q6alTQzjdA > .Q6alTQzjdA:not(:first-child) {
  margin-left: -1px;
}

.Q6alTQzjdA > .btn:not(:last-child):not(.dropdown-toggle),
.Q6alTQzjdA > .Q6alTQzjdA:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.Q6alTQzjdA > .btn:nth-child(n + 3),
.Q6alTQzjdA > :not(.easbWj5Na) + .btn,
.Q6alTQzjdA > .Q6alTQzjdA:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.lqDgBfZyyYq {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.lqDgBfZyyYq::after,
.dropup .lqDgBfZyyYq::after,
.dropend .lqDgBfZyyYq::after {
  margin-left: 0;
}

.dropstart .lqDgBfZyyYq::before {
  margin-right: 0;
}

.btn-sm + .lqDgBfZyyYq, .eKxC5kNiTz > .btn + .lqDgBfZyyYq {
  padding-right: 1.125rem;
  padding-left: 1.125rem;
}

.Q7gi9DQpO + .lqDgBfZyyYq, .uZJjhy > .btn + .lqDgBfZyyYq {
  padding-right: 2.25rem;
  padding-left: 2.25rem;
}

.AU5zApq {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.AU5zApq > .btn,
.AU5zApq > .Q6alTQzjdA {
  width: 100%;
}

.AU5zApq > .btn:not(:first-child),
.AU5zApq > .Q6alTQzjdA:not(:first-child) {
  margin-top: -1px;
}

.AU5zApq > .btn:not(:last-child):not(.dropdown-toggle),
.AU5zApq > .Q6alTQzjdA:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.AU5zApq > .btn ~ .btn,
.AU5zApq > .Q6alTQzjdA:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.nav-link.disabled {
  color: #9E9E9E;
  pointer-events: none;
  cursor: default;
}

.I9dH4Q {
  border-bottom: 1px solid #EEEEEE;
}

.I9dH4Q .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.I9dH4Q .nav-link:hover, .I9dH4Q .nav-link:focus {
  border-color: #F5F5F5 #F5F5F5 #EEEEEE;
  isolation: isolate;
}

.I9dH4Q .nav-link.disabled {
  color: #9E9E9E;
  background-color: transparent;
  border-color: transparent;
}

.I9dH4Q .nav-link.active,
.I9dH4Q .nav-item.show .nav-link {
  color: #757575;
  background-color: #000;
  border-color: transparent;
}

.I9dH4Q .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.kLjbU5 .nav-link {
  background: none;
  border: 0;
  border-radius: 0;
}

.kLjbU5 .nav-link.active,
.kLjbU5 .show > .nav-link {
  color: #212121;
  background-color: #E0E0E0;
}

.kFtyn3xV > .nav-link,
.kFtyn3xV .nav-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.wpgqdnch1cw > .nav-link,
.wpgqdnch1cw .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.kFtyn3xV .nav-item .nav-link,
.wpgqdnch1cw .nav-item .nav-link {
  width: 100%;
}

.c0s1t7g > .cBgbAHiSZRk {
  display: none;
}

.c0s1t7g > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
}

.navbar > .container,
.navbar > .XXXfST4Zgs, .navbar > .OgEV5C, .navbar > .KMt7eJRVhO, .navbar > .MWnd8fpY6, .navbar > .Q9fkizG, .navbar > .J5dpWzb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: inherit;
  flex-wrap: inherit;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: -0.046rem;
  padding-bottom: -0.046rem;
  margin-right: 1rem;
  font-size: calc(1.2978rem + 0.5736vw);
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .navbar-brand {
    font-size: 1.728rem;
  }
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
}

.jcfDpeeub {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.2rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-transition: -webkit-box-shadow 0.15s ease-in-out;
  transition: -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: box-shadow 0.15s ease-in-out;
  transition: box-shadow 0.15s ease-in-out;
  transition: box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.VuU4ayG8g {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .fw0gdE {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .fw0gdE .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .fw0gdE .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .fw0gdE .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .fw0gdE .VuU4ayG8g {
    overflow: visible;
  }
  .fw0gdE .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .fw0gdE .navbar-toggler {
    display: none;
  }
}

@media (min-width: 768px) {
  .Br6VeDSgmov {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .Br6VeDSgmov .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .Br6VeDSgmov .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .Br6VeDSgmov .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .Br6VeDSgmov .VuU4ayG8g {
    overflow: visible;
  }
  .Br6VeDSgmov .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .Br6VeDSgmov .navbar-toggler {
    display: none;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .VuU4ayG8g {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (min-width: 1200px) {
  .s5O3Fe9 {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .s5O3Fe9 .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .s5O3Fe9 .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .s5O3Fe9 .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .s5O3Fe9 .VuU4ayG8g {
    overflow: visible;
  }
  .s5O3Fe9 .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .s5O3Fe9 .navbar-toggler {
    display: none;
  }
}

@media (min-width: 1540px) {
  .ljILlpsAXB {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .ljILlpsAXB .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .ljILlpsAXB .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .ljILlpsAXB .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .ljILlpsAXB .VuU4ayG8g {
    overflow: visible;
  }
  .ljILlpsAXB .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .ljILlpsAXB .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand .VuU4ayG8g {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: #B98F7D;
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: #B98F7D;
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(249, 250, 253, 0.95);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(249, 250, 253, 0.75);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.25);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: #B98F7D;
}

.navbar-light .navbar-toggler {
  color: rgba(249, 250, 253, 0.95);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28249, 250, 253, 0.95%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M0 6h30M0 14h30M0 22h30'/%3E%3C/svg%3E");
}

.navbar-light .jcfDpeeub {
  color: rgba(249, 250, 253, 0.95);
}

.navbar-light .jcfDpeeub a,
.navbar-light .jcfDpeeub a:hover,
.navbar-light .jcfDpeeub a:focus {
  color: #B98F7D;
}

.navbar-dark .navbar-brand {
  color: #FFFEFE;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #FFFEFE;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 254, 254, 0.7);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 254, 254, 0.9);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 254, 254, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #FFFEFE;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 254, 254, 0.7);
  border-color: rgba(255, 254, 254, 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, 254, 254, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .jcfDpeeub {
  color: rgba(255, 254, 254, 0.7);
}

.navbar-dark .jcfDpeeub a,
.navbar-dark .jcfDpeeub a:hover,
.navbar-dark .jcfDpeeub a:focus {
  color: #FFFEFE;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #FFFEFE;
  background-clip: border-box;
  border: 1px solid rgba(249, 250, 253, 0.125);
  border-radius: 0;
}

.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: 0;
  border-top-right-radius: 0;
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.card > .C2e6N7 + .list-group,
.card > .list-group + .oUuhPeuYxCU {
  border-top: 0;
}

.wNzADex {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.oJfC9lMh8i {
  margin-bottom: 0.5rem;
}

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

.HfCsQjt:last-child {
  margin-bottom: 0;
}

.MRpMNApTFT:hover {
  text-decoration: none;
}

.MRpMNApTFT + .MRpMNApTFT {
  margin-left: 1rem;
}

.C2e6N7 {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: #f8f8f8;
  border-bottom: 1px solid rgba(249, 250, 253, 0.125);
}

.C2e6N7:first-child {
  border-radius: 0 0 0 0;
}

.oUuhPeuYxCU {
  padding: 0.5rem 1rem;
  background-color: #f8f8f8;
  border-top: 1px solid rgba(249, 250, 253, 0.125);
}

.oUuhPeuYxCU:last-child {
  border-radius: 0 0 0 0;
}

.jeBTlL {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.jeBTlL .nav-link.active {
  background-color: #FFFEFE;
  border-bottom-color: #FFFEFE;
}

.TafyeVuMQ {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.KYLf6jv {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: 0;
}

.dUHmtj,
.kx7kzR,
.Ej6iydga {
  width: 100%;
}

.dUHmtj,
.kx7kzR {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.dUHmtj,
.Ej6iydga {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.gkpN4tEG43 > .card {
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .gkpN4tEG43 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .gkpN4tEG43 > .card {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .gkpN4tEG43 > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .gkpN4tEG43 > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .gkpN4tEG43 > .card:not(:last-child) .kx7kzR,
  .gkpN4tEG43 > .card:not(:last-child) .C2e6N7 {
    border-top-right-radius: 0;
  }
  .gkpN4tEG43 > .card:not(:last-child) .Ej6iydga,
  .gkpN4tEG43 > .card:not(:last-child) .oUuhPeuYxCU {
    border-bottom-right-radius: 0;
  }
  .gkpN4tEG43 > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .gkpN4tEG43 > .card:not(:first-child) .kx7kzR,
  .gkpN4tEG43 > .card:not(:first-child) .C2e6N7 {
    border-top-left-radius: 0;
  }
  .gkpN4tEG43 > .card:not(:first-child) .Ej6iydga,
  .gkpN4tEG43 > .card:not(:first-child) .oUuhPeuYxCU {
    border-bottom-left-radius: 0;
  }
}

.lY0U7bMCeS {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}

.jE1h7o + .jE1h7o {
  padding-left: 0.5rem;
}

.jE1h7o + .jE1h7o::before {
  float: left;
  padding-right: 0.5rem;
  color: #9E9E9E;
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}

.jE1h7o.active {
  color: #9E9E9E;
}

.EcOpEAd7g {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.oRFlqnqF {
  position: relative;
  display: block;
  color: #212121;
  background-color: #FFFEFE;
  border: 1px solid #EEEEEE;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .oRFlqnqF {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.oRFlqnqF:hover {
  z-index: 2;
  color: #1a1a1a;
  background-color: #F5F5F5;
  border-color: #EEEEEE;
}

.oRFlqnqF:focus {
  z-index: 3;
  color: #1a1a1a;
  background-color: #F5F5F5;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
}

.GCHwj9:not(:first-child) .oRFlqnqF {
  margin-left: -1px;
}

.GCHwj9.active .oRFlqnqF {
  z-index: 3;
  color: #FFFEFE;
  background-color: #B98F7D;
  border-color: #B98F7D;
}

.GCHwj9.disabled .oRFlqnqF {
  color: #9E9E9E;
  pointer-events: none;
  background-color: #FFFEFE;
  border-color: #EEEEEE;
}

.oRFlqnqF {
  padding: 0.375rem 0.75rem;
}

.GCHwj9:first-child .oRFlqnqF {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.GCHwj9:last-child .oRFlqnqF {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.EFcbNpaW .oRFlqnqF {
  padding: 0.75rem 1.5rem;
  font-size: 1.2rem;
}

.EFcbNpaW .GCHwj9:first-child .oRFlqnqF {
  border-top-left-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
}

.EFcbNpaW .GCHwj9:last-child .oRFlqnqF {
  border-top-right-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
}

.ZgfugiHfaX .oRFlqnqF {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.ZgfugiHfaX .GCHwj9:first-child .oRFlqnqF {
  border-top-left-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
}

.ZgfugiHfaX .GCHwj9:last-child .oRFlqnqF {
  border-top-right-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #FFFEFE;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0;
}

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

.gqfRcRcYIkl {
  color: inherit;
}

.LhgWVOA {
  font-weight: 700;
}

.et5Tge7t63G {
  padding-right: 3rem;
}

.et5Tge7t63G .bwmjyijiPvt {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.QN9Gh2jLf {
  color: #6f564b;
  background-color: #f1e9e5;
  border-color: #eaddd8;
}

.QN9Gh2jLf .LhgWVOA {
  color: #59453c;
}

.hSTTzKsTl {
  color: #5f5f5f;
  background-color: #ececec;
  border-color: #e2e2e2;
}

.hSTTzKsTl .LhgWVOA {
  color: #4c4c4c;
}

.l98mbMdG9m2 {
  color: #0f7a3a;
  background-color: #d1f5df;
  border-color: #baf0d0;
}

.l98mbMdG9m2 .LhgWVOA {
  color: #0c622e;
}

.VopSXNzXL {
  color: #006197;
  background-color: #ccecfe;
  border-color: #b3e3fe;
}

.VopSXNzXL .LhgWVOA {
  color: #004e79;
}

.jRZp3FBfdJa {
  color: #996137;
  background-color: #ffecde;
  border-color: #ffe3ce;
}

.jRZp3FBfdJa .LhgWVOA {
  color: #7a4e2c;
}

.dw9PNX {
  color: #994337;
  background-color: #ffe2de;
  border-color: #ffd4ce;
}

.dw9PNX .LhgWVOA {
  color: #7a362c;
}

.KCGevjn33mc {
  color: #959698;
  background-color: #fefeff;
  border-color: #fdfefe;
}

.KCGevjn33mc .LhgWVOA {
  color: #77787a;
}

.Y7vTy9zi {
  color: #141414;
  background-color: lightgray;
  border-color: #bcbcbc;
}

.Y7vTy9zi .LhgWVOA {
  color: #101010;
}

@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

.bhcc6V6tdS4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #F5F5F5;
  border-radius: 0;
}

.UflepcodfEe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  color: #FFFEFE;
  text-align: center;
  white-space: nowrap;
  background-color: #B98F7D;
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .UflepcodfEe {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.l3Ge15UB31 {
  background-image: -o-linear-gradient(45deg, rgba(255, 254, 254, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 254, 254, 0.15) 50%, rgba(255, 254, 254, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 254, 254, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 254, 254, 0.15) 50%, rgba(255, 254, 254, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.Idmsa9Aq {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .Idmsa9Aq {
    -webkit-animation: none;
    animation: none;
  }
}

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0;
}

.jh9M7B8xSma {
  list-style-type: none;
  counter-reset: section;
}

.jh9M7B8xSma > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.VGKMlJoD {
  width: 100%;
  color: #757575;
  text-align: inherit;
}

.VGKMlJoD:hover, .VGKMlJoD:focus {
  z-index: 1;
  color: #757575;
  text-decoration: none;
  background-color: #FCFCFC;
}

.VGKMlJoD:active {
  color: #BDBDBD;
  background-color: #F5F5F5;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #424242;
  background-color: #FFFEFE;
  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: #9E9E9E;
  pointer-events: none;
  background-color: #FFFEFE;
}

.list-group-item.active {
  z-index: 2;
  color: #FFFEFE;
  background-color: #B98F7D;
  border-color: #B98F7D;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

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

.i2czxwFU > .list-group-item:first-child {
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
}

.i2czxwFU > .list-group-item:last-child {
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}

.i2czxwFU > .list-group-item.active {
  margin-top: 0;
}

.i2czxwFU > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.i2czxwFU > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .ifcW4Hf {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .ifcW4Hf > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .ifcW4Hf > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .ifcW4Hf > .list-group-item.active {
    margin-top: 0;
  }
  .ifcW4Hf > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .ifcW4Hf > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 768px) {
  .UWB348AAb9 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .UWB348AAb9 > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .UWB348AAb9 > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .UWB348AAb9 > .list-group-item.active {
    margin-top: 0;
  }
  .UWB348AAb9 > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .UWB348AAb9 > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 992px) {
  .jM8HoW {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .jM8HoW > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .jM8HoW > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .jM8HoW > .list-group-item.active {
    margin-top: 0;
  }
  .jM8HoW > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .jM8HoW > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1200px) {
  .tWp5DEsd9 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .tWp5DEsd9 > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .tWp5DEsd9 > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .tWp5DEsd9 > .list-group-item.active {
    margin-top: 0;
  }
  .tWp5DEsd9 > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .tWp5DEsd9 > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1540px) {
  .fCz73xR32 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .fCz73xR32 > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .fCz73xR32 > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .fCz73xR32 > .list-group-item.active {
    margin-top: 0;
  }
  .fCz73xR32 > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .fCz73xR32 > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

.fsi4Xuwuo {
  border-radius: 0;
}

.fsi4Xuwuo > .list-group-item {
  border-width: 0 0 1px;
}

.fsi4Xuwuo > .list-group-item:last-child {
  border-bottom-width: 0;
}

.U7gxPLdhJqW {
  color: #6f564b;
  background-color: #f1e9e5;
}

.U7gxPLdhJqW.VGKMlJoD:hover, .U7gxPLdhJqW.VGKMlJoD:focus {
  color: #6f564b;
  background-color: #d9d2ce;
}

.U7gxPLdhJqW.VGKMlJoD.active {
  color: #FFFEFE;
  background-color: #6f564b;
  border-color: #6f564b;
}

.E1EMYX5 {
  color: #5f5f5f;
  background-color: #ececec;
}

.E1EMYX5.VGKMlJoD:hover, .E1EMYX5.VGKMlJoD:focus {
  color: #5f5f5f;
  background-color: #d4d4d4;
}

.E1EMYX5.VGKMlJoD.active {
  color: #FFFEFE;
  background-color: #5f5f5f;
  border-color: #5f5f5f;
}

.ZtOqcI {
  color: #0f7a3a;
  background-color: #d1f5df;
}

.ZtOqcI.VGKMlJoD:hover, .ZtOqcI.VGKMlJoD:focus {
  color: #0f7a3a;
  background-color: #bcddc9;
}

.ZtOqcI.VGKMlJoD.active {
  color: #FFFEFE;
  background-color: #0f7a3a;
  border-color: #0f7a3a;
}

.rteQYoSBsrz {
  color: #006197;
  background-color: #ccecfe;
}

.rteQYoSBsrz.VGKMlJoD:hover, .rteQYoSBsrz.VGKMlJoD:focus {
  color: #006197;
  background-color: #b8d4e5;
}

.rteQYoSBsrz.VGKMlJoD.active {
  color: #FFFEFE;
  background-color: #006197;
  border-color: #006197;
}

.qJItcd {
  color: #996137;
  background-color: #ffecde;
}

.qJItcd.VGKMlJoD:hover, .qJItcd.VGKMlJoD:focus {
  color: #996137;
  background-color: #e6d4c8;
}

.qJItcd.VGKMlJoD.active {
  color: #FFFEFE;
  background-color: #996137;
  border-color: #996137;
}

.A4MVXWFo0Od {
  color: #994337;
  background-color: #ffe2de;
}

.A4MVXWFo0Od.VGKMlJoD:hover, .A4MVXWFo0Od.VGKMlJoD:focus {
  color: #994337;
  background-color: #e6cbc8;
}

.A4MVXWFo0Od.VGKMlJoD.active {
  color: #FFFEFE;
  background-color: #994337;
  border-color: #994337;
}

.c4QCO5 {
  color: #959698;
  background-color: #fefeff;
}

.c4QCO5.VGKMlJoD:hover, .c4QCO5.VGKMlJoD:focus {
  color: #959698;
  background-color: #e5e5e6;
}

.c4QCO5.VGKMlJoD.active {
  color: #FFFEFE;
  background-color: #959698;
  border-color: #959698;
}

.XfHq3sNH {
  color: #141414;
  background-color: lightgray;
}

.XfHq3sNH.VGKMlJoD:hover, .XfHq3sNH.VGKMlJoD:focus {
  color: #141414;
  background-color: #bebebe;
}

.XfHq3sNH.VGKMlJoD.active {
  color: #FFFEFE;
  background-color: #141414;
  border-color: #141414;
}

.bwmjyijiPvt {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%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;
  opacity: 0.5;
}

.bwmjyijiPvt:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.bwmjyijiPvt:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
  opacity: 1;
}

.bwmjyijiPvt:disabled, .bwmjyijiPvt.disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0.25;
}

.HsWMJiudQAu {
  -webkit-filter: invert(1) grayscale(100%) brightness(200%);
  filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 254, 254, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0;
}

.toast:not(.showing):not(.show) {
  opacity: 0;
}

.toast.hide {
  display: none;
}

.azAEwL {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}

.azAEwL > :not(:last-child) {
  margin-bottom: 1rem;
}

.uxAZs0a8fPv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #9E9E9E;
  background-color: rgba(255, 254, 254, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.uxAZs0a8fPv .bwmjyijiPvt {
  margin-right: -0.375rem;
  margin-left: 0.75rem;
}

.rYudxEIb {
  padding: 0.75rem;
  word-wrap: break-word;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  -ms-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.wgXRoC {
  height: calc(100% - 1rem);
}

.wgXRoC .f6NEK8 {
  max-height: 100%;
  overflow: hidden;
}

.wgXRoC .modal-body {
  overflow-y: auto;
}

.SOOqGDb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.f6NEK8 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #FFFEFE;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 1.25rem;
  outline: 0;
}

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

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.gIFcCdEiF6j {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #EEEEEE;
  border-top-left-radius: calc(1.25rem - 1px);
  border-top-right-radius: calc(1.25rem - 1px);
}

.gIFcCdEiF6j .bwmjyijiPvt {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

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

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.vdXBvp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #EEEEEE;
  border-bottom-right-radius: calc(1.25rem - 1px);
  border-bottom-left-radius: calc(1.25rem - 1px);
}

.vdXBvp > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .wgXRoC {
    height: calc(100% - 3.5rem);
  }
  .SOOqGDb {
    min-height: calc(100% - 3.5rem);
  }
  .w2Yev8 {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .IfQStIQajF,
  .bbtzpwBh {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .bbtzpwBh {
    max-width: 1140px;
  }
}

.uaxBTd1STp {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.uaxBTd1STp .f6NEK8 {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.uaxBTd1STp .gIFcCdEiF6j {
  border-radius: 0;
}

.uaxBTd1STp .modal-body {
  overflow-y: auto;
}

.uaxBTd1STp .vdXBvp {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .EFzJCus0a {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .EFzJCus0a .f6NEK8 {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .EFzJCus0a .gIFcCdEiF6j {
    border-radius: 0;
  }
  .EFzJCus0a .modal-body {
    overflow-y: auto;
  }
  .EFzJCus0a .vdXBvp {
    border-radius: 0;
  }
}

@media (max-width: 767.98px) {
  .FDxkOPY {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .FDxkOPY .f6NEK8 {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .FDxkOPY .gIFcCdEiF6j {
    border-radius: 0;
  }
  .FDxkOPY .modal-body {
    overflow-y: auto;
  }
  .FDxkOPY .vdXBvp {
    border-radius: 0;
  }
}

@media (max-width: 991.98px) {
  .IaaxEjaaJM {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .IaaxEjaaJM .f6NEK8 {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .IaaxEjaaJM .gIFcCdEiF6j {
    border-radius: 0;
  }
  .IaaxEjaaJM .modal-body {
    overflow-y: auto;
  }
  .IaaxEjaaJM .vdXBvp {
    border-radius: 0;
  }
}

@media (max-width: 1199.98px) {
  .BCZYUr {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .BCZYUr .f6NEK8 {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .BCZYUr .gIFcCdEiF6j {
    border-radius: 0;
  }
  .BCZYUr .modal-body {
    overflow-y: auto;
  }
  .BCZYUr .vdXBvp {
    border-radius: 0;
  }
}

@media (max-width: 1539.98px) {
  .II0zIEXV {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .II0zIEXV .f6NEK8 {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .II0zIEXV .gIFcCdEiF6j {
    border-radius: 0;
  }
  .II0zIEXV .modal-body {
    overflow-y: auto;
  }
  .II0zIEXV .vdXBvp {
    border-radius: 0;
  }
}

.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.oPPnYMd, .enzzlDo5N[data-popper-placement^="top"] {
  padding: 0.4rem 0;
}

.oPPnYMd .tooltip-arrow, .enzzlDo5N[data-popper-placement^="top"] .tooltip-arrow {
  bottom: 0;
}

.oPPnYMd .tooltip-arrow::before, .enzzlDo5N[data-popper-placement^="top"] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.Ql2PhPcwyQ, .enzzlDo5N[data-popper-placement^="right"] {
  padding: 0 0.4rem;
}

.Ql2PhPcwyQ .tooltip-arrow, .enzzlDo5N[data-popper-placement^="right"] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.Ql2PhPcwyQ .tooltip-arrow::before, .enzzlDo5N[data-popper-placement^="right"] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.w9j7Mhv, .enzzlDo5N[data-popper-placement^="bottom"] {
  padding: 0.4rem 0;
}

.w9j7Mhv .tooltip-arrow, .enzzlDo5N[data-popper-placement^="bottom"] .tooltip-arrow {
  top: 0;
}

.w9j7Mhv .tooltip-arrow::before, .enzzlDo5N[data-popper-placement^="bottom"] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.NgFiTMGyi, .enzzlDo5N[data-popper-placement^="left"] {
  padding: 0 0.4rem;
}

.NgFiTMGyi .tooltip-arrow, .enzzlDo5N[data-popper-placement^="left"] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.NgFiTMGyi .tooltip-arrow::before, .enzzlDo5N[data-popper-placement^="left"] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #FFFEFE;
  text-align: center;
  background-color: #000;
  border-radius: 0;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #FFFEFE;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 1.25rem;
}

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

.xtKlmdYV > .popover-arrow, .NstcKq[data-popper-placement^="top"] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}

.xtKlmdYV > .popover-arrow::before, .NstcKq[data-popper-placement^="top"] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.xtKlmdYV > .popover-arrow::after, .NstcKq[data-popper-placement^="top"] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #FFFEFE;
}

.yb2cef9v1u > .popover-arrow, .NstcKq[data-popper-placement^="right"] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}

.yb2cef9v1u > .popover-arrow::before, .NstcKq[data-popper-placement^="right"] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.yb2cef9v1u > .popover-arrow::after, .NstcKq[data-popper-placement^="right"] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #FFFEFE;
}

.aJPbKGU2mo > .popover-arrow, .NstcKq[data-popper-placement^="bottom"] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}

.aJPbKGU2mo > .popover-arrow::before, .NstcKq[data-popper-placement^="bottom"] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.aJPbKGU2mo > .popover-arrow::after, .NstcKq[data-popper-placement^="bottom"] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #FFFEFE;
}

.aJPbKGU2mo .popover-header::before, .NstcKq[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 #f0efef;
}

.HAOhwVRyzj > .popover-arrow, .NstcKq[data-popper-placement^="left"] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}

.HAOhwVRyzj > .popover-arrow::before, .NstcKq[data-popper-placement^="left"] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.HAOhwVRyzj > .popover-arrow::after, .NstcKq[data-popper-placement^="left"] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #FFFEFE;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: #F9FAFD;
  background-color: #f0efef;
  border-bottom: 1px solid #d8d7d7;
  border-top-left-radius: calc(1.25rem - 1px);
  border-top-right-radius: calc(1.25rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #BDBDBD;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.tF07lbcP3q {
  position: relative;
  width: 100%;
  overflow: hidden;
}

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

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  -o-transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

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

/* rtl:end:ignore */
.vRyRnly8Cr .carousel-item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.vRyRnly8Cr .carousel-item.active,
.vRyRnly8Cr .carousel-item-next.carousel-item-start,
.vRyRnly8Cr .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}

.vRyRnly8Cr .active.carousel-item-start,
.vRyRnly8Cr .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0s 0.6s;
  -o-transition: opacity 0s 0.6s;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .vRyRnly8Cr .active.carousel-item-start,
  .vRyRnly8Cr .active.carousel-item-end {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.dtahivRKZl,
.mX3cZeuB {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: rgba(185, 143, 125, 0.7);
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.9;
  -webkit-transition: opacity 0.15s ease;
  -o-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .dtahivRKZl,
  .mX3cZeuB {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.dtahivRKZl:hover, .dtahivRKZl:focus,
.mX3cZeuB:hover,
.mX3cZeuB:focus {
  color: rgba(185, 143, 125, 0.7);
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.dtahivRKZl {
  left: 0;
}

.mX3cZeuB {
  right: 0;
}

.ysHyYCfS,
.wGCkW3zEYvi {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.ysHyYCfS {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-arrow-left-short' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5z'/%3E%3C/svg%3E");
}

.wGCkW3zEYvi {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-arrow-right-short' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators [data-bs-target] {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 8px;
  height: 8px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #B98F7D;
  background-clip: padding-box;
  border: 0;
  border-top: 0 solid transparent;
  border-bottom: 0 solid transparent;
  opacity: 0.5;
  -webkit-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.OA1rSk {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #FFFEFE;
  text-align: center;
}

.mE0aSQW .ysHyYCfS,
.mE0aSQW .wGCkW3zEYvi {
  -webkit-filter: invert(1) grayscale(100);
  filter: invert(1) grayscale(100);
}

.mE0aSQW .carousel-indicators [data-bs-target] {
  background-color: #000;
}

.mE0aSQW .OA1rSk {
  color: #000;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg) /* rtl:ignore */;
    transform: rotate(360deg) /* rtl:ignore */;
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg) /* rtl:ignore */;
    transform: rotate(360deg) /* rtl:ignore */;
  }
}

.Dp5LexTP {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
}

.uEOwazjeP {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.nN9YvH9 {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: 0.75s linear infinite spinner-grow;
  animation: 0.75s linear infinite spinner-grow;
}

.gjfksdY {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .Dp5LexTP,
  .nN9YvH9 {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
  }
}

.fxedH3 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #BDBDBD;
  text-align: left;
  background-color: #000;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
  -o-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;
  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;
  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, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .fxedH3 {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.fxedH3:not(.collapsed) {
  color: #a78171;
  background-color: #f8f4f2;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.fxedH3:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a78171'%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");
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fxedH3::after {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23BDBDBD'%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.25rem;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .fxedH3::after {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.fxedH3:hover {
  z-index: 2;
}

.fxedH3:focus {
  z-index: 3;
  border-color: #dcc7be;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(185, 143, 125, 0.25);
}

.Seqd8rD1 {
  margin-bottom: 0;
}

.eEAoyOSTLNw {
  margin-bottom: -1px;
  background-color: #000;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.eEAoyOSTLNw:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.eEAoyOSTLNw:first-of-type .fxedH3 {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.eEAoyOSTLNw:last-of-type {
  margin-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.eEAoyOSTLNw:last-of-type .fxedH3.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.eEAoyOSTLNw:last-of-type .iwoLg46fGHo {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.g0w3EbraL {
  padding: 1rem 1.25rem;
}

.IABFAwgiuf .iwoLg46fGHo {
  border-width: 0;
}

.IABFAwgiuf .eEAoyOSTLNw {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.IABFAwgiuf .eEAoyOSTLNw:first-child {
  border-top: 0;
}

.IABFAwgiuf .eEAoyOSTLNw:last-child {
  border-bottom: 0;
}

.IABFAwgiuf .eEAoyOSTLNw .fxedH3 {
  border-radius: 0;
}

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

.gmdmQeVl {
  color: #B98F7D;
}

.gmdmQeVl:hover, .gmdmQeVl:focus {
  color: #947264;
}

.KkeQzPH {
  color: #9E9E9E;
}

.KkeQzPH:hover, .KkeQzPH:focus {
  color: #7e7e7e;
}

.lzTrhg {
  color: #19CC61;
}

.lzTrhg:hover, .lzTrhg:focus {
  color: #14a34e;
}

.oVEvMW {
  color: #00A1FC;
}

.oVEvMW:hover, .oVEvMW:focus {
  color: #0081ca;
}

.x7wiO1 {
  color: #FFA15C;
}

.x7wiO1:hover, .x7wiO1:focus {
  color: #ffb47d;
}

.E2A7i43K {
  color: #FF705C;
}

.E2A7i43K:hover, .E2A7i43K:focus {
  color: #cc5a4a;
}

.xzTQvh {
  color: #F9FAFD;
}

.xzTQvh:hover, .xzTQvh:focus {
  color: #fafbfd;
}

.oL6IXuhoW {
  color: #212121;
}

.oL6IXuhoW:hover, .oL6IXuhoW:focus {
  color: #1a1a1a;
}

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

.mN57yYX {
  --bs-aspect-ratio: 100%;
}

.ff3Q7Jec {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}

.OedT1m0Z9uT {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.j0bSdqooILI {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

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

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .f18Kxj {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 768px) {
  .L1W685ozFgL {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 992px) {
  .GWZawva {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 1200px) {
  .hzlefKam1Y {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 1540px) {
  .UbHXwe {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.Ga51kiDfGZ3,
.eYeKodWrhj1: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;
}

.pBRIcl5HDL::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.hnAXWeKXIQ {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cprZkdB {
  vertical-align: baseline !important;
}

.EgSxTe7Rxr {
  vertical-align: top !important;
}

.WDi5nqo {
  vertical-align: middle !important;
}

.me7DZGz1K {
  vertical-align: bottom !important;
}

.vy7Trc {
  vertical-align: text-bottom !important;
}

.BQkrerL {
  vertical-align: text-top !important;
}

.kBvHRL {
  float: left !important;
}

.phJNc3hJVr {
  float: right !important;
}

.G7jaW2Zx {
  float: none !important;
}

.cgdoHggo2 {
  overflow: auto !important;
}

.ChHgdaS {
  overflow: hidden !important;
}

.m9m9TZO {
  overflow: visible !important;
}

.r8H6uaDc {
  overflow: scroll !important;
}

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

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

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

.ghlAxVMw {
  display: grid !important;
}

.lKzgwnAuBw {
  display: table !important;
}

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

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

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

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

.Q6eYWPrfk0J {
  display: none !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.Kl3XQtY {
  -webkit-box-shadow: 0 1.5625rem 2.8125rem rgba(0, 87, 255, 0.15) !important;
  box-shadow: 0 1.5625rem 2.8125rem rgba(0, 87, 255, 0.15) !important;
}

.sgEWz8 {
  -webkit-box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.175) !important;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.175) !important;
}

.aJhkdK6ZjHm {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.tnhlgJOc {
  position: static !important;
}

.qhmbwMIALyd {
  position: absolute !important;
}

.vRMmOdJAb {
  position: relative !important;
}

.C5vPkyCwu {
  position: fixed !important;
}

.Hab1aR2C4n {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.NTYEYN82 {
  top: 0 !important;
}

.VCCdKd {
  top: 50% !important;
}

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

.JOuMHM9 {
  bottom: 0 !important;
}

.SC0mASO {
  bottom: 50% !important;
}

.P6205rTXYC {
  bottom: 100% !important;
}

.TfQjuskvU {
  left: 0 !important;
}

.qZDqxsfHR {
  left: 50% !important;
}

.PpVl8PlW {
  left: 100% !important;
}

.acGfQZN {
  right: 0 !important;
}

.drhjse {
  right: 50% !important;
}

.ucYFBgtKHQ {
  right: 100% !important;
}

.RP0777g {
  -webkit-transform: translateX(-50%) translateY(-50%) !important;
  -ms-transform: translateX(-50%) translateY(-50%) !important;
  transform: translateX(-50%) translateY(-50%) !important;
}

.SKBsGxO {
  -webkit-transform: translateX(-50%) !important;
  -ms-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
}

.mtF23N {
  -webkit-transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}

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

.YqwlFVauVW {
  border: 0 !important;
}

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

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

.A4YHKs {
  border-right: 1px solid #EEEEEE !important;
}

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

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

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

.SWam9VGfU3 {
  border-left: 1px solid #EEEEEE !important;
}

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

.IPiBICZO {
  border-color: #3c5a99 !important;
}

.r0QgTx59dJM {
  border-color: #dd4b39 !important;
}

.n6yw7nxI80 {
  border-color: #1da1f2 !important;
}

.gygJr3cv7 {
  border-color: #0077b5 !important;
}

.sw6Kyn0L {
  border-color: #ff0000 !important;
}

.WCQusLTqdS {
  border-color: #333 !important;
}

.WdIrH37t {
  border-color: #000 !important;
}

.Hogud1jetjc {
  border-color: #FCFCFC !important;
}

.O3dm3h1UbF {
  border-color: #F5F5F5 !important;
}

.q8Z70YSdmdF {
  border-color: #EEEEEE !important;
}

.Vz3HbvON09 {
  border-color: #E0E0E0 !important;
}

.JfTvCGPdf {
  border-color: #BDBDBD !important;
}

.ogB4cocb6 {
  border-color: #9E9E9E !important;
}

.kHcFcZt5dT {
  border-color: #757575 !important;
}

.Ur1K14bv {
  border-color: #616161 !important;
}

.MrR5SY95 {
  border-color: #424242 !important;
}

.Uw48P64i {
  border-color: #212121 !important;
}

.rcIJiYjH {
  border-color: #FFFEFE !important;
}

.tU4D43PfR5r {
  border-color: #B98F7D !important;
}

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

.U99gxQoX {
  border-color: #19CC61 !important;
}

.cjwng3P0z {
  border-color: #00A1FC !important;
}

.xzGrLVQLE {
  border-color: #FFA15C !important;
}

.ZgOK4X {
  border-color: #FF705C !important;
}

.ILpDxh {
  border-color: #F9FAFD !important;
}

.vEjg72 {
  border-color: #212121 !important;
}

.cdoFqiA {
  border-width: 1px !important;
}

.esGs88jQQR {
  border-width: 2px !important;
}

.kMhbCdI {
  border-width: 3px !important;
}

.I9Adykht1W {
  border-width: 4px !important;
}

.rPWnGXWK {
  border-width: 5px !important;
}

.ykS9hLZd {
  width: 25% !important;
}

.N8B8oHs {
  width: 50% !important;
}

.Rf1A26VxTah {
  width: 75% !important;
}

.gTEI5lDGI {
  width: 100% !important;
}

.AaghIzjp {
  width: auto !important;
}

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

.gyEVev {
  width: 25vw !important;
}

.Ojfd9kVDi0S {
  width: 50vw !important;
}

.PW7MLGl {
  width: 75vw !important;
}

.lTODQipkVTg {
  width: 100vw !important;
}

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

.TCJrHR {
  height: 25% !important;
}

.HnWoL9IY1 {
  height: 50% !important;
}

.P8rvpQkpo {
  height: 75% !important;
}

.icqs9vm {
  height: 100% !important;
}

.heOSxQC {
  height: auto !important;
}

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

.FiuM2VC5urD {
  height: 25vh !important;
}

.ETWGE0P {
  height: 50vh !important;
}

.pKvRDF9W6 {
  height: 75vh !important;
}

.jZRrRLVRer {
  height: 100vh !important;
}

.K2lmDM {
  min-height: 25vh !important;
}

.ha27CG {
  min-height: 50vh !important;
}

.mtc5Nj {
  min-height: 75vh !important;
}

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

.WbYFtmtEcW7 {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

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

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

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

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

.g9gqgbFcX {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.aNnJbi6Wt {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.la97ZML {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.RE3VYgfbSg {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

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

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

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

.sxeazgm {
  gap: 0 !important;
}

.QfiR2rDT {
  gap: 0.25rem !important;
}

.BArn7J {
  gap: 0.5rem !important;
}

.l0lUGJ1TIW {
  gap: 1rem !important;
}

.p2hgCUJC {
  gap: 1.8rem !important;
}

.iNdd84PjT {
  gap: 3rem !important;
}

.cyHuB5cwR {
  gap: 4rem !important;
}

.En1rjIzT {
  gap: 5rem !important;
}

.jamUs2v6AMl {
  gap: 7.5rem !important;
}

.D2PvtPxEBpc {
  gap: 10rem !important;
}

.wylFjrN39 {
  gap: 12.5rem !important;
}

.uWkm13r5H {
  gap: 15rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aWEJqYoH {
  -webkit-box-ordinal-group: 0 !important;
  -ms-flex-order: -1 !important;
  order: -1 !important;
}

.yvghlj4sV {
  -webkit-box-ordinal-group: 1 !important;
  -ms-flex-order: 0 !important;
  order: 0 !important;
}

.y6ABhFMbpXA {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  order: 1 !important;
}

.Mw8bJuxm6r {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
}

.h1YPSBTNT {
  -webkit-box-ordinal-group: 4 !important;
  -ms-flex-order: 3 !important;
  order: 3 !important;
}

.vOde5q2OU {
  -webkit-box-ordinal-group: 5 !important;
  -ms-flex-order: 4 !important;
  order: 4 !important;
}

.x4yNET {
  -webkit-box-ordinal-group: 6 !important;
  -ms-flex-order: 5 !important;
  order: 5 !important;
}

.UAQvcbR {
  -webkit-box-ordinal-group: 7 !important;
  -ms-flex-order: 6 !important;
  order: 6 !important;
}

.vgd4HvhT6 {
  margin: 0 !important;
}

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

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

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

.WLbL3Bwx5Wd {
  margin: 1.8rem !important;
}

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

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

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

.m-8 {
  margin: 7.5rem !important;
}

.yLDhOz5 {
  margin: 10rem !important;
}

.m-10 {
  margin: 12.5rem !important;
}

.jtsMgZj3ex {
  margin: 15rem !important;
}

.yTSIlkEfTJ {
  margin: auto !important;
}

.rvWEjRSvb {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.xCQmgB3KBxf {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.As5Z4H {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.LpfwF8GW {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.kh1jGT {
  margin-right: 1.8rem !important;
  margin-left: 1.8rem !important;
}

.r37eHj2 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.Iy3nQ9xCNz3 {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}

.fpX0Kd30W {
  margin-right: 5rem !important;
  margin-left: 5rem !important;
}

.PEzq5ylkF {
  margin-right: 7.5rem !important;
  margin-left: 7.5rem !important;
}

.XpclULQz6 {
  margin-right: 10rem !important;
  margin-left: 10rem !important;
}

.KkKV2cYKHTH {
  margin-right: 12.5rem !important;
  margin-left: 12.5rem !important;
}

.oKT6qs {
  margin-right: 15rem !important;
  margin-left: 15rem !important;
}

.MdjhLIPrMb6 {
  margin-right: auto !important;
  margin-left: auto !important;
}

.ZkVHJJyv3T {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.kMT7fA5T {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.Nf9pra3uoA {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.Q0ErdRlK {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.bTgmZZOwqm {
  margin-top: 1.8rem !important;
  margin-bottom: 1.8rem !important;
}

.JhXmB70PIi {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.tlWakEzo1 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.XAsS0EO7ov {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.WZuK31pCbf {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}

.i1oAZkkwBe {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.RaUGRhMLz {
  margin-top: 12.5rem !important;
  margin-bottom: 12.5rem !important;
}

.nOECCLxu {
  margin-top: 15rem !important;
  margin-bottom: 15rem !important;
}

.JYoVomUeU9 {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

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

.uSMfMYtc80 {
  margin-top: 0.25rem !important;
}

.TNPOdRyal {
  margin-top: 0.5rem !important;
}

.LNuezF {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.8rem !important;
}

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

.SqVT666c2 {
  margin-top: 4rem !important;
}

.TYOSrWfNWp {
  margin-top: 5rem !important;
}

.a2qALVaWLe {
  margin-top: 7.5rem !important;
}

.uILJ19JSI {
  margin-top: 10rem !important;
}

.gCbBLD {
  margin-top: 12.5rem !important;
}

.yALrcWW {
  margin-top: 15rem !important;
}

.HIVar1 {
  margin-top: auto !important;
}

.ZXJfVm4Ge {
  margin-right: 0 !important;
}

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

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

.Cj98xKgnM4 {
  margin-right: 1rem !important;
}

.s6zEap3zDo {
  margin-right: 1.8rem !important;
}

.Ds4uDajXS2 {
  margin-right: 3rem !important;
}

.ODYFyHFEP {
  margin-right: 4rem !important;
}

.wQRhfjXS {
  margin-right: 5rem !important;
}

.KGIKUYZqm {
  margin-right: 7.5rem !important;
}

.hHhP8w28A {
  margin-right: 10rem !important;
}

.kcrhRo {
  margin-right: 12.5rem !important;
}

.a8TQjQyUS {
  margin-right: 15rem !important;
}

.me-auto {
  margin-right: auto !important;
}

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

.GIxlumBX2T {
  margin-bottom: 0.25rem !important;
}

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

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

.EvYcehS {
  margin-bottom: 1.8rem !important;
}

.q56kln3FS {
  margin-bottom: 3rem !important;
}

.zs6rA8VJM5M {
  margin-bottom: 4rem !important;
}

.KTwK7OY {
  margin-bottom: 5rem !important;
}

.R0sVUU {
  margin-bottom: 7.5rem !important;
}

.L6WsfUnTsP {
  margin-bottom: 10rem !important;
}

.qHi7pZQ0 {
  margin-bottom: 12.5rem !important;
}

.awcj7P {
  margin-bottom: 15rem !important;
}

.K5LnEyub1 {
  margin-bottom: auto !important;
}

.oZzHF19zdA {
  margin-left: 0 !important;
}

.QBVc2xBPZ {
  margin-left: 0.25rem !important;
}

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

.Wv3KI93 {
  margin-left: 1rem !important;
}

.hDoiKd {
  margin-left: 1.8rem !important;
}

.sQ4mIhi4FEu {
  margin-left: 3rem !important;
}

.P546V60 {
  margin-left: 4rem !important;
}

.WoaQ15kz {
  margin-left: 5rem !important;
}

.u5vgprBe4X6 {
  margin-left: 7.5rem !important;
}

.olYzfSnrjO4 {
  margin-left: 10rem !important;
}

.OPUL4I2 {
  margin-left: 12.5rem !important;
}

.dC37CN {
  margin-left: 15rem !important;
}

.lq3SVwK {
  margin-left: auto !important;
}

.dHAnMQl {
  margin: -0.25rem !important;
}

.W7nc1p2 {
  margin: -0.5rem !important;
}

.M5g2x6YyKq {
  margin: -1rem !important;
}

.arbtyh0I7Xu {
  margin: -1.8rem !important;
}

.svx9QN9BJW {
  margin: -3rem !important;
}

.XwQ2CnQUb9 {
  margin: -4rem !important;
}

.VXqDQW {
  margin: -5rem !important;
}

.W2j3pFK {
  margin: -7.5rem !important;
}

.jTpat8b {
  margin: -10rem !important;
}

.oQolim {
  margin: -12.5rem !important;
}

.acI4ZaRJ {
  margin: -15rem !important;
}

.LZR1HQ {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

.CHlQJe7eBZO {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.hTRy6X {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

.pd917rq {
  margin-right: -1.8rem !important;
  margin-left: -1.8rem !important;
}

.MqRmazPQAeU {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

.cADcfQtp {
  margin-right: -4rem !important;
  margin-left: -4rem !important;
}

.qq27P4 {
  margin-right: -5rem !important;
  margin-left: -5rem !important;
}

.zu2v0WJ7fx0 {
  margin-right: -7.5rem !important;
  margin-left: -7.5rem !important;
}

.Rm35TvQ {
  margin-right: -10rem !important;
  margin-left: -10rem !important;
}

.ObYVvfYw6A {
  margin-right: -12.5rem !important;
  margin-left: -12.5rem !important;
}

.rZyatSxoMqX {
  margin-right: -15rem !important;
  margin-left: -15rem !important;
}

.Rb46naj7I0M {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.xc2J4UboNP {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.Q83IlObDRG {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.JIQtOeg3 {
  margin-top: -1.8rem !important;
  margin-bottom: -1.8rem !important;
}

.VyP1GYW {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.ErcgYEH {
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}

.m3FkhyJZHn {
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}

.YMG45THd {
  margin-top: -7.5rem !important;
  margin-bottom: -7.5rem !important;
}

.UzRFdp1xo {
  margin-top: -10rem !important;
  margin-bottom: -10rem !important;
}

.kxMWEA5DPgl {
  margin-top: -12.5rem !important;
  margin-bottom: -12.5rem !important;
}

.vybE36oI {
  margin-top: -15rem !important;
  margin-bottom: -15rem !important;
}

.TdzQgk {
  margin-top: -0.25rem !important;
}

.ldAO5aR {
  margin-top: -0.5rem !important;
}

.KMnawmkSNb9 {
  margin-top: -1rem !important;
}

.sQBq4K26aNI {
  margin-top: -1.8rem !important;
}

.uMkuOI6j {
  margin-top: -3rem !important;
}

.MkrxigIM0w {
  margin-top: -4rem !important;
}

.k3i7vAnf {
  margin-top: -5rem !important;
}

.TWcbmcG {
  margin-top: -7.5rem !important;
}

.peqUQegC {
  margin-top: -10rem !important;
}

.FguJCEGR3WA {
  margin-top: -12.5rem !important;
}

.Z1tMAp {
  margin-top: -15rem !important;
}

.ysFdaHfB {
  margin-right: -0.25rem !important;
}

.BN5xEvioI {
  margin-right: -0.5rem !important;
}

.tDnpk6DE {
  margin-right: -1rem !important;
}

.Kt1YppX {
  margin-right: -1.8rem !important;
}

.xh2c187tsn {
  margin-right: -3rem !important;
}

.cdPfNYBA {
  margin-right: -4rem !important;
}

.qgraRrs {
  margin-right: -5rem !important;
}

.gfQ8f9FI {
  margin-right: -7.5rem !important;
}

.FtLBdU3 {
  margin-right: -10rem !important;
}

.Ev4a5Dh {
  margin-right: -12.5rem !important;
}

.Tn82eEcc {
  margin-right: -15rem !important;
}

.MSdL59T {
  margin-bottom: -0.25rem !important;
}

.KkjFbOww2il {
  margin-bottom: -0.5rem !important;
}

.HQhdbrOR3M {
  margin-bottom: -1rem !important;
}

.gwu4Gu2a {
  margin-bottom: -1.8rem !important;
}

.UYaB7xAoBK {
  margin-bottom: -3rem !important;
}

.V68u3Ji9w7x {
  margin-bottom: -4rem !important;
}

.JKU66xIYm {
  margin-bottom: -5rem !important;
}

.AOQZxzJz {
  margin-bottom: -7.5rem !important;
}

.N9pDa1VT5 {
  margin-bottom: -10rem !important;
}

.RWps2Uf {
  margin-bottom: -12.5rem !important;
}

.GUms4rzp {
  margin-bottom: -15rem !important;
}

.WtQKY5KQtu {
  margin-left: -0.25rem !important;
}

.yDDIuS7 {
  margin-left: -0.5rem !important;
}

.x8WALW0H {
  margin-left: -1rem !important;
}

.sm8G9QU {
  margin-left: -1.8rem !important;
}

.Nogbg4wl2Og {
  margin-left: -3rem !important;
}

.ZFqYeI14R4 {
  margin-left: -4rem !important;
}

.UlgfgiMc {
  margin-left: -5rem !important;
}

.tz6VpsBbCVU {
  margin-left: -7.5rem !important;
}

.I60LIgP {
  margin-left: -10rem !important;
}

.TGHVxii {
  margin-left: -12.5rem !important;
}

.eFFkpXG2vO {
  margin-left: -15rem !important;
}

.yhQWCUdnZe {
  padding: 0 !important;
}

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

.bHa8Sn {
  padding: 0.5rem !important;
}

.I3NDtmRsNd {
  padding: 1rem !important;
}

.wtThnvKFf {
  padding: 1.8rem !important;
}

.cyJRlNf {
  padding: 3rem !important;
}

.zhFc9eO5 {
  padding: 4rem !important;
}

.fSv1HN {
  padding: 5rem !important;
}

.KmCNBcyJ {
  padding: 7.5rem !important;
}

.pvmKiRnS {
  padding: 10rem !important;
}

.p-10 {
  padding: 12.5rem !important;
}

.UfWaJUem {
  padding: 15rem !important;
}

.secdUd {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.XuwfhE3Inf {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

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

.fNGOGzpjqa7 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.c7wNuon2 {
  padding-right: 1.8rem !important;
  padding-left: 1.8rem !important;
}

.DDHgL1MRV {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.zOfrJw {
  padding-right: 4rem !important;
  padding-left: 4rem !important;
}

.OWITbT03G {
  padding-right: 5rem !important;
  padding-left: 5rem !important;
}

.BDnd7ap3tQu {
  padding-right: 7.5rem !important;
  padding-left: 7.5rem !important;
}

.KRbsA2xoPCo {
  padding-right: 10rem !important;
  padding-left: 10rem !important;
}

.cQPxhGfD {
  padding-right: 12.5rem !important;
  padding-left: 12.5rem !important;
}

.p6ch0p {
  padding-right: 15rem !important;
  padding-left: 15rem !important;
}

.tOEz6ijV3 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.QsachL {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.bguh6ag {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

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

.Fo9MZhiex {
  padding-top: 1.8rem !important;
  padding-bottom: 1.8rem !important;
}

.DzW2ImXv {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.Lm0dhygXD7 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.QtFWDdLDj {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.ALztG9rrMXQ {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.f3WOvsv {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.t2wPTl {
  padding-top: 12.5rem !important;
  padding-bottom: 12.5rem !important;
}

.U6kCha7y {
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}

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

.q7OYcqvjN {
  padding-top: 0.25rem !important;
}

.zPSuqQ {
  padding-top: 0.5rem !important;
}

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

.P4d66bjJ {
  padding-top: 1.8rem !important;
}

.vhPy6jJ {
  padding-top: 3rem !important;
}

.ahbrwmuh70m {
  padding-top: 4rem !important;
}

.pt-7 {
  padding-top: 5rem !important;
}

.PEKqu9 {
  padding-top: 7.5rem !important;
}

.OGh5JhrbLB {
  padding-top: 10rem !important;
}

.nyARPVIBQZ {
  padding-top: 12.5rem !important;
}

.wLsfs8Ttaa {
  padding-top: 15rem !important;
}

.VqrZ6otK {
  padding-right: 0 !important;
}

.G1lA7f {
  padding-right: 0.25rem !important;
}

.ULq06JJdb {
  padding-right: 0.5rem !important;
}

.gU1Sqzh {
  padding-right: 1rem !important;
}

.ILZe4N {
  padding-right: 1.8rem !important;
}

.qLf3HgE4E9 {
  padding-right: 3rem !important;
}

.XYoDIkz1 {
  padding-right: 4rem !important;
}

.GnTG2P8AO6H {
  padding-right: 5rem !important;
}

.fZQdoj {
  padding-right: 7.5rem !important;
}

.YgCHvX9aWIZ {
  padding-right: 10rem !important;
}

.yJcav2cv6 {
  padding-right: 12.5rem !important;
}

.maz7tmxfCo {
  padding-right: 15rem !important;
}

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

.lCddhOy {
  padding-bottom: 0.25rem !important;
}

.vzppHnf {
  padding-bottom: 0.5rem !important;
}

.VJcZW1xmgw {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.8rem !important;
}

.F0ffoT {
  padding-bottom: 3rem !important;
}

.TRnrJzdL {
  padding-bottom: 4rem !important;
}

.eZldSM {
  padding-bottom: 5rem !important;
}

.tIcsMM47pv8 {
  padding-bottom: 7.5rem !important;
}

.NL2K8SoCQ {
  padding-bottom: 10rem !important;
}

.Owmu11v {
  padding-bottom: 12.5rem !important;
}

.n2BKhjsg {
  padding-bottom: 15rem !important;
}

.QCjoLjE {
  padding-left: 0 !important;
}

.FvJkctT6dd {
  padding-left: 0.25rem !important;
}

.qAY9Ye3 {
  padding-left: 0.5rem !important;
}

.FhSYpe {
  padding-left: 1rem !important;
}

.KE8W32E {
  padding-left: 1.8rem !important;
}

.uneYCoecwGk {
  padding-left: 3rem !important;
}

.HOluTBC {
  padding-left: 4rem !important;
}

.ExIuywQhbR {
  padding-left: 5rem !important;
}

.XtcmOPwbL {
  padding-left: 7.5rem !important;
}

.dbuxaR {
  padding-left: 10rem !important;
}

.Dfflkb {
  padding-left: 12.5rem !important;
}

.wRpgJC {
  padding-left: 15rem !important;
}

.iUQoJd {
  font-family: var(--bs-font-monospace) !important;
}

.I3zBS2UW4Sy {
  font-size: 0.69444rem !important;
}

.K0UrjG {
  font-size: 0.83333rem !important;
}

.VMPA34ZKHZ {
  font-size: 1rem !important;
}

.QxaE5Gi1q {
  font-size: 1.2rem !important;
}

.fs-2 {
  font-size: 1.44rem !important;
}

.lgmopo8 {
  font-size: 1.728rem !important;
}

.Z4FpxvFX {
  font-size: 2.0736rem !important;
}

.LhtyxP {
  font-size: 2.48832rem !important;
}

.EQScuAN {
  font-size: 2.98598rem !important;
}

.KVzP6rmoKQ {
  font-size: 3.58318rem !important;
}

.pkKbd3 {
  font-size: 4.29982rem !important;
}

.scwXzht {
  font-style: italic !important;
}

.DkO9bpBZu {
  font-style: normal !important;
}

.bvZzjVqh {
  font-weight: 100 !important;
}

.psMmvYWRr5 {
  font-weight: 200 !important;
}

.QPS55Zus {
  font-weight: 300 !important;
}

.QU0XaeJ476 {
  font-weight: 400 !important;
}

.EdX3bJ5 {
  font-weight: 500 !important;
}

.zj7XSK7kFA {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.TYAWhxj3 {
  font-weight: 800 !important;
}

.YCYv7ms7xE {
  font-weight: 900 !important;
}

.cZ9MFXOGHLY {
  line-height: 1 !important;
}

.IONg685 {
  line-height: 1.25 !important;
}

.FENr6WttQ {
  line-height: 1.5 !important;
}

.iHkQpGDe {
  line-height: 2 !important;
}

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

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

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

.ZKt27y {
  text-decoration: none !important;
}

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

.ES2nLm {
  text-decoration: line-through !important;
}

.p7P8Ld {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.V579n831X {
  text-transform: capitalize !important;
}

.x5zADHM {
  white-space: normal !important;
}

.jB7dJIg {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.v2dNzJWVG {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.meNwrAf {
  color: #B98F7D !important;
}

.UnE4ij {
  color: #9E9E9E !important;
}

.MBDOdV7 {
  color: #19CC61 !important;
}

.N7uU6dWsf {
  color: #00A1FC !important;
}

.VUniQJ {
  color: #FFA15C !important;
}

.DudTKP {
  color: #FF705C !important;
}

.jXLdfp {
  color: #F9FAFD !important;
}

.k3eYjW {
  color: #212121 !important;
}

.KLLPi6iFqKQ {
  color: #FFFEFE !important;
}

.IgSU9eu {
  color: #BDBDBD !important;
}

.AWBVS8U {
  color: #BDBDBD !important;
}

.bcKxZy9A {
  color: rgba(0, 0, 0, 0.5) !important;
}

.A7a1iI {
  color: rgba(255, 254, 254, 0.5) !important;
}

.bcZLtdVjx {
  color: inherit !important;
}

.kmXCvFCJ {
  background-color: #3c5a99 !important;
}

.SAHNElV42T {
  background-color: #dd4b39 !important;
}

.Ptnn8P5 {
  background-color: #1da1f2 !important;
}

.jHPBaFno {
  background-color: #0077b5 !important;
}

.Bqu9YuJ {
  background-color: #ff0000 !important;
}

.FShEB07A {
  background-color: #333 !important;
}

.xFd2IpW {
  background-color: #000 !important;
}

.khT6Mkb {
  background-color: #FCFCFC !important;
}

.O7WkKE {
  background-color: #F5F5F5 !important;
}

.nawCu73Vyc {
  background-color: #EEEEEE !important;
}

.myvKXvxta {
  background-color: #E0E0E0 !important;
}

.BP09yeiP9A {
  background-color: #BDBDBD !important;
}

.F085Eg {
  background-color: #9E9E9E !important;
}

.z25ctME2F {
  background-color: #757575 !important;
}

.ULiPRim {
  background-color: #616161 !important;
}

.ViQMUe8hS {
  background-color: #424242 !important;
}

.GRsvlA0 {
  background-color: #212121 !important;
}

.ImMgnkI0 {
  background-color: #FFFEFE !important;
}

.AGIRUE {
  background-color: #B98F7D !important;
}

.ycbdkM {
  background-color: #9E9E9E !important;
}

.zv9pjYYw {
  background-color: #19CC61 !important;
}

.FPimsmVHMS {
  background-color: #00A1FC !important;
}

.wZBKX7 {
  background-color: #FFA15C !important;
}

.c8E9g82fh {
  background-color: #FF705C !important;
}

.MqL23Dx {
  background-color: #F9FAFD !important;
}

.nxTt5fRj2wj {
  background-color: #212121 !important;
}

.IpKGrhNTb {
  background-color: #000 !important;
}

.CXX5ZUpQ {
  background-color: transparent !important;
}

.kLgmfsFp {
  background-image: var(--bs-gradient) !important;
}

.ieaLgEnK2S {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  -ms-user-select: all !important;
  user-select: all !important;
}

.ZRgdlslZ {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

.cOvRH4Q {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.QBzaWlyeSv {
  pointer-events: none !important;
}

.ifdlWUPS {
  pointer-events: auto !important;
}

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

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

.ZuAAZt {
  border-radius: 0.625rem !important;
}

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

.stZc2P6OexK {
  border-radius: 1.25rem !important;
}

.sMnEGAgyn {
  border-radius: 50% !important;
}

.ZyJzJTzf {
  border-radius: 50rem !important;
}

.IE1PYdnQdM2 {
  border-top-start-radius: 0 !important;
  border-top-end-radius: 0 !important;
}

.eQjGJJa {
  border-top-start-radius: 1.25rem !important;
  border-top-end-radius: 1.25rem !important;
}

.JMhEm5 {
  border-top-start-radius: 0 !important;
  border-top-end-radius: 0 !important;
}

.ReChFpl3XCk {
  border-top-end-radius: 0 !important;
  border-bottom-end-radius: 0 !important;
}

.nPtNjm8 {
  border-top-end-radius: 1.25rem !important;
  border-bottom-end-radius: 1.25rem !important;
}

.QRE98sgv {
  border-top-end-radius: 0 !important;
  border-bottom-end-radius: 0 !important;
}

.IzxTQ0Qx {
  border-bottom-end-radius: 0 !important;
  border-bottom-start-radius: 0 !important;
}

.IyE1Cy0VP {
  border-bottom-end-radius: 1.25rem !important;
  border-bottom-start-radius: 1.25rem !important;
}

.W8y6i5x {
  border-bottom-end-radius: 0 !important;
  border-bottom-start-radius: 0 !important;
}

.sC8HIjJhXWg {
  border-bottom-start-radius: 0 !important;
  border-top-start-radius: 0 !important;
}

.NheWGuCYy {
  border-bottom-start-radius: 1.25rem !important;
  border-top-start-radius: 1.25rem !important;
}

.JVga1Dc {
  border-bottom-start-radius: 0 !important;
  border-top-start-radius: 0 !important;
}

.visible {
  visibility: visible !important;
}

.yKJ141hsUNf {
  visibility: hidden !important;
}

.N1RQUpcMK {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.uJf73k {
  opacity: 0.5 !important;
}

.kvexeh {
  opacity: 0.75 !important;
}

.NSBfBaNJU {
  opacity: 0.85 !important;
}

.Nx2h470i {
  opacity: 1 !important;
}

.JCbIhG4HmdH {
  color: #3c5a99 !important;
}

.th8sMORAnP {
  color: #dd4b39 !important;
}

.OeR9hQdXG {
  color: #1da1f2 !important;
}

.B0kChd9Xct {
  color: #0077b5 !important;
}

.O8ojiSjPDy {
  color: #ff0000 !important;
}

.kq4fYqC9g {
  color: #333 !important;
}

.pL543Qiyc {
  color: #000 !important;
}

.RmyB2qnHlp {
  color: #FCFCFC !important;
}

.s5xNro9Hi {
  color: #F5F5F5 !important;
}

.utg1NRnCqYK {
  color: #EEEEEE !important;
}

.wlLVjq {
  color: #E0E0E0 !important;
}

.XYEbvraYOzO {
  color: #BDBDBD !important;
}

.s6NJWQy {
  color: #9E9E9E !important;
}

.qE2H23b {
  color: #757575 !important;
}

.gpf3y7kk {
  color: #616161 !important;
}

.ZVMgxtkFTE {
  color: #424242 !important;
}

.WdlQufc0v {
  color: #212121 !important;
}

.KLLPi6iFqKQ {
  color: #FFFEFE !important;
}

.pFL2Vv {
  max-height: 25vh !important;
}

.hsw6Km {
  max-height: 50vh !important;
}

.GbxxJGjlNKB {
  max-height: 75vh !important;
}

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

.YPMxs7Zxayy {
  border-left: 1px solid #EEEEEE !important;
  border-right: 1px solid #EEEEEE !important;
}

.v0M1Mj89 {
  border-left: 0 !important;
  border-right: 0 !important;
}

.rRXaIb {
  border-top: 1px solid #EEEEEE !important;
  border-bottom: 1px solid #EEEEEE !important;
}

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

.R9hybDRkCMW {
  border: 1px dashed #EEEEEE !important;
}

.hiXoJtjlh {
  border-top: 1px dashed #EEEEEE !important;
}

.om6SF4JE {
  border-right: 1px dashed #EEEEEE !important;
}

.mKVyaa {
  border-left: 1px dashed #EEEEEE !important;
}

.IFKYs0S {
  border-bottom: 1px dashed #EEEEEE !important;
}

.u3SgbNVKM {
  border-left: 1px dashed #EEEEEE !important;
  border-right: 1px dashed #EEEEEE !important;
}

.t2KjTxUd0tS {
  border-top: 1px dashed #EEEEEE !important;
  border-bottom: 1px dashed #EEEEEE !important;
}

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

.xkIPWNfTf4l {
  background-color: #f5eeec !important;
}

.MfduRez9q {
  background-color: #f0f0f0 !important;
}

.AyYkyPl {
  background-color: #ddf7e7 !important;
}

.qrSpte {
  background-color: #d9f1ff !important;
}

.x8Vw2ka {
  background-color: #fff1e7 !important;
}

.TzffAmbnnql {
  background-color: #ffeae7 !important;
}

.cOrAHdklCJ {
  background-color: #fefeff !important;
}

.p2BYFL {
  background-color: #dedede !important;
}

@media (min-width: 576px) {
  .Nd6fRDfB {
    float: left !important;
  }
  .WludRRSAThi {
    float: right !important;
  }
  .IUU71D {
    float: none !important;
  }
  .KbLU7yHIHh {
    display: inline !important;
  }
  .bEhthCE2p {
    display: inline-block !important;
  }
  .NFOHDX05c {
    display: block !important;
  }
  .OR70fEPu5 {
    display: grid !important;
  }
  .qZ9jGmKB {
    display: table !important;
  }
  .vMcnrZq9azk {
    display: table-row !important;
  }
  .HoMa7Xj {
    display: table-cell !important;
  }
  .Tkd1pdIns4O {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .LD2DijUFrST {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .R9YR1kpga {
    display: none !important;
  }
  .oD2EXa4Ag {
    position: static !important;
  }
  .M3FgBfIuCH {
    position: absolute !important;
  }
  .Bvu6ys0zo50 {
    position: relative !important;
  }
  .Ea7rxKET {
    position: fixed !important;
  }
  .maB6CBa7v {
    position: -webkit-sticky !important;
    position: sticky !important;
  }
  .bgIWRXSg4 {
    -webkit-transform: translateX(-50%) translateY(-50%) !important;
    -ms-transform: translateX(-50%) translateY(-50%) !important;
    transform: translateX(-50%) translateY(-50%) !important;
  }
  .iI1pwQzz4w {
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
  }
  .CXPJ4dmbckN {
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
  }
  .MTJZYT {
    border: 1px solid #EEEEEE !important;
  }
  .sl88kcGeP {
    border: 0 !important;
  }
  .Wow6gaahdH {
    border-top: 1px solid #EEEEEE !important;
  }
  .g5GJhd76sb2 {
    border-top: 0 !important;
  }
  .yvgVYGufUx2 {
    border-right: 1px solid #EEEEEE !important;
  }
  .laWycI2sQ {
    border-right: 0 !important;
  }
  .q7sgCR {
    border-bottom: 1px solid #EEEEEE !important;
  }
  .IZ4irQt6Kl {
    border-bottom: 0 !important;
  }
  .xLzCRcpi {
    border-left: 1px solid #EEEEEE !important;
  }
  .K7MLtJ2kc {
    border-left: 0 !important;
  }
  .zZJbOyV {
    width: 25% !important;
  }
  .ObYaHxPNYL {
    width: 50% !important;
  }
  .JAT0ZTF02 {
    width: 75% !important;
  }
  .xWVkIk {
    width: 100% !important;
  }
  .qwny6Y {
    width: auto !important;
  }
  .Eqx2jBZ38 {
    width: 25vw !important;
  }
  .QZ1E7SA {
    width: 50vw !important;
  }
  .soKYX3 {
    width: 75vw !important;
  }
  .KGIvldvJhFO {
    width: 100vw !important;
  }
  .tL7Pkt {
    height: 25% !important;
  }
  .JXZN8e4 {
    height: 50% !important;
  }
  .jAlwwyx {
    height: 75% !important;
  }
  .Vz4WdC {
    height: 100% !important;
  }
  .ORHawmyxE {
    height: auto !important;
  }
  .oTxRQE {
    height: 25vh !important;
  }
  .ix20Mq3b {
    height: 50vh !important;
  }
  .fGkwoMm {
    height: 75vh !important;
  }
  .SKvTyabY7Un {
    height: 100vh !important;
  }
  .An3KQdXj {
    min-height: 25vh !important;
  }
  .xC35saoT {
    min-height: 50vh !important;
  }
  .Op2HXn8wXs0 {
    min-height: 75vh !important;
  }
  .mdb1tjXpiXz {
    min-height: 100vh !important;
  }
  .CJGL5UZG {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .IED66IYpj2 {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .AGgCor7v {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .C3uMuuTKWb {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .SgIZmFV1w {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .RVp9UoEQjBE {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .fYm2FqRzim {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .cQywz0pOu {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .ZrfLnmp3wN {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .TtAjQHV3 {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .blkGY2B {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .qN2h2Qb {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .hsa8HBP {
    gap: 0 !important;
  }
  .C6r69LL {
    gap: 0.25rem !important;
  }
  .ALFkkB0xbY {
    gap: 0.5rem !important;
  }
  .xhtzsG0Y2oN {
    gap: 1rem !important;
  }
  .htXFpPn7h0 {
    gap: 1.8rem !important;
  }
  .bRc6st {
    gap: 3rem !important;
  }
  .VG5y6NU9 {
    gap: 4rem !important;
  }
  .WktyRUinMZ {
    gap: 5rem !important;
  }
  .phchoQyS {
    gap: 7.5rem !important;
  }
  .SmAiGzbUoaA {
    gap: 10rem !important;
  }
  .eAjIVhJhd {
    gap: 12.5rem !important;
  }
  .JpPdXRcn6J {
    gap: 15rem !important;
  }
  .aBAq5cFd0 {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .Ijs3QT {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .XNvg7OCJMvP {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .yAszgD {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .vwH6nCt {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .orKKlK {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .ptwBbXPe {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .S3gqWJ {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .QdoGCxmO50j {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .OLwlpEC {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .h4CljxkV1bu {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .IuM8IeCYR {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .V8ot0qqh {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .DPNFaJ {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .JD5EHgtHFal {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .XhjE5p9TSI {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .nS0iphen8 {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .dtU02PUE7 {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .IUD60Ng1 {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .ZqTIA98ZN {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .gaqkB1Setf1 {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .AkHtoU3Ch {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .hyPSGhlZci {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .kpXxbZ {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .uQAfYNaOp3Z {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .E2mm9aaRQN {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .iBRhomUnS {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .reUglSu {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .CjeiSfCCGH {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .HX89IC {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .DIa93v8BhgV {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .C2stq5VHJt {
    margin: 0 !important;
  }
  .a1bc4X {
    margin: 0.25rem !important;
  }
  .VJovqrso7 {
    margin: 0.5rem !important;
  }
  .pcXug7 {
    margin: 1rem !important;
  }
  .lPA9nBixt {
    margin: 1.8rem !important;
  }
  .YJfLFAl3JTB {
    margin: 3rem !important;
  }
  .njBHzeIWyf {
    margin: 4rem !important;
  }
  .okfc14m {
    margin: 5rem !important;
  }
  .qe9DUfaYHWI {
    margin: 7.5rem !important;
  }
  .YyP8CrFF9 {
    margin: 10rem !important;
  }
  .TeORbX2lf {
    margin: 12.5rem !important;
  }
  .RCWe3VONMz3 {
    margin: 15rem !important;
  }
  .y638zDd {
    margin: auto !important;
  }
  .pwYyukB {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .V9yzEtONE {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .DmSDMUTX9l1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .xxM60g4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .SDbb80P {
    margin-right: 1.8rem !important;
    margin-left: 1.8rem !important;
  }
  .YegMzp3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .tzZRXCNg {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .gHszKKB9pQ {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .NuPp99QMb {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .KuEOWuDYfE {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .DKbACH7 {
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }
  .GueVhF0P {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .ayLV6TPBDA {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .N8NDbxTNhG {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .EddMeU {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .RJwyiuDJp {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .yR2ikU {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .gOZnKN {
    margin-top: 1.8rem !important;
    margin-bottom: 1.8rem !important;
  }
  .THThoIjoKf8 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .SQ2rz0oUt {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .fMjz2oVab {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .qJC0i2O2e4 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .M3WhHZbrll {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .tcpOua7t6qf {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }
  .qrHUSygXqh {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .cXW2MVi {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .jpJllTwxt9 {
    margin-top: 0 !important;
  }
  .qOP0kqyn {
    margin-top: 0.25rem !important;
  }
  .uyUBIyc {
    margin-top: 0.5rem !important;
  }
  .dMJ4fSD5Ehm {
    margin-top: 1rem !important;
  }
  .xnt7V1h {
    margin-top: 1.8rem !important;
  }
  .pPdhW3PiM {
    margin-top: 3rem !important;
  }
  .POqMp2lcK {
    margin-top: 4rem !important;
  }
  .pg593phzx {
    margin-top: 5rem !important;
  }
  .yRGB9627K {
    margin-top: 7.5rem !important;
  }
  .BNvHiDErM {
    margin-top: 10rem !important;
  }
  .G8Pbws {
    margin-top: 12.5rem !important;
  }
  .qLCvJ4Wxt {
    margin-top: 15rem !important;
  }
  .otCab3 {
    margin-top: auto !important;
  }
  .gZqbF6Mb5j5 {
    margin-right: 0 !important;
  }
  .yqBNKNLvKX {
    margin-right: 0.25rem !important;
  }
  .Z7PuyR {
    margin-right: 0.5rem !important;
  }
  .kXw0egvJFF5 {
    margin-right: 1rem !important;
  }
  .Y0DjDrF76 {
    margin-right: 1.8rem !important;
  }
  .aJTGXI {
    margin-right: 3rem !important;
  }
  .sa4at5w {
    margin-right: 4rem !important;
  }
  .GH0Rb0PihZI {
    margin-right: 5rem !important;
  }
  .HLmCER {
    margin-right: 7.5rem !important;
  }
  .OAeh1c5 {
    margin-right: 10rem !important;
  }
  .qSvuzY {
    margin-right: 12.5rem !important;
  }
  .MMMMtwBe9t {
    margin-right: 15rem !important;
  }
  .bGmZQYz {
    margin-right: auto !important;
  }
  .E9QvI74 {
    margin-bottom: 0 !important;
  }
  .qGAroFjCG {
    margin-bottom: 0.25rem !important;
  }
  .ySKb39ewP {
    margin-bottom: 0.5rem !important;
  }
  .BWGqvg {
    margin-bottom: 1rem !important;
  }
  .c4CE5f {
    margin-bottom: 1.8rem !important;
  }
  .ANu0EX6W6 {
    margin-bottom: 3rem !important;
  }
  .Kg1lunzav {
    margin-bottom: 4rem !important;
  }
  .gd1qZrSv0 {
    margin-bottom: 5rem !important;
  }
  .AhN2SQ {
    margin-bottom: 7.5rem !important;
  }
  .zazjspkQ3 {
    margin-bottom: 10rem !important;
  }
  .XBln88TphPb {
    margin-bottom: 12.5rem !important;
  }
  .lUKh02 {
    margin-bottom: 15rem !important;
  }
  .n9ghM1OzHxV {
    margin-bottom: auto !important;
  }
  .fIADoaL {
    margin-left: 0 !important;
  }
  .WQzRelLJsx {
    margin-left: 0.25rem !important;
  }
  .CiQGESmZ {
    margin-left: 0.5rem !important;
  }
  .lb9Lgh4Rh {
    margin-left: 1rem !important;
  }
  .UhOuiuDdj {
    margin-left: 1.8rem !important;
  }
  .sk692yRY {
    margin-left: 3rem !important;
  }
  .E99uLbWxAf {
    margin-left: 4rem !important;
  }
  .F02kbYRFNHt {
    margin-left: 5rem !important;
  }
  .d5HQPu7 {
    margin-left: 7.5rem !important;
  }
  .ZaMxDjbu53 {
    margin-left: 10rem !important;
  }
  .djIMnNbzei2 {
    margin-left: 12.5rem !important;
  }
  .VFfliz {
    margin-left: 15rem !important;
  }
  .xjhbsftWTH {
    margin-left: auto !important;
  }
  .bwWZTr00R {
    margin: -0.25rem !important;
  }
  .NWbnFg {
    margin: -0.5rem !important;
  }
  .x8IYqCw {
    margin: -1rem !important;
  }
  .IAqyxOHDp1z {
    margin: -1.8rem !important;
  }
  .ZMoyvL {
    margin: -3rem !important;
  }
  .Io12XLwm {
    margin: -4rem !important;
  }
  .xfeKOu6 {
    margin: -5rem !important;
  }
  .K87aJAN {
    margin: -7.5rem !important;
  }
  .iKpN4yd {
    margin: -10rem !important;
  }
  .jRFPIdO {
    margin: -12.5rem !important;
  }
  .XZ6wE1FffM {
    margin: -15rem !important;
  }
  .fQQl543u2 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .N2rpPb5mK {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .oJjJ2c {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .XC9WhJ {
    margin-right: -1.8rem !important;
    margin-left: -1.8rem !important;
  }
  .jZchl2lSdz {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .ZoblPWA {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .cyqi5B {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .eipM0U {
    margin-right: -7.5rem !important;
    margin-left: -7.5rem !important;
  }
  .GZhngmC {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .pzAeZxMuGH6 {
    margin-right: -12.5rem !important;
    margin-left: -12.5rem !important;
  }
  .P24RNHVejc {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .iPFBMX1gdn {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .CsxgMO {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .IlpBSBjnzP {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .CoojEIX4bJH {
    margin-top: -1.8rem !important;
    margin-bottom: -1.8rem !important;
  }
  .IMA2Spo {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .zqjznEacta {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .sGkGQAS9ee {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .USy8lsDyKAa {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }
  .wtCVnn {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .vjqSLUP {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }
  .l7ZB2N {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .hdjTHsKpcc {
    margin-top: -0.25rem !important;
  }
  .yibfYZu {
    margin-top: -0.5rem !important;
  }
  .CUAkfl0t {
    margin-top: -1rem !important;
  }
  .BmYpth590eo {
    margin-top: -1.8rem !important;
  }
  .Yii4K4U23o {
    margin-top: -3rem !important;
  }
  .dfjpMhd0f {
    margin-top: -4rem !important;
  }
  .un6h1y {
    margin-top: -5rem !important;
  }
  .NwbOItKh9 {
    margin-top: -7.5rem !important;
  }
  .rNdoXZ {
    margin-top: -10rem !important;
  }
  .sizU5J3 {
    margin-top: -12.5rem !important;
  }
  .wnQ2gjxr0M {
    margin-top: -15rem !important;
  }
  .Ztb2bxtT {
    margin-right: -0.25rem !important;
  }
  .g7mHFt {
    margin-right: -0.5rem !important;
  }
  .jD4Ie15nP {
    margin-right: -1rem !important;
  }
  .qs6EnK61d {
    margin-right: -1.8rem !important;
  }
  .Q1dLQMm3r {
    margin-right: -3rem !important;
  }
  .PmR3rZ9lhi {
    margin-right: -4rem !important;
  }
  .ElgQEWp {
    margin-right: -5rem !important;
  }
  .RhOgzYqiWfB {
    margin-right: -7.5rem !important;
  }
  .d5HqWYLtI1Z {
    margin-right: -10rem !important;
  }
  .sPTl4fRLm {
    margin-right: -12.5rem !important;
  }
  .Zud3Keawlz {
    margin-right: -15rem !important;
  }
  .WxTDsoL {
    margin-bottom: -0.25rem !important;
  }
  .gMyPNUx7cW2 {
    margin-bottom: -0.5rem !important;
  }
  .Qx6Ms93oMip {
    margin-bottom: -1rem !important;
  }
  .kZpdlp9tv {
    margin-bottom: -1.8rem !important;
  }
  .jN6RrIYu1 {
    margin-bottom: -3rem !important;
  }
  .ua5tPkHc {
    margin-bottom: -4rem !important;
  }
  .SvqBLrxB2 {
    margin-bottom: -5rem !important;
  }
  .C2noZ2Jf {
    margin-bottom: -7.5rem !important;
  }
  .kPc1xDB31 {
    margin-bottom: -10rem !important;
  }
  .kfrz3ciBU {
    margin-bottom: -12.5rem !important;
  }
  .IcGwoa {
    margin-bottom: -15rem !important;
  }
  .Zro5PCeL {
    margin-left: -0.25rem !important;
  }
  .JpqlRVFOX {
    margin-left: -0.5rem !important;
  }
  .G5ahrEKps {
    margin-left: -1rem !important;
  }
  .fFHEVsjRt {
    margin-left: -1.8rem !important;
  }
  .chqywmbazh {
    margin-left: -3rem !important;
  }
  .HzvPjcPsn {
    margin-left: -4rem !important;
  }
  .vksYBp {
    margin-left: -5rem !important;
  }
  .Uvo1GA {
    margin-left: -7.5rem !important;
  }
  .LUCmQY {
    margin-left: -10rem !important;
  }
  .slEmc2 {
    margin-left: -12.5rem !important;
  }
  .hfdK0tHqUri {
    margin-left: -15rem !important;
  }
  .wRukLGbO {
    padding: 0 !important;
  }
  .bD7VQPjUgM {
    padding: 0.25rem !important;
  }
  .fZfe0MM {
    padding: 0.5rem !important;
  }
  .gYefVeqd {
    padding: 1rem !important;
  }
  .y8TMtff1I {
    padding: 1.8rem !important;
  }
  .KHa2WhENji {
    padding: 3rem !important;
  }
  .PMmPEgz9V3 {
    padding: 4rem !important;
  }
  .VYAUbe4pWV {
    padding: 5rem !important;
  }
  .WabkBy {
    padding: 7.5rem !important;
  }
  .XyHtXWvP {
    padding: 10rem !important;
  }
  .QP9fcS3 {
    padding: 12.5rem !important;
  }
  .BusCt6 {
    padding: 15rem !important;
  }
  .U0UDUxhjYTa {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .duLFCUstb6p {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .phIgcwy {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .XeCQiEB89 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .ugS9W0m {
    padding-right: 1.8rem !important;
    padding-left: 1.8rem !important;
  }
  .GfEzo4UosIW {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .jiQPp4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .GaGtDU1I {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .E8V3pr {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .ELiNVE {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .SKfr6n {
    padding-right: 12.5rem !important;
    padding-left: 12.5rem !important;
  }
  .eyGWaGhm {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .UJAJGw {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .duGuVjD {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .InkIoJH {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .ts26u5h3ih {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .pU9BYsY {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }
  .H9wLYjR38A {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .XLTJbKa1 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .NBx7Pt {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .GgExTbgCFNn {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .xNRF900ONcE {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .kxInYeB56Tr {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }
  .YIzrcdMg1a {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .J9Dn2O {
    padding-top: 0 !important;
  }
  .CPAOZXID {
    padding-top: 0.25rem !important;
  }
  .R2ag5rS {
    padding-top: 0.5rem !important;
  }
  .ebCedjuHEA {
    padding-top: 1rem !important;
  }
  .IV7iZ44IUK {
    padding-top: 1.8rem !important;
  }
  .PqVz7PQ0tq5 {
    padding-top: 3rem !important;
  }
  .EmKy7H {
    padding-top: 4rem !important;
  }
  .VE9S5hqQaMM {
    padding-top: 5rem !important;
  }
  .kl9BwkJ6 {
    padding-top: 7.5rem !important;
  }
  .eKCJ28 {
    padding-top: 10rem !important;
  }
  .O0F6D8AhPK {
    padding-top: 12.5rem !important;
  }
  .KqDvYt {
    padding-top: 15rem !important;
  }
  .kJIHKEf1 {
    padding-right: 0 !important;
  }
  .qZLXaDhsR {
    padding-right: 0.25rem !important;
  }
  .QfUuPVVA {
    padding-right: 0.5rem !important;
  }
  .cuW6Qqa {
    padding-right: 1rem !important;
  }
  .fldAhzczZd {
    padding-right: 1.8rem !important;
  }
  .zRXoJz {
    padding-right: 3rem !important;
  }
  .RKfwnJc3HTG {
    padding-right: 4rem !important;
  }
  .uJnPhByBeT {
    padding-right: 5rem !important;
  }
  .RpgeKEour {
    padding-right: 7.5rem !important;
  }
  .AI342terR {
    padding-right: 10rem !important;
  }
  .S7Wf8Gd {
    padding-right: 12.5rem !important;
  }
  .enIjqQ {
    padding-right: 15rem !important;
  }
  .KOSOYPja6X {
    padding-bottom: 0 !important;
  }
  .A8aptz7abNo {
    padding-bottom: 0.25rem !important;
  }
  .rab3ewJvvD8 {
    padding-bottom: 0.5rem !important;
  }
  .Gn1XV9i561 {
    padding-bottom: 1rem !important;
  }
  .jZKBYfMm {
    padding-bottom: 1.8rem !important;
  }
  .DhmgRMKOF6P {
    padding-bottom: 3rem !important;
  }
  .vaDJ7V {
    padding-bottom: 4rem !important;
  }
  .ASsLQssE {
    padding-bottom: 5rem !important;
  }
  .wE675G9 {
    padding-bottom: 7.5rem !important;
  }
  .hWyi9U2SqNu {
    padding-bottom: 10rem !important;
  }
  .suAD2IoxM {
    padding-bottom: 12.5rem !important;
  }
  .TVgESQg {
    padding-bottom: 15rem !important;
  }
  .o0XYUqsM {
    padding-left: 0 !important;
  }
  .PJHte9g {
    padding-left: 0.25rem !important;
  }
  .g7hIZFwj4 {
    padding-left: 0.5rem !important;
  }
  .C7GZbE {
    padding-left: 1rem !important;
  }
  .ZfTeKsfgfO {
    padding-left: 1.8rem !important;
  }
  .JeRlfT {
    padding-left: 3rem !important;
  }
  .aeVo7Qj5T {
    padding-left: 4rem !important;
  }
  .bathSN8VI {
    padding-left: 5rem !important;
  }
  .UN8weyjV8 {
    padding-left: 7.5rem !important;
  }
  .KcDpGS {
    padding-left: 10rem !important;
  }
  .VkOf6PInDJ {
    padding-left: 12.5rem !important;
  }
  .F55arN07HL {
    padding-left: 15rem !important;
  }
  .EpJZZ990 {
    font-size: 0.69444rem !important;
  }
  .u57SZCsAG {
    font-size: 0.83333rem !important;
  }
  .bfCAB7sQxT {
    font-size: 1rem !important;
  }
  .nAkq0gY {
    font-size: 1.2rem !important;
  }
  .ilGUrJJBJU {
    font-size: 1.44rem !important;
  }
  .kUas0h5pXXY {
    font-size: 1.728rem !important;
  }
  .V12btOwi {
    font-size: 2.0736rem !important;
  }
  .W4oxp5RqoK {
    font-size: 2.48832rem !important;
  }
  .lOLyqtfSif {
    font-size: 2.98598rem !important;
  }
  .LZIyCXKeP {
    font-size: 3.58318rem !important;
  }
  .w2hukCLqgE {
    font-size: 4.29982rem !important;
  }
  .uZ91Jsjh5Kg {
    text-align: left !important;
  }
  .NzAqSRnHca {
    text-align: right !important;
  }
  .WQahQl {
    text-align: center !important;
  }
  .Bkwgk1CW {
    border-top-start-radius: 0 !important;
    border-top-end-radius: 0 !important;
  }
  .eVs11N {
    border-top-start-radius: 1.25rem !important;
    border-top-end-radius: 1.25rem !important;
  }
  .UFL7P8D4xe {
    border-top-start-radius: 0 !important;
    border-top-end-radius: 0 !important;
  }
  .TeP2Yxey {
    border-top-end-radius: 0 !important;
    border-bottom-end-radius: 0 !important;
  }
  .ZWUS7Z5Kh {
    border-top-end-radius: 1.25rem !important;
    border-bottom-end-radius: 1.25rem !important;
  }
  .TdscnmG {
    border-top-end-radius: 0 !important;
    border-bottom-end-radius: 0 !important;
  }
  .h97Q0Q4ob {
    border-bottom-end-radius: 0 !important;
    border-bottom-start-radius: 0 !important;
  }
  .rgaXM4i {
    border-bottom-end-radius: 1.25rem !important;
    border-bottom-start-radius: 1.25rem !important;
  }
  .NTyutZDR {
    border-bottom-end-radius: 0 !important;
    border-bottom-start-radius: 0 !important;
  }
  .fzDVH8En9 {
    border-bottom-start-radius: 0 !important;
    border-top-start-radius: 0 !important;
  }
  .Xkg6JXSFWqg {
    border-bottom-start-radius: 1.25rem !important;
    border-top-start-radius: 1.25rem !important;
  }
  .qZQN7mdxj9 {
    border-bottom-start-radius: 0 !important;
    border-top-start-radius: 0 !important;
  }
  .dGyWebwK {
    opacity: 0 !important;
  }
  .SoA4cyrlog {
    opacity: 0.25 !important;
  }
  .MrfhPSCmyv9 {
    opacity: 0.5 !important;
  }
  .Fl7cbU {
    opacity: 0.75 !important;
  }
  .i07PXu2 {
    opacity: 0.85 !important;
  }
  .ssVf5pvzKkf {
    opacity: 1 !important;
  }
  .cKBS5TNSn {
    color: #3c5a99 !important;
  }
  .ZZ8yxh {
    color: #dd4b39 !important;
  }
  .vmpmYeM {
    color: #1da1f2 !important;
  }
  .gTfgeVvt {
    color: #0077b5 !important;
  }
  .E0fgYrYb04l {
    color: #ff0000 !important;
  }
  .dE8jZMEhNa {
    color: #333 !important;
  }
  .BWcJoLZQag {
    color: #000 !important;
  }
  .x3VoLR {
    color: #FCFCFC !important;
  }
  .Mjd9dwo1B {
    color: #F5F5F5 !important;
  }
  .siDHPo {
    color: #EEEEEE !important;
  }
  .ptNYp7Kd {
    color: #E0E0E0 !important;
  }
  .R0MoVxe {
    color: #BDBDBD !important;
  }
  .AjpNmsc {
    color: #9E9E9E !important;
  }
  .KL4efZqg {
    color: #757575 !important;
  }
  .SgcB5vWll {
    color: #616161 !important;
  }
  .zqXGn3z53pJ {
    color: #424242 !important;
  }
  .i2uTYSIcS {
    color: #212121 !important;
  }
  .pcD9p0 {
    color: #FFFEFE !important;
  }
  .RmjmvnRyEXU {
    max-height: 25vh !important;
  }
  .rkOJpJF {
    max-height: 50vh !important;
  }
  .KP53fMVTdhz {
    max-height: 75vh !important;
  }
  .uzmwZbJo {
    max-height: 100vh !important;
  }
  .lVFciO {
    border-left: 1px solid #EEEEEE !important;
    border-right: 1px solid #EEEEEE !important;
  }
  .kNTSgL {
    border-left: 0 !important;
    border-right: 0 !important;
  }
  .ktfUgCy {
    border-top: 1px solid #EEEEEE !important;
    border-bottom: 1px solid #EEEEEE !important;
  }
  .ktJy7R6Z3 {
    border-top: 0 !important;
    border-bottom: 0 !important;
  }
  .z66PQL7kD7G {
    border: 1px dashed #EEEEEE !important;
  }
  .BlncepYw {
    border-top: 1px dashed #EEEEEE !important;
  }
  .voEyA9K {
    border-right: 1px dashed #EEEEEE !important;
  }
  .Rb5OoH {
    border-left: 1px dashed #EEEEEE !important;
  }
  .mgzTaCzpv3R {
    border-bottom: 1px dashed #EEEEEE !important;
  }
  .pbrmpgXzQd {
    border-left: 1px dashed #EEEEEE !important;
    border-right: 1px dashed #EEEEEE !important;
  }
  .dhYaYZKv {
    border-top: 1px dashed #EEEEEE !important;
    border-bottom: 1px dashed #EEEEEE !important;
  }
  .maMjI1 {
    border-radius: 0 !important;
  }
}

@media (min-width: 768px) {
  .hmAnGFZNF {
    float: left !important;
  }
  .HVKAfyLbRc5 {
    float: right !important;
  }
  .Un5SesjmlGF {
    float: none !important;
  }
  .mJyOd24urFm {
    display: inline !important;
  }
  .d4xDJbQlmrD {
    display: inline-block !important;
  }
  .FZrwihCY {
    display: block !important;
  }
  .VzYifDBC5VT {
    display: grid !important;
  }
  .PSz3C0f {
    display: table !important;
  }
  .P3CUQcNdSJJ {
    display: table-row !important;
  }
  .UgXaKafBeb {
    display: table-cell !important;
  }
  .GuqN6HUz {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .spMwAozyu {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .POlc66lhte {
    display: none !important;
  }
  .ZIQlezAd {
    position: static !important;
  }
  .cpfcM2ziZ3 {
    position: absolute !important;
  }
  .vUiC2kBL2Lu {
    position: relative !important;
  }
  .U05gZdWAPg {
    position: fixed !important;
  }
  .AJFCKf {
    position: -webkit-sticky !important;
    position: sticky !important;
  }
  .Nn013RdrbZ {
    -webkit-transform: translateX(-50%) translateY(-50%) !important;
    -ms-transform: translateX(-50%) translateY(-50%) !important;
    transform: translateX(-50%) translateY(-50%) !important;
  }
  .j59kdUd {
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
  }
  .BrL86uJ0F0 {
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
  }
  .lg07aR7Cbat {
    border: 1px solid #EEEEEE !important;
  }
  .dIE1e1dTZc {
    border: 0 !important;
  }
  .tPVJNIsb {
    border-top: 1px solid #EEEEEE !important;
  }
  .tz6nhC {
    border-top: 0 !important;
  }
  .vnbE7D {
    border-right: 1px solid #EEEEEE !important;
  }
  .XL3uoDJG {
    border-right: 0 !important;
  }
  .tz65cPuWMG {
    border-bottom: 1px solid #EEEEEE !important;
  }
  .Nq2g75 {
    border-bottom: 0 !important;
  }
  .nvB2HK {
    border-left: 1px solid #EEEEEE !important;
  }
  .kTqiEIERLAl {
    border-left: 0 !important;
  }
  .naxV5wurTf {
    width: 25% !important;
  }
  .eGFYXrHPP {
    width: 50% !important;
  }
  .aRK2BGue {
    width: 75% !important;
  }
  .g4qDdH {
    width: 100% !important;
  }
  .age4l1wAUQO {
    width: auto !important;
  }
  .xMCzWdy {
    width: 25vw !important;
  }
  .AE3rVZz {
    width: 50vw !important;
  }
  .vfQL1vh {
    width: 75vw !important;
  }
  .RjoXaUcFnT {
    width: 100vw !important;
  }
  .qcUYuVZ38 {
    height: 25% !important;
  }
  .XLfvneXX3 {
    height: 50% !important;
  }
  .xUFRuOPAfT {
    height: 75% !important;
  }
  .E1w4GYBrv2 {
    height: 100% !important;
  }
  .tPuHqTtZyK {
    height: auto !important;
  }
  .JYnpsREzg5 {
    height: 25vh !important;
  }
  .vCAXLKbCu69 {
    height: 50vh !important;
  }
  .Q8awj1wg {
    height: 75vh !important;
  }
  .wtu9Ue7n {
    height: 100vh !important;
  }
  .LCnLMLc {
    min-height: 25vh !important;
  }
  .SRivBRbSk {
    min-height: 50vh !important;
  }
  .f0Vi5pTln {
    min-height: 75vh !important;
  }
  .e7ZkZeJ {
    min-height: 100vh !important;
  }
  .Qf1p0iC {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .qOJW9kXNA3w {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .iUgOSlo49 {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .E5HezzFvsl {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .Q2VNpnl {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .hypvH39U6r {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .ivkP5vWtyp {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .renNx48 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .SBgRaEP {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .hpis9aJX {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .j9zXiqq5ybW {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .NCx4Icdy6Sb {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .loPDmw {
    gap: 0 !important;
  }
  .GAZcUoiD {
    gap: 0.25rem !important;
  }
  .SlcZpvgR {
    gap: 0.5rem !important;
  }
  .p1nhUOw7 {
    gap: 1rem !important;
  }
  .TrtPtDH {
    gap: 1.8rem !important;
  }
  .YabNUKr {
    gap: 3rem !important;
  }
  .HuUxKR {
    gap: 4rem !important;
  }
  .A9ljPHBwQLA {
    gap: 5rem !important;
  }
  .YP0cJ8c {
    gap: 7.5rem !important;
  }
  .QzkU6o1h {
    gap: 10rem !important;
  }
  .J3lPlln0FVh {
    gap: 12.5rem !important;
  }
  .oybirzQUD {
    gap: 15rem !important;
  }
  .nNdIjy7 {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .N3RnhDS8FB {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .Albtgx2zrX5 {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .Ory4dv0nWOt {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .UFf8S6Tuf1x {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .wDor7w1TEBH {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .DuEYBN {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .mQFeFXexqAk {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .rJfTKSj {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .VyfU63kcC {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .Qvkrkt7BDR {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .YAz8iCD6RhT {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .n3cMfa6 {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .m61ICQH {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .q2fmI2QIme {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .PDNvCB00B {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .iwyCLv8Hmiy {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .SCZcla {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .xga1UL {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .gk8JeQz7 {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .fui6na {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .R9TUNQo3cce {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .N02wbyJ {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .Cfq4ziEEP {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .Pc3Qtr {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .e1QoaK {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .lwws9Is {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .Mpb9JWA {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .XbG2uKa9 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .eTEHNMv3r {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .y7TCwBe {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .eEZgstxgwL {
    margin: 0 !important;
  }
  .EFCeINlm {
    margin: 0.25rem !important;
  }
  .xrWRk55H0i0 {
    margin: 0.5rem !important;
  }
  .FYOaabTV {
    margin: 1rem !important;
  }
  .lsJPSQNQoj {
    margin: 1.8rem !important;
  }
  .DNpSf3FSS {
    margin: 3rem !important;
  }
  .ctsgD646 {
    margin: 4rem !important;
  }
  .spQ1uVY {
    margin: 5rem !important;
  }
  .tF1wNA73g {
    margin: 7.5rem !important;
  }
  .Yytb5f99 {
    margin: 10rem !important;
  }
  .AZNRgrTw {
    margin: 12.5rem !important;
  }
  .Bvat9Nf {
    margin: 15rem !important;
  }
  .pHgxSONyO {
    margin: auto !important;
  }
  .PSIJPXEB8 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .H7R049mys {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .iW96NKCWvai {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .AR6BKmdqCip {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .Cy7QvWq {
    margin-right: 1.8rem !important;
    margin-left: 1.8rem !important;
  }
  .tt98ThVuK {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .yyb7RUU8 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .VnDskZ {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .iAKtBcBIp5 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .uZYs5iIPDpk {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .H7tg5Qt62 {
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }
  .MJJdnos {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .Q6rcKp8mZ {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .Va9bYxE {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .W5ftUbo {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .emtkXvzzvJW {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .eLg77V3OI6V {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .AAritUmVd {
    margin-top: 1.8rem !important;
    margin-bottom: 1.8rem !important;
  }
  .YuZKmKUzkzN {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .BefFplfs {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .scd5sZDeq4e {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .bdgBebF6 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .X9fpF1swT {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .NcKmxg {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }
  .QRbSqB {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .SpIgXBj {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .hqElXm76 {
    margin-top: 0 !important;
  }
  .yinPgEI {
    margin-top: 0.25rem !important;
  }
  .TLpN9rP4l0H {
    margin-top: 0.5rem !important;
  }
  .SZiwzQouVTa {
    margin-top: 1rem !important;
  }
  .Vwyv4Y8 {
    margin-top: 1.8rem !important;
  }
  .ysykU4AF4 {
    margin-top: 3rem !important;
  }
  .RU3pNOdfG {
    margin-top: 4rem !important;
  }
  .cciuSMnv {
    margin-top: 5rem !important;
  }
  .Mqz0Dg2d5xF {
    margin-top: 7.5rem !important;
  }
  .x1Cci3v {
    margin-top: 10rem !important;
  }
  .DDhexHHS5B {
    margin-top: 12.5rem !important;
  }
  .pwz5NNY {
    margin-top: 15rem !important;
  }
  .omxRTg9 {
    margin-top: auto !important;
  }
  .MTTLY8I {
    margin-right: 0 !important;
  }
  .HNYm22 {
    margin-right: 0.25rem !important;
  }
  .GfhAQeqasdv {
    margin-right: 0.5rem !important;
  }
  .FShcLr7n {
    margin-right: 1rem !important;
  }
  .usk6qN {
    margin-right: 1.8rem !important;
  }
  .Ru6BdAheff {
    margin-right: 3rem !important;
  }
  .DXY0fd {
    margin-right: 4rem !important;
  }
  .TmBMGaV {
    margin-right: 5rem !important;
  }
  .pg7kgMBV {
    margin-right: 7.5rem !important;
  }
  .wEr0mjbucN {
    margin-right: 10rem !important;
  }
  .zfPtMM0DMxb {
    margin-right: 12.5rem !important;
  }
  .xvwWbye {
    margin-right: 15rem !important;
  }
  .OE2go9X7P5p {
    margin-right: auto !important;
  }
  .Ugf2NNK {
    margin-bottom: 0 !important;
  }
  .qCT5GnUgcw {
    margin-bottom: 0.25rem !important;
  }
  .Q3dDm7FF {
    margin-bottom: 0.5rem !important;
  }
  .kqN4FC {
    margin-bottom: 1rem !important;
  }
  .NG88XtwapsT {
    margin-bottom: 1.8rem !important;
  }
  .B00NM5mK {
    margin-bottom: 3rem !important;
  }
  .VjlEh4 {
    margin-bottom: 4rem !important;
  }
  .pTSD8cL {
    margin-bottom: 5rem !important;
  }
  .nCkkBZ3F1 {
    margin-bottom: 7.5rem !important;
  }
  .LMOnH4sp {
    margin-bottom: 10rem !important;
  }
  .YfPT4w0kKhC {
    margin-bottom: 12.5rem !important;
  }
  .lqJat7f8 {
    margin-bottom: 15rem !important;
  }
  .ac8yGt7H2Mr {
    margin-bottom: auto !important;
  }
  .aVgVGx3LUXd {
    margin-left: 0 !important;
  }
  .xYtK8QVSYa {
    margin-left: 0.25rem !important;
  }
  .eHAAPTvwHv {
    margin-left: 0.5rem !important;
  }
  .aWWEoVe3L {
    margin-left: 1rem !important;
  }
  .EG04Ywo5Fo {
    margin-left: 1.8rem !important;
  }
  .g8ettWd0 {
    margin-left: 3rem !important;
  }
  .qA8Xe9g4K4 {
    margin-left: 4rem !important;
  }
  .P87hUCRhH {
    margin-left: 5rem !important;
  }
  .mxoAPedxB {
    margin-left: 7.5rem !important;
  }
  .cY1tc7r {
    margin-left: 10rem !important;
  }
  .sEdbnwY6cAg {
    margin-left: 12.5rem !important;
  }
  .ZrmTk250fh {
    margin-left: 15rem !important;
  }
  .WokUgGA {
    margin-left: auto !important;
  }
  .rMLD41Xmh {
    margin: -0.25rem !important;
  }
  .IZGgHEV {
    margin: -0.5rem !important;
  }
  .dZVktK {
    margin: -1rem !important;
  }
  .zQZkMz {
    margin: -1.8rem !important;
  }
  .TzdwEal {
    margin: -3rem !important;
  }
  .A1ipAwFKcF {
    margin: -4rem !important;
  }
  .GhdXjNkn {
    margin: -5rem !important;
  }
  .HoxQk1g4mnL {
    margin: -7.5rem !important;
  }
  .kRxBQe3c {
    margin: -10rem !important;
  }
  .taB532J {
    margin: -12.5rem !important;
  }
  .YYGP3Om {
    margin: -15rem !important;
  }
  .GjmbQFd {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .oq9mSR0svy {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .xiJEZJVxA {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .gz4AKuUpUx1 {
    margin-right: -1.8rem !important;
    margin-left: -1.8rem !important;
  }
  .ob1lGLxR {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .D6rt06l5pMm {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .ShcJ4SYmwy {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .EZGP8NJadh5 {
    margin-right: -7.5rem !important;
    margin-left: -7.5rem !important;
  }
  .BZTG1Hp {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .ffdhEQ {
    margin-right: -12.5rem !important;
    margin-left: -12.5rem !important;
  }
  .fIogPC {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .UAPQO2Np5 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .tm8wKYYE {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .C5BfXswoDK {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .YEHbLLw {
    margin-top: -1.8rem !important;
    margin-bottom: -1.8rem !important;
  }
  .IxGr2FYjQGb {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .DAnuw4qzRP {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .F0JbgtwMCbZ {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .GcRA0hIxH {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }
  .zvtou2urc {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .L7qa2RdN7 {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }
  .yoqJ8KX {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .fv0OkW0Y2C {
    margin-top: -0.25rem !important;
  }
  .zT4UvgGFcDK {
    margin-top: -0.5rem !important;
  }
  .XAXq1eaSY {
    margin-top: -1rem !important;
  }
  .I9dlL6RDQA {
    margin-top: -1.8rem !important;
  }
  .rHDY7jmB {
    margin-top: -3rem !important;
  }
  .VavihHLszN {
    margin-top: -4rem !important;
  }
  .IrpgFV0r {
    margin-top: -5rem !important;
  }
  .RLVrEZxpBg {
    margin-top: -7.5rem !important;
  }
  .oemYOdq {
    margin-top: -10rem !important;
  }
  .At1Kbid4lX {
    margin-top: -12.5rem !important;
  }
  .XWf1kYace {
    margin-top: -15rem !important;
  }
  .zZAudLuOyXp {
    margin-right: -0.25rem !important;
  }
  .Oquu7x {
    margin-right: -0.5rem !important;
  }
  .ugXcLygDP4 {
    margin-right: -1rem !important;
  }
  .iCj3MN3Oo {
    margin-right: -1.8rem !important;
  }
  .BzNNT10wM {
    margin-right: -3rem !important;
  }
  .HBVW1x {
    margin-right: -4rem !important;
  }
  .xAcMMZ2JfTu {
    margin-right: -5rem !important;
  }
  .b74QcSx41 {
    margin-right: -7.5rem !important;
  }
  .CDMK4an {
    margin-right: -10rem !important;
  }
  .YOOPLJ {
    margin-right: -12.5rem !important;
  }
  .UsGSnxHqY {
    margin-right: -15rem !important;
  }
  .r0hAq1F {
    margin-bottom: -0.25rem !important;
  }
  .DhIRbscc {
    margin-bottom: -0.5rem !important;
  }
  .Wqyb8p3i {
    margin-bottom: -1rem !important;
  }
  .Tb3UdWxFOhS {
    margin-bottom: -1.8rem !important;
  }
  .YLg52qNkQ {
    margin-bottom: -3rem !important;
  }
  .JD2aeB {
    margin-bottom: -4rem !important;
  }
  .eZkpgNSNi {
    margin-bottom: -5rem !important;
  }
  .mJolf8a {
    margin-bottom: -7.5rem !important;
  }
  .RqzdioBUaC2 {
    margin-bottom: -10rem !important;
  }
  .uSQsRU2 {
    margin-bottom: -12.5rem !important;
  }
  .dp3C2U9r {
    margin-bottom: -15rem !important;
  }
  .HpgVuuagDi {
    margin-left: -0.25rem !important;
  }
  .SySZCAu2CU {
    margin-left: -0.5rem !important;
  }
  .ahWlYL {
    margin-left: -1rem !important;
  }
  .a3lPP5ANMXu {
    margin-left: -1.8rem !important;
  }
  .m5iawZvj {
    margin-left: -3rem !important;
  }
  .Oi0Hsu0X {
    margin-left: -4rem !important;
  }
  .HRvmot1pLl {
    margin-left: -5rem !important;
  }
  .YsWJUe0qv {
    margin-left: -7.5rem !important;
  }
  .BS2RgW29 {
    margin-left: -10rem !important;
  }
  .vTUChVkHGY {
    margin-left: -12.5rem !important;
  }
  .pqQS42KWcy {
    margin-left: -15rem !important;
  }
  .nHTcM3JG52 {
    padding: 0 !important;
  }
  .nuirGKCw59v {
    padding: 0.25rem !important;
  }
  .MCIKMhcdn {
    padding: 0.5rem !important;
  }
  .wKvaDEL {
    padding: 1rem !important;
  }
  .uJYbQMMnp2z {
    padding: 1.8rem !important;
  }
  .Zyugrlqc {
    padding: 3rem !important;
  }
  .Sb18HtUR60x {
    padding: 4rem !important;
  }
  .BroB1G3u {
    padding: 5rem !important;
  }
  .tQ0oH2ZE {
    padding: 7.5rem !important;
  }
  .ICgTOhd {
    padding: 10rem !important;
  }
  .YNmiqA {
    padding: 12.5rem !important;
  }
  .qJG2JNb02 {
    padding: 15rem !important;
  }
  .B5qxHRyPd {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .wxnAWQUavdP {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .gQLz6s {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .LwGS8c2NgHU {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .wmG7W1Kbq {
    padding-right: 1.8rem !important;
    padding-left: 1.8rem !important;
  }
  .VXo9Q35BTX {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .SJEIcHkrO {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .U6p39pY {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .K6VTN4Sj {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .NzgAhLsiPI {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .skzQZJ {
    padding-right: 12.5rem !important;
    padding-left: 12.5rem !important;
  }
  .fVmWJ9 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .LMttaEjT {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .O9cFBaJLbP {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .yaFfbXubbjD {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .PFbzLs6AOF {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .OMIczBuFJ {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }
  .NLofEaiMh {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .LeOAXG4jtH {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .YLurZo6hAGG {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .qDIRv7D {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .FbnHTZrMIk {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .eipxXheHn {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }
  .hopjWea {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .Qfl9fi {
    padding-top: 0 !important;
  }
  .IeqapjqE8q {
    padding-top: 0.25rem !important;
  }
  .xDS7EtuKE {
    padding-top: 0.5rem !important;
  }
  .m7nTupfjMk {
    padding-top: 1rem !important;
  }
  .MHCHVdot {
    padding-top: 1.8rem !important;
  }
  .HhcAnI {
    padding-top: 3rem !important;
  }
  .SBeOlC {
    padding-top: 4rem !important;
  }
  .bskIwEx {
    padding-top: 5rem !important;
  }
  .rgetV7Cqta {
    padding-top: 7.5rem !important;
  }
  .BSfqnLjQ2 {
    padding-top: 10rem !important;
  }
  .xwvNAMi {
    padding-top: 12.5rem !important;
  }
  .QUwpb5m1z {
    padding-top: 15rem !important;
  }
  .qg7J66pM {
    padding-right: 0 !important;
  }
  .SIO76l {
    padding-right: 0.25rem !important;
  }
  .VeIkUL {
    padding-right: 0.5rem !important;
  }
  .ozaZTRqfzW {
    padding-right: 1rem !important;
  }
  .GQuQeIEjLjU {
    padding-right: 1.8rem !important;
  }
  .lfjTii {
    padding-right: 3rem !important;
  }
  .GymyjoKOvb {
    padding-right: 4rem !important;
  }
  .X2bqaRyr {
    padding-right: 5rem !important;
  }
  .sphIbybF {
    padding-right: 7.5rem !important;
  }
  .qeHMJ5zsKwY {
    padding-right: 10rem !important;
  }
  .QfaTxFNa {
    padding-right: 12.5rem !important;
  }
  .VbBv4n {
    padding-right: 15rem !important;
  }
  .WBV54d3 {
    padding-bottom: 0 !important;
  }
  .lQCI4AX {
    padding-bottom: 0.25rem !important;
  }
  .LtKaw10OHV {
    padding-bottom: 0.5rem !important;
  }
  .IBVoR9JyaeV {
    padding-bottom: 1rem !important;
  }
  .RIqPX1hm {
    padding-bottom: 1.8rem !important;
  }
  .SUSh1Cha {
    padding-bottom: 3rem !important;
  }
  .dOmQ8Hmf {
    padding-bottom: 4rem !important;
  }
  .DfcrqaseD {
    padding-bottom: 5rem !important;
  }
  .pCm0eXi {
    padding-bottom: 7.5rem !important;
  }
  .ZWmBLpM999P {
    padding-bottom: 10rem !important;
  }
  .Bl1ed5X {
    padding-bottom: 12.5rem !important;
  }
  .wPKAA2RzJ {
    padding-bottom: 15rem !important;
  }
  .HqBnm20kDi {
    padding-left: 0 !important;
  }
  .DQGYho13ymw {
    padding-left: 0.25rem !important;
  }
  .XRtHexiYnH {
    padding-left: 0.5rem !important;
  }
  .raVb6dt {
    padding-left: 1rem !important;
  }
  .v3gLLc {
    padding-left: 1.8rem !important;
  }
  .Y7ax2w1k9 {
    padding-left: 3rem !important;
  }
  .ZN5AvqyTe4V {
    padding-left: 4rem !important;
  }
  .Y5ZpEBmqXFU {
    padding-left: 5rem !important;
  }
  .IDNXysjK5Wq {
    padding-left: 7.5rem !important;
  }
  .yOIGOBVEBWj {
    padding-left: 10rem !important;
  }
  .otBtj724 {
    padding-left: 12.5rem !important;
  }
  .PTp8ldo {
    padding-left: 15rem !important;
  }
  .s1jM5R876 {
    font-size: 0.69444rem !important;
  }
  .wNeJHzaIE7 {
    font-size: 0.83333rem !important;
  }
  .r0rf6r2 {
    font-size: 1rem !important;
  }
  .Ba1snBKyfeV {
    font-size: 1.2rem !important;
  }
  .X1dAeosTC5B {
    font-size: 1.44rem !important;
  }
  .kVTwfTp {
    font-size: 1.728rem !important;
  }
  .YCCQNbhgS {
    font-size: 2.0736rem !important;
  }
  .Dh2lXYe {
    font-size: 2.48832rem !important;
  }
  .EUnZJYrS {
    font-size: 2.98598rem !important;
  }
  .zCaq8kbrYE {
    font-size: 3.58318rem !important;
  }
  .GlcqwY0OcTl {
    font-size: 4.29982rem !important;
  }
  .Z9N7j0 {
    text-align: left !important;
  }
  .izKwOpfTgiH {
    text-align: right !important;
  }
  .RlJK0epw {
    text-align: center !important;
  }
  .JyKfwVv {
    border-top-start-radius: 0 !important;
    border-top-end-radius: 0 !important;
  }
  .nwFiBsOV {
    border-top-start-radius: 1.25rem !important;
    border-top-end-radius: 1.25rem !important;
  }
  .oH7pcT {
    border-top-start-radius: 0 !important;
    border-top-end-radius: 0 !important;
  }
  .yP3TL6aUjmF {
    border-top-end-radius: 0 !important;
    border-bottom-end-radius: 0 !important;
  }
  .Sm9FPXxbJgf {
    border-top-end-radius: 1.25rem !important;
    border-bottom-end-radius: 1.25rem !important;
  }
  .gIcEietK6 {
    border-top-end-radius: 0 !important;
    border-bottom-end-radius: 0 !important;
  }
  .t4WBzY5 {
    border-bottom-end-radius: 0 !important;
    border-bottom-start-radius: 0 !important;
  }
  .xVav5S {
    border-bottom-end-radius: 1.25rem !important;
    border-bottom-start-radius: 1.25rem !important;
  }
  .ddo0cpHgE4S {
    border-bottom-end-radius: 0 !important;
    border-bottom-start-radius: 0 !important;
  }
  .zLs63rDYGkd {
    border-bottom-start-radius: 0 !important;
    border-top-start-radius: 0 !important;
  }
  .LV3weJIOl {
    border-bottom-start-radius: 1.25rem !important;
    border-top-start-radius: 1.25rem !important;
  }
  .rfoWjc {
    border-bottom-start-radius: 0 !important;
    border-top-start-radius: 0 !important;
  }
  .AWDkhZb {
    opacity: 0 !important;
  }
  .CxfXpo {
    opacity: 0.25 !important;
  }
  .XiJ25h {
    opacity: 0.5 !important;
  }
  .OBKBe2L {
    opacity: 0.75 !important;
  }
  .ITIobGu0sm {
    opacity: 0.85 !important;
  }
  .nOcBdzb4llB {
    opacity: 1 !important;
  }
  .qASz0o {
    color: #3c5a99 !important;
  }
  .V2f0HXjQcRo {
    color: #dd4b39 !important;
  }
  .qDe1xQYMd {
    color: #1da1f2 !important;
  }
  .KTeJkrIbnA {
    color: #0077b5 !important;
  }
  .FDH0JFM {
    color: #ff0000 !important;
  }
  .LYxNWW {
    color: #333 !important;
  }
  .qXj05F2 {
    color: #000 !important;
  }
  .yLRfOy {
    color: #FCFCFC !important;
  }
  .Dh7VWp8jR {
    color: #F5F5F5 !important;
  }
  .OB5PlKIk {
    color: #EEEEEE !important;
  }
  .K895GV2 {
    color: #E0E0E0 !important;
  }
  .TcHAi7 {
    color: #BDBDBD !important;
  }
  .UsSTIaXgw {
    color: #9E9E9E !important;
  }
  .zNMtRRgbr {
    color: #757575 !important;
  }
  .f1OBEeb2H {
    color: #616161 !important;
  }
  .ypyY9VJlg {
    color: #424242 !important;
  }
  .H8J9AVJYq {
    color: #212121 !important;
  }
  .eWdKvkx {
    color: #FFFEFE !important;
  }
  .PJUO8a0 {
    max-height: 25vh !important;
  }
  .EPBihT {
    max-height: 50vh !important;
  }
  .Wy7aB62TT7R {
    max-height: 75vh !important;
  }
  .GqOU4ebw {
    max-height: 100vh !important;
  }
  .iiG6UU {
    border-left: 1px solid #EEEEEE !important;
    border-right: 1px solid #EEEEEE !important;
  }
  .MqlW3uH {
    border-left: 0 !important;
    border-right: 0 !important;
  }
  .P0XF2W {
    border-top: 1px solid #EEEEEE !important;
    border-bottom: 1px solid #EEEEEE !important;
  }
  .DdVSUSBr1v0 {
    border-top: 0 !important;
    border-bottom: 0 !important;
  }
  .mikL4CTd {
    border: 1px dashed #EEEEEE !important;
  }
  .re8e0o9SF {
    border-top: 1px dashed #EEEEEE !important;
  }
  .YXexWhMVF {
    border-right: 1px dashed #EEEEEE !important;
  }
  .wSml3nOi {
    border-left: 1px dashed #EEEEEE !important;
  }
  .aCTuYrx {
    border-bottom: 1px dashed #EEEEEE !important;
  }
  .Usc6ed {
    border-left: 1px dashed #EEEEEE !important;
    border-right: 1px dashed #EEEEEE !important;
  }
  .itJdvf {
    border-top: 1px dashed #EEEEEE !important;
    border-bottom: 1px dashed #EEEEEE !important;
  }
  .d6uebN {
    border-radius: 0 !important;
  }
}

@media (min-width: 992px) {
  .DcJ71Zks {
    float: left !important;
  }
  .wZJcetQK {
    float: right !important;
  }
  .WEzBOMoSUn {
    float: none !important;
  }
  .pdDeicvtZV {
    display: inline !important;
  }
  .Rl5AejyhICv {
    display: inline-block !important;
  }
  .VC0b3sJ3d {
    display: block !important;
  }
  .vTp5I8 {
    display: grid !important;
  }
  .Gt4Icu {
    display: table !important;
  }
  .wteNyl {
    display: table-row !important;
  }
  .xGwS2qo {
    display: table-cell !important;
  }
  .Rsrlpf {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .h6DEAmbU {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .KrV2yQRM {
    display: none !important;
  }
  .sDyHq25 {
    position: static !important;
  }
  .LnbNaJCeLUZ {
    position: absolute !important;
  }
  .L4EkiY7V8 {
    position: relative !important;
  }
  .hsswF5wj {
    position: fixed !important;
  }
  .jxfYlaetsi {
    position: -webkit-sticky !important;
    position: sticky !important;
  }
  .S1X26CH {
    -webkit-transform: translateX(-50%) translateY(-50%) !important;
    -ms-transform: translateX(-50%) translateY(-50%) !important;
    transform: translateX(-50%) translateY(-50%) !important;
  }
  .bamv6IA1Q2P {
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
  }
  .TuwuChj7kw {
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
  }
  .border-lg {
    border: 1px solid #EEEEEE !important;
  }
  .border-lg-0 {
    border: 0 !important;
  }
  .Zz3M0sN {
    border-top: 1px solid #EEEEEE !important;
  }
  .qlsxJ2h {
    border-top: 0 !important;
  }
  .h8LxvYVg {
    border-right: 1px solid #EEEEEE !important;
  }
  .pUP8FkL9 {
    border-right: 0 !important;
  }
  .FYszDOmpp {
    border-bottom: 1px solid #EEEEEE !important;
  }
  .Sjq5jGmJbW {
    border-bottom: 0 !important;
  }
  .ZVX5KiUPohP {
    border-left: 1px solid #EEEEEE !important;
  }
  .VYNYibi9lM {
    border-left: 0 !important;
  }
  .vHRf7l {
    width: 25% !important;
  }
  .oKTrlSgsUEN {
    width: 50% !important;
  }
  .adWWoVk {
    width: 75% !important;
  }
  .oXXylYDHA {
    width: 100% !important;
  }
  .D8ZVzRhaf {
    width: auto !important;
  }
  .AXtm3S {
    width: 25vw !important;
  }
  .CSL3RKc {
    width: 50vw !important;
  }
  .ildZY7WO {
    width: 75vw !important;
  }
  .CzVhbl {
    width: 100vw !important;
  }
  .FrAxQrp2Co {
    height: 25% !important;
  }
  .YeV2Qf6Z {
    height: 50% !important;
  }
  .krZjeG6Y8 {
    height: 75% !important;
  }
  .rIa9Zo {
    height: 100% !important;
  }
  .stEdvlEdU {
    height: auto !important;
  }
  .tT3I34 {
    height: 25vh !important;
  }
  .C9GIhx175x {
    height: 50vh !important;
  }
  .dMI5TUs {
    height: 75vh !important;
  }
  .wJMgR4f8hPM {
    height: 100vh !important;
  }
  .MmtmyOU {
    min-height: 25vh !important;
  }
  .P4fpIX {
    min-height: 50vh !important;
  }
  .cyieJgoFxC {
    min-height: 75vh !important;
  }
  .C0dy29Mx35q {
    min-height: 100vh !important;
  }
  .Ijf9etU {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .tMmPoIxtI {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .lQiFpTJ {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .F7P1Q7P3 {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .g9zLpv1xXX {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .XG6ZgsU {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .UaikhVMAj {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .oH4nVacum {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .WUxfmn {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .yUfigL {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .W3F9SA {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .eRNeNFUfUeU {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .CK7SNfA {
    gap: 0 !important;
  }
  .TmUmTmvkFZI {
    gap: 0.25rem !important;
  }
  .GBTCLp8NQl {
    gap: 0.5rem !important;
  }
  .uHexcj9 {
    gap: 1rem !important;
  }
  .I5rlaZ8fY8 {
    gap: 1.8rem !important;
  }
  .nIbOUgQcAB0 {
    gap: 3rem !important;
  }
  .n5BTHfiEM {
    gap: 4rem !important;
  }
  .Erf1Jl2aY {
    gap: 5rem !important;
  }
  .Zf2M78kEzCY {
    gap: 7.5rem !important;
  }
  .IVGdwX {
    gap: 10rem !important;
  }
  .RScrhfD {
    gap: 12.5rem !important;
  }
  .iD2y0XDl {
    gap: 15rem !important;
  }
  .SNYev0 {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .rod6num2qo {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .EAncU7NEY {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .n8f87q3 {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .dipGyFB {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .aFvmK85Vzx {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .LSVRhdz2 {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .SODjAgxmHOK {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .kxfdHNXF9 {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .wVpH3ON {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .vrY0lM {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .VZvQ9pELA5 {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .IhD4fb {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .s8QWGG {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .K1Nx0r {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .ZBJ5t3u {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .ncHKRj {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .uSVk6iZcgM {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .I4WdeB7N {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .MQDWP9 {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .VRmWkacyqLw {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .UuXFKw {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .dwkg6Wpn {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .E5ursBZ {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .me72sNJfg {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .i8OaBoO {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .ePlXGg0jv {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .UbSSdr6JYE {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .XPo9M9ksLjB {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .BMJmNJka {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .CGaee7bm {
    margin: 0 !important;
  }
  .X8ZbKYZmEIf {
    margin: 0.25rem !important;
  }
  .oCawX6 {
    margin: 0.5rem !important;
  }
  .QY7frhqm {
    margin: 1rem !important;
  }
  .eLXhifa9C {
    margin: 1.8rem !important;
  }
  .byBtdU {
    margin: 3rem !important;
  }
  .rnbiGSn57 {
    margin: 4rem !important;
  }
  .V1kWp2vh {
    margin: 5rem !important;
  }
  .JFvORBBQGF {
    margin: 7.5rem !important;
  }
  .CbxWUWaLc {
    margin: 10rem !important;
  }
  .U6uCRa {
    margin: 12.5rem !important;
  }
  .scsTtWiOPS {
    margin: 15rem !important;
  }
  .r6dhjG9 {
    margin: auto !important;
  }
  .eoe1O0r {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .eWbPokj {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .z6ujs4 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .hj2sR25hE {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .XTmgukG {
    margin-right: 1.8rem !important;
    margin-left: 1.8rem !important;
  }
  .NLI8JTm {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .bnD9vjs {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .qcBrv8p8vlw {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .UJKTpcee7c7 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .ui4Ns7Bf6l {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .SeCC3hIx {
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }
  .kLMrc70mn {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .Au1TTdGOxT {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .kjLFcoMS {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .wUvDX9YxM {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .HAhhao {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .NEyTbEECS {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .Upc7U67m {
    margin-top: 1.8rem !important;
    margin-bottom: 1.8rem !important;
  }
  .VKDQyCwfH7Z {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .fFvYVo {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .VWamrL {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .b52hlwZh {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .eragVUtk5E {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .CbwNGzEV6 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }
  .iV6S4f5pW {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .Pc1Sjsash {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .JZcoJTnaZ {
    margin-top: 0.25rem !important;
  }
  .v5XHf2VbpdS {
    margin-top: 0.5rem !important;
  }
  .KROWnewky {
    margin-top: 1rem !important;
  }
  .FV1pAgB70 {
    margin-top: 1.8rem !important;
  }
  .oOVUC55 {
    margin-top: 3rem !important;
  }
  .XZwQ235V {
    margin-top: 4rem !important;
  }
  .t36VH7PKpg {
    margin-top: 5rem !important;
  }
  .zhbtZP4sM {
    margin-top: 7.5rem !important;
  }
  .LweIq5g {
    margin-top: 10rem !important;
  }
  .GKPs4MnJm9 {
    margin-top: 12.5rem !important;
  }
  .EziDrV {
    margin-top: 15rem !important;
  }
  .RW0BAf {
    margin-top: auto !important;
  }
  .OzZWiVPyf {
    margin-right: 0 !important;
  }
  .b4jc5O {
    margin-right: 0.25rem !important;
  }
  .dwrEYV {
    margin-right: 0.5rem !important;
  }
  .yqYpIWRHA {
    margin-right: 1rem !important;
  }
  .W57AB7k26Sl {
    margin-right: 1.8rem !important;
  }
  .Ut3b3IM3kHb {
    margin-right: 3rem !important;
  }
  .ccDsrwIxV {
    margin-right: 4rem !important;
  }
  .R0tLN8ozO6v {
    margin-right: 5rem !important;
  }
  .gSTWEFr {
    margin-right: 7.5rem !important;
  }
  .cRxDfifdI {
    margin-right: 10rem !important;
  }
  .lWge9qJdYiR {
    margin-right: 12.5rem !important;
  }
  .IiRZjc {
    margin-right: 15rem !important;
  }
  .A7xP7i8Nz {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .bymlfA0 {
    margin-bottom: 0.25rem !important;
  }
  .cGYZtWG1R {
    margin-bottom: 0.5rem !important;
  }
  .xzHP5KU {
    margin-bottom: 1rem !important;
  }
  .a3Yx4B {
    margin-bottom: 1.8rem !important;
  }
  .RQ01zDw {
    margin-bottom: 3rem !important;
  }
  .OoRtb5W5W {
    margin-bottom: 4rem !important;
  }
  .ogbm5p {
    margin-bottom: 5rem !important;
  }
  .vBE5vgrC {
    margin-bottom: 7.5rem !important;
  }
  .SRSOn5dNJ {
    margin-bottom: 10rem !important;
  }
  .Q4iNOYP5xsy {
    margin-bottom: 12.5rem !important;
  }
  .XEt6OVWKcR {
    margin-bottom: 15rem !important;
  }
  .oqW3SBIY {
    margin-bottom: auto !important;
  }
  .yI5WoD {
    margin-left: 0 !important;
  }
  .opP4cMiDRXh {
    margin-left: 0.25rem !important;
  }
  .nReVCyMq {
    margin-left: 0.5rem !important;
  }
  .zJY3BYgFLe {
    margin-left: 1rem !important;
  }
  .LkNUxx {
    margin-left: 1.8rem !important;
  }
  .hb78GbwE {
    margin-left: 3rem !important;
  }
  .luE0a0njF {
    margin-left: 4rem !important;
  }
  .S21ByR83h {
    margin-left: 5rem !important;
  }
  .ZQT7gDWUrC {
    margin-left: 7.5rem !important;
  }
  .ALt7lr {
    margin-left: 10rem !important;
  }
  .z39Aai5Mb {
    margin-left: 12.5rem !important;
  }
  .uoVI3fK5Q {
    margin-left: 15rem !important;
  }
  .W8G7SVg {
    margin-left: auto !important;
  }
  .SESuevzMM {
    margin: -0.25rem !important;
  }
  .cXd9qAlVD {
    margin: -0.5rem !important;
  }
  .uBiKpsxlD {
    margin: -1rem !important;
  }
  .aGO3a8Lw {
    margin: -1.8rem !important;
  }
  .MA7vPm5X {
    margin: -3rem !important;
  }
  .QpOHfNBmJiU {
    margin: -4rem !important;
  }
  .tDchrlx {
    margin: -5rem !important;
  }
  .joFxBY {
    margin: -7.5rem !important;
  }
  .aE2AJX {
    margin: -10rem !important;
  }
  .vEXR5JE {
    margin: -12.5rem !important;
  }
  .y1xG54 {
    margin: -15rem !important;
  }
  .BsQ0b4u {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .IPagftAZIwq {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .fZDnx7 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .wSyKaLXNUj3 {
    margin-right: -1.8rem !important;
    margin-left: -1.8rem !important;
  }
  .iCfqbB8m {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .HfZg2uW {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .FAanE7eWV {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .ilxwcxk3 {
    margin-right: -7.5rem !important;
    margin-left: -7.5rem !important;
  }
  .qAxac7tt {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .cXm4aBdTE {
    margin-right: -12.5rem !important;
    margin-left: -12.5rem !important;
  }
  .TbADQsfdG {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .K3GSYigK {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .ECjJMj9YMzd {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .f4FKGZ {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .yrB0jGXXhBa {
    margin-top: -1.8rem !important;
    margin-bottom: -1.8rem !important;
  }
  .l7N6bXnXF {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .QRP4IbVP {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .iWeJBsyIS {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .CMmJ838T884 {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }
  .MbtAn7JXKOQ {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .oH1uJQrV {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }
  .V0bNjygASi {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .ncZFxEbv {
    margin-top: -0.25rem !important;
  }
  .MJy9xcb8q {
    margin-top: -0.5rem !important;
  }
  .VE7NMK7NL {
    margin-top: -1rem !important;
  }
  .HjvBrLsV6m7 {
    margin-top: -1.8rem !important;
  }
  .kOMSm0N89S {
    margin-top: -3rem !important;
  }
  .VoPs0hXLEh {
    margin-top: -4rem !important;
  }
  .Bgcd1jC {
    margin-top: -5rem !important;
  }
  .gcq8M70 {
    margin-top: -7.5rem !important;
  }
  .bbVYgezyR {
    margin-top: -10rem !important;
  }
  .qivJLw {
    margin-top: -12.5rem !important;
  }
  .G3chga {
    margin-top: -15rem !important;
  }
  .L6SEQxc {
    margin-right: -0.25rem !important;
  }
  .tZBqnK {
    margin-right: -0.5rem !important;
  }
  .xu5wN2AD7j {
    margin-right: -1rem !important;
  }
  .r616MOea91 {
    margin-right: -1.8rem !important;
  }
  .L9hvmXJI {
    margin-right: -3rem !important;
  }
  .LDoccS {
    margin-right: -4rem !important;
  }
  .udl3jzAts8 {
    margin-right: -5rem !important;
  }
  .HaDzOFDhpx0 {
    margin-right: -7.5rem !important;
  }
  .P8XwJIm {
    margin-right: -10rem !important;
  }
  .jcCHRH {
    margin-right: -12.5rem !important;
  }
  .RTaEb3cB7Tf {
    margin-right: -15rem !important;
  }
  .KKftzCcH5 {
    margin-bottom: -0.25rem !important;
  }
  .YOgxOavqj {
    margin-bottom: -0.5rem !important;
  }
  .UiPuectOScb {
    margin-bottom: -1rem !important;
  }
  .sVpbs8i {
    margin-bottom: -1.8rem !important;
  }
  .a5r1YI {
    margin-bottom: -3rem !important;
  }
  .ykqgL5f5bm {
    margin-bottom: -4rem !important;
  }
  .mikbVLhS {
    margin-bottom: -5rem !important;
  }
  .T4pLCsDB {
    margin-bottom: -7.5rem !important;
  }
  .K4LYiwcsgZ {
    margin-bottom: -10rem !important;
  }
  .CtqUi0e8 {
    margin-bottom: -12.5rem !important;
  }
  .i3zUJUV {
    margin-bottom: -15rem !important;
  }
  .xGMElcdhSdv {
    margin-left: -0.25rem !important;
  }
  .UYN8Y9ObB {
    margin-left: -0.5rem !important;
  }
  .fIOW3K17M {
    margin-left: -1rem !important;
  }
  .ZXohZzq1lm2 {
    margin-left: -1.8rem !important;
  }
  .bg6R7fwVt {
    margin-left: -3rem !important;
  }
  .e4l1YtKPz3s {
    margin-left: -4rem !important;
  }
  .cWjvVa {
    margin-left: -5rem !important;
  }
  .mFdc3gU6pl {
    margin-left: -7.5rem !important;
  }
  .B5ohnnb {
    margin-left: -10rem !important;
  }
  .po5BYmho5 {
    margin-left: -12.5rem !important;
  }
  .egxVn1Ux6qX {
    margin-left: -15rem !important;
  }
  .ScG3EXn {
    padding: 0 !important;
  }
  .LqYu0cdpa {
    padding: 0.25rem !important;
  }
  .rdaHunfpTF {
    padding: 0.5rem !important;
  }
  .EX7RKaoBl {
    padding: 1rem !important;
  }
  .kHmWOFx7zGk {
    padding: 1.8rem !important;
  }
  .ySjj9Z {
    padding: 3rem !important;
  }
  .dUZlVN8d {
    padding: 4rem !important;
  }
  .uEymoU {
    padding: 5rem !important;
  }
  .pUZEbWW8 {
    padding: 7.5rem !important;
  }
  .m9FE8r {
    padding: 10rem !important;
  }
  .KuSNLA {
    padding: 12.5rem !important;
  }
  .Ad7MzTD {
    padding: 15rem !important;
  }
  .Ne95LNHdgi6 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .bHCniDO {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .WXg4YaaoNjD {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .CyOq5HObFlj {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .m1vntiA8 {
    padding-right: 1.8rem !important;
    padding-left: 1.8rem !important;
  }
  .n5a44lJMq {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .o3hMRy4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .SFyMB3Qzp {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .mwrX9GvmZM {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .EjMFq9Bnyev {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .fRquci {
    padding-right: 12.5rem !important;
    padding-left: 12.5rem !important;
  }
  .ASeJ2xTKDRT {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .xo7l3gTjBOF {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .QdhEdO {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .t72mcyecZEq {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .vJwE1K3vHA {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .ODK4Kx6 {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }
  .lGaYUJo3j {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .DeIl2sLd {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .Qcwzo1 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .INi9FP {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .Ute0gGc0Bc {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .vO6KLghlAs {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }
  .HgiBYOOw5r {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .LOGbWr7 {
    padding-top: 0 !important;
  }
  .irIiPxIUn {
    padding-top: 0.25rem !important;
  }
  .SGPKANI {
    padding-top: 0.5rem !important;
  }
  .ibT8w7CgV {
    padding-top: 1rem !important;
  }
  .VgcydlX {
    padding-top: 1.8rem !important;
  }
  .iu4LBP09 {
    padding-top: 3rem !important;
  }
  .P9fGm5PbK {
    padding-top: 4rem !important;
  }
  .sJNY7DUM {
    padding-top: 5rem !important;
  }
  .HHt7rpk {
    padding-top: 7.5rem !important;
  }
  .ov3rVXw {
    padding-top: 10rem !important;
  }
  .IEdrduu5lqh {
    padding-top: 12.5rem !important;
  }
  .KdPO5hiECJ3 {
    padding-top: 15rem !important;
  }
  .nGU6brpOP {
    padding-right: 0 !important;
  }
  .WHdSDva0SR {
    padding-right: 0.25rem !important;
  }
  .LqFTy0DLHoh {
    padding-right: 0.5rem !important;
  }
  .akD5wRA9 {
    padding-right: 1rem !important;
  }
  .OUMTG0 {
    padding-right: 1.8rem !important;
  }
  .LIBYMn41E9 {
    padding-right: 3rem !important;
  }
  .IGXPt6bTZ9 {
    padding-right: 4rem !important;
  }
  .TbY1GA {
    padding-right: 5rem !important;
  }
  .BlZUbHz {
    padding-right: 7.5rem !important;
  }
  .FQbWAm {
    padding-right: 10rem !important;
  }
  .C7NysQ0 {
    padding-right: 12.5rem !important;
  }
  .p7mdKjxMD {
    padding-right: 15rem !important;
  }
  .gW1PE0JnkC {
    padding-bottom: 0 !important;
  }
  .Jv0Ods {
    padding-bottom: 0.25rem !important;
  }
  .LhLTNHb {
    padding-bottom: 0.5rem !important;
  }
  .hOSIAa {
    padding-bottom: 1rem !important;
  }
  .JphOi4Gaje {
    padding-bottom: 1.8rem !important;
  }
  .onhEBaUC {
    padding-bottom: 3rem !important;
  }
  .fII4jr2J {
    padding-bottom: 4rem !important;
  }
  .ROPICHqc4 {
    padding-bottom: 5rem !important;
  }
  .wySzeM9J {
    padding-bottom: 7.5rem !important;
  }
  .FEncIkjN {
    padding-bottom: 10rem !important;
  }
  .c6FIDC0 {
    padding-bottom: 12.5rem !important;
  }
  .Yb7WNO {
    padding-bottom: 15rem !important;
  }
  .GcPTOaFS6Os {
    padding-left: 0 !important;
  }
  .mMcAlbqA {
    padding-left: 0.25rem !important;
  }
  .nIJEMuHJ {
    padding-left: 0.5rem !important;
  }
  .laN03h {
    padding-left: 1rem !important;
  }
  .GuE2AR {
    padding-left: 1.8rem !important;
  }
  .AP4Szm {
    padding-left: 3rem !important;
  }
  .IiJcj19pB4 {
    padding-left: 4rem !important;
  }
  .T3PXt9mN05 {
    padding-left: 5rem !important;
  }
  .zeWnsuEI6T {
    padding-left: 7.5rem !important;
  }
  .j8DNCF {
    padding-left: 10rem !important;
  }
  .d1XUjem1dJ {
    padding-left: 12.5rem !important;
  }
  .lT9V8ZWIR {
    padding-left: 15rem !important;
  }
  .kO41NG6Efbm {
    font-size: 0.69444rem !important;
  }
  .P0fN4xAwRxL {
    font-size: 0.83333rem !important;
  }
  .McsRxtaAId {
    font-size: 1rem !important;
  }
  .B2xcye {
    font-size: 1.2rem !important;
  }
  .PkWVdqiq {
    font-size: 1.44rem !important;
  }
  .sN6hpD9L9Oe {
    font-size: 1.728rem !important;
  }
  .ryOzblRPED {
    font-size: 2.0736rem !important;
  }
  .C6ZEvNQMOW7 {
    font-size: 2.48832rem !important;
  }
  .RM8QUy1Mb {
    font-size: 2.98598rem !important;
  }
  .gflPNY {
    font-size: 3.58318rem !important;
  }
  .t8E1n8bXt {
    font-size: 4.29982rem !important;
  }
  .UonldsgfwY {
    text-align: left !important;
  }
  .Dvgja5 {
    text-align: right !important;
  }
  .QfpRftd8k {
    text-align: center !important;
  }
  .UrVyopL {
    border-top-start-radius: 0 !important;
    border-top-end-radius: 0 !important;
  }
  .ZzG00Nvtb5T {
    border-top-start-radius: 1.25rem !important;
    border-top-end-radius: 1.25rem !important;
  }
  .Uaj80b {
    border-top-start-radius: 0 !important;
    border-top-end-radius: 0 !important;
  }
  .nx8kkL {
    border-top-end-radius: 0 !important;
    border-bottom-end-radius: 0 !important;
  }
  .OmKacuubeX {
    border-top-end-radius: 1.25rem !important;
    border-bottom-end-radius: 1.25rem !important;
  }
  .Oq4KJv6iD {
    border-top-end-radius: 0 !important;
    border-bottom-end-radius: 0 !important;
  }
  .KX6Og1 {
    border-bottom-end-radius: 0 !important;
    border-bottom-start-radius: 0 !important;
  }
  .xSLPSGD5grx {
    border-bottom-end-radius: 1.25rem !important;
    border-bottom-start-radius: 1.25rem !important;
  }
  .cVwDRM {
    border-bottom-end-radius: 0 !important;
    border-bottom-start-radius: 0 !important;
  }
  .GeIoyRe {
    border-bottom-start-radius: 0 !important;
    border-top-start-radius: 0 !important;
  }
  .QpRzo5GeTTs {
    border-bottom-start-radius: 1.25rem !important;
    border-top-start-radius: 1.25rem !important;
  }
  .NXJbv7k {
    border-bottom-start-radius: 0 !important;
    border-top-start-radius: 0 !important;
  }
  .ieo4oN81 {
    opacity: 0 !important;
  }
  .oBZY8hb3 {
    opacity: 0.25 !important;
  }
  .NCB7csulB {
    opacity: 0.5 !important;
  }
  .ogpizqYDsj {
    opacity: 0.75 !important;
  }
  .icBsV0ls {
    opacity: 0.85 !important;
  }
  .o4aFLvwd {
    opacity: 1 !important;
  }
  .uoEDsY8p {
    color: #3c5a99 !important;
  }
  .vD7anB4f {
    color: #dd4b39 !important;
  }
  .sM2dKJ6q {
    color: #1da1f2 !important;
  }
  .YfPRSXEh {
    color: #0077b5 !important;
  }
  .S4chxF {
    color: #ff0000 !important;
  }
  .MQKz1WV {
    color: #333 !important;
  }
  .bAE5h6H7 {
    color: #000 !important;
  }
  .cWs3aI {
    color: #FCFCFC !important;
  }
  .CKtv3DYb {
    color: #F5F5F5 !important;
  }
  .DkgbgL3G {
    color: #EEEEEE !important;
  }
  .WfHc6AgU {
    color: #E0E0E0 !important;
  }
  .vI8g5tnxH {
    color: #BDBDBD !important;
  }
  .qMpWqhr {
    color: #9E9E9E !important;
  }
  .s42dYqKWzy {
    color: #757575 !important;
  }
  .sQVez1r {
    color: #616161 !important;
  }
  .CJ1xJrhT {
    color: #424242 !important;
  }
  .BLiPqvqpQ {
    color: #212121 !important;
  }
  .aqlKbE2z6EW {
    color: #FFFEFE !important;
  }
  .Dcbh3RkftZ {
    max-height: 25vh !important;
  }
  .VSIrZEB0IP2 {
    max-height: 50vh !important;
  }
  .a5WCOB81r2f {
    max-height: 75vh !important;
  }
  .OXecsU6a {
    max-height: 100vh !important;
  }
  .k1ylXTbg8 {
    border-left: 1px solid #EEEEEE !important;
    border-right: 1px solid #EEEEEE !important;
  }
  .yMDHVboi {
    border-left: 0 !important;
    border-right: 0 !important;
  }
  .zG4fEQH7 {
    border-top: 1px solid #EEEEEE !important;
    border-bottom: 1px solid #EEEEEE !important;
  }
  .qjFCeGj {
    border-top: 0 !important;
    border-bottom: 0 !important;
  }
  .rcykiBpt {
    border: 1px dashed #EEEEEE !important;
  }
  .NyiG5tXO {
    border-top: 1px dashed #EEEEEE !important;
  }
  .sbJhHU {
    border-right: 1px dashed #EEEEEE !important;
  }
  .hgCta9KDq {
    border-left: 1px dashed #EEEEEE !important;
  }
  .p1H7qC {
    border-bottom: 1px dashed #EEEEEE !important;
  }
  .iOQpVix7YC {
    border-left: 1px dashed #EEEEEE !important;
    border-right: 1px dashed #EEEEEE !important;
  }
  .S9Sobz0s {
    border-top: 1px dashed #EEEEEE !important;
    border-bottom: 1px dashed #EEEEEE !important;
  }
  .Vw7zo2peh {
    border-radius: 0 !important;
  }
}

@media (min-width: 1200px) {
  .vfrpDCUvE {
    float: left !important;
  }
  .amEHT3pdgzg {
    float: right !important;
  }
  .HJ4PGJTSAD {
    float: none !important;
  }
  .bf5uAT {
    display: inline !important;
  }
  .On4WZdF35kv {
    display: inline-block !important;
  }
  .KgcCRTDip {
    display: block !important;
  }
  .SAl5Pdn1H {
    display: grid !important;
  }
  .RMzJZYm2 {
    display: table !important;
  }
  .CehI99JV6 {
    display: table-row !important;
  }
  .kqVyfVa9mcf {
    display: table-cell !important;
  }
  .lHrSqJHGt30 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .BGfE1ed {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .IkoS0xPPhdE {
    display: none !important;
  }
  .AgeJ3Ne7l {
    position: static !important;
  }
  .BrqnFdd {
    position: absolute !important;
  }
  .CUr82sgJB {
    position: relative !important;
  }
  .tP4AWajFb {
    position: fixed !important;
  }
  .kBtdBV6m {
    position: -webkit-sticky !important;
    position: sticky !important;
  }
  .vr5IYx {
    -webkit-transform: translateX(-50%) translateY(-50%) !important;
    -ms-transform: translateX(-50%) translateY(-50%) !important;
    transform: translateX(-50%) translateY(-50%) !important;
  }
  .Prb8NMnPFTO {
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
  }
  .D6oRuwe {
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
  }
  .PVTmgbHCQMK {
    border: 1px solid #EEEEEE !important;
  }
  .gGPtzaAqMNq {
    border: 0 !important;
  }
  .w35S0m7 {
    border-top: 1px solid #EEEEEE !important;
  }
  .u22sAbB8sCe {
    border-top: 0 !important;
  }
  .DqEafW2ZqGv {
    border-right: 1px solid #EEEEEE !important;
  }
  .nqGzmfY {
    border-right: 0 !important;
  }
  .y6dPjJ2 {
    border-bottom: 1px solid #EEEEEE !important;
  }
  .nKIO86Ga {
    border-bottom: 0 !important;
  }
  .PefX8johY3 {
    border-left: 1px solid #EEEEEE !important;
  }
  .BODE3Ibol {
    border-left: 0 !important;
  }
  .Ymx2b8 {
    width: 25% !important;
  }
  .xXKbQEe2o {
    width: 50% !important;
  }
  .p6NK6aL {
    width: 75% !important;
  }
  .lNikkg7d2O {
    width: 100% !important;
  }
  .dztlb4m5x {
    width: auto !important;
  }
  .IEzDK4ct5 {
    width: 25vw !important;
  }
  .SM9i84CGa {
    width: 50vw !important;
  }
  .zqdf6c0H1 {
    width: 75vw !important;
  }
  .LSRVMTX6y {
    width: 100vw !important;
  }
  .bFl7Zb {
    height: 25% !important;
  }
  .rAJpQk {
    height: 50% !important;
  }
  .trgbNMnM {
    height: 75% !important;
  }
  .ED7LT8XIEAy {
    height: 100% !important;
  }
  .AaMDlbA48b {
    height: auto !important;
  }
  .bLCDObQi {
    height: 25vh !important;
  }
  .WnjTXTb {
    height: 50vh !important;
  }
  .Fx3fSHQLP {
    height: 75vh !important;
  }
  .IGCa8ya {
    height: 100vh !important;
  }
  .U6zyd1zc {
    min-height: 25vh !important;
  }
  .OUJK4EnB {
    min-height: 50vh !important;
  }
  .yUIEhfi {
    min-height: 75vh !important;
  }
  .u7SSrwpnsl {
    min-height: 100vh !important;
  }
  .TYrRdUQwz {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .FPQGSd {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .e5H4EhOZ {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .sr9cZXu7B1 {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .IPJZlHdGkm {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .fx4J1r {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .fOeIy7L0 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .DkxpkdR {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .ZpNqnv0OM {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .MDlA2TXAG {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .Que4HNcSm {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .DAurQtN {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .qoGJe3u {
    gap: 0 !important;
  }
  .DeVpmkeesZ {
    gap: 0.25rem !important;
  }
  .WD6nNf5iGTK {
    gap: 0.5rem !important;
  }
  .LQC4vQ {
    gap: 1rem !important;
  }
  .hRdEd6 {
    gap: 1.8rem !important;
  }
  .qASKiarAXQy {
    gap: 3rem !important;
  }
  .nc3xEk62sE {
    gap: 4rem !important;
  }
  .FRrMhgUEO {
    gap: 5rem !important;
  }
  .I6HewcHhDj {
    gap: 7.5rem !important;
  }
  .eXD2iDf {
    gap: 10rem !important;
  }
  .cdQ6Po {
    gap: 12.5rem !important;
  }
  .xEVWu23d1 {
    gap: 15rem !important;
  }
  .CPhO2yO {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .st5Ylf5SvqB {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .oxjqLFTGd {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .zAoTxXh {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .IFLIG1NgB {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .LguTliLdd0 {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .DAIj1W7 {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .U4kZP25 {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .JKKyWe4 {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .WmnjZv {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .v7deEG {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .Khnxb9RqQ4 {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .U4wJeUZF54v {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .jKPPtBq {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .Ru571gU8GfB {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .H6B7ECaRah {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .legEsyEM4 {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .omMWZhwhldw {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .ntiVxlFD {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .w1kZyUnqJ08 {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .o0QF4uW {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .mWQ6VymyRXn {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .ETccom7NID {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .S8TRpu {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .gtQrGo {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .oskSjZU5nv {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .yh5Gd1t {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .RBReHfgXl {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .yzvzrQ7aL {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .rrCiJ0Y {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .xYYwQgjDTp1 {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .hX1uvlR {
    margin: 0 !important;
  }
  .y69mgYNicGB {
    margin: 0.25rem !important;
  }
  .R5ArZjc {
    margin: 0.5rem !important;
  }
  .fR9Nrt {
    margin: 1rem !important;
  }
  .cL3x0ppts2 {
    margin: 1.8rem !important;
  }
  .nX9VJ6 {
    margin: 3rem !important;
  }
  .ZRKY7GhO {
    margin: 4rem !important;
  }
  .OyyVEJEA {
    margin: 5rem !important;
  }
  .IBxH8YgUet {
    margin: 7.5rem !important;
  }
  .tBaMaOQ {
    margin: 10rem !important;
  }
  .KoXs63M {
    margin: 12.5rem !important;
  }
  .Q6J5CnOJMI {
    margin: 15rem !important;
  }
  .jSRu7IzZbG {
    margin: auto !important;
  }
  .fV1bY5 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .jeufjV {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .TPBHq0 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .iwTCmH {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .onrfqDArBsv {
    margin-right: 1.8rem !important;
    margin-left: 1.8rem !important;
  }
  .YmREQ8qiO1 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .CG64HScL6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .IKNsEZxYS3 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .qWPgy0S {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .LuqZzf {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .KLIfUHkF {
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }
  .hUxV4Qy {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .cu61gSc {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .jS78GInRGX9 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .Ep1wVie {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .w3Nzk0yg5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .S5PrA7QdezR {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .IBBlvrz {
    margin-top: 1.8rem !important;
    margin-bottom: 1.8rem !important;
  }
  .ynlR2UHiRQ {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .Z0alzT87 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .BUxP5c {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .Lio1KKEls {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .UREotKVGx7 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .bDfsw6Ic {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }
  .eRPtwqx {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .GPByD0KVu {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mDcZ3A8sJ {
    margin-top: 0 !important;
  }
  .NJ4oetZfqi {
    margin-top: 0.25rem !important;
  }
  .WAgtrsVQiNH {
    margin-top: 0.5rem !important;
  }
  .jBMo8Kfxa {
    margin-top: 1rem !important;
  }
  .KsLXln {
    margin-top: 1.8rem !important;
  }
  .xN7HWOrobF {
    margin-top: 3rem !important;
  }
  .mS6AwAMPSzE {
    margin-top: 4rem !important;
  }
  .sntzEt {
    margin-top: 5rem !important;
  }
  .jl9GkYL6 {
    margin-top: 7.5rem !important;
  }
  .cOoLipI7f {
    margin-top: 10rem !important;
  }
  .ykVicW {
    margin-top: 12.5rem !important;
  }
  .Lq2PMaGpe {
    margin-top: 15rem !important;
  }
  .ggUv1Zx {
    margin-top: auto !important;
  }
  .oaypdbbxI4e {
    margin-right: 0 !important;
  }
  .j7SCfi {
    margin-right: 0.25rem !important;
  }
  .lBiG1j {
    margin-right: 0.5rem !important;
  }
  .FkzRjiW {
    margin-right: 1rem !important;
  }
  .pwQNyCjn {
    margin-right: 1.8rem !important;
  }
  .d9tfAmwEwFy {
    margin-right: 3rem !important;
  }
  .cS9qt0V {
    margin-right: 4rem !important;
  }
  .MeNMZkwc3wY {
    margin-right: 5rem !important;
  }
  .xrgmibb5CB {
    margin-right: 7.5rem !important;
  }
  .uASTdQBV {
    margin-right: 10rem !important;
  }
  .YtrvT2Y {
    margin-right: 12.5rem !important;
  }
  .HzhRGAY {
    margin-right: 15rem !important;
  }
  .SgIfRErJTh {
    margin-right: auto !important;
  }
  .kh2p5apD {
    margin-bottom: 0 !important;
  }
  .WKtayG0Xt {
    margin-bottom: 0.25rem !important;
  }
  .UafgpJr {
    margin-bottom: 0.5rem !important;
  }
  .oW7p2ZtH {
    margin-bottom: 1rem !important;
  }
  .kyO2t4fwqpj {
    margin-bottom: 1.8rem !important;
  }
  .H2ObB1Z {
    margin-bottom: 3rem !important;
  }
  .lD6TkS59bD {
    margin-bottom: 4rem !important;
  }
  .PxMq88yYtcE {
    margin-bottom: 5rem !important;
  }
  .uuAiRuNl {
    margin-bottom: 7.5rem !important;
  }
  .Kh0Zlf {
    margin-bottom: 10rem !important;
  }
  .N8JpNt {
    margin-bottom: 12.5rem !important;
  }
  .GJqPBAfnbOY {
    margin-bottom: 15rem !important;
  }
  .aUhbj9ORfl {
    margin-bottom: auto !important;
  }
  .SyDRcU {
    margin-left: 0 !important;
  }
  .Pmkp8GWGG6 {
    margin-left: 0.25rem !important;
  }
  .jMNPo6TgZmk {
    margin-left: 0.5rem !important;
  }
  .L6cES5XWuw {
    margin-left: 1rem !important;
  }
  .w3aAcgsLzU {
    margin-left: 1.8rem !important;
  }
  .vPwjPXb6Pv {
    margin-left: 3rem !important;
  }
  .Ka0YdW0Ul {
    margin-left: 4rem !important;
  }
  .wZsycodUa1K {
    margin-left: 5rem !important;
  }
  .RzNSYO6HgL {
    margin-left: 7.5rem !important;
  }
  .S4KMhX88Ct {
    margin-left: 10rem !important;
  }
  .ieVTHO3XWg {
    margin-left: 12.5rem !important;
  }
  .nycku2leaW {
    margin-left: 15rem !important;
  }
  .fUacaIchg4 {
    margin-left: auto !important;
  }
  .YLQlCPdXcA {
    margin: -0.25rem !important;
  }
  .tLDFyMFUIW {
    margin: -0.5rem !important;
  }
  .JDnEXzUsLOB {
    margin: -1rem !important;
  }
  .BpvR33j {
    margin: -1.8rem !important;
  }
  .WNJy0coAX {
    margin: -3rem !important;
  }
  .SzhC8N77 {
    margin: -4rem !important;
  }
  .AX9fmju8 {
    margin: -5rem !important;
  }
  .lE7l4D {
    margin: -7.5rem !important;
  }
  .gl19fec {
    margin: -10rem !important;
  }
  .gjNl9yiUcwu {
    margin: -12.5rem !important;
  }
  .PE9P0j {
    margin: -15rem !important;
  }
  .cY0eerwv {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .qgxDKhzCCQ {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .NtvUYG3N {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .pyWSKOqNArX {
    margin-right: -1.8rem !important;
    margin-left: -1.8rem !important;
  }
  .m2bO6zw {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .uFEJPYa {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .tosPORHd {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .NOdgC2y {
    margin-right: -7.5rem !important;
    margin-left: -7.5rem !important;
  }
  .xFraxUX {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .Rz1rhmCNt {
    margin-right: -12.5rem !important;
    margin-left: -12.5rem !important;
  }
  .zbcDfY {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .rdrfhm0iMnr {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .XAsZnqZ {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .tpxHvOtDU {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .JXZ3in {
    margin-top: -1.8rem !important;
    margin-bottom: -1.8rem !important;
  }
  .ihSb1q3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .Hu2evk2fjxZ {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .kVAKOiwIXh {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .ublNH9w {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }
  .wAjMma1 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .uPMJt8FhS {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }
  .RSiezun25cj {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .VprFWgvBYwi {
    margin-top: -0.25rem !important;
  }
  .h1bEVUu {
    margin-top: -0.5rem !important;
  }
  .U7Ux38dab {
    margin-top: -1rem !important;
  }
  .S4D1zZovI {
    margin-top: -1.8rem !important;
  }
  .A1j3zRe6yD {
    margin-top: -3rem !important;
  }
  .iUozIW4F {
    margin-top: -4rem !important;
  }
  .jIi3bAgaDw7 {
    margin-top: -5rem !important;
  }
  .it96axrn {
    margin-top: -7.5rem !important;
  }
  .GhLFQQ91y {
    margin-top: -10rem !important;
  }
  .Dbf0FkXVAs {
    margin-top: -12.5rem !important;
  }
  .aMZ7ePJ {
    margin-top: -15rem !important;
  }
  .JfNCOfwN {
    margin-right: -0.25rem !important;
  }
  .dK3P1G1i {
    margin-right: -0.5rem !important;
  }
  .VPKJyA {
    margin-right: -1rem !important;
  }
  .MESPtP7m2 {
    margin-right: -1.8rem !important;
  }
  .bp7LWUiv {
    margin-right: -3rem !important;
  }
  .VbTtZO {
    margin-right: -4rem !important;
  }
  .c4WMbSvB {
    margin-right: -5rem !important;
  }
  .QCf5p4AjM {
    margin-right: -7.5rem !important;
  }
  .VNUwvJ {
    margin-right: -10rem !important;
  }
  .YzwugagQb {
    margin-right: -12.5rem !important;
  }
  .N6FihTyon {
    margin-right: -15rem !important;
  }
  .nKfY0vrVh {
    margin-bottom: -0.25rem !important;
  }
  .UCfqQy {
    margin-bottom: -0.5rem !important;
  }
  .EQXIsqoS1 {
    margin-bottom: -1rem !important;
  }
  .yqyjW2AVIFR {
    margin-bottom: -1.8rem !important;
  }
  .GADoNwM6wJf {
    margin-bottom: -3rem !important;
  }
  .zjesMp {
    margin-bottom: -4rem !important;
  }
  .fKgjZJ {
    margin-bottom: -5rem !important;
  }
  .cQDeUMPCGh {
    margin-bottom: -7.5rem !important;
  }
  .uHLOoIlQK9N {
    margin-bottom: -10rem !important;
  }
  .QsaXYfxC5Fc {
    margin-bottom: -12.5rem !important;
  }
  .Ngy46zqP {
    margin-bottom: -15rem !important;
  }
  .vqURnkSPey {
    margin-left: -0.25rem !important;
  }
  .dgc53jAlB {
    margin-left: -0.5rem !important;
  }
  .OvrkbR {
    margin-left: -1rem !important;
  }
  .MOZFVgptWOZ {
    margin-left: -1.8rem !important;
  }
  .J4u9Wz2b {
    margin-left: -3rem !important;
  }
  .PFHa4did {
    margin-left: -4rem !important;
  }
  .K6zNQK {
    margin-left: -5rem !important;
  }
  .jCQVkT {
    margin-left: -7.5rem !important;
  }
  .yhz4PeWZ {
    margin-left: -10rem !important;
  }
  .UY7cK3t0FDn {
    margin-left: -12.5rem !important;
  }
  .Xta7ch {
    margin-left: -15rem !important;
  }
  .M6QaV958O {
    padding: 0 !important;
  }
  .xawFHmk3x0 {
    padding: 0.25rem !important;
  }
  .p1B37CP {
    padding: 0.5rem !important;
  }
  .Q42nJsUTw {
    padding: 1rem !important;
  }
  .mWahja {
    padding: 1.8rem !important;
  }
  .mOy2i1vY1tz {
    padding: 3rem !important;
  }
  .G8qgx9ggT1 {
    padding: 4rem !important;
  }
  .xvkThrNCK {
    padding: 5rem !important;
  }
  .QkDlOfn {
    padding: 7.5rem !important;
  }
  .jJsGB6eXToN {
    padding: 10rem !important;
  }
  .VeAc5PmFCZ5 {
    padding: 12.5rem !important;
  }
  .TQ7BrY {
    padding: 15rem !important;
  }
  .JkL03EcJd {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .oqFRgSLVwe {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .aPrNYyhh1ay {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .VWuH2ke7bj {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .EeOJrH5d {
    padding-right: 1.8rem !important;
    padding-left: 1.8rem !important;
  }
  .UDnlvXpdg {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .SR2YQbP8mH {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .S7hHnFu {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .HKaVRsu {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .bNSVifYJ {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .Iwjfj3cn9 {
    padding-right: 12.5rem !important;
    padding-left: 12.5rem !important;
  }
  .Ms8meILDav {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .BbvNqIF {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .MSA6dW {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .Dvm3lXk6Lo9 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .l2xD6JvW {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .AO0WndOZD3 {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }
  .fdjL0rdZJv {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .zzCbYopzJkW {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .BXFuY4fYBsK {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .PBnqcS2riJ {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .yhcjzY {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .UUdeiVhfC {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }
  .QGBwYMiK4 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .fgwajWl {
    padding-top: 0 !important;
  }
  .Q6kUEIJv {
    padding-top: 0.25rem !important;
  }
  .qzdQfvch {
    padding-top: 0.5rem !important;
  }
  .o3hcFvfK {
    padding-top: 1rem !important;
  }
  .QPoz7zeqi {
    padding-top: 1.8rem !important;
  }
  .OiqaexSYuKT {
    padding-top: 3rem !important;
  }
  .r2sBYMiG2VI {
    padding-top: 4rem !important;
  }
  .Sn8qvvILNO {
    padding-top: 5rem !important;
  }
  .kWLBbYjq {
    padding-top: 7.5rem !important;
  }
  .gIat4e {
    padding-top: 10rem !important;
  }
  .TXPGGm {
    padding-top: 12.5rem !important;
  }
  .xdWMww {
    padding-top: 15rem !important;
  }
  .lxDzN9xS {
    padding-right: 0 !important;
  }
  .vhQPv98 {
    padding-right: 0.25rem !important;
  }
  .VQfbgxe {
    padding-right: 0.5rem !important;
  }
  .aQFjCZESN {
    padding-right: 1rem !important;
  }
  .Xf4ofj {
    padding-right: 1.8rem !important;
  }
  .YYd8P7nIWCW {
    padding-right: 3rem !important;
  }
  .gRQwdjhhKz {
    padding-right: 4rem !important;
  }
  .E6r7WzdNgPN {
    padding-right: 5rem !important;
  }
  .oCfRYfeTG5U {
    padding-right: 7.5rem !important;
  }
  .W697LOYL {
    padding-right: 10rem !important;
  }
  .jOkTia {
    padding-right: 12.5rem !important;
  }
  .hOLqzKN5 {
    padding-right: 15rem !important;
  }
  .ZY0wrhfZbAU {
    padding-bottom: 0 !important;
  }
  .R6zeQs {
    padding-bottom: 0.25rem !important;
  }
  .CbDOprHe1 {
    padding-bottom: 0.5rem !important;
  }
  .CBMhPz {
    padding-bottom: 1rem !important;
  }
  .roAh6Qo9FnD {
    padding-bottom: 1.8rem !important;
  }
  .GvCEgum8rV {
    padding-bottom: 3rem !important;
  }
  .fYNaImDUJ8P {
    padding-bottom: 4rem !important;
  }
  .kq859UgD0 {
    padding-bottom: 5rem !important;
  }
  .enxQFgOb {
    padding-bottom: 7.5rem !important;
  }
  .W6hqFUpa {
    padding-bottom: 10rem !important;
  }
  .G0sdSVj {
    padding-bottom: 12.5rem !important;
  }
  .pekeowy {
    padding-bottom: 15rem !important;
  }
  .iQJdauTCP9 {
    padding-left: 0 !important;
  }
  .RzQN6q3 {
    padding-left: 0.25rem !important;
  }
  .FNYdlwV6R {
    padding-left: 0.5rem !important;
  }
  .F3gkpGuBcZ3 {
    padding-left: 1rem !important;
  }
  .bdg4P6 {
    padding-left: 1.8rem !important;
  }
  .FIc2fe8kO {
    padding-left: 3rem !important;
  }
  .BF2CHy1cqA {
    padding-left: 4rem !important;
  }
  .iBbHwKe {
    padding-left: 5rem !important;
  }
  .N2lz9gcQh {
    padding-left: 7.5rem !important;
  }
  .GEa1gD {
    padding-left: 10rem !important;
  }
  .o1yA2Bv {
    padding-left: 12.5rem !important;
  }
  .gaznAb8 {
    padding-left: 15rem !important;
  }
  .bebFQcb {
    font-size: 0.69444rem !important;
  }
  .wjJkMi {
    font-size: 0.83333rem !important;
  }
  .gYVs5MyvjG {
    font-size: 1rem !important;
  }
  .r58VXiUGZ {
    font-size: 1.2rem !important;
  }
  .EIL0NS2XT {
    font-size: 1.44rem !important;
  }
  .J4QuNQ8VlB {
    font-size: 1.728rem !important;
  }
  .SiQIjN {
    font-size: 2.0736rem !important;
  }
  .v1NuZA {
    font-size: 2.48832rem !important;
  }
  .N0koSgNhhmK {
    font-size: 2.98598rem !important;
  }
  .Tlwdry {
    font-size: 3.58318rem !important;
  }
  .cdV5X9nKoI {
    font-size: 4.29982rem !important;
  }
  .S6aTmBCPAnc {
    text-align: left !important;
  }
  .G8peJCqp {
    text-align: right !important;
  }
  .n7BXcB2hGI {
    text-align: center !important;
  }
  .Q3J0cKb {
    border-top-start-radius: 0 !important;
    border-top-end-radius: 0 !important;
  }
  .sOb40Uqw {
    border-top-start-radius: 1.25rem !important;
    border-top-end-radius: 1.25rem !important;
  }
  .iRIuOfPCW56 {
    border-top-start-radius: 0 !important;
    border-top-end-radius: 0 !important;
  }
  .gvgXh1U {
    border-top-end-radius: 0 !important;
    border-bottom-end-radius: 0 !important;
  }
  .wL2Dh4G6GYu {
    border-top-end-radius: 1.25rem !important;
    border-bottom-end-radius: 1.25rem !important;
  }
  .eWSelK {
    border-top-end-radius: 0 !important;
    border-bottom-end-radius: 0 !important;
  }
  .WhJAidJdI7a {
    border-bottom-end-radius: 0 !important;
    border-bottom-start-radius: 0 !important;
  }
  .aKG33WYGt {
    border-bottom-end-radius: 1.25rem !important;
    border-bottom-start-radius: 1.25rem !important;
  }
  .fIyTnTb {
    border-bottom-end-radius: 0 !important;
    border-bottom-start-radius: 0 !important;
  }
  .ArlnVQcS {
    border-bottom-start-radius: 0 !important;
    border-top-start-radius: 0 !important;
  }
  .o1lG9KfDgO {
    border-bottom-start-radius: 1.25rem !important;
    border-top-start-radius: 1.25rem !important;
  }
  .tK40zrt {
    border-bottom-start-radius: 0 !important;
    border-top-start-radius: 0 !important;
  }
  .qiZ8gLY {
    opacity: 0 !important;
  }
  .eL3jeRqVs {
    opacity: 0.25 !important;
  }
  .NpTPUkV {
    opacity: 0.5 !important;
  }
  .PBSYNc6izfp {
    opacity: 0.75 !important;
  }
  .bFqLShqunvW {
    opacity: 0.85 !important;
  }
  .lvXHIg5Ls {
    opacity: 1 !important;
  }
  .AVezsu4ivM {
    color: #3c5a99 !important;
  }
  .joBokJSbst {
    color: #dd4b39 !important;
  }
  .Q7U2c9 {
    color: #1da1f2 !important;
  }
  .merAsCwhR {
    color: #0077b5 !important;
  }
  .imM14InBU {
    color: #ff0000 !important;
  }
  .IYALGqKzOp {
    color: #333 !important;
  }
  .RmWStCSiZG {
    color: #000 !important;
  }
  .EyF8f9rJ {
    color: #FCFCFC !important;
  }
  .hedvCze2Y {
    color: #F5F5F5 !important;
  }
  .EHUxm5dz {
    color: #EEEEEE !important;
  }
  .ZrMJWwp {
    color: #E0E0E0 !important;
  }
  .iTfHe9quZDi {
    color: #BDBDBD !important;
  }
  .bD6CYsivbdX {
    color: #9E9E9E !important;
  }
  .SNKn89 {
    color: #757575 !important;
  }
  .KRR0CkRtH1 {
    color: #616161 !important;
  }
  .btoGubw {
    color: #424242 !important;
  }
  .rVj4ikD1l {
    color: #212121 !important;
  }
  .bAxQnEXdyNW {
    color: #FFFEFE !important;
  }
  .rwEk9QnO8o {
    max-height: 25vh !important;
  }
  .B2YeLvmBjm {
    max-height: 50vh !important;
  }
  .Sbqx0XW {
    max-height: 75vh !important;
  }
  .UFjNTxaMZ {
    max-height: 100vh !important;
  }
  .JST1JYvMe {
    border-left: 1px solid #EEEEEE !important;
    border-right: 1px solid #EEEEEE !important;
  }
  .SFlayyDYCGS {
    border-left: 0 !important;
    border-right: 0 !important;
  }
  .RmeNib {
    border-top: 1px solid #EEEEEE !important;
    border-bottom: 1px solid #EEEEEE !important;
  }
  .lIOg51UZz {
    border-top: 0 !important;
    border-bottom: 0 !important;
  }
  .SV1zg2M {
    border: 1px dashed #EEEEEE !important;
  }
  .UgiW5j {
    border-top: 1px dashed #EEEEEE !important;
  }
  .DS97ZthyE {
    border-right: 1px dashed #EEEEEE !important;
  }
  .JZC321wdhC {
    border-left: 1px dashed #EEEEEE !important;
  }
  .mmyU6feY {
    border-bottom: 1px dashed #EEEEEE !important;
  }
  .gFZHdY2l {
    border-left: 1px dashed #EEEEEE !important;
    border-right: 1px dashed #EEEEEE !important;
  }
  .tGbufL4 {
    border-top: 1px dashed #EEEEEE !important;
    border-bottom: 1px dashed #EEEEEE !important;
  }
  .q3LzDCwYs {
    border-radius: 0 !important;
  }
}

@media (min-width: 1540px) {
  .uq9W2w45t {
    float: left !important;
  }
  .TX6XnHWhj {
    float: right !important;
  }
  .RDZPA4 {
    float: none !important;
  }
  .j7owqvx {
    display: inline !important;
  }
  .O5Sfoaev4R {
    display: inline-block !important;
  }
  .HUuaBFfRc2 {
    display: block !important;
  }
  .lvLgF0X5R {
    display: grid !important;
  }
  .M7lvAOVoeR {
    display: table !important;
  }
  .kLeNNgCgdf {
    display: table-row !important;
  }
  .MZ12V1Z {
    display: table-cell !important;
  }
  .l9KZ6bc0Ose {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .lXc2b5XhW {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .aVRhGa {
    display: none !important;
  }
  .LTu978 {
    position: static !important;
  }
  .ZGoUDeev42 {
    position: absolute !important;
  }
  .mPNL4M2G {
    position: relative !important;
  }
  .GPhxguqEI {
    position: fixed !important;
  }
  .apaD9WVqal {
    position: -webkit-sticky !important;
    position: sticky !important;
  }
  .XmnC0BFqmtJ {
    -webkit-transform: translateX(-50%) translateY(-50%) !important;
    -ms-transform: translateX(-50%) translateY(-50%) !important;
    transform: translateX(-50%) translateY(-50%) !important;
  }
  .NY4ILXDZ {
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
  }
  .pfrWSwgB {
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
  }
  .a5bhZD33chl {
    border: 1px solid #EEEEEE !important;
  }
  .eIoRQ9pKW {
    border: 0 !important;
  }
  .ILVVoM4pUl4 {
    border-top: 1px solid #EEEEEE !important;
  }
  .AM5U0z {
    border-top: 0 !important;
  }
  .xHIKEJgN {
    border-right: 1px solid #EEEEEE !important;
  }
  .R05TpuImvG {
    border-right: 0 !important;
  }
  .VkVlVobJaFJ {
    border-bottom: 1px solid #EEEEEE !important;
  }
  .j023Iteun {
    border-bottom: 0 !important;
  }
  .jfobPtEs5PH {
    border-left: 1px solid #EEEEEE !important;
  }
  .aIcPKc {
    border-left: 0 !important;
  }
  .PaXH9w8ZL {
    width: 25% !important;
  }
  .qYldfJuEK6 {
    width: 50% !important;
  }
  .MpXJ4S {
    width: 75% !important;
  }
  .ktgaKN {
    width: 100% !important;
  }
  .fqtOzs {
    width: auto !important;
  }
  .c65codR {
    width: 25vw !important;
  }
  .OgdgKl {
    width: 50vw !important;
  }
  .MkJdcs0 {
    width: 75vw !important;
  }
  .IFqwKhvAt {
    width: 100vw !important;
  }
  .abVrMSeuB {
    height: 25% !important;
  }
  .S0fjWc5 {
    height: 50% !important;
  }
  .ge6OCYmQo {
    height: 75% !important;
  }
  .Hcsvil3g {
    height: 100% !important;
  }
  .DvjPqaQ {
    height: auto !important;
  }
  .KeTgHN {
    height: 25vh !important;
  }
  .cYNzBdqv {
    height: 50vh !important;
  }
  .iDi2IHK {
    height: 75vh !important;
  }
  .X8rWL1cNhoV {
    height: 100vh !important;
  }
  .xUPa7R {
    min-height: 25vh !important;
  }
  .T1GlF5X6WqT {
    min-height: 50vh !important;
  }
  .fDX7jG1CgP {
    min-height: 75vh !important;
  }
  .AseSVvGoD7 {
    min-height: 100vh !important;
  }
  .Sp3gUY5 {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .IxvrP0Y {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .pWL0NID {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .iZrgoqlXUQB {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .m3zbLPLE0Dx {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .obhK1WIB8aJ {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .PFpTvn {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .jknxblBT80 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .kX7eL0Bibu {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .OsfRJDQYZL {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .TAG7mlC {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .Q1tEEZ8u {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .Dl2UjqNev {
    gap: 0 !important;
  }
  .Ap2ZI9h64a {
    gap: 0.25rem !important;
  }
  .uGOwm1WB {
    gap: 0.5rem !important;
  }
  .JH3fs9K {
    gap: 1rem !important;
  }
  .YPDTIu {
    gap: 1.8rem !important;
  }
  .Va4rtLvo {
    gap: 3rem !important;
  }
  .UeIORbh0q0 {
    gap: 4rem !important;
  }
  .T6s5AYAyih8 {
    gap: 5rem !important;
  }
  .KyteUINg {
    gap: 7.5rem !important;
  }
  .VSRURbme13d {
    gap: 10rem !important;
  }
  .LqsnYpK8 {
    gap: 12.5rem !important;
  }
  .Hce7NW3 {
    gap: 15rem !important;
  }
  .f1zsHLi29b5 {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .AgRfG3sc {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .t938lvLhLqr {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .mY2plYvk {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .BxrtLLdKz {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .SW8wmVesH7 {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .rBWojISV9Ha {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .w5pOaQco {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .kJNrbEF1GDk {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .ucEi6BQM {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .xJUE9K4rtT {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .GsaKGRLd {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .fmnGhLZ {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .sPf87G {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .kUwcoMId {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .EgErF3r {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .hc4eBbc0lus {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .nsJHZEcXCqw {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .oLmmJ4e {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .i7d34jbRW6 {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .I1Sck11DH {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .SprUWkBl6dF {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .O6F95M {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .DGgjjsUa05A {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .P8UJQU6X {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .mNtBDjCn6 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .uQ2St3iuq6H {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .rsv07v5J {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .Ed2VOnswT {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .aDiKmyM {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .ouGim9ql {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .A95Hal {
    margin: 0 !important;
  }
  .UVDpXEe4XG {
    margin: 0.25rem !important;
  }
  .e48jaRqunWX {
    margin: 0.5rem !important;
  }
  .wYZdhbnaRsw {
    margin: 1rem !important;
  }
  .BrnG5PgGB {
    margin: 1.8rem !important;
  }
  .IPBHzwjyJ0 {
    margin: 3rem !important;
  }
  .cLbmNqer {
    margin: 4rem !important;
  }
  .dsJdZS1HCx {
    margin: 5rem !important;
  }
  .GlhC9Ct {
    margin: 7.5rem !important;
  }
  .S9Oe5rZjhyo {
    margin: 10rem !important;
  }
  .SIflixEk {
    margin: 12.5rem !important;
  }
  .I21EXvj {
    margin: 15rem !important;
  }
  .IafWuRN {
    margin: auto !important;
  }
  .xnjKwtgpJs0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .LPuP583Wa {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .QfS3yX4rKV {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .hSnJGNJ {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .hbheBEK1CJ {
    margin-right: 1.8rem !important;
    margin-left: 1.8rem !important;
  }
  .UppsT3YRbH {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .rpTOBa {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .inToES1t {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .ZmLP4efBywJ {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .m9N3TfjM {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .i9jOtze2 {
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }
  .MgVvVK8 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .RqFPv3esAw9 {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .KzP4tO {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .HRWTV2 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .txAbMAyXJ2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .dJtQuRq {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .hqh6OT {
    margin-top: 1.8rem !important;
    margin-bottom: 1.8rem !important;
  }
  .G8Qg18DfMK {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .qyAwlnzKy {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .yirvWCNE {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .yaGXeCCj {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .bIfpmM {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .mtjwikE {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }
  .DK4HAc {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .V8EvvvO0n {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .Mwd2boSnRW {
    margin-top: 0 !important;
  }
  .dfOpg75RY6r {
    margin-top: 0.25rem !important;
  }
  .pbMFNBcI {
    margin-top: 0.5rem !important;
  }
  .JVPpQSg9emZ {
    margin-top: 1rem !important;
  }
  .F7xKM5DU {
    margin-top: 1.8rem !important;
  }
  .eYDPZoTjTMl {
    margin-top: 3rem !important;
  }
  .w8zobw {
    margin-top: 4rem !important;
  }
  .d7w8kbbbnj {
    margin-top: 5rem !important;
  }
  .fO50isnYMm1 {
    margin-top: 7.5rem !important;
  }
  .Jvjh6uVSb {
    margin-top: 10rem !important;
  }
  .CEzOEgAqRlj {
    margin-top: 12.5rem !important;
  }
  .nca2VoaqK {
    margin-top: 15rem !important;
  }
  .P8AmNtuk {
    margin-top: auto !important;
  }
  .tBn1rXeHA {
    margin-right: 0 !important;
  }
  .FvZwjx5gf4 {
    margin-right: 0.25rem !important;
  }
  .r58xehWNklA {
    margin-right: 0.5rem !important;
  }
  .CsbZMt {
    margin-right: 1rem !important;
  }
  .idDOpAeav {
    margin-right: 1.8rem !important;
  }
  .c7tdC5X8 {
    margin-right: 3rem !important;
  }
  .XEh5nbSwsgL {
    margin-right: 4rem !important;
  }
  .hYHgUsI4pde {
    margin-right: 5rem !important;
  }
  .lHrxhMcZb7h {
    margin-right: 7.5rem !important;
  }
  .ux3kNj {
    margin-right: 10rem !important;
  }
  .RuR10T {
    margin-right: 12.5rem !important;
  }
  .U2wcZqa {
    margin-right: 15rem !important;
  }
  .twcUSHl {
    margin-right: auto !important;
  }
  .fqPmKPKaN30 {
    margin-bottom: 0 !important;
  }
  .zCGmwAWg {
    margin-bottom: 0.25rem !important;
  }
  .trFZepuokZ {
    margin-bottom: 0.5rem !important;
  }
  .DK4WfmEfz {
    margin-bottom: 1rem !important;
  }
  .ww531d {
    margin-bottom: 1.8rem !important;
  }
  .dRjNNYoBa {
    margin-bottom: 3rem !important;
  }
  .dzpU0ZGt3 {
    margin-bottom: 4rem !important;
  }
  .KetlvJickD {
    margin-bottom: 5rem !important;
  }
  .rg7qXV6EVfA {
    margin-bottom: 7.5rem !important;
  }
  .wregl7c {
    margin-bottom: 10rem !important;
  }
  .v4hOh3 {
    margin-bottom: 12.5rem !important;
  }
  .oLoOVycZ5N {
    margin-bottom: 15rem !important;
  }
  .Gmcwny9 {
    margin-bottom: auto !important;
  }
  .BOzbg5b6 {
    margin-left: 0 !important;
  }
  .xlHZwexbry {
    margin-left: 0.25rem !important;
  }
  .qU6myBVU {
    margin-left: 0.5rem !important;
  }
  .A7CODpfW0W {
    margin-left: 1rem !important;
  }
  .qGmZGg {
    margin-left: 1.8rem !important;
  }
  .NxpfLYlb5na {
    margin-left: 3rem !important;
  }
  .QWH05wjN {
    margin-left: 4rem !important;
  }
  .fUvzfCDjqj {
    margin-left: 5rem !important;
  }
  .aPQBiC {
    margin-left: 7.5rem !important;
  }
  .gxoQUqv9f {
    margin-left: 10rem !important;
  }
  .MJwqjBzF4J {
    margin-left: 12.5rem !important;
  }
  .IuxKEyf {
    margin-left: 15rem !important;
  }
  .kKGpOKy {
    margin-left: auto !important;
  }
  .wx4mO7kMK2 {
    margin: -0.25rem !important;
  }
  .z7EzBw {
    margin: -0.5rem !important;
  }
  .xNV17w4SMrA {
    margin: -1rem !important;
  }
  .CPXZG73p3 {
    margin: -1.8rem !important;
  }
  .U9eD0Nnb0q {
    margin: -3rem !important;
  }
  .HM6WkxZ {
    margin: -4rem !important;
  }
  .SK7KNHlu {
    margin: -5rem !important;
  }
  .msogwm79fOA {
    margin: -7.5rem !important;
  }
  .NzOcNiDgIQA {
    margin: -10rem !important;
  }
  .Jmkq1MQyOD {
    margin: -12.5rem !important;
  }
  .L6GHdEU {
    margin: -15rem !important;
  }
  .KCMfzEQ {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .Q1hhNBH0 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .OtvymWzkzHf {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .kxiaJG0 {
    margin-right: -1.8rem !important;
    margin-left: -1.8rem !important;
  }
  .ul4LTOI0Y7b {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .HTL4pZFaRJk {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .nmcupiQ6 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .g0d0bQ9 {
    margin-right: -7.5rem !important;
    margin-left: -7.5rem !important;
  }
  .sOrTU1ZWYi {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .DpiM43Y9 {
    margin-right: -12.5rem !important;
    margin-left: -12.5rem !important;
  }
  .wI4pJEv7 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .sTfAL82bL {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .TEhbD35 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .I1V6I5 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .m0pgKkevX {
    margin-top: -1.8rem !important;
    margin-bottom: -1.8rem !important;
  }
  .PkLbsZT {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .Q2wqOphYDrt {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .C0imSJCq {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .JmU4mo7QRz {
    margin-top: -7.5rem !important;
    margin-bottom: -7.5rem !important;
  }
  .wmp2T9XR {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .rxyybM {
    margin-top: -12.5rem !important;
    margin-bottom: -12.5rem !important;
  }
  .OdHW8mqM25w {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .BAbuk7GPC3 {
    margin-top: -0.25rem !important;
  }
  .TpIgUgxjtGe {
    margin-top: -0.5rem !important;
  }
  .q3dttgBtdK {
    margin-top: -1rem !important;
  }
  .I2lM9b4SRfX {
    margin-top: -1.8rem !important;
  }
  .Xi2sXG7cMn {
    margin-top: -3rem !important;
  }
  .sQgsBtDAA {
    margin-top: -4rem !important;
  }
  .xnVXXh7yEIt {
    margin-top: -5rem !important;
  }
  .zeRj41GqDc {
    margin-top: -7.5rem !important;
  }
  .SLmse7u {
    margin-top: -10rem !important;
  }
  .QxqwIln {
    margin-top: -12.5rem !important;
  }
  .cmxznjubsQ8 {
    margin-top: -15rem !important;
  }
  .KMo4HQLZR {
    margin-right: -0.25rem !important;
  }
  .TqG7bW0 {
    margin-right: -0.5rem !important;
  }
  .ZhpeJSYZ8F {
    margin-right: -1rem !important;
  }
  .zXRtD1pqm {
    margin-right: -1.8rem !important;
  }
  .FRzUU8Izx7B {
    margin-right: -3rem !important;
  }
  .I8QL7rbijg {
    margin-right: -4rem !important;
  }
  .lW4uyTKqIc2 {
    margin-right: -5rem !important;
  }
  .PeBiiFB9PHT {
    margin-right: -7.5rem !important;
  }
  .XbVPVgHigH {
    margin-right: -10rem !important;
  }
  .N6C2FMUI {
    margin-right: -12.5rem !important;
  }
  .aiOGubzM {
    margin-right: -15rem !important;
  }
  .J2jBpuugrkc {
    margin-bottom: -0.25rem !important;
  }
  .k6egOQ {
    margin-bottom: -0.5rem !important;
  }
  .JT5wdTEPMGh {
    margin-bottom: -1rem !important;
  }
  .sUtZXV {
    margin-bottom: -1.8rem !important;
  }
  .LbP5cVEP {
    margin-bottom: -3rem !important;
  }
  .mkFDjYk827 {
    margin-bottom: -4rem !important;
  }
  .OgHPdXc {
    margin-bottom: -5rem !important;
  }
  .bTJ2RJore0e {
    margin-bottom: -7.5rem !important;
  }
  .oQ0Ye1xQT {
    margin-bottom: -10rem !important;
  }
  .np0aXh {
    margin-bottom: -12.5rem !important;
  }
  .pusAiVrygal {
    margin-bottom: -15rem !important;
  }
  .ccQeE8TDzN {
    margin-left: -0.25rem !important;
  }
  .EzSvQc4JC {
    margin-left: -0.5rem !important;
  }
  .fKgpzjXWKP9 {
    margin-left: -1rem !important;
  }
  .v5KGgSd85e {
    margin-left: -1.8rem !important;
  }
  .HF8AwW {
    margin-left: -3rem !important;
  }
  .uklJj1 {
    margin-left: -4rem !important;
  }
  .Q9JSky8 {
    margin-left: -5rem !important;
  }
  .HATsuUvb9T1 {
    margin-left: -7.5rem !important;
  }
  .nzwivfBnn0 {
    margin-left: -10rem !important;
  }
  .nHJLHGV {
    margin-left: -12.5rem !important;
  }
  .L5MYwFkleh9 {
    margin-left: -15rem !important;
  }
  .hli8af {
    padding: 0 !important;
  }
  .PL1R1Ld {
    padding: 0.25rem !important;
  }
  .YsbheLeCVey {
    padding: 0.5rem !important;
  }
  .n43phW {
    padding: 1rem !important;
  }
  .J9KykuShG {
    padding: 1.8rem !important;
  }
  .tugIw9wG {
    padding: 3rem !important;
  }
  .oPI9F05z {
    padding: 4rem !important;
  }
  .a8UKo7e9fVs {
    padding: 5rem !important;
  }
  .YntR2R {
    padding: 7.5rem !important;
  }
  .vRB6bTzJbm {
    padding: 10rem !important;
  }
  .ltqE2VBpeV3 {
    padding: 12.5rem !important;
  }
  .h4ywS57 {
    padding: 15rem !important;
  }
  .CSAbT9nEwt {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .b9jKF3DY {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .TQgnwpM {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .TNAnC0 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .IKfNiYKr {
    padding-right: 1.8rem !important;
    padding-left: 1.8rem !important;
  }
  .ClKAuUTH {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .nKdmu3 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .CNvmsSJO {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .afMGegg {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .mTA50c {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .QqlOwQ9kl {
    padding-right: 12.5rem !important;
    padding-left: 12.5rem !important;
  }
  .Y9Yql1P {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .qnM8A2gbBYJ {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .NwBXngZEq4t {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .sse54v8q {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .kPOfyNexXy {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .sDSvYIg {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }
  .m2MIjhys8S {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pkKAPtdwP1w {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .JSOZf2JJ {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .BHM6Qw {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .KFASIPvZu {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .DKbRDY {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }
  .WEypqqT {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .tF14iwTY {
    padding-top: 0 !important;
  }
  .T9BlE5Qv {
    padding-top: 0.25rem !important;
  }
  .LV2TIK {
    padding-top: 0.5rem !important;
  }
  .svHvQt {
    padding-top: 1rem !important;
  }
  .gonQfqH3 {
    padding-top: 1.8rem !important;
  }
  .TvGLHKrFu {
    padding-top: 3rem !important;
  }
  .jI1BN3 {
    padding-top: 4rem !important;
  }
  .IezHcJWm {
    padding-top: 5rem !important;
  }
  .NAKXcRoy {
    padding-top: 7.5rem !important;
  }
  .kUoGw2GmK {
    padding-top: 10rem !important;
  }
  .BIRcJPj9 {
    padding-top: 12.5rem !important;
  }
  .nEPN4JKgQQ {
    padding-top: 15rem !important;
  }
  .bkQ0aJV9yo {
    padding-right: 0 !important;
  }
  .osbfY01HG {
    padding-right: 0.25rem !important;
  }
  .kGC2B9hg3s {
    padding-right: 0.5rem !important;
  }
  .CdjnjhHi {
    padding-right: 1rem !important;
  }
  .v6VnsGT0 {
    padding-right: 1.8rem !important;
  }
  .C9GqPC {
    padding-right: 3rem !important;
  }
  .AiqkyVULOMQ {
    padding-right: 4rem !important;
  }
  .ZiVNk2 {
    padding-right: 5rem !important;
  }
  .zKKRI5xDofD {
    padding-right: 7.5rem !important;
  }
  .d2a7ij00 {
    padding-right: 10rem !important;
  }
  .GOTEbPE3QN {
    padding-right: 12.5rem !important;
  }
  .yC6iCtW {
    padding-right: 15rem !important;
  }
  .tr3GTZ6 {
    padding-bottom: 0 !important;
  }
  .u0xnd1dV {
    padding-bottom: 0.25rem !important;
  }
  .m9SzzZvaW {
    padding-bottom: 0.5rem !important;
  }
  .JXeRIZr {
    padding-bottom: 1rem !important;
  }
  .sOXIWsG8ob {
    padding-bottom: 1.8rem !important;
  }
  .SUAGcrvo2kT {
    padding-bottom: 3rem !important;
  }
  .zNLfMHTb3R3 {
    padding-bottom: 4rem !important;
  }
  .BVzjKRuJl2 {
    padding-bottom: 5rem !important;
  }
  .SX6KmPqnTrg {
    padding-bottom: 7.5rem !important;
  }
  .ZXgu5PJc8j {
    padding-bottom: 10rem !important;
  }
  .xKZbNHs {
    padding-bottom: 12.5rem !important;
  }
  .x2DRgqZjE {
    padding-bottom: 15rem !important;
  }
  .p3UXfVHWOA {
    padding-left: 0 !important;
  }
  .qTh9WNcoL {
    padding-left: 0.25rem !important;
  }
  .ePhW9MNqMH {
    padding-left: 0.5rem !important;
  }
  .mXycFbtGd {
    padding-left: 1rem !important;
  }
  .ydVjtF4Hu {
    padding-left: 1.8rem !important;
  }
  .Qjl9eb3vE {
    padding-left: 3rem !important;
  }
  .bil2GngdT {
    padding-left: 4rem !important;
  }
  .kQmShI0ZBl {
    padding-left: 5rem !important;
  }
  .RTmuB1t {
    padding-left: 7.5rem !important;
  }
  .EH1HAXV {
    padding-left: 10rem !important;
  }
  .GhdNRDvv58z {
    padding-left: 12.5rem !important;
  }
  .jlshtpeIprk {
    padding-left: 15rem !important;
  }
  .ADRfFrWSbx {
    font-size: 0.69444rem !important;
  }
  .ciHWEK61ozl {
    font-size: 0.83333rem !important;
  }
  .hT4p6fD {
    font-size: 1rem !important;
  }
  .WKLrW781Xbx {
    font-size: 1.2rem !important;
  }
  .BzgaM3zWu {
    font-size: 1.44rem !important;
  }
  .KAe09O5 {
    font-size: 1.728rem !important;
  }
  .wFzGCxDEG8 {
    font-size: 2.0736rem !important;
  }
  .yrWM6QxT {
    font-size: 2.48832rem !important;
  }
  .IlLSO70qdc {
    font-size: 2.98598rem !important;
  }
  .jDRrFzU {
    font-size: 3.58318rem !important;
  }
  .Y0TH2mOqb {
    font-size: 4.29982rem !important;
  }
  .zNoJEb7uyuZ {
    text-align: left !important;
  }
  .sma2wOq {
    text-align: right !important;
  }
  .qhFqWv {
    text-align: center !important;
  }
  .E6wAvc {
    border-top-start-radius: 0 !important;
    border-top-end-radius: 0 !important;
  }
  .gLY9SCzSAW {
    border-top-start-radius: 1.25rem !important;
    border-top-end-radius: 1.25rem !important;
  }
  .JyTCCHWv {
    border-top-start-radius: 0 !important;
    border-top-end-radius: 0 !important;
  }
  .oVlP84EqFo0 {
    border-top-end-radius: 0 !important;
    border-bottom-end-radius: 0 !important;
  }
  .RnMpuUK5 {
    border-top-end-radius: 1.25rem !important;
    border-bottom-end-radius: 1.25rem !important;
  }
  .RIrQhhHEQeA {
    border-top-end-radius: 0 !important;
    border-bottom-end-radius: 0 !important;
  }
  .HTnzvyHyHD {
    border-bottom-end-radius: 0 !important;
    border-bottom-start-radius: 0 !important;
  }
  .it99cpENhEV {
    border-bottom-end-radius: 1.25rem !important;
    border-bottom-start-radius: 1.25rem !important;
  }
  .W9viaF {
    border-bottom-end-radius: 0 !important;
    border-bottom-start-radius: 0 !important;
  }
  .z330FxCSRM {
    border-bottom-start-radius: 0 !important;
    border-top-start-radius: 0 !important;
  }
  .NuTsR7 {
    border-bottom-start-radius: 1.25rem !important;
    border-top-start-radius: 1.25rem !important;
  }
  .NCYdZf7k {
    border-bottom-start-radius: 0 !important;
    border-top-start-radius: 0 !important;
  }
  .SfHj4EZS {
    opacity: 0 !important;
  }
  .ynDlf7Nj {
    opacity: 0.25 !important;
  }
  .iOhQGcCNB {
    opacity: 0.5 !important;
  }
  .DyWodcqM {
    opacity: 0.75 !important;
  }
  .jYomNQlNakE {
    opacity: 0.85 !important;
  }
  .KV7mNYG3x {
    opacity: 1 !important;
  }
  .DUbcq0t {
    color: #3c5a99 !important;
  }
  .hwcKbNdj87 {
    color: #dd4b39 !important;
  }
  .yy48NEkgX {
    color: #1da1f2 !important;
  }
  .jcY7DguVlgo {
    color: #0077b5 !important;
  }
  .FQJ3YOTVDL {
    color: #ff0000 !important;
  }
  .gKjKuu {
    color: #333 !important;
  }
  .GwQs4Vy8843 {
    color: #000 !important;
  }
  .R1CFasNJKTE {
    color: #FCFCFC !important;
  }
  .dZKTdMLftlQ {
    color: #F5F5F5 !important;
  }
  .MuLDjN {
    color: #EEEEEE !important;
  }
  .FEdccMU {
    color: #E0E0E0 !important;
  }
  .tW0mJ2L1yA {
    color: #BDBDBD !important;
  }
  .u0XKKfw {
    color: #9E9E9E !important;
  }
  .rHlBk833j {
    color: #757575 !important;
  }
  .WQ0aNf2nEMy {
    color: #616161 !important;
  }
  .njjQJwVlZc {
    color: #424242 !important;
  }
  .dyccO2czX6R {
    color: #212121 !important;
  }
  .Ucdu40CdFH {
    color: #FFFEFE !important;
  }
  .YgDKzzpPx {
    max-height: 25vh !important;
  }
  .Ktuskc8Mlo {
    max-height: 50vh !important;
  }
  .cFU9STe {
    max-height: 75vh !important;
  }
  .sHTBBIZQhG {
    max-height: 100vh !important;
  }
  .ChS8htqVn4 {
    border-left: 1px solid #EEEEEE !important;
    border-right: 1px solid #EEEEEE !important;
  }
  .XfxmGtfD1zd {
    border-left: 0 !important;
    border-right: 0 !important;
  }
  .d49hFYg {
    border-top: 1px solid #EEEEEE !important;
    border-bottom: 1px solid #EEEEEE !important;
  }
  .cpUOTfu1 {
    border-top: 0 !important;
    border-bottom: 0 !important;
  }
  .TBbCvP {
    border: 1px dashed #EEEEEE !important;
  }
  .Yw4YKb {
    border-top: 1px dashed #EEEEEE !important;
  }
  .wBWClNNyQ {
    border-right: 1px dashed #EEEEEE !important;
  }
  .CoM3OriH {
    border-left: 1px dashed #EEEEEE !important;
  }
  .xgiK7y0BU {
    border-bottom: 1px dashed #EEEEEE !important;
  }
  .iu0bPR7WT {
    border-left: 1px dashed #EEEEEE !important;
    border-right: 1px dashed #EEEEEE !important;
  }
  .zWJfaZw {
    border-top: 1px dashed #EEEEEE !important;
    border-bottom: 1px dashed #EEEEEE !important;
  }
  .jTkOwaO {
    border-radius: 0 !important;
  }
}

@media print {
  .n9XlRNLnN {
    display: inline !important;
  }
  .bR91qIvD20 {
    display: inline-block !important;
  }
  .bTWagPZfSJ {
    display: block !important;
  }
  .Bd697S {
    display: grid !important;
  }
  .boBTacPeJsl {
    display: table !important;
  }
  .Sc5q4frwI5Q {
    display: table-row !important;
  }
  .DJvphvg9an {
    display: table-cell !important;
  }
  .DRjQUDY1 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .XOqI2jjKkK2 {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .YrCUtjSsC6 {
    display: none !important;
  }
}

/*-----------------------------------------------
|   Theme Styles
-----------------------------------------------*/
/*-----------------------------------------------
|   Reboot
-----------------------------------------------*/
::-webkit-input-placeholder {
  opacity: 1;
  color: #E0E0E0 !important;
}
::-moz-placeholder {
  opacity: 1;
  color: #E0E0E0 !important;
}
:-ms-input-placeholder {
  opacity: 1;
  color: #E0E0E0 !important;
}
::-ms-input-placeholder {
  opacity: 1;
  color: #E0E0E0 !important;
}
::placeholder {
  opacity: 1;
  color: #E0E0E0 !important;
}

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: smooth;
  scroll-padding-top: 6.3125rem;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

pre, code {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  section {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

input,
button,
select,
optgroup,
textarea,
label,
.alert,
.badge,
.TkrUf4YAgc,
.btn,
.navbar,
.EcOpEAd7g,
.hCkRgm8v1ei,
.zVk0pfcQola {
  font-family: "Roboto Condensed", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

pre {
  margin: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

strong {
  font-weight: 600;
}

label {
  font-weight: 500 !important;
  margin-bottom: 0.5rem;
}

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

/* -------------------------------------------------------------------------- */
/*                               Browser Fixing                               */
/* -------------------------------------------------------------------------- */
.firefox .fh30dDZbdQg:first-letter {
  margin-top: 0.175em;
}

.chrome .bwmjyijiPvt {
  background-clip: unset;
}

/* -------------------------------------------------------------------------- */
/*                                    Text                                    */
/* -------------------------------------------------------------------------- */
.pN82W8Z8nJ {
  font-variant: small-caps;
}

.NOCgIOnl0p {
  vertical-align: super;
}

.S3W7qICO {
  word-break: break-word;
}

/*-----------------------------------------------
|   Font family
-----------------------------------------------*/
.L8rFnSu {
  font-family: "Roboto Condensed", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.PaeFE2 {
  font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/*-----------------------------------------------
|   Error Page
-----------------------------------------------*/
.JytzNTzSWOa {
  font-size: 7rem;
}

@media (min-width: 576px) {
  .JytzNTzSWOa {
    font-size: 10rem;
  }
}

/*-----------------------------------------------
|   Text alignment
-----------------------------------------------*/
.ANNiC4 {
  text-align: justify !important;
}

.MRN7g6d {
  background: -o-linear-gradient(40deg, #c381db, #4e92f9);
  background: linear-gradient(50deg, #c381db, #4e92f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*-----------------------------------------------
|   Backgrounds
-----------------------------------------------*/
.vT1Roz4 {
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  will-change: transform, opacity, filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-repeat: no-repeat;
  z-index: 0;
}

.vT1Roz4.k7LDi4gogpz {
  left: auto;
  right: 0;
}

.vT1Roz4.overlay:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.25);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.vT1Roz4.iXJwaD0pY8:before {
  background: rgba(0, 0, 0, 0.7);
}

.vT1Roz4.KYE2p6n9:before {
  background: rgba(0, 0, 0, 0.55);
}

.vT1Roz4.zE192gihASl:before {
  background: rgba(0, 0, 0, 0.4);
}

.vT1Roz4.Oxim7pIhw:before {
  background: rgba(255, 255, 255, 0.8);
}

.vT1Roz4 .XYlqEpcA {
  position: absolute;
  display: block;
  z-index: -1;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  min-width: 100%;
}

.vT1Roz4 .Bqu9YuJ {
  position: absolute !important;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.zUDTavV4mN {
  background: #ffffff;
  opacity: 0.85;
}

.ojDMC3GVGf {
  background: -o-linear-gradient(241.82deg, #51B4F7 9.05%, #5A98F2 76.74%);
  background: linear-gradient(208.18deg, #51B4F7 9.05%, #5A98F2 76.74%);
}

.jUdBJin3P5 {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(33, 33, 33, 0.411)), to(rgba(33, 33, 33, 0)));
  background: -o-linear-gradient(bottom, rgba(33, 33, 33, 0.411) 0%, rgba(33, 33, 33, 0) 100%);
  background: linear-gradient(0deg, rgba(33, 33, 33, 0.411) 0%, rgba(33, 33, 33, 0) 100%);
}

/* -------------------------------------------------------------------------- */
/*                                   Borders                                  */
/* -------------------------------------------------------------------------- */
.ChHgdaS:is(#GhdB2wns, #YYuuj2t, #ZuAAZt, #JXfJGanaO, #stZc2P6OexK, #sMnEGAgyn, #ZyJzJTzf, #IE1PYdnQdM2, #eQjGJJa, #JMhEm5, #ReChFpl3XCk, #nPtNjm8, #QRE98sgv, #IzxTQ0Qx, #IyE1Cy0VP, #W8y6i5x, #sC8HIjJhXWg, #NheWGuCYy, #JVga1Dc, #Bkwgk1CW, #eVs11N, #UFL7P8D4xe, #TeP2Yxey, #ZWUS7Z5Kh, #TdscnmG, #h97Q0Q4ob, #rgaXM4i, #NTyutZDR, #fzDVH8En9, #Xkg6JXSFWqg, #qZQN7mdxj9, #maMjI1, #JyKfwVv, #nwFiBsOV, #oH7pcT, #yP3TL6aUjmF, #Sm9FPXxbJgf, #gIcEietK6, #t4WBzY5, #xVav5S, #ddo0cpHgE4S, #zLs63rDYGkd, #LV3weJIOl, #rfoWjc, #d6uebN, #UrVyopL, #ZzG00Nvtb5T, #Uaj80b, #nx8kkL, #OmKacuubeX, #Oq4KJv6iD, #KX6Og1, #xSLPSGD5grx, #cVwDRM, #GeIoyRe, #QpRzo5GeTTs, #NXJbv7k, #Vw7zo2peh, #Q3J0cKb, #sOb40Uqw, #iRIuOfPCW56, #gvgXh1U, #wL2Dh4G6GYu, #eWSelK, #WhJAidJdI7a, #aKG33WYGt, #fIyTnTb, #ArlnVQcS, #o1lG9KfDgO, #tK40zrt, #q3LzDCwYs, #E6wAvc, #gLY9SCzSAW, #JyTCCHWv, #oVlP84EqFo0, #RnMpuUK5, #RIrQhhHEQeA, #HTnzvyHyHD, #it99cpENhEV, #W9viaF, #z330FxCSRM, #NuTsR7, #NCYdZf7k, #jTkOwaO) {
  -webkit-mask-image: radial-gradient(#FFFEFE, #000);
  mask-image: radial-gradient(#FFFEFE, #000);
}

.XcAxAkzWuOK {
  border-top-width: 0.125rem !important;
}

.p2QcmqJiG8V {
  border-right-width: 0.125rem !important;
}

.D0o7umhTw83 {
  border-bottom-width: 0.125rem !important;
}

.MyAdNf {
  border-left-width: 0.125rem !important;
}

.wFeXHbA9I {
  border-style: solid;
  -o-border-image: -o-linear-gradient(right, rgba(180, 210, 255, 0) 1%, #c7d9f5 50%, rgba(180, 210, 255, 0) 100%) 100% 0 100% 0/1px 0 1px 0 stretch;
  border-image: -webkit-gradient(linear, right top, left top, color-stop(1%, rgba(180, 210, 255, 0)), color-stop(50%, #c7d9f5), to(rgba(180, 210, 255, 0))) 100% 0 100% 0/1px 0 1px 0 stretch;
  border-image: linear-gradient(to left, rgba(180, 210, 255, 0) 1%, #c7d9f5 50%, rgba(180, 210, 255, 0) 100%) 100% 0 100% 0/1px 0 1px 0 stretch;
}

.XQ8ycy {
  border: 2px solid #FFFEFE;
  border-radius: 5rem;
}

.HJC76qGgP {
  border: double .5rem transparent;
  border-radius: 80px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white)), -webkit-gradient(linear, left top, right top, from(#c381db), to(#4e92f9));
  background-image: -o-linear-gradient(white, white), -o-linear-gradient(left, #c381db, #4e92f9);
  background-image: linear-gradient(white, white), linear-gradient(to right, #c381db, #4e92f9);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

/* -------------------------------------------------------------------------- */
/*                                  Position                                  */
/* -------------------------------------------------------------------------- */
.container,
.XXXfST4Zgs,
.OgEV5C,
.KMt7eJRVhO,
.MWnd8fpY6,
.Q9fkizG,
.J5dpWzb {
  position: relative;
}

.TMDieim {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* -------------------------------------------------------------------------- */
/*                                    Flex                                    */
/* -------------------------------------------------------------------------- */
.QBCltHn9cAE {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.rPzkDh {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.PdIpdzgC {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.HmbPbIMRBX {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.gbtatM5 {
  color: #000 !important;
}

.gbtatM5:hover, .gbtatM5:focus {
  color: black !important;
}

.QbiXFf {
  color: #FCFCFC !important;
}

.QbiXFf:hover, .QbiXFf:focus {
  color: #d6d6d6 !important;
}

.mp8BR2V5 {
  color: #F5F5F5 !important;
}

.mp8BR2V5:hover, .mp8BR2V5:focus {
  color: #cfcfcf !important;
}

.kdIMb2 {
  color: #EEEEEE !important;
}

.kdIMb2:hover, .kdIMb2:focus {
  color: #c8c8c8 !important;
}

.wzN2SB {
  color: #E0E0E0 !important;
}

.wzN2SB:hover, .wzN2SB:focus {
  color: #bababa !important;
}

.BR0JeKJoAhJ {
  color: #BDBDBD !important;
}

.BR0JeKJoAhJ:hover, .BR0JeKJoAhJ:focus {
  color: #979797 !important;
}

.kfZ7DXLn {
  color: #9E9E9E !important;
}

.kfZ7DXLn:hover, .kfZ7DXLn:focus {
  color: #787878 !important;
}

.LEvvQpyE {
  color: #757575 !important;
}

.LEvvQpyE:hover, .LEvvQpyE:focus {
  color: #4f4f4f !important;
}

.KCB49SUp {
  color: #616161 !important;
}

.KCB49SUp:hover, .KCB49SUp:focus {
  color: #3b3b3b !important;
}

.zdzEWrwo {
  color: #424242 !important;
}

.zdzEWrwo:hover, .zdzEWrwo:focus {
  color: #1c1c1c !important;
}

.L6opsI {
  color: #212121 !important;
}

.L6opsI:hover, .L6opsI:focus {
  color: black !important;
}

.gm1B6jNM {
  color: #FFFEFE !important;
}

.gm1B6jNM:hover, .gm1B6jNM:focus {
  color: #ffb2b2 !important;
}

.shadow-transition {
  -webkit-box-shadow: 0 1.5625rem 2.8125rem rgba(66, 66, 66, 0.075);
  box-shadow: 0 1.5625rem 2.8125rem rgba(66, 66, 66, 0.075);
  -webkit-transition: -webkit-box-shadow 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease;
  -o-transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.QcxTaT3joD {
  position: relative;
}

.QcxTaT3joD::before {
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  z-index: -1 !important;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.yhWnYQjTWJc::before {
  left: auto;
  right: 0;
}

.NriKXS9ZG::before {
  right: auto;
  left: 0;
}

.YBdSF5ZA1w:before {
  -webkit-box-shadow: 0 0 12.5rem 3.75rem #FF705C;
  box-shadow: 0 0 12.5rem 3.75rem #FF705C;
}

.Y8Wivt0:before {
  -webkit-box-shadow: 7.5rem 0 48.75rem 4.0625rem #FFA15C;
  box-shadow: 7.5rem 0 48.75rem 4.0625rem #FFA15C;
}

.aK6PoEuxbk:before {
  -webkit-box-shadow: 9.375rem 15.625rem 50rem 3.125rem #00A1FC;
  box-shadow: 9.375rem 15.625rem 50rem 3.125rem #00A1FC;
}

.oM93HU:before {
  -webkit-box-shadow: 0 0 18.75rem 6.25rem #B98F7D;
  box-shadow: 0 0 18.75rem 6.25rem #B98F7D;
}

.za7J6q:before {
  -webkit-box-shadow: 0 15.625rem 50rem 4.6875rem #F8A2FF;
  box-shadow: 0 15.625rem 50rem 4.6875rem #F8A2FF;
}

.circle {
  position: relative;
}

.circle::before {
  position: absolute;
  content: '';
  height: 12.5rem;
  width: 12.5rem;
  border-radius: 50%;
  z-index: -1 !important;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  background-image: -o-linear-gradient(250deg, rgba(86, 151, 250, 0), #4e92f94a);
  background-image: linear-gradient(200deg, rgba(86, 151, 250, 0), #4e92f94a);
}

@media (min-width: 576px) {
  .square {
    position: relative;
    display: inline-block;
  }
  .square::before {
    position: absolute;
    content: '';
    height: 25rem;
    width: 25rem;
    border-radius: 3.8125rem;
    z-index: -1 !important;
    background-image: -o-linear-gradient(250deg, rgba(78, 146, 249, 0.342), rgba(225, 160, 247, 0.274));
    background-image: linear-gradient(200deg, rgba(78, 146, 249, 0.342), rgba(225, 160, 247, 0.274));
  }
  .dq5b7jMH::before {
    top: 5rem;
    left: 5rem;
  }
  .UwPYeJDp2Vb::before {
    top: -5rem;
    left: -5rem;
  }
}

@media (min-width: 576px) {
  .gma1Mq37D {
    position: relative;
    display: inline-block;
  }
  .gma1Mq37D::before {
    position: absolute;
    content: '';
    z-index: -1 !important;
  }
  .ufjhiIDHW::before {
    height: 18.75rem;
    width: 12.5rem;
    top: 0.375rem;
    left: 1.25rem;
    border-radius: 1.5625rem 3.125rem 1.5625rem 3.125rem;
    background-image: -o-linear-gradient(250deg, rgba(78, 146, 249, 0.034), rgba(78, 146, 249, 0.642));
    background-image: linear-gradient(200deg, rgba(78, 146, 249, 0.034), rgba(78, 146, 249, 0.642));
  }
  .xyAU15::before {
    height: 18.75rem;
    width: 12.5rem;
    top: 0.375rem;
    right: 1.25rem;
    border-radius: 1.5625rem 1.5625rem 3.125rem 1.5625rem;
    background-image: -o-linear-gradient(250deg, rgba(225, 160, 247, 0), rgba(225, 160, 247, 0.377));
    background-image: linear-gradient(200deg, rgba(225, 160, 247, 0), rgba(225, 160, 247, 0.377));
  }
  .KeY1Z9aci::before {
    height: 100%;
    width: 100%;
    top: 16%;
    right: 12%;
    border-radius: 5rem 5rem 5rem 8.75rem;
    background-image: -o-linear-gradient(250deg, rgba(78, 146, 249, 0.034), rgba(78, 146, 249, 0.642));
    background-image: linear-gradient(200deg, rgba(78, 146, 249, 0.034), rgba(78, 146, 249, 0.642));
  }
}

.RgQYAZSYy {
  position: relative;
}

.RgQYAZSYy::before {
  position: absolute;
  content: '';
  height: 6.25rem;
  width: 6.25rem;
  border-radius: 1.5625rem;
  z-index: -1 !important;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(26%, 8%, 0);
  transform: translate3d(26%, 8%, 0);
  background-image: -o-linear-gradient(250deg, rgba(78, 146, 249, 0.342), rgba(225, 160, 247, 0.274));
  background-image: linear-gradient(200deg, rgba(78, 146, 249, 0.342), rgba(225, 160, 247, 0.274));
}

.a7cpC7N {
  -webkit-box-shadow: 0px 0.4375rem 1.25rem rgba(49, 69, 255, 0.13);
  box-shadow: 0px 0.4375rem 1.25rem rgba(49, 69, 255, 0.13);
}

.CM63xyyVkU {
  position: relative;
  display: inline-block;
}

.CM63xyyVkU::before {
  position: absolute;
  content: '';
  height: 3.125rem;
  width: 3.125rem;
  border-radius: 0.9375rem;
  z-index: -1 !important;
  top: 0.375rem;
  left: 1.25rem;
}

.PisjRSi:before {
  background-image: -o-linear-gradient(250deg, rgba(235, 100, 83, 0.134), rgba(235, 100, 83, 0.134));
  background-image: linear-gradient(200deg, rgba(235, 100, 83, 0.134), rgba(235, 100, 83, 0.134));
}

.dBhV73G:before {
  background-image: -o-linear-gradient(250deg, rgba(78, 146, 249, 0.134), rgba(78, 146, 249, 0.134));
  background-image: linear-gradient(200deg, rgba(78, 146, 249, 0.134), rgba(78, 146, 249, 0.134));
}

.qj49alO6w:before {
  background-image: -o-linear-gradient(250deg, rgba(239, 171, 24, 0.134), rgba(239, 171, 24, 0.134));
  background-image: linear-gradient(200deg, rgba(239, 171, 24, 0.134), rgba(239, 171, 24, 0.134));
}

.Xy1w2GTLdX:before {
  background-image: -o-linear-gradient(250deg, rgba(150, 209, 33, 0.134), rgba(150, 209, 33, 0.134));
  background-image: linear-gradient(200deg, rgba(150, 209, 33, 0.134), rgba(150, 209, 33, 0.134));
}

.IBVn6hhw8uo:before {
  background-image: -o-linear-gradient(250deg, rgba(196, 109, 227, 0.134), rgba(196, 109, 227, 0.134));
  background-image: linear-gradient(200deg, rgba(196, 109, 227, 0.134), rgba(196, 109, 227, 0.134));
}

.vs2eear:before {
  background-image: -o-linear-gradient(250deg, rgba(33, 212, 223, 0.134), rgba(33, 212, 223, 0.134));
  background-image: linear-gradient(200deg, rgba(33, 212, 223, 0.134), rgba(33, 212, 223, 0.134));
}

/*-----------------------------------------------
|   Icons group
-----------------------------------------------*/
.lnmDpAr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lnmDpAr .tFlaJN:not(:last-child) {
  margin-right: 0.5rem;
}

.tFlaJN {
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #757575;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 2.5rem;
  width: 2.5rem;
  border: 0;
  font-size: 0.875rem;
  -webkit-box-shadow: 0 1.5625rem 2.8125rem rgba(0, 87, 255, 0.15);
  box-shadow: 0 1.5625rem 2.8125rem rgba(0, 87, 255, 0.15);
}

.tFlaJN:hover, .tFlaJN:focus {
  background-color: #F5F5F5;
}

.tFlaJN.kxVETn {
  height: 1.875rem;
  width: 1.875rem;
}

.tFlaJN.F5K65ZU {
  height: 2.75rem;
  width: 2.75rem;
}

.Scwb9P8 .QJLRAER {
  opacity: 1;
}

/*-----------------------------------------------
|   Object fit and Z-index
-----------------------------------------------*/
.meW2Je {
  -o-object-fit: cover;
  object-fit: cover;
}

.lSwKSAvbx {
  z-index: 1;
}

.Df6IExehxZG {
  z-index: 2 !important;
}

.bJFKgy {
  z-index: -1;
}

/*-----------------------------------------------
|   Sidebar
-----------------------------------------------*/
.QL8G4aO {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1020;
  top: 5.3125rem;
}

/*-----------------------------------------------
|   Custom circle
-----------------------------------------------*/
.BKIPq0i0q {
  border: 1px dashed #B98F7D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
}

/*-----------------------------------------------
|   Miscellaneous
-----------------------------------------------*/
.tqDdA8GY4Xn:hover, .tqDdA8GY4Xn:focus {
  text-decoration: none;
}

.oV043atD4t {
  resize: none;
}

.collapsed .vfH5hU1Aa {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.vfH5hU1Aa {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

[data-dismiss="dropdown"] *,
[data-offset-top] *,
[data-toggle="collapse"] *,
[data-toggle="tooltip"] *,
[data-toggle="popover"] * {
  pointer-events: none;
}

/*-----------------------------------------------
|   Outline
-----------------------------------------------*/
.rj3Vn9pk {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.rj3Vn9pk:hover, .rj3Vn9pk:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*-----------------------------------------------
|   Vertical Line (used in kanban header)
-----------------------------------------------*/
.AOTqTryCm:after {
  position: absolute;
  content: "";
  height: 75%;
  width: 1px;
  background: #EEEEEE;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.AOTqTryCm.kLKxxBy46M7:after {
  background-color: #E0E0E0;
}

/* -------------------------------------------------------------------------- */
/*                                 Transition                                 */
/* -------------------------------------------------------------------------- */
.lM60OXWYz {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.FyIeYLia {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.Bkvlp112 {
  font-size: 75%;
}

/* -------------------------------------------------------------------------- */
/*                                    Width                                   */
/* -------------------------------------------------------------------------- */
.G7ehoHdX {
  min-width: 0;
}

/* -------------------------------------------------------------------------- */
/*                                Terms sidebar                               */
/* -------------------------------------------------------------------------- */
.fjQspfD6cQ .nav-link {
  color: #BDBDBD;
  font-weight: 500;
  font-family: "Roboto Condensed", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.fjQspfD6cQ .nav-link.active {
  color: #B98F7D;
}

.icon {
  padding: 1rem;
  border-radius: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: rgba(255, 254, 254, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 254, 254, 0.3);
}

.hSqLe9M {
  color: #B98F7D;
}

.pBAVhei {
  color: #9E9E9E;
}

.gFKaJW8YTlN {
  color: #19CC61;
}

.oim3s2gest {
  color: #00A1FC;
}

.MCv8TZ {
  color: #FFA15C;
}

.XNWp3KoI {
  color: #FF705C;
}

.eurZmkOS4Af {
  color: #F9FAFD;
}

.khm2Xp9 {
  color: #212121;
}

/*-----------------------------------------------
|   LaslesVPN glow buttons
-----------------------------------------------*/
.tpLlslk5 {
  position: relative;
}

.tpLlslk5::before {
  content: '';
  height: 80%;
  width: 80%;
  position: absolute;
  top: 10%;
  left: 10%;
  display: inline-block;
  background-color: inherit;
  opacity: 0.55;
  -webkit-filter: blur(26px);
  filter: blur(26px);
  -webkit-transform: translateY(45%);
  -ms-transform: translateY(45%);
  transform: translateY(45%);
  z-index: -1;
  border-radius: 10px;
}

.nBQf6D:hover {
  -webkit-box-shadow: 0 10px 20px #F8A2FF, 0 6px 6px #B98F7D;
  box-shadow: 0 10px 20px #F8A2FF, 0 6px 6px #B98F7D;
}

.Fi3xih {
  position: relative;
}

.Fi3xih::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: auto;
  background: -o-linear-gradient(40deg, #B98F7D, #B98F7D);
  background: linear-gradient(50deg, #B98F7D, #B98F7D);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg  xmlns="http://www.w3.org/2000/svg" ><rect x="1" y="1" width="100%" height="100%" style="height:calc(100% - 2px);width:calc(100% - 2px)" rx="6" ry="6" stroke-width="1" fill="transparent" stroke="white"/></svg>') 0/100% 100%;
  mask: url('data:image/svg+xml;utf8,<svg  xmlns="http://www.w3.org/2000/svg" ><rect x="1" y="1" width="100%" height="100%" style="height:calc(100% - 2px);width:calc(100% - 2px)" rx="6" ry="6" stroke-width="1" fill="transparent" stroke="white"/></svg>') 0/100% 100%;
}

/* Hover */
.oFwsYs4mNpj {
  -webkit-transform: translateY(0) translateZ(0);
  transform: translateY(0) translateZ(0);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.oFwsYs4mNpj.PvQsVe:hover, .oFwsYs4mNpj.PvQsVe:focus {
  -webkit-transform: translateY(-0.3125rem) translateZ(0);
  transform: translateY(-0.3125rem) translateZ(0);
}

.oFwsYs4mNpj:hover, .oFwsYs4mNpj:focus {
  -webkit-transform: translateY(-0.125rem) translateZ(0);
  transform: translateY(-0.125rem) translateZ(0);
  -webkit-box-shadow: 0.5rem 0.5rem 1.5rem rgba(110, 74, 156, 0.1) !important;
  box-shadow: 0.5rem 0.5rem 1.5rem rgba(110, 74, 156, 0.1) !important;
  background-color: #F8A2FF;
  color: #FFFEFE;
}

.oFwsYs4mNpj:hover .zGnZz9mw8z, .oFwsYs4mNpj:focus .zGnZz9mw8z {
  color: #FFFEFE;
}

/* Icon Forward */
.mQU03Vd {
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.mQU03Vd .MIl7Zbl {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.mQU03Vd:hover .MIl7Zbl, .mQU03Vd:focus .MIl7Zbl, .mQU03Vd:active .MIl7Zbl {
  -webkit-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}

/* -------------------------------------------------------------------------- */
/*                                    Badge                                   */
/* -------------------------------------------------------------------------- */
.badge {
  line-height: 0.8125rem;
}

.uXuDEn2gd6 {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0.5rem;
}

@media (min-width: 768px) {
  .uXuDEn2gd6 {
    height: 3.4rem;
    width: 3.4rem;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1rem;
  }
}

.carousel-indicators {
  position: static;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  margin: 0;
}

.carousel-indicators li {
  border-radius: 50%;
  border-radius: 10px;
}

.carousel-indicators .active {
  opacity: 1;
}

.dtahivRKZl {
  left: auto;
}

.dtahivRKZl,
.mX3cZeuB {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: rgba(185, 143, 125, 0.7);
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.9;
  -webkit-transition: opacity 0.15s ease;
  -o-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .dtahivRKZl,
  .mX3cZeuB {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.dtahivRKZl:hover, .dtahivRKZl:focus,
.mX3cZeuB:hover,
.mX3cZeuB:focus {
  color: rgba(185, 143, 125, 0.7);
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.dtahivRKZl {
  left: 0;
}

.mX3cZeuB {
  right: 0;
}

.ysHyYCfS,
.wGCkW3zEYvi {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.ysHyYCfS {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-arrow-left-short' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5z'/%3E%3C/svg%3E");
}

.wGCkW3zEYvi {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-arrow-right-short' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.lfJXLauHJR {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 0;
}

.lfJXLauHJR .GWwIntMhxbq {
  position: absolute;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.dUHmtj,
.kx7kzR {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.dUHmtj,
.Ej6iydga {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.k4jp0gGhP1 {
  position: relative;
}

.k4jp0gGhP1 .gFjZsjbarI {
  padding-left: 2.8rem;
  vertical-align: middle;
}

.k4jp0gGhP1 .YlrkgHTJ {
  position: absolute;
  top: 50%;
  left: 1rem;
  color: #EEEEEE;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.l85LL5lzXSn {
  background-color: #FFFEFE;
  background-clip: padding-box;
  border: 0 solid #E0E0E0;
  border-bottom: 1px solid #BDBDBD;
  border-radius: 0;
  color: #212121;
}

.i6EQf1T6fG {
  color: #212121;
  background-color: #FFFEFE;
  border: 0 solid #E0E0E0;
  border-bottom: 1px solid #BDBDBD;
  border-radius: 0;
}

Calaendar icon input[type="date"]::-webkit-calendar-picker-indicator {
  width: 10px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' version='1.1' width='512' height='512' x='0' y='0' viewBox='0 0 451.847 451.847' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M225.923,354.706c-8.098,0-16.195-3.092-22.369-9.263L9.27,151.157c-12.359-12.359-12.359-32.397,0-44.751 c12.354-12.354,32.388-12.354,44.748,0l171.905,171.915l171.906-171.909c12.359-12.354,32.391-12.354,44.744,0 c12.365,12.354,12.365,32.392,0,44.751L248.292,345.449C242.115,351.621,234.018,354.706,225.923,354.706z' fill='%23607080' data-original='%23000000' style='' class=''/%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  padding: 0px;
  margin-left: auto;
  margin-right: auto;
}

.O4l10LyKJ {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(10.94%, rgba(255, 255, 255, 0.890625)), color-stop(86.46%, #FFFFFF), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.890625) 10.94%, #FFFFFF 86.46%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.890625) 10.94%, #FFFFFF 86.46%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(60px);
  backdrop-filter: blur(60px);
}

.backdrop {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.a8mvnJYav9x {
  border-bottom: 0;
}

.a8mvnJYav9x .nav-link {
  border: 2px solid transparent;
  color: #616161;
}

.a8mvnJYav9x .nav-link:hover, .a8mvnJYav9x .nav-link:focus {
  border-color: transparent;
}

.a8mvnJYav9x .nav-link.active,
.a8mvnJYav9x .nav-item.show .nav-link {
  border-bottom-color: #757575;
}

/*-----------------------------------------------
|   User Styles
-----------------------------------------------*/

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