.o-v {
  overflow: visible !important;
}
.ox-v {
  overflow-x: visible !important;
}
.oy-v {
  overflow-y: visible !important;
}
.o-h {
  overflow: hidden !important;
}
.ox-h {
  overflow-x: hidden !important;
}
.oy-h {
  overflow-y: hidden !important;
}
.p-r {
  position: relative !important;
}
.p-a {
  position: absolute !important;
}
.p-f {
  position: fixed !important;
}
.p-s {
  position: static !important;
}
.fd-c {
  flex-direction: column;
}
.fd-cr {
  flex-direction: column-reverse;
}
.fd-r {
  flex-direction: row;
}
.fd-rr {
  flex-direction: row-reverse;
}
.ai-start {
  align-items: flex-start;
}
.ai-end {
  align-items: flex-end;
}
.ai-center {
  align-items: center;
}
.ai-baseline {
  align-items: baseline;
}
.ai-stretch {
  align-items: stretch;
}
.as-start {
  align-self: flex-start;
}
.as-end {
  align-self: flex-end;
}
.as-center {
  align-self: center;
}
.as-baseline {
  align-self: baseline;
}
.as-stretch {
  align-self: stretch;
}
.jc-start {
  justify-content: flex-start;
}
.jc-end {
  justify-content: flex-end;
}
.jc-center {
  justify-content: center;
}
.jc-between {
  justify-content: space-between;
}
.jc-around {
  justify-content: space-around;
}
.absolute-full {
  position: absolute;
  inset: 0;
}
.absolute-full-size {
  position: absolute;
  width: 100%;
  height: 100%;
}
.img-full {
  display: block;
  max-width: inherit;
  width: 100%;
}
.img-cover {
  object-fit: cover;
}
.img-contain {
  object-fit: contain;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.container,
.container-fluid {
  width: calc(100% - var(--container-gutter, 15px) * 2);
  margin-inline: auto;
}
.container {
  max-width: var(--container-width, none);
}
@media (min-width: 36rem) {
  .container {
    --container-width: 540px;
  }
}
@media (min-width: 48rem) {
  .container {
    --container-width: 720px;
  }
}
@media (min-width: 64rem) {
  .container {
    --container-width: 960px;
  }
}
@media (min-width: 80rem) {
  .container {
    --container-width: 80rem;
  }
}
.row,
[class*=" row-"],
[class^="row-"] {
  --gx: 30px;
  --gy: 30px;
  --tgx: max(0px, calc((var(--cc) - 1) * var(--gx)));
  display: flex;
  flex-wrap: wrap;
  gap: var(--gy) var(--gx);
}
.row {
  --cc: 24;
}
.row-12 {
  --cc: 12;
}
.col,
[class*=" col-"],
[class^="col-"] {
  --cw: calc(
    (100% - var(--tgx)) / var(--cc) * var(--cs) + (var(--cs) - 1) * var(--gx)
  );
  width: var(--cw, 100%);
  flex: 0 0 var(--cw, 100%);
}
[class*=" offset-"],
[class^="offset-"] {
  margin-left: calc(
    (100% - var(--tgx)) / var(--cc) * var(--co) + var(--co) * var(--gx)
  );
}
.col {
  --cs: var(--cc);
}
.col-auto {
  --cw: auto;
}
.col-1 {
  --cs: 1;
}
.offset-1 {
  --co: 1;
}
.col-2 {
  --cs: 2;
}
.offset-2 {
  --co: 2;
}
.col-3 {
  --cs: 3;
}
.offset-3 {
  --co: 3;
}
.col-4 {
  --cs: 4;
}
.offset-4 {
  --co: 4;
}
.col-5 {
  --cs: 5;
}
.offset-5 {
  --co: 5;
}
.col-6 {
  --cs: 6;
}
.offset-6 {
  --co: 6;
}
.col-7 {
  --cs: 7;
}
.offset-7 {
  --co: 7;
}
.col-8 {
  --cs: 8;
}
.offset-8 {
  --co: 8;
}
.col-9 {
  --cs: 9;
}
.offset-9 {
  --co: 9;
}
.col-10 {
  --cs: 10;
}
.offset-10 {
  --co: 10;
}
.col-11 {
  --cs: 11;
}
.offset-11 {
  --co: 11;
}
.col-12 {
  --cs: 12;
}
.offset-12 {
  --co: 12;
}
.col-13 {
  --cs: 13;
}
.offset-13 {
  --co: 13;
}
.col-14 {
  --cs: 14;
}
.offset-14 {
  --co: 14;
}
.col-15 {
  --cs: 15;
}
.offset-15 {
  --co: 15;
}
.col-16 {
  --cs: 16;
}
.offset-16 {
  --co: 16;
}
.col-17 {
  --cs: 17;
}
.offset-17 {
  --co: 17;
}
.col-18 {
  --cs: 18;
}
.offset-18 {
  --co: 18;
}
.col-19 {
  --cs: 19;
}
.offset-19 {
  --co: 19;
}
.col-20 {
  --cs: 20;
}
.offset-20 {
  --co: 20;
}
.col-21 {
  --cs: 21;
}
.offset-21 {
  --co: 21;
}
.col-22 {
  --cs: 22;
}
.offset-22 {
  --co: 22;
}
.col-23 {
  --cs: 23;
}
.offset-23 {
  --co: 23;
}
.col-24 {
  --cs: 24;
}
.order-first {
  order: -1;
}
.order-last {
  order: 999;
}
.order-0 {
  order: 0;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}
.order-7 {
  order: 7;
}
.order-8 {
  order: 8;
}
.order-9 {
  order: 9;
}
.order-10 {
  order: 10;
}
.order-11 {
  order: 11;
}
.order-12 {
  order: 12;
}
.order-13 {
  order: 13;
}
.order-14 {
  order: 14;
}
.order-15 {
  order: 15;
}
.order-16 {
  order: 16;
}
.order-17 {
  order: 17;
}
.order-18 {
  order: 18;
}
.order-19 {
  order: 19;
}
.order-20 {
  order: 20;
}
.order-21 {
  order: 21;
}
.order-22 {
  order: 22;
}
.order-23 {
  order: 23;
}
.order-24 {
  order: 24;
}
@media (min-width: 36rem) {
  .col-sm {
    --cs: var(--cc);
  }
  .col-sm-auto {
    --cw: auto;
  }
  .col-sm-1 {
    --cs: 1;
  }
  .offset-sm-1 {
    --co: 1;
  }
  .col-sm-2 {
    --cs: 2;
  }
  .offset-sm-2 {
    --co: 2;
  }
  .col-sm-3 {
    --cs: 3;
  }
  .offset-sm-3 {
    --co: 3;
  }
  .col-sm-4 {
    --cs: 4;
  }
  .offset-sm-4 {
    --co: 4;
  }
  .col-sm-5 {
    --cs: 5;
  }
  .offset-sm-5 {
    --co: 5;
  }
  .col-sm-6 {
    --cs: 6;
  }
  .offset-sm-6 {
    --co: 6;
  }
  .col-sm-7 {
    --cs: 7;
  }
  .offset-sm-7 {
    --co: 7;
  }
  .col-sm-8 {
    --cs: 8;
  }
  .offset-sm-8 {
    --co: 8;
  }
  .col-sm-9 {
    --cs: 9;
  }
  .offset-sm-9 {
    --co: 9;
  }
  .col-sm-10 {
    --cs: 10;
  }
  .offset-sm-10 {
    --co: 10;
  }
  .col-sm-11 {
    --cs: 11;
  }
  .offset-sm-11 {
    --co: 11;
  }
  .col-sm-12 {
    --cs: 12;
  }
  .offset-sm-12 {
    --co: 12;
  }
  .col-sm-13 {
    --cs: 13;
  }
  .offset-sm-13 {
    --co: 13;
  }
  .col-sm-14 {
    --cs: 14;
  }
  .offset-sm-14 {
    --co: 14;
  }
  .col-sm-15 {
    --cs: 15;
  }
  .offset-sm-15 {
    --co: 15;
  }
  .col-sm-16 {
    --cs: 16;
  }
  .offset-sm-16 {
    --co: 16;
  }
  .col-sm-17 {
    --cs: 17;
  }
  .offset-sm-17 {
    --co: 17;
  }
  .col-sm-18 {
    --cs: 18;
  }
  .offset-sm-18 {
    --co: 18;
  }
  .col-sm-19 {
    --cs: 19;
  }
  .offset-sm-19 {
    --co: 19;
  }
  .col-sm-20 {
    --cs: 20;
  }
  .offset-sm-20 {
    --co: 20;
  }
  .col-sm-21 {
    --cs: 21;
  }
  .offset-sm-21 {
    --co: 21;
  }
  .col-sm-22 {
    --cs: 22;
  }
  .offset-sm-22 {
    --co: 22;
  }
  .col-sm-23 {
    --cs: 23;
  }
  .offset-sm-23 {
    --co: 23;
  }
  .col-sm-24 {
    --cs: 24;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 999;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .order-sm-13 {
    order: 13;
  }
  .order-sm-14 {
    order: 14;
  }
  .order-sm-15 {
    order: 15;
  }
  .order-sm-16 {
    order: 16;
  }
  .order-sm-17 {
    order: 17;
  }
  .order-sm-18 {
    order: 18;
  }
  .order-sm-19 {
    order: 19;
  }
  .order-sm-20 {
    order: 20;
  }
  .order-sm-21 {
    order: 21;
  }
  .order-sm-22 {
    order: 22;
  }
  .order-sm-23 {
    order: 23;
  }
  .order-sm-24 {
    order: 24;
  }
}
@media (min-width: 48rem) {
  .col-md {
    --cs: var(--cc);
  }
  .col-md-auto {
    --cw: auto;
  }
  .col-md-1 {
    --cs: 1;
  }
  .offset-md-1 {
    --co: 1;
  }
  .col-md-2 {
    --cs: 2;
  }
  .offset-md-2 {
    --co: 2;
  }
  .col-md-3 {
    --cs: 3;
  }
  .offset-md-3 {
    --co: 3;
  }
  .col-md-4 {
    --cs: 4;
  }
  .offset-md-4 {
    --co: 4;
  }
  .col-md-5 {
    --cs: 5;
  }
  .offset-md-5 {
    --co: 5;
  }
  .col-md-6 {
    --cs: 6;
  }
  .offset-md-6 {
    --co: 6;
  }
  .col-md-7 {
    --cs: 7;
  }
  .offset-md-7 {
    --co: 7;
  }
  .col-md-8 {
    --cs: 8;
  }
  .offset-md-8 {
    --co: 8;
  }
  .col-md-9 {
    --cs: 9;
  }
  .offset-md-9 {
    --co: 9;
  }
  .col-md-10 {
    --cs: 10;
  }
  .offset-md-10 {
    --co: 10;
  }
  .col-md-11 {
    --cs: 11;
  }
  .offset-md-11 {
    --co: 11;
  }
  .col-md-12 {
    --cs: 12;
  }
  .offset-md-12 {
    --co: 12;
  }
  .col-md-13 {
    --cs: 13;
  }
  .offset-md-13 {
    --co: 13;
  }
  .col-md-14 {
    --cs: 14;
  }
  .offset-md-14 {
    --co: 14;
  }
  .col-md-15 {
    --cs: 15;
  }
  .offset-md-15 {
    --co: 15;
  }
  .col-md-16 {
    --cs: 16;
  }
  .offset-md-16 {
    --co: 16;
  }
  .col-md-17 {
    --cs: 17;
  }
  .offset-md-17 {
    --co: 17;
  }
  .col-md-18 {
    --cs: 18;
  }
  .offset-md-18 {
    --co: 18;
  }
  .col-md-19 {
    --cs: 19;
  }
  .offset-md-19 {
    --co: 19;
  }
  .col-md-20 {
    --cs: 20;
  }
  .offset-md-20 {
    --co: 20;
  }
  .col-md-21 {
    --cs: 21;
  }
  .offset-md-21 {
    --co: 21;
  }
  .col-md-22 {
    --cs: 22;
  }
  .offset-md-22 {
    --co: 22;
  }
  .col-md-23 {
    --cs: 23;
  }
  .offset-md-23 {
    --co: 23;
  }
  .col-md-24 {
    --cs: 24;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 999;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .order-md-13 {
    order: 13;
  }
  .order-md-14 {
    order: 14;
  }
  .order-md-15 {
    order: 15;
  }
  .order-md-16 {
    order: 16;
  }
  .order-md-17 {
    order: 17;
  }
  .order-md-18 {
    order: 18;
  }
  .order-md-19 {
    order: 19;
  }
  .order-md-20 {
    order: 20;
  }
  .order-md-21 {
    order: 21;
  }
  .order-md-22 {
    order: 22;
  }
  .order-md-23 {
    order: 23;
  }
  .order-md-24 {
    order: 24;
  }
}
@media (min-width: 64rem) {
  .col-lg {
    --cs: var(--cc);
  }
  .col-lg-auto {
    --cw: auto;
  }
  .col-lg-1 {
    --cs: 1;
  }
  .offset-lg-1 {
    --co: 1;
  }
  .col-lg-2 {
    --cs: 2;
  }
  .offset-lg-2 {
    --co: 2;
  }
  .col-lg-3 {
    --cs: 3;
  }
  .offset-lg-3 {
    --co: 3;
  }
  .col-lg-4 {
    --cs: 4;
  }
  .offset-lg-4 {
    --co: 4;
  }
  .col-lg-5 {
    --cs: 5;
  }
  .offset-lg-5 {
    --co: 5;
  }
  .col-lg-6 {
    --cs: 6;
  }
  .offset-lg-6 {
    --co: 6;
  }
  .col-lg-7 {
    --cs: 7;
  }
  .offset-lg-7 {
    --co: 7;
  }
  .col-lg-8 {
    --cs: 8;
  }
  .offset-lg-8 {
    --co: 8;
  }
  .col-lg-9 {
    --cs: 9;
  }
  .offset-lg-9 {
    --co: 9;
  }
  .col-lg-10 {
    --cs: 10;
  }
  .offset-lg-10 {
    --co: 10;
  }
  .col-lg-11 {
    --cs: 11;
  }
  .offset-lg-11 {
    --co: 11;
  }
  .col-lg-12 {
    --cs: 12;
  }
  .offset-lg-12 {
    --co: 12;
  }
  .col-lg-13 {
    --cs: 13;
  }
  .offset-lg-13 {
    --co: 13;
  }
  .col-lg-14 {
    --cs: 14;
  }
  .offset-lg-14 {
    --co: 14;
  }
  .col-lg-15 {
    --cs: 15;
  }
  .offset-lg-15 {
    --co: 15;
  }
  .col-lg-16 {
    --cs: 16;
  }
  .offset-lg-16 {
    --co: 16;
  }
  .col-lg-17 {
    --cs: 17;
  }
  .offset-lg-17 {
    --co: 17;
  }
  .col-lg-18 {
    --cs: 18;
  }
  .offset-lg-18 {
    --co: 18;
  }
  .col-lg-19 {
    --cs: 19;
  }
  .offset-lg-19 {
    --co: 19;
  }
  .col-lg-20 {
    --cs: 20;
  }
  .offset-lg-20 {
    --co: 20;
  }
  .col-lg-21 {
    --cs: 21;
  }
  .offset-lg-21 {
    --co: 21;
  }
  .col-lg-22 {
    --cs: 22;
  }
  .offset-lg-22 {
    --co: 22;
  }
  .col-lg-23 {
    --cs: 23;
  }
  .offset-lg-23 {
    --co: 23;
  }
  .col-lg-24 {
    --cs: 24;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 999;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .order-lg-13 {
    order: 13;
  }
  .order-lg-14 {
    order: 14;
  }
  .order-lg-15 {
    order: 15;
  }
  .order-lg-16 {
    order: 16;
  }
  .order-lg-17 {
    order: 17;
  }
  .order-lg-18 {
    order: 18;
  }
  .order-lg-19 {
    order: 19;
  }
  .order-lg-20 {
    order: 20;
  }
  .order-lg-21 {
    order: 21;
  }
  .order-lg-22 {
    order: 22;
  }
  .order-lg-23 {
    order: 23;
  }
  .order-lg-24 {
    order: 24;
  }
}
@media (min-width: 80rem) {
  .col-xl {
    --cs: var(--cc);
  }
  .col-xl-auto {
    --cw: auto;
  }
  .col-xl-1 {
    --cs: 1;
  }
  .offset-xl-1 {
    --co: 1;
  }
  .col-xl-2 {
    --cs: 2;
  }
  .offset-xl-2 {
    --co: 2;
  }
  .col-xl-3 {
    --cs: 3;
  }
  .offset-xl-3 {
    --co: 3;
  }
  .col-xl-4 {
    --cs: 4;
  }
  .offset-xl-4 {
    --co: 4;
  }
  .col-xl-5 {
    --cs: 5;
  }
  .offset-xl-5 {
    --co: 5;
  }
  .col-xl-6 {
    --cs: 6;
  }
  .offset-xl-6 {
    --co: 6;
  }
  .col-xl-7 {
    --cs: 7;
  }
  .offset-xl-7 {
    --co: 7;
  }
  .col-xl-8 {
    --cs: 8;
  }
  .offset-xl-8 {
    --co: 8;
  }
  .col-xl-9 {
    --cs: 9;
  }
  .offset-xl-9 {
    --co: 9;
  }
  .col-xl-10 {
    --cs: 10;
  }
  .offset-xl-10 {
    --co: 10;
  }
  .col-xl-11 {
    --cs: 11;
  }
  .offset-xl-11 {
    --co: 11;
  }
  .col-xl-12 {
    --cs: 12;
  }
  .offset-xl-12 {
    --co: 12;
  }
  .col-xl-13 {
    --cs: 13;
  }
  .offset-xl-13 {
    --co: 13;
  }
  .col-xl-14 {
    --cs: 14;
  }
  .offset-xl-14 {
    --co: 14;
  }
  .col-xl-15 {
    --cs: 15;
  }
  .offset-xl-15 {
    --co: 15;
  }
  .col-xl-16 {
    --cs: 16;
  }
  .offset-xl-16 {
    --co: 16;
  }
  .col-xl-17 {
    --cs: 17;
  }
  .offset-xl-17 {
    --co: 17;
  }
  .col-xl-18 {
    --cs: 18;
  }
  .offset-xl-18 {
    --co: 18;
  }
  .col-xl-19 {
    --cs: 19;
  }
  .offset-xl-19 {
    --co: 19;
  }
  .col-xl-20 {
    --cs: 20;
  }
  .offset-xl-20 {
    --co: 20;
  }
  .col-xl-21 {
    --cs: 21;
  }
  .offset-xl-21 {
    --co: 21;
  }
  .col-xl-22 {
    --cs: 22;
  }
  .offset-xl-22 {
    --co: 22;
  }
  .col-xl-23 {
    --cs: 23;
  }
  .offset-xl-23 {
    --co: 23;
  }
  .col-xl-24 {
    --cs: 24;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 999;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .order-xl-13 {
    order: 13;
  }
  .order-xl-14 {
    order: 14;
  }
  .order-xl-15 {
    order: 15;
  }
  .order-xl-16 {
    order: 16;
  }
  .order-xl-17 {
    order: 17;
  }
  .order-xl-18 {
    order: 18;
  }
  .order-xl-19 {
    order: 19;
  }
  .order-xl-20 {
    order: 20;
  }
  .order-xl-21 {
    order: 21;
  }
  .order-xl-22 {
    order: 22;
  }
  .order-xl-23 {
    order: 23;
  }
  .order-xl-24 {
    order: 24;
  }
}
@media (min-width: 90rem) {
  .col-xxl {
    --cs: var(--cc);
  }
  .col-xxl-auto {
    --cw: auto;
  }
  .col-xxl-1 {
    --cs: 1;
  }
  .offset-xxl-1 {
    --co: 1;
  }
  .col-xxl-2 {
    --cs: 2;
  }
  .offset-xxl-2 {
    --co: 2;
  }
  .col-xxl-3 {
    --cs: 3;
  }
  .offset-xxl-3 {
    --co: 3;
  }
  .col-xxl-4 {
    --cs: 4;
  }
  .offset-xxl-4 {
    --co: 4;
  }
  .col-xxl-5 {
    --cs: 5;
  }
  .offset-xxl-5 {
    --co: 5;
  }
  .col-xxl-6 {
    --cs: 6;
  }
  .offset-xxl-6 {
    --co: 6;
  }
  .col-xxl-7 {
    --cs: 7;
  }
  .offset-xxl-7 {
    --co: 7;
  }
  .col-xxl-8 {
    --cs: 8;
  }
  .offset-xxl-8 {
    --co: 8;
  }
  .col-xxl-9 {
    --cs: 9;
  }
  .offset-xxl-9 {
    --co: 9;
  }
  .col-xxl-10 {
    --cs: 10;
  }
  .offset-xxl-10 {
    --co: 10;
  }
  .col-xxl-11 {
    --cs: 11;
  }
  .offset-xxl-11 {
    --co: 11;
  }
  .col-xxl-12 {
    --cs: 12;
  }
  .offset-xxl-12 {
    --co: 12;
  }
  .col-xxl-13 {
    --cs: 13;
  }
  .offset-xxl-13 {
    --co: 13;
  }
  .col-xxl-14 {
    --cs: 14;
  }
  .offset-xxl-14 {
    --co: 14;
  }
  .col-xxl-15 {
    --cs: 15;
  }
  .offset-xxl-15 {
    --co: 15;
  }
  .col-xxl-16 {
    --cs: 16;
  }
  .offset-xxl-16 {
    --co: 16;
  }
  .col-xxl-17 {
    --cs: 17;
  }
  .offset-xxl-17 {
    --co: 17;
  }
  .col-xxl-18 {
    --cs: 18;
  }
  .offset-xxl-18 {
    --co: 18;
  }
  .col-xxl-19 {
    --cs: 19;
  }
  .offset-xxl-19 {
    --co: 19;
  }
  .col-xxl-20 {
    --cs: 20;
  }
  .offset-xxl-20 {
    --co: 20;
  }
  .col-xxl-21 {
    --cs: 21;
  }
  .offset-xxl-21 {
    --co: 21;
  }
  .col-xxl-22 {
    --cs: 22;
  }
  .offset-xxl-22 {
    --co: 22;
  }
  .col-xxl-23 {
    --cs: 23;
  }
  .offset-xxl-23 {
    --co: 23;
  }
  .col-xxl-24 {
    --cs: 24;
  }
  .order-xxl-first {
    order: -1;
  }
  .order-xxl-last {
    order: 999;
  }
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-6 {
    order: 6;
  }
  .order-xxl-7 {
    order: 7;
  }
  .order-xxl-8 {
    order: 8;
  }
  .order-xxl-9 {
    order: 9;
  }
  .order-xxl-10 {
    order: 10;
  }
  .order-xxl-11 {
    order: 11;
  }
  .order-xxl-12 {
    order: 12;
  }
  .order-xxl-13 {
    order: 13;
  }
  .order-xxl-14 {
    order: 14;
  }
  .order-xxl-15 {
    order: 15;
  }
  .order-xxl-16 {
    order: 16;
  }
  .order-xxl-17 {
    order: 17;
  }
  .order-xxl-18 {
    order: 18;
  }
  .order-xxl-19 {
    order: 19;
  }
  .order-xxl-20 {
    order: 20;
  }
  .order-xxl-21 {
    order: 21;
  }
  .order-xxl-22 {
    order: 22;
  }
  .order-xxl-23 {
    order: 23;
  }
  .order-xxl-24 {
    order: 24;
  }
}
.g-0 {
  --gx: 0px;
}
.g-0,
.gy-0 {
  --gy: 0px;
}
.gx-0 {
  --gx: 0px;
}
.g-xs {
  --gx: 8px;
}
.g-xs,
.gy-xs {
  --gy: 8px;
}
.gx-xs {
  --gx: 8px;
}
.g-sm {
  --gx: 16px;
}
.g-sm,
.gy-sm {
  --gy: 16px;
}
.gx-sm {
  --gx: 16px;
}
.g-md {
  --gx: 22px;
}
.g-md,
.gy-md {
  --gy: 22px;
}
.gx-md {
  --gx: 22px;
}
.g-lg {
  --gx: 32px;
}
.g-lg,
.gy-lg {
  --gy: 32px;
}
.gx-lg {
  --gx: 32px;
}
.g-xl {
  --gx: 48px;
}
.g-xl,
.gy-xl {
  --gy: 48px;
}
.gx-xl {
  --gx: 48px;
}
.g-xxl {
  --gx: 80px;
}
.g-xxl,
.gy-xxl {
  --gy: 80px;
}
.gx-xxl {
  --gx: 80px;
}
@media (max-width: 89.98rem) {
  .xxl-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .xxl-down-gy-0 {
    --gy: 0px;
  }
  .xxl-down-gx-0 {
    --gx: 0px;
  }
  .xxl-down-g-xs {
    --gx: 8px;
    --gy: 8px;
  }
  .xxl-down-gy-xs {
    --gy: 8px;
  }
  .xxl-down-gx-xs {
    --gx: 8px;
  }
  .xxl-down-g-sm {
    --gx: 16px;
    --gy: 16px;
  }
  .xxl-down-gy-sm {
    --gy: 16px;
  }
  .xxl-down-gx-sm {
    --gx: 16px;
  }
  .xxl-down-g-md {
    --gx: 22px;
    --gy: 22px;
  }
  .xxl-down-gy-md {
    --gy: 22px;
  }
  .xxl-down-gx-md {
    --gx: 22px;
  }
  .xxl-down-g-lg {
    --gx: 32px;
    --gy: 32px;
  }
  .xxl-down-gy-lg {
    --gy: 32px;
  }
  .xxl-down-gx-lg {
    --gx: 32px;
  }
  .xxl-down-g-xl {
    --gx: 48px;
    --gy: 48px;
  }
  .xxl-down-gy-xl {
    --gy: 48px;
  }
  .xxl-down-gx-xl {
    --gx: 48px;
  }
  .xxl-down-g-xxl {
    --gx: 80px;
    --gy: 80px;
  }
  .xxl-down-gy-xxl {
    --gy: 80px;
  }
  .xxl-down-gx-xxl {
    --gx: 80px;
  }
}
@media (max-width: 79.98rem) {
  .xl-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .xl-down-gy-0 {
    --gy: 0px;
  }
  .xl-down-gx-0 {
    --gx: 0px;
  }
  .xl-down-g-xs {
    --gx: 8px;
    --gy: 8px;
  }
  .xl-down-gy-xs {
    --gy: 8px;
  }
  .xl-down-gx-xs {
    --gx: 8px;
  }
  .xl-down-g-sm {
    --gx: 16px;
    --gy: 16px;
  }
  .xl-down-gy-sm {
    --gy: 16px;
  }
  .xl-down-gx-sm {
    --gx: 16px;
  }
  .xl-down-g-md {
    --gx: 22px;
    --gy: 22px;
  }
  .xl-down-gy-md {
    --gy: 22px;
  }
  .xl-down-gx-md {
    --gx: 22px;
  }
  .xl-down-g-lg {
    --gx: 32px;
    --gy: 32px;
  }
  .xl-down-gy-lg {
    --gy: 32px;
  }
  .xl-down-gx-lg {
    --gx: 32px;
  }
  .xl-down-g-xl {
    --gx: 48px;
    --gy: 48px;
  }
  .xl-down-gy-xl {
    --gy: 48px;
  }
  .xl-down-gx-xl {
    --gx: 48px;
  }
  .xl-down-g-xxl {
    --gx: 80px;
    --gy: 80px;
  }
  .xl-down-gy-xxl {
    --gy: 80px;
  }
  .xl-down-gx-xxl {
    --gx: 80px;
  }
}
@media (max-width: 63.98rem) {
  .lg-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .lg-down-gy-0 {
    --gy: 0px;
  }
  .lg-down-gx-0 {
    --gx: 0px;
  }
  .lg-down-g-xs {
    --gx: 8px;
    --gy: 8px;
  }
  .lg-down-gy-xs {
    --gy: 8px;
  }
  .lg-down-gx-xs {
    --gx: 8px;
  }
  .lg-down-g-sm {
    --gx: 16px;
    --gy: 16px;
  }
  .lg-down-gy-sm {
    --gy: 16px;
  }
  .lg-down-gx-sm {
    --gx: 16px;
  }
  .lg-down-g-md {
    --gx: 22px;
    --gy: 22px;
  }
  .lg-down-gy-md {
    --gy: 22px;
  }
  .lg-down-gx-md {
    --gx: 22px;
  }
  .lg-down-g-lg {
    --gx: 32px;
    --gy: 32px;
  }
  .lg-down-gy-lg {
    --gy: 32px;
  }
  .lg-down-gx-lg {
    --gx: 32px;
  }
  .lg-down-g-xl {
    --gx: 48px;
    --gy: 48px;
  }
  .lg-down-gy-xl {
    --gy: 48px;
  }
  .lg-down-gx-xl {
    --gx: 48px;
  }
  .lg-down-g-xxl {
    --gx: 80px;
    --gy: 80px;
  }
  .lg-down-gy-xxl {
    --gy: 80px;
  }
  .lg-down-gx-xxl {
    --gx: 80px;
  }
}
@media (max-width: 47.98rem) {
  .md-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .md-down-gy-0 {
    --gy: 0px;
  }
  .md-down-gx-0 {
    --gx: 0px;
  }
  .md-down-g-xs {
    --gx: 8px;
    --gy: 8px;
  }
  .md-down-gy-xs {
    --gy: 8px;
  }
  .md-down-gx-xs {
    --gx: 8px;
  }
  .md-down-g-sm {
    --gx: 16px;
    --gy: 16px;
  }
  .md-down-gy-sm {
    --gy: 16px;
  }
  .md-down-gx-sm {
    --gx: 16px;
  }
  .md-down-g-md {
    --gx: 22px;
    --gy: 22px;
  }
  .md-down-gy-md {
    --gy: 22px;
  }
  .md-down-gx-md {
    --gx: 22px;
  }
  .md-down-g-lg {
    --gx: 32px;
    --gy: 32px;
  }
  .md-down-gy-lg {
    --gy: 32px;
  }
  .md-down-gx-lg {
    --gx: 32px;
  }
  .md-down-g-xl {
    --gx: 48px;
    --gy: 48px;
  }
  .md-down-gy-xl {
    --gy: 48px;
  }
  .md-down-gx-xl {
    --gx: 48px;
  }
  .md-down-g-xxl {
    --gx: 80px;
    --gy: 80px;
  }
  .md-down-gy-xxl {
    --gy: 80px;
  }
  .md-down-gx-xxl {
    --gx: 80px;
  }
}
@media (max-width: 35.98rem) {
  .sm-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .sm-down-gy-0 {
    --gy: 0px;
  }
  .sm-down-gx-0 {
    --gx: 0px;
  }
  .sm-down-g-xs {
    --gx: 8px;
    --gy: 8px;
  }
  .sm-down-gy-xs {
    --gy: 8px;
  }
  .sm-down-gx-xs {
    --gx: 8px;
  }
  .sm-down-g-sm {
    --gx: 16px;
    --gy: 16px;
  }
  .sm-down-gy-sm {
    --gy: 16px;
  }
  .sm-down-gx-sm {
    --gx: 16px;
  }
  .sm-down-g-md {
    --gx: 22px;
    --gy: 22px;
  }
  .sm-down-gy-md {
    --gy: 22px;
  }
  .sm-down-gx-md {
    --gx: 22px;
  }
  .sm-down-g-lg {
    --gx: 32px;
    --gy: 32px;
  }
  .sm-down-gy-lg {
    --gy: 32px;
  }
  .sm-down-gx-lg {
    --gx: 32px;
  }
  .sm-down-g-xl {
    --gx: 48px;
    --gy: 48px;
  }
  .sm-down-gy-xl {
    --gy: 48px;
  }
  .sm-down-gx-xl {
    --gx: 48px;
  }
  .sm-down-g-xxl {
    --gx: 80px;
    --gy: 80px;
  }
  .sm-down-gy-xxl {
    --gy: 80px;
  }
  .sm-down-gx-xxl {
    --gx: 80px;
  }
}
@media (min-width: 36rem) {
  .sm-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .sm-up-gy-0 {
    --gy: 0px;
  }
  .sm-up-gx-0 {
    --gx: 0px;
  }
  .sm-up-g-xs {
    --gx: 8px;
    --gy: 8px;
  }
  .sm-up-gy-xs {
    --gy: 8px;
  }
  .sm-up-gx-xs {
    --gx: 8px;
  }
  .sm-up-g-sm {
    --gx: 16px;
    --gy: 16px;
  }
  .sm-up-gy-sm {
    --gy: 16px;
  }
  .sm-up-gx-sm {
    --gx: 16px;
  }
  .sm-up-g-md {
    --gx: 22px;
    --gy: 22px;
  }
  .sm-up-gy-md {
    --gy: 22px;
  }
  .sm-up-gx-md {
    --gx: 22px;
  }
  .sm-up-g-lg {
    --gx: 32px;
    --gy: 32px;
  }
  .sm-up-gy-lg {
    --gy: 32px;
  }
  .sm-up-gx-lg {
    --gx: 32px;
  }
  .sm-up-g-xl {
    --gx: 48px;
    --gy: 48px;
  }
  .sm-up-gy-xl {
    --gy: 48px;
  }
  .sm-up-gx-xl {
    --gx: 48px;
  }
  .sm-up-g-xxl {
    --gx: 80px;
    --gy: 80px;
  }
  .sm-up-gy-xxl {
    --gy: 80px;
  }
  .sm-up-gx-xxl {
    --gx: 80px;
  }
}
@media (min-width: 48rem) {
  .md-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .md-up-gy-0 {
    --gy: 0px;
  }
  .md-up-gx-0 {
    --gx: 0px;
  }
  .md-up-g-xs {
    --gx: 8px;
    --gy: 8px;
  }
  .md-up-gy-xs {
    --gy: 8px;
  }
  .md-up-gx-xs {
    --gx: 8px;
  }
  .md-up-g-sm {
    --gx: 16px;
    --gy: 16px;
  }
  .md-up-gy-sm {
    --gy: 16px;
  }
  .md-up-gx-sm {
    --gx: 16px;
  }
  .md-up-g-md {
    --gx: 22px;
    --gy: 22px;
  }
  .md-up-gy-md {
    --gy: 22px;
  }
  .md-up-gx-md {
    --gx: 22px;
  }
  .md-up-g-lg {
    --gx: 32px;
    --gy: 32px;
  }
  .md-up-gy-lg {
    --gy: 32px;
  }
  .md-up-gx-lg {
    --gx: 32px;
  }
  .md-up-g-xl {
    --gx: 48px;
    --gy: 48px;
  }
  .md-up-gy-xl {
    --gy: 48px;
  }
  .md-up-gx-xl {
    --gx: 48px;
  }
  .md-up-g-xxl {
    --gx: 80px;
    --gy: 80px;
  }
  .md-up-gy-xxl {
    --gy: 80px;
  }
  .md-up-gx-xxl {
    --gx: 80px;
  }
}
@media (min-width: 64rem) {
  .lg-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .lg-up-gy-0 {
    --gy: 0px;
  }
  .lg-up-gx-0 {
    --gx: 0px;
  }
  .lg-up-g-xs {
    --gx: 8px;
    --gy: 8px;
  }
  .lg-up-gy-xs {
    --gy: 8px;
  }
  .lg-up-gx-xs {
    --gx: 8px;
  }
  .lg-up-g-sm {
    --gx: 16px;
    --gy: 16px;
  }
  .lg-up-gy-sm {
    --gy: 16px;
  }
  .lg-up-gx-sm {
    --gx: 16px;
  }
  .lg-up-g-md {
    --gx: 22px;
    --gy: 22px;
  }
  .lg-up-gy-md {
    --gy: 22px;
  }
  .lg-up-gx-md {
    --gx: 22px;
  }
  .lg-up-g-lg {
    --gx: 32px;
    --gy: 32px;
  }
  .lg-up-gy-lg {
    --gy: 32px;
  }
  .lg-up-gx-lg {
    --gx: 32px;
  }
  .lg-up-g-xl {
    --gx: 48px;
    --gy: 48px;
  }
  .lg-up-gy-xl {
    --gy: 48px;
  }
  .lg-up-gx-xl {
    --gx: 48px;
  }
  .lg-up-g-xxl {
    --gx: 80px;
    --gy: 80px;
  }
  .lg-up-gy-xxl {
    --gy: 80px;
  }
  .lg-up-gx-xxl {
    --gx: 80px;
  }
}
@media (min-width: 80rem) {
  .xl-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .xl-up-gy-0 {
    --gy: 0px;
  }
  .xl-up-gx-0 {
    --gx: 0px;
  }
  .xl-up-g-xs {
    --gx: 8px;
    --gy: 8px;
  }
  .xl-up-gy-xs {
    --gy: 8px;
  }
  .xl-up-gx-xs {
    --gx: 8px;
  }
  .xl-up-g-sm {
    --gx: 16px;
    --gy: 16px;
  }
  .xl-up-gy-sm {
    --gy: 16px;
  }
  .xl-up-gx-sm {
    --gx: 16px;
  }
  .xl-up-g-md {
    --gx: 22px;
    --gy: 22px;
  }
  .xl-up-gy-md {
    --gy: 22px;
  }
  .xl-up-gx-md {
    --gx: 22px;
  }
  .xl-up-g-lg {
    --gx: 32px;
    --gy: 32px;
  }
  .xl-up-gy-lg {
    --gy: 32px;
  }
  .xl-up-gx-lg {
    --gx: 32px;
  }
  .xl-up-g-xl {
    --gx: 48px;
    --gy: 48px;
  }
  .xl-up-gy-xl {
    --gy: 48px;
  }
  .xl-up-gx-xl {
    --gx: 48px;
  }
  .xl-up-g-xxl {
    --gx: 80px;
    --gy: 80px;
  }
  .xl-up-gy-xxl {
    --gy: 80px;
  }
  .xl-up-gx-xxl {
    --gx: 80px;
  }
}
@media (min-width: 90rem) {
  .xxl-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .xxl-up-gy-0 {
    --gy: 0px;
  }
  .xxl-up-gx-0 {
    --gx: 0px;
  }
  .xxl-up-g-xs {
    --gx: 8px;
    --gy: 8px;
  }
  .xxl-up-gy-xs {
    --gy: 8px;
  }
  .xxl-up-gx-xs {
    --gx: 8px;
  }
  .xxl-up-g-sm {
    --gx: 16px;
    --gy: 16px;
  }
  .xxl-up-gy-sm {
    --gy: 16px;
  }
  .xxl-up-gx-sm {
    --gx: 16px;
  }
  .xxl-up-g-md {
    --gx: 22px;
    --gy: 22px;
  }
  .xxl-up-gy-md {
    --gy: 22px;
  }
  .xxl-up-gx-md {
    --gx: 22px;
  }
  .xxl-up-g-lg {
    --gx: 32px;
    --gy: 32px;
  }
  .xxl-up-gy-lg {
    --gy: 32px;
  }
  .xxl-up-gx-lg {
    --gx: 32px;
  }
  .xxl-up-g-xl {
    --gx: 48px;
    --gy: 48px;
  }
  .xxl-up-gy-xl {
    --gy: 48px;
  }
  .xxl-up-gx-xl {
    --gx: 48px;
  }
  .xxl-up-g-xxl {
    --gx: 80px;
    --gy: 80px;
  }
  .xxl-up-gy-xxl {
    --gy: 80px;
  }
  .xxl-up-gx-xxl {
    --gx: 80px;
  }
}
.d-none {
  display: none;
}
.d-i {
  display: inline;
}
.d-b {
  display: block;
}
.d-ib {
  display: inline-block;
}
.d-f {
  display: flex;
}
.d-if {
  display: inline-flex;
}
@media (max-width: 89.98rem) {
  .xxl-down-d-none {
    display: none;
  }
  .xxl-down-d-i {
    display: inline;
  }
  .xxl-down-d-b {
    display: block;
  }
  .xxl-down-d-ib {
    display: inline-block;
  }
  .xxl-down-d-f {
    display: flex;
  }
  .xxl-down-d-if {
    display: inline-flex;
  }
}
@media (max-width: 79.98rem) {
  .xl-down-d-none {
    display: none;
  }
  .xl-down-d-i {
    display: inline;
  }
  .xl-down-d-b {
    display: block;
  }
  .xl-down-d-ib {
    display: inline-block;
  }
  .xl-down-d-f {
    display: flex;
  }
  .xl-down-d-if {
    display: inline-flex;
  }
}
@media (max-width: 63.98rem) {
  .lg-down-d-none {
    display: none;
  }
  .lg-down-d-i {
    display: inline;
  }
  .lg-down-d-b {
    display: block;
  }
  .lg-down-d-ib {
    display: inline-block;
  }
  .lg-down-d-f {
    display: flex;
  }
  .lg-down-d-if {
    display: inline-flex;
  }
}
@media (max-width: 47.98rem) {
  .md-down-d-none {
    display: none;
  }
  .md-down-d-i {
    display: inline;
  }
  .md-down-d-b {
    display: block;
  }
  .md-down-d-ib {
    display: inline-block;
  }
  .md-down-d-f {
    display: flex;
  }
  .md-down-d-if {
    display: inline-flex;
  }
}
@media (max-width: 35.98rem) {
  .sm-down-d-none {
    display: none;
  }
  .sm-down-d-i {
    display: inline;
  }
  .sm-down-d-b {
    display: block;
  }
  .sm-down-d-ib {
    display: inline-block;
  }
  .sm-down-d-f {
    display: flex;
  }
  .sm-down-d-if {
    display: inline-flex;
  }
}
@media (min-width: 36rem) {
  .sm-up-d-none {
    display: none;
  }
  .sm-up-d-i {
    display: inline;
  }
  .sm-up-d-b {
    display: block;
  }
  .sm-up-d-ib {
    display: inline-block;
  }
  .sm-up-d-f {
    display: flex;
  }
  .sm-up-d-if {
    display: inline-flex;
  }
}
@media (min-width: 48rem) {
  .md-up-d-none {
    display: none;
  }
  .md-up-d-i {
    display: inline;
  }
  .md-up-d-b {
    display: block;
  }
  .md-up-d-ib {
    display: inline-block;
  }
  .md-up-d-f {
    display: flex;
  }
  .md-up-d-if {
    display: inline-flex;
  }
}
@media (min-width: 64rem) {
  .lg-up-d-none {
    display: none;
  }
  .lg-up-d-i {
    display: inline;
  }
  .lg-up-d-b {
    display: block;
  }
  .lg-up-d-ib {
    display: inline-block;
  }
  .lg-up-d-f {
    display: flex;
  }
  .lg-up-d-if {
    display: inline-flex;
  }
}
@media (min-width: 80rem) {
  .xl-up-d-none {
    display: none;
  }
  .xl-up-d-i {
    display: inline;
  }
  .xl-up-d-b {
    display: block;
  }
  .xl-up-d-ib {
    display: inline-block;
  }
  .xl-up-d-f {
    display: flex;
  }
  .xl-up-d-if {
    display: inline-flex;
  }
}
@media (min-width: 90rem) {
  .xxl-up-d-none {
    display: none;
  }
  .xxl-up-d-i {
    display: inline;
  }
  .xxl-up-d-b {
    display: block;
  }
  .xxl-up-d-ib {
    display: inline-block;
  }
  .xxl-up-d-f {
    display: flex;
  }
  .xxl-up-d-if {
    display: inline-flex;
  }
}
.m-0 {
  margin: 0;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.my-0 {
  margin-block: 0;
}
.ml-0 {
  margin-left: 0;
}
.mr-0 {
  margin-right: 0;
}
.mx-0 {
  margin-inline: 0;
}
.p-0 {
  padding: 0;
}
.pt-0 {
  padding-top: 0;
}
.pb-0 {
  padding-bottom: 0;
}
.py-0 {
  padding-block: 0;
}
.pl-0 {
  padding-left: 0;
}
.pr-0 {
  padding-right: 0;
}
.px-0 {
  padding-inline: 0;
}
.m-xs {
  margin: 8px;
}
.mt-xs {
  margin-top: 8px;
}
.mb-xs {
  margin-bottom: 8px;
}
.my-xs {
  margin-block: 8px;
}
.ml-xs {
  margin-left: 8px;
}
.mr-xs {
  margin-right: 8px;
}
.mx-xs {
  margin-inline: 8px;
}
.p-xs {
  padding: 8px;
}
.pt-xs {
  padding-top: 8px;
}
.pb-xs {
  padding-bottom: 8px;
}
.py-xs {
  padding-block: 8px;
}
.pl-xs {
  padding-left: 8px;
}
.pr-xs {
  padding-right: 8px;
}
.px-xs {
  padding-inline: 8px;
}
.m-sm {
  margin: 16px;
}
.mt-sm {
  margin-top: 16px;
}
.mb-sm {
  margin-bottom: 16px;
}
.my-sm {
  margin-block: 16px;
}
.ml-sm {
  margin-left: 16px;
}
.mr-sm {
  margin-right: 16px;
}
.mx-sm {
  margin-inline: 16px;
}
.p-sm {
  padding: 16px;
}
.pt-sm {
  padding-top: 16px;
}
.pb-sm {
  padding-bottom: 16px;
}
.py-sm {
  padding-block: 16px;
}
.pl-sm {
  padding-left: 16px;
}
.pr-sm {
  padding-right: 16px;
}
.px-sm {
  padding-inline: 16px;
}
.m-md {
  margin: 22px;
}
.mt-md {
  margin-top: 22px;
}
.mb-md {
  margin-bottom: 22px;
}
.my-md {
  margin-block: 22px;
}
.ml-md {
  margin-left: 22px;
}
.mr-md {
  margin-right: 22px;
}
.mx-md {
  margin-inline: 22px;
}
.p-md {
  padding: 22px;
}
.pt-md {
  padding-top: 22px;
}
.pb-md {
  padding-bottom: 22px;
}
.py-md {
  padding-block: 22px;
}
.pl-md {
  padding-left: 22px;
}
.pr-md {
  padding-right: 22px;
}
.px-md {
  padding-inline: 22px;
}
.m-lg {
  margin: 32px;
}
.mt-lg {
  margin-top: 32px;
}
.mb-lg {
  margin-bottom: 32px;
}
.my-lg {
  margin-block: 32px;
}
.ml-lg {
  margin-left: 32px;
}
.mr-lg {
  margin-right: 32px;
}
.mx-lg {
  margin-inline: 32px;
}
.p-lg {
  padding: 32px;
}
.pt-lg {
  padding-top: 32px;
}
.pb-lg {
  padding-bottom: 32px;
}
.py-lg {
  padding-block: 32px;
}
.pl-lg {
  padding-left: 32px;
}
.pr-lg {
  padding-right: 32px;
}
.px-lg {
  padding-inline: 32px;
}
.m-xl {
  margin: 48px;
}
.mt-xl {
  margin-top: 48px;
}
.mb-xl {
  margin-bottom: 48px;
}
.my-xl {
  margin-block: 48px;
}
.ml-xl {
  margin-left: 48px;
}
.mr-xl {
  margin-right: 48px;
}
.mx-xl {
  margin-inline: 48px;
}
.p-xl {
  padding: 48px;
}
.pt-xl {
  padding-top: 48px;
}
.pb-xl {
  padding-bottom: 48px;
}
.py-xl {
  padding-block: 48px;
}
.pl-xl {
  padding-left: 48px;
}
.pr-xl {
  padding-right: 48px;
}
.px-xl {
  padding-inline: 48px;
}
.m-xxl {
  margin: 80px;
}
.mt-xxl {
  margin-top: 80px;
}
.mb-xxl {
  margin-bottom: 80px;
}
.my-xxl {
  margin-block: 80px;
}
.ml-xxl {
  margin-left: 80px;
}
.mr-xxl {
  margin-right: 80px;
}
.mx-xxl {
  margin-inline: 80px;
}
.p-xxl {
  padding: 80px;
}
.pt-xxl {
  padding-top: 80px;
}
.pb-xxl {
  padding-bottom: 80px;
}
.py-xxl {
  padding-block: 80px;
}
.pl-xxl {
  padding-left: 80px;
}
.pr-xxl {
  padding-right: 80px;
}
.px-xxl {
  padding-inline: 80px;
}
.m-fluid {
  margin: var(--side-margin);
}
.mt-fluid {
  margin-top: var(--side-margin);
}
.mb-fluid {
  margin-bottom: var(--side-margin);
}
.my-fluid {
  margin-block: var(--side-margin);
}
.ml-fluid {
  margin-left: var(--side-margin);
}
.mr-fluid {
  margin-right: var(--side-margin);
}
.mx-fluid {
  margin-inline: var(--side-margin);
}
.p-fluid {
  padding: var(--side-margin);
}
.pt-fluid {
  padding-top: var(--side-margin);
}
.pb-fluid {
  padding-bottom: var(--side-margin);
}
.py-fluid {
  padding-block: var(--side-margin);
}
.pl-fluid {
  padding-left: var(--side-margin);
}
.pr-fluid {
  padding-right: var(--side-margin);
}
.px-fluid {
  padding-inline: var(--side-margin);
}
@media (max-width: 89.98rem) {
  .xxl-down-m-0 {
    margin: 0;
  }
  .xxl-down-mt-0 {
    margin-top: 0;
  }
  .xxl-down-mb-0 {
    margin-bottom: 0;
  }
  .xxl-down-my-0 {
    margin-block: 0;
  }
  .xxl-down-ml-0 {
    margin-left: 0;
  }
  .xxl-down-mr-0 {
    margin-right: 0;
  }
  .xxl-down-mx-0 {
    margin-inline: 0;
  }
  .xxl-down-p-0 {
    padding: 0;
  }
  .xxl-down-pt-0 {
    padding-top: 0;
  }
  .xxl-down-pb-0 {
    padding-bottom: 0;
  }
  .xxl-down-py-0 {
    padding-block: 0;
  }
  .xxl-down-pl-0 {
    padding-left: 0;
  }
  .xxl-down-pr-0 {
    padding-right: 0;
  }
  .xxl-down-px-0 {
    padding-inline: 0;
  }
  .xxl-down-m-xs {
    margin: 8px;
  }
  .xxl-down-mt-xs {
    margin-top: 8px;
  }
  .xxl-down-mb-xs {
    margin-bottom: 8px;
  }
  .xxl-down-my-xs {
    margin-block: 8px;
  }
  .xxl-down-ml-xs {
    margin-left: 8px;
  }
  .xxl-down-mr-xs {
    margin-right: 8px;
  }
  .xxl-down-mx-xs {
    margin-inline: 8px;
  }
  .xxl-down-p-xs {
    padding: 8px;
  }
  .xxl-down-pt-xs {
    padding-top: 8px;
  }
  .xxl-down-pb-xs {
    padding-bottom: 8px;
  }
  .xxl-down-py-xs {
    padding-block: 8px;
  }
  .xxl-down-pl-xs {
    padding-left: 8px;
  }
  .xxl-down-pr-xs {
    padding-right: 8px;
  }
  .xxl-down-px-xs {
    padding-inline: 8px;
  }
  .xxl-down-m-sm {
    margin: 16px;
  }
  .xxl-down-mt-sm {
    margin-top: 16px;
  }
  .xxl-down-mb-sm {
    margin-bottom: 16px;
  }
  .xxl-down-my-sm {
    margin-block: 16px;
  }
  .xxl-down-ml-sm {
    margin-left: 16px;
  }
  .xxl-down-mr-sm {
    margin-right: 16px;
  }
  .xxl-down-mx-sm {
    margin-inline: 16px;
  }
  .xxl-down-p-sm {
    padding: 16px;
  }
  .xxl-down-pt-sm {
    padding-top: 16px;
  }
  .xxl-down-pb-sm {
    padding-bottom: 16px;
  }
  .xxl-down-py-sm {
    padding-block: 16px;
  }
  .xxl-down-pl-sm {
    padding-left: 16px;
  }
  .xxl-down-pr-sm {
    padding-right: 16px;
  }
  .xxl-down-px-sm {
    padding-inline: 16px;
  }
  .xxl-down-m-md {
    margin: 22px;
  }
  .xxl-down-mt-md {
    margin-top: 22px;
  }
  .xxl-down-mb-md {
    margin-bottom: 22px;
  }
  .xxl-down-my-md {
    margin-block: 22px;
  }
  .xxl-down-ml-md {
    margin-left: 22px;
  }
  .xxl-down-mr-md {
    margin-right: 22px;
  }
  .xxl-down-mx-md {
    margin-inline: 22px;
  }
  .xxl-down-p-md {
    padding: 22px;
  }
  .xxl-down-pt-md {
    padding-top: 22px;
  }
  .xxl-down-pb-md {
    padding-bottom: 22px;
  }
  .xxl-down-py-md {
    padding-block: 22px;
  }
  .xxl-down-pl-md {
    padding-left: 22px;
  }
  .xxl-down-pr-md {
    padding-right: 22px;
  }
  .xxl-down-px-md {
    padding-inline: 22px;
  }
  .xxl-down-m-lg {
    margin: 32px;
  }
  .xxl-down-mt-lg {
    margin-top: 32px;
  }
  .xxl-down-mb-lg {
    margin-bottom: 32px;
  }
  .xxl-down-my-lg {
    margin-block: 32px;
  }
  .xxl-down-ml-lg {
    margin-left: 32px;
  }
  .xxl-down-mr-lg {
    margin-right: 32px;
  }
  .xxl-down-mx-lg {
    margin-inline: 32px;
  }
  .xxl-down-p-lg {
    padding: 32px;
  }
  .xxl-down-pt-lg {
    padding-top: 32px;
  }
  .xxl-down-pb-lg {
    padding-bottom: 32px;
  }
  .xxl-down-py-lg {
    padding-block: 32px;
  }
  .xxl-down-pl-lg {
    padding-left: 32px;
  }
  .xxl-down-pr-lg {
    padding-right: 32px;
  }
  .xxl-down-px-lg {
    padding-inline: 32px;
  }
  .xxl-down-m-xl {
    margin: 48px;
  }
  .xxl-down-mt-xl {
    margin-top: 48px;
  }
  .xxl-down-mb-xl {
    margin-bottom: 48px;
  }
  .xxl-down-my-xl {
    margin-block: 48px;
  }
  .xxl-down-ml-xl {
    margin-left: 48px;
  }
  .xxl-down-mr-xl {
    margin-right: 48px;
  }
  .xxl-down-mx-xl {
    margin-inline: 48px;
  }
  .xxl-down-p-xl {
    padding: 48px;
  }
  .xxl-down-pt-xl {
    padding-top: 48px;
  }
  .xxl-down-pb-xl {
    padding-bottom: 48px;
  }
  .xxl-down-py-xl {
    padding-block: 48px;
  }
  .xxl-down-pl-xl {
    padding-left: 48px;
  }
  .xxl-down-pr-xl {
    padding-right: 48px;
  }
  .xxl-down-px-xl {
    padding-inline: 48px;
  }
  .xxl-down-m-xxl {
    margin: 80px;
  }
  .xxl-down-mt-xxl {
    margin-top: 80px;
  }
  .xxl-down-mb-xxl {
    margin-bottom: 80px;
  }
  .xxl-down-my-xxl {
    margin-block: 80px;
  }
  .xxl-down-ml-xxl {
    margin-left: 80px;
  }
  .xxl-down-mr-xxl {
    margin-right: 80px;
  }
  .xxl-down-mx-xxl {
    margin-inline: 80px;
  }
  .xxl-down-p-xxl {
    padding: 80px;
  }
  .xxl-down-pt-xxl {
    padding-top: 80px;
  }
  .xxl-down-pb-xxl {
    padding-bottom: 80px;
  }
  .xxl-down-py-xxl {
    padding-block: 80px;
  }
  .xxl-down-pl-xxl {
    padding-left: 80px;
  }
  .xxl-down-pr-xxl {
    padding-right: 80px;
  }
  .xxl-down-px-xxl {
    padding-inline: 80px;
  }
  .xxl-down-m-fluid {
    margin: var(--side-margin);
  }
  .xxl-down-mt-fluid {
    margin-top: var(--side-margin);
  }
  .xxl-down-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .xxl-down-my-fluid {
    margin-block: var(--side-margin);
  }
  .xxl-down-ml-fluid {
    margin-left: var(--side-margin);
  }
  .xxl-down-mr-fluid {
    margin-right: var(--side-margin);
  }
  .xxl-down-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .xxl-down-p-fluid {
    padding: var(--side-margin);
  }
  .xxl-down-pt-fluid {
    padding-top: var(--side-margin);
  }
  .xxl-down-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .xxl-down-py-fluid {
    padding-block: var(--side-margin);
  }
  .xxl-down-pl-fluid {
    padding-left: var(--side-margin);
  }
  .xxl-down-pr-fluid {
    padding-right: var(--side-margin);
  }
  .xxl-down-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (max-width: 79.98rem) {
  .xl-down-m-0 {
    margin: 0;
  }
  .xl-down-mt-0 {
    margin-top: 0;
  }
  .xl-down-mb-0 {
    margin-bottom: 0;
  }
  .xl-down-my-0 {
    margin-block: 0;
  }
  .xl-down-ml-0 {
    margin-left: 0;
  }
  .xl-down-mr-0 {
    margin-right: 0;
  }
  .xl-down-mx-0 {
    margin-inline: 0;
  }
  .xl-down-p-0 {
    padding: 0;
  }
  .xl-down-pt-0 {
    padding-top: 0;
  }
  .xl-down-pb-0 {
    padding-bottom: 0;
  }
  .xl-down-py-0 {
    padding-block: 0;
  }
  .xl-down-pl-0 {
    padding-left: 0;
  }
  .xl-down-pr-0 {
    padding-right: 0;
  }
  .xl-down-px-0 {
    padding-inline: 0;
  }
  .xl-down-m-xs {
    margin: 8px;
  }
  .xl-down-mt-xs {
    margin-top: 8px;
  }
  .xl-down-mb-xs {
    margin-bottom: 8px;
  }
  .xl-down-my-xs {
    margin-block: 8px;
  }
  .xl-down-ml-xs {
    margin-left: 8px;
  }
  .xl-down-mr-xs {
    margin-right: 8px;
  }
  .xl-down-mx-xs {
    margin-inline: 8px;
  }
  .xl-down-p-xs {
    padding: 8px;
  }
  .xl-down-pt-xs {
    padding-top: 8px;
  }
  .xl-down-pb-xs {
    padding-bottom: 8px;
  }
  .xl-down-py-xs {
    padding-block: 8px;
  }
  .xl-down-pl-xs {
    padding-left: 8px;
  }
  .xl-down-pr-xs {
    padding-right: 8px;
  }
  .xl-down-px-xs {
    padding-inline: 8px;
  }
  .xl-down-m-sm {
    margin: 16px;
  }
  .xl-down-mt-sm {
    margin-top: 16px;
  }
  .xl-down-mb-sm {
    margin-bottom: 16px;
  }
  .xl-down-my-sm {
    margin-block: 16px;
  }
  .xl-down-ml-sm {
    margin-left: 16px;
  }
  .xl-down-mr-sm {
    margin-right: 16px;
  }
  .xl-down-mx-sm {
    margin-inline: 16px;
  }
  .xl-down-p-sm {
    padding: 16px;
  }
  .xl-down-pt-sm {
    padding-top: 16px;
  }
  .xl-down-pb-sm {
    padding-bottom: 16px;
  }
  .xl-down-py-sm {
    padding-block: 16px;
  }
  .xl-down-pl-sm {
    padding-left: 16px;
  }
  .xl-down-pr-sm {
    padding-right: 16px;
  }
  .xl-down-px-sm {
    padding-inline: 16px;
  }
  .xl-down-m-md {
    margin: 22px;
  }
  .xl-down-mt-md {
    margin-top: 22px;
  }
  .xl-down-mb-md {
    margin-bottom: 22px;
  }
  .xl-down-my-md {
    margin-block: 22px;
  }
  .xl-down-ml-md {
    margin-left: 22px;
  }
  .xl-down-mr-md {
    margin-right: 22px;
  }
  .xl-down-mx-md {
    margin-inline: 22px;
  }
  .xl-down-p-md {
    padding: 22px;
  }
  .xl-down-pt-md {
    padding-top: 22px;
  }
  .xl-down-pb-md {
    padding-bottom: 22px;
  }
  .xl-down-py-md {
    padding-block: 22px;
  }
  .xl-down-pl-md {
    padding-left: 22px;
  }
  .xl-down-pr-md {
    padding-right: 22px;
  }
  .xl-down-px-md {
    padding-inline: 22px;
  }
  .xl-down-m-lg {
    margin: 32px;
  }
  .xl-down-mt-lg {
    margin-top: 32px;
  }
  .xl-down-mb-lg {
    margin-bottom: 32px;
  }
  .xl-down-my-lg {
    margin-block: 32px;
  }
  .xl-down-ml-lg {
    margin-left: 32px;
  }
  .xl-down-mr-lg {
    margin-right: 32px;
  }
  .xl-down-mx-lg {
    margin-inline: 32px;
  }
  .xl-down-p-lg {
    padding: 32px;
  }
  .xl-down-pt-lg {
    padding-top: 32px;
  }
  .xl-down-pb-lg {
    padding-bottom: 32px;
  }
  .xl-down-py-lg {
    padding-block: 32px;
  }
  .xl-down-pl-lg {
    padding-left: 32px;
  }
  .xl-down-pr-lg {
    padding-right: 32px;
  }
  .xl-down-px-lg {
    padding-inline: 32px;
  }
  .xl-down-m-xl {
    margin: 48px;
  }
  .xl-down-mt-xl {
    margin-top: 48px;
  }
  .xl-down-mb-xl {
    margin-bottom: 48px;
  }
  .xl-down-my-xl {
    margin-block: 48px;
  }
  .xl-down-ml-xl {
    margin-left: 48px;
  }
  .xl-down-mr-xl {
    margin-right: 48px;
  }
  .xl-down-mx-xl {
    margin-inline: 48px;
  }
  .xl-down-p-xl {
    padding: 48px;
  }
  .xl-down-pt-xl {
    padding-top: 48px;
  }
  .xl-down-pb-xl {
    padding-bottom: 48px;
  }
  .xl-down-py-xl {
    padding-block: 48px;
  }
  .xl-down-pl-xl {
    padding-left: 48px;
  }
  .xl-down-pr-xl {
    padding-right: 48px;
  }
  .xl-down-px-xl {
    padding-inline: 48px;
  }
  .xl-down-m-xxl {
    margin: 80px;
  }
  .xl-down-mt-xxl {
    margin-top: 80px;
  }
  .xl-down-mb-xxl {
    margin-bottom: 80px;
  }
  .xl-down-my-xxl {
    margin-block: 80px;
  }
  .xl-down-ml-xxl {
    margin-left: 80px;
  }
  .xl-down-mr-xxl {
    margin-right: 80px;
  }
  .xl-down-mx-xxl {
    margin-inline: 80px;
  }
  .xl-down-p-xxl {
    padding: 80px;
  }
  .xl-down-pt-xxl {
    padding-top: 80px;
  }
  .xl-down-pb-xxl {
    padding-bottom: 80px;
  }
  .xl-down-py-xxl {
    padding-block: 80px;
  }
  .xl-down-pl-xxl {
    padding-left: 80px;
  }
  .xl-down-pr-xxl {
    padding-right: 80px;
  }
  .xl-down-px-xxl {
    padding-inline: 80px;
  }
  .xl-down-m-fluid {
    margin: var(--side-margin);
  }
  .xl-down-mt-fluid {
    margin-top: var(--side-margin);
  }
  .xl-down-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .xl-down-my-fluid {
    margin-block: var(--side-margin);
  }
  .xl-down-ml-fluid {
    margin-left: var(--side-margin);
  }
  .xl-down-mr-fluid {
    margin-right: var(--side-margin);
  }
  .xl-down-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .xl-down-p-fluid {
    padding: var(--side-margin);
  }
  .xl-down-pt-fluid {
    padding-top: var(--side-margin);
  }
  .xl-down-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .xl-down-py-fluid {
    padding-block: var(--side-margin);
  }
  .xl-down-pl-fluid {
    padding-left: var(--side-margin);
  }
  .xl-down-pr-fluid {
    padding-right: var(--side-margin);
  }
  .xl-down-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (max-width: 63.98rem) {
  .lg-down-m-0 {
    margin: 0;
  }
  .lg-down-mt-0 {
    margin-top: 0;
  }
  .lg-down-mb-0 {
    margin-bottom: 0;
  }
  .lg-down-my-0 {
    margin-block: 0;
  }
  .lg-down-ml-0 {
    margin-left: 0;
  }
  .lg-down-mr-0 {
    margin-right: 0;
  }
  .lg-down-mx-0 {
    margin-inline: 0;
  }
  .lg-down-p-0 {
    padding: 0;
  }
  .lg-down-pt-0 {
    padding-top: 0;
  }
  .lg-down-pb-0 {
    padding-bottom: 0;
  }
  .lg-down-py-0 {
    padding-block: 0;
  }
  .lg-down-pl-0 {
    padding-left: 0;
  }
  .lg-down-pr-0 {
    padding-right: 0;
  }
  .lg-down-px-0 {
    padding-inline: 0;
  }
  .lg-down-m-xs {
    margin: 8px;
  }
  .lg-down-mt-xs {
    margin-top: 8px;
  }
  .lg-down-mb-xs {
    margin-bottom: 8px;
  }
  .lg-down-my-xs {
    margin-block: 8px;
  }
  .lg-down-ml-xs {
    margin-left: 8px;
  }
  .lg-down-mr-xs {
    margin-right: 8px;
  }
  .lg-down-mx-xs {
    margin-inline: 8px;
  }
  .lg-down-p-xs {
    padding: 8px;
  }
  .lg-down-pt-xs {
    padding-top: 8px;
  }
  .lg-down-pb-xs {
    padding-bottom: 8px;
  }
  .lg-down-py-xs {
    padding-block: 8px;
  }
  .lg-down-pl-xs {
    padding-left: 8px;
  }
  .lg-down-pr-xs {
    padding-right: 8px;
  }
  .lg-down-px-xs {
    padding-inline: 8px;
  }
  .lg-down-m-sm {
    margin: 16px;
  }
  .lg-down-mt-sm {
    margin-top: 16px;
  }
  .lg-down-mb-sm {
    margin-bottom: 16px;
  }
  .lg-down-my-sm {
    margin-block: 16px;
  }
  .lg-down-ml-sm {
    margin-left: 16px;
  }
  .lg-down-mr-sm {
    margin-right: 16px;
  }
  .lg-down-mx-sm {
    margin-inline: 16px;
  }
  .lg-down-p-sm {
    padding: 16px;
  }
  .lg-down-pt-sm {
    padding-top: 16px;
  }
  .lg-down-pb-sm {
    padding-bottom: 16px;
  }
  .lg-down-py-sm {
    padding-block: 16px;
  }
  .lg-down-pl-sm {
    padding-left: 16px;
  }
  .lg-down-pr-sm {
    padding-right: 16px;
  }
  .lg-down-px-sm {
    padding-inline: 16px;
  }
  .lg-down-m-md {
    margin: 22px;
  }
  .lg-down-mt-md {
    margin-top: 22px;
  }
  .lg-down-mb-md {
    margin-bottom: 22px;
  }
  .lg-down-my-md {
    margin-block: 22px;
  }
  .lg-down-ml-md {
    margin-left: 22px;
  }
  .lg-down-mr-md {
    margin-right: 22px;
  }
  .lg-down-mx-md {
    margin-inline: 22px;
  }
  .lg-down-p-md {
    padding: 22px;
  }
  .lg-down-pt-md {
    padding-top: 22px;
  }
  .lg-down-pb-md {
    padding-bottom: 22px;
  }
  .lg-down-py-md {
    padding-block: 22px;
  }
  .lg-down-pl-md {
    padding-left: 22px;
  }
  .lg-down-pr-md {
    padding-right: 22px;
  }
  .lg-down-px-md {
    padding-inline: 22px;
  }
  .lg-down-m-lg {
    margin: 32px;
  }
  .lg-down-mt-lg {
    margin-top: 32px;
  }
  .lg-down-mb-lg {
    margin-bottom: 32px;
  }
  .lg-down-my-lg {
    margin-block: 32px;
  }
  .lg-down-ml-lg {
    margin-left: 32px;
  }
  .lg-down-mr-lg {
    margin-right: 32px;
  }
  .lg-down-mx-lg {
    margin-inline: 32px;
  }
  .lg-down-p-lg {
    padding: 32px;
  }
  .lg-down-pt-lg {
    padding-top: 32px;
  }
  .lg-down-pb-lg {
    padding-bottom: 32px;
  }
  .lg-down-py-lg {
    padding-block: 32px;
  }
  .lg-down-pl-lg {
    padding-left: 32px;
  }
  .lg-down-pr-lg {
    padding-right: 32px;
  }
  .lg-down-px-lg {
    padding-inline: 32px;
  }
  .lg-down-m-xl {
    margin: 48px;
  }
  .lg-down-mt-xl {
    margin-top: 48px;
  }
  .lg-down-mb-xl {
    margin-bottom: 48px;
  }
  .lg-down-my-xl {
    margin-block: 48px;
  }
  .lg-down-ml-xl {
    margin-left: 48px;
  }
  .lg-down-mr-xl {
    margin-right: 48px;
  }
  .lg-down-mx-xl {
    margin-inline: 48px;
  }
  .lg-down-p-xl {
    padding: 48px;
  }
  .lg-down-pt-xl {
    padding-top: 48px;
  }
  .lg-down-pb-xl {
    padding-bottom: 48px;
  }
  .lg-down-py-xl {
    padding-block: 48px;
  }
  .lg-down-pl-xl {
    padding-left: 48px;
  }
  .lg-down-pr-xl {
    padding-right: 48px;
  }
  .lg-down-px-xl {
    padding-inline: 48px;
  }
  .lg-down-m-xxl {
    margin: 80px;
  }
  .lg-down-mt-xxl {
    margin-top: 80px;
  }
  .lg-down-mb-xxl {
    margin-bottom: 80px;
  }
  .lg-down-my-xxl {
    margin-block: 80px;
  }
  .lg-down-ml-xxl {
    margin-left: 80px;
  }
  .lg-down-mr-xxl {
    margin-right: 80px;
  }
  .lg-down-mx-xxl {
    margin-inline: 80px;
  }
  .lg-down-p-xxl {
    padding: 80px;
  }
  .lg-down-pt-xxl {
    padding-top: 80px;
  }
  .lg-down-pb-xxl {
    padding-bottom: 80px;
  }
  .lg-down-py-xxl {
    padding-block: 80px;
  }
  .lg-down-pl-xxl {
    padding-left: 80px;
  }
  .lg-down-pr-xxl {
    padding-right: 80px;
  }
  .lg-down-px-xxl {
    padding-inline: 80px;
  }
  .lg-down-m-fluid {
    margin: var(--side-margin);
  }
  .lg-down-mt-fluid {
    margin-top: var(--side-margin);
  }
  .lg-down-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .lg-down-my-fluid {
    margin-block: var(--side-margin);
  }
  .lg-down-ml-fluid {
    margin-left: var(--side-margin);
  }
  .lg-down-mr-fluid {
    margin-right: var(--side-margin);
  }
  .lg-down-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .lg-down-p-fluid {
    padding: var(--side-margin);
  }
  .lg-down-pt-fluid {
    padding-top: var(--side-margin);
  }
  .lg-down-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .lg-down-py-fluid {
    padding-block: var(--side-margin);
  }
  .lg-down-pl-fluid {
    padding-left: var(--side-margin);
  }
  .lg-down-pr-fluid {
    padding-right: var(--side-margin);
  }
  .lg-down-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (max-width: 47.98rem) {
  .md-down-m-0 {
    margin: 0;
  }
  .md-down-mt-0 {
    margin-top: 0;
  }
  .md-down-mb-0 {
    margin-bottom: 0;
  }
  .md-down-my-0 {
    margin-block: 0;
  }
  .md-down-ml-0 {
    margin-left: 0;
  }
  .md-down-mr-0 {
    margin-right: 0;
  }
  .md-down-mx-0 {
    margin-inline: 0;
  }
  .md-down-p-0 {
    padding: 0;
  }
  .md-down-pt-0 {
    padding-top: 0;
  }
  .md-down-pb-0 {
    padding-bottom: 0;
  }
  .md-down-py-0 {
    padding-block: 0;
  }
  .md-down-pl-0 {
    padding-left: 0;
  }
  .md-down-pr-0 {
    padding-right: 0;
  }
  .md-down-px-0 {
    padding-inline: 0;
  }
  .md-down-m-xs {
    margin: 8px;
  }
  .md-down-mt-xs {
    margin-top: 8px;
  }
  .md-down-mb-xs {
    margin-bottom: 8px;
  }
  .md-down-my-xs {
    margin-block: 8px;
  }
  .md-down-ml-xs {
    margin-left: 8px;
  }
  .md-down-mr-xs {
    margin-right: 8px;
  }
  .md-down-mx-xs {
    margin-inline: 8px;
  }
  .md-down-p-xs {
    padding: 8px;
  }
  .md-down-pt-xs {
    padding-top: 8px;
  }
  .md-down-pb-xs {
    padding-bottom: 8px;
  }
  .md-down-py-xs {
    padding-block: 8px;
  }
  .md-down-pl-xs {
    padding-left: 8px;
  }
  .md-down-pr-xs {
    padding-right: 8px;
  }
  .md-down-px-xs {
    padding-inline: 8px;
  }
  .md-down-m-sm {
    margin: 16px;
  }
  .md-down-mt-sm {
    margin-top: 16px;
  }
  .md-down-mb-sm {
    margin-bottom: 16px;
  }
  .md-down-my-sm {
    margin-block: 16px;
  }
  .md-down-ml-sm {
    margin-left: 16px;
  }
  .md-down-mr-sm {
    margin-right: 16px;
  }
  .md-down-mx-sm {
    margin-inline: 16px;
  }
  .md-down-p-sm {
    padding: 16px;
  }
  .md-down-pt-sm {
    padding-top: 16px;
  }
  .md-down-pb-sm {
    padding-bottom: 16px;
  }
  .md-down-py-sm {
    padding-block: 16px;
  }
  .md-down-pl-sm {
    padding-left: 16px;
  }
  .md-down-pr-sm {
    padding-right: 16px;
  }
  .md-down-px-sm {
    padding-inline: 16px;
  }
  .md-down-m-md {
    margin: 22px;
  }
  .md-down-mt-md {
    margin-top: 22px;
  }
  .md-down-mb-md {
    margin-bottom: 22px;
  }
  .md-down-my-md {
    margin-block: 22px;
  }
  .md-down-ml-md {
    margin-left: 22px;
  }
  .md-down-mr-md {
    margin-right: 22px;
  }
  .md-down-mx-md {
    margin-inline: 22px;
  }
  .md-down-p-md {
    padding: 22px;
  }
  .md-down-pt-md {
    padding-top: 22px;
  }
  .md-down-pb-md {
    padding-bottom: 22px;
  }
  .md-down-py-md {
    padding-block: 22px;
  }
  .md-down-pl-md {
    padding-left: 22px;
  }
  .md-down-pr-md {
    padding-right: 22px;
  }
  .md-down-px-md {
    padding-inline: 22px;
  }
  .md-down-m-lg {
    margin: 32px;
  }
  .md-down-mt-lg {
    margin-top: 32px;
  }
  .md-down-mb-lg {
    margin-bottom: 32px;
  }
  .md-down-my-lg {
    margin-block: 32px;
  }
  .md-down-ml-lg {
    margin-left: 32px;
  }
  .md-down-mr-lg {
    margin-right: 32px;
  }
  .md-down-mx-lg {
    margin-inline: 32px;
  }
  .md-down-p-lg {
    padding: 32px;
  }
  .md-down-pt-lg {
    padding-top: 32px;
  }
  .md-down-pb-lg {
    padding-bottom: 32px;
  }
  .md-down-py-lg {
    padding-block: 32px;
  }
  .md-down-pl-lg {
    padding-left: 32px;
  }
  .md-down-pr-lg {
    padding-right: 32px;
  }
  .md-down-px-lg {
    padding-inline: 32px;
  }
  .md-down-m-xl {
    margin: 48px;
  }
  .md-down-mt-xl {
    margin-top: 48px;
  }
  .md-down-mb-xl {
    margin-bottom: 48px;
  }
  .md-down-my-xl {
    margin-block: 48px;
  }
  .md-down-ml-xl {
    margin-left: 48px;
  }
  .md-down-mr-xl {
    margin-right: 48px;
  }
  .md-down-mx-xl {
    margin-inline: 48px;
  }
  .md-down-p-xl {
    padding: 48px;
  }
  .md-down-pt-xl {
    padding-top: 48px;
  }
  .md-down-pb-xl {
    padding-bottom: 48px;
  }
  .md-down-py-xl {
    padding-block: 48px;
  }
  .md-down-pl-xl {
    padding-left: 48px;
  }
  .md-down-pr-xl {
    padding-right: 48px;
  }
  .md-down-px-xl {
    padding-inline: 48px;
  }
  .md-down-m-xxl {
    margin: 80px;
  }
  .md-down-mt-xxl {
    margin-top: 80px;
  }
  .md-down-mb-xxl {
    margin-bottom: 80px;
  }
  .md-down-my-xxl {
    margin-block: 80px;
  }
  .md-down-ml-xxl {
    margin-left: 80px;
  }
  .md-down-mr-xxl {
    margin-right: 80px;
  }
  .md-down-mx-xxl {
    margin-inline: 80px;
  }
  .md-down-p-xxl {
    padding: 80px;
  }
  .md-down-pt-xxl {
    padding-top: 80px;
  }
  .md-down-pb-xxl {
    padding-bottom: 80px;
  }
  .md-down-py-xxl {
    padding-block: 80px;
  }
  .md-down-pl-xxl {
    padding-left: 80px;
  }
  .md-down-pr-xxl {
    padding-right: 80px;
  }
  .md-down-px-xxl {
    padding-inline: 80px;
  }
  .md-down-m-fluid {
    margin: var(--side-margin);
  }
  .md-down-mt-fluid {
    margin-top: var(--side-margin);
  }
  .md-down-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .md-down-my-fluid {
    margin-block: var(--side-margin);
  }
  .md-down-ml-fluid {
    margin-left: var(--side-margin);
  }
  .md-down-mr-fluid {
    margin-right: var(--side-margin);
  }
  .md-down-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .md-down-p-fluid {
    padding: var(--side-margin);
  }
  .md-down-pt-fluid {
    padding-top: var(--side-margin);
  }
  .md-down-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .md-down-py-fluid {
    padding-block: var(--side-margin);
  }
  .md-down-pl-fluid {
    padding-left: var(--side-margin);
  }
  .md-down-pr-fluid {
    padding-right: var(--side-margin);
  }
  .md-down-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (max-width: 35.98rem) {
  .sm-down-m-0 {
    margin: 0;
  }
  .sm-down-mt-0 {
    margin-top: 0;
  }
  .sm-down-mb-0 {
    margin-bottom: 0;
  }
  .sm-down-my-0 {
    margin-block: 0;
  }
  .sm-down-ml-0 {
    margin-left: 0;
  }
  .sm-down-mr-0 {
    margin-right: 0;
  }
  .sm-down-mx-0 {
    margin-inline: 0;
  }
  .sm-down-p-0 {
    padding: 0;
  }
  .sm-down-pt-0 {
    padding-top: 0;
  }
  .sm-down-pb-0 {
    padding-bottom: 0;
  }
  .sm-down-py-0 {
    padding-block: 0;
  }
  .sm-down-pl-0 {
    padding-left: 0;
  }
  .sm-down-pr-0 {
    padding-right: 0;
  }
  .sm-down-px-0 {
    padding-inline: 0;
  }
  .sm-down-m-xs {
    margin: 8px;
  }
  .sm-down-mt-xs {
    margin-top: 8px;
  }
  .sm-down-mb-xs {
    margin-bottom: 8px;
  }
  .sm-down-my-xs {
    margin-block: 8px;
  }
  .sm-down-ml-xs {
    margin-left: 8px;
  }
  .sm-down-mr-xs {
    margin-right: 8px;
  }
  .sm-down-mx-xs {
    margin-inline: 8px;
  }
  .sm-down-p-xs {
    padding: 8px;
  }
  .sm-down-pt-xs {
    padding-top: 8px;
  }
  .sm-down-pb-xs {
    padding-bottom: 8px;
  }
  .sm-down-py-xs {
    padding-block: 8px;
  }
  .sm-down-pl-xs {
    padding-left: 8px;
  }
  .sm-down-pr-xs {
    padding-right: 8px;
  }
  .sm-down-px-xs {
    padding-inline: 8px;
  }
  .sm-down-m-sm {
    margin: 16px;
  }
  .sm-down-mt-sm {
    margin-top: 16px;
  }
  .sm-down-mb-sm {
    margin-bottom: 16px;
  }
  .sm-down-my-sm {
    margin-block: 16px;
  }
  .sm-down-ml-sm {
    margin-left: 16px;
  }
  .sm-down-mr-sm {
    margin-right: 16px;
  }
  .sm-down-mx-sm {
    margin-inline: 16px;
  }
  .sm-down-p-sm {
    padding: 16px;
  }
  .sm-down-pt-sm {
    padding-top: 16px;
  }
  .sm-down-pb-sm {
    padding-bottom: 16px;
  }
  .sm-down-py-sm {
    padding-block: 16px;
  }
  .sm-down-pl-sm {
    padding-left: 16px;
  }
  .sm-down-pr-sm {
    padding-right: 16px;
  }
  .sm-down-px-sm {
    padding-inline: 16px;
  }
  .sm-down-m-md {
    margin: 22px;
  }
  .sm-down-mt-md {
    margin-top: 22px;
  }
  .sm-down-mb-md {
    margin-bottom: 22px;
  }
  .sm-down-my-md {
    margin-block: 22px;
  }
  .sm-down-ml-md {
    margin-left: 22px;
  }
  .sm-down-mr-md {
    margin-right: 22px;
  }
  .sm-down-mx-md {
    margin-inline: 22px;
  }
  .sm-down-p-md {
    padding: 22px;
  }
  .sm-down-pt-md {
    padding-top: 22px;
  }
  .sm-down-pb-md {
    padding-bottom: 22px;
  }
  .sm-down-py-md {
    padding-block: 22px;
  }
  .sm-down-pl-md {
    padding-left: 22px;
  }
  .sm-down-pr-md {
    padding-right: 22px;
  }
  .sm-down-px-md {
    padding-inline: 22px;
  }
  .sm-down-m-lg {
    margin: 32px;
  }
  .sm-down-mt-lg {
    margin-top: 32px;
  }
  .sm-down-mb-lg {
    margin-bottom: 32px;
  }
  .sm-down-my-lg {
    margin-block: 32px;
  }
  .sm-down-ml-lg {
    margin-left: 32px;
  }
  .sm-down-mr-lg {
    margin-right: 32px;
  }
  .sm-down-mx-lg {
    margin-inline: 32px;
  }
  .sm-down-p-lg {
    padding: 32px;
  }
  .sm-down-pt-lg {
    padding-top: 32px;
  }
  .sm-down-pb-lg {
    padding-bottom: 32px;
  }
  .sm-down-py-lg {
    padding-block: 32px;
  }
  .sm-down-pl-lg {
    padding-left: 32px;
  }
  .sm-down-pr-lg {
    padding-right: 32px;
  }
  .sm-down-px-lg {
    padding-inline: 32px;
  }
  .sm-down-m-xl {
    margin: 48px;
  }
  .sm-down-mt-xl {
    margin-top: 48px;
  }
  .sm-down-mb-xl {
    margin-bottom: 48px;
  }
  .sm-down-my-xl {
    margin-block: 48px;
  }
  .sm-down-ml-xl {
    margin-left: 48px;
  }
  .sm-down-mr-xl {
    margin-right: 48px;
  }
  .sm-down-mx-xl {
    margin-inline: 48px;
  }
  .sm-down-p-xl {
    padding: 48px;
  }
  .sm-down-pt-xl {
    padding-top: 48px;
  }
  .sm-down-pb-xl {
    padding-bottom: 48px;
  }
  .sm-down-py-xl {
    padding-block: 48px;
  }
  .sm-down-pl-xl {
    padding-left: 48px;
  }
  .sm-down-pr-xl {
    padding-right: 48px;
  }
  .sm-down-px-xl {
    padding-inline: 48px;
  }
  .sm-down-m-xxl {
    margin: 80px;
  }
  .sm-down-mt-xxl {
    margin-top: 80px;
  }
  .sm-down-mb-xxl {
    margin-bottom: 80px;
  }
  .sm-down-my-xxl {
    margin-block: 80px;
  }
  .sm-down-ml-xxl {
    margin-left: 80px;
  }
  .sm-down-mr-xxl {
    margin-right: 80px;
  }
  .sm-down-mx-xxl {
    margin-inline: 80px;
  }
  .sm-down-p-xxl {
    padding: 80px;
  }
  .sm-down-pt-xxl {
    padding-top: 80px;
  }
  .sm-down-pb-xxl {
    padding-bottom: 80px;
  }
  .sm-down-py-xxl {
    padding-block: 80px;
  }
  .sm-down-pl-xxl {
    padding-left: 80px;
  }
  .sm-down-pr-xxl {
    padding-right: 80px;
  }
  .sm-down-px-xxl {
    padding-inline: 80px;
  }
  .sm-down-m-fluid {
    margin: var(--side-margin);
  }
  .sm-down-mt-fluid {
    margin-top: var(--side-margin);
  }
  .sm-down-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .sm-down-my-fluid {
    margin-block: var(--side-margin);
  }
  .sm-down-ml-fluid {
    margin-left: var(--side-margin);
  }
  .sm-down-mr-fluid {
    margin-right: var(--side-margin);
  }
  .sm-down-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .sm-down-p-fluid {
    padding: var(--side-margin);
  }
  .sm-down-pt-fluid {
    padding-top: var(--side-margin);
  }
  .sm-down-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .sm-down-py-fluid {
    padding-block: var(--side-margin);
  }
  .sm-down-pl-fluid {
    padding-left: var(--side-margin);
  }
  .sm-down-pr-fluid {
    padding-right: var(--side-margin);
  }
  .sm-down-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (min-width: 36rem) {
  .sm-up-m-0 {
    margin: 0;
  }
  .sm-up-mt-0 {
    margin-top: 0;
  }
  .sm-up-mb-0 {
    margin-bottom: 0;
  }
  .sm-up-my-0 {
    margin-block: 0;
  }
  .sm-up-ml-0 {
    margin-left: 0;
  }
  .sm-up-mr-0 {
    margin-right: 0;
  }
  .sm-up-mx-0 {
    margin-inline: 0;
  }
  .sm-up-p-0 {
    padding: 0;
  }
  .sm-up-pt-0 {
    padding-top: 0;
  }
  .sm-up-pb-0 {
    padding-bottom: 0;
  }
  .sm-up-py-0 {
    padding-block: 0;
  }
  .sm-up-pl-0 {
    padding-left: 0;
  }
  .sm-up-pr-0 {
    padding-right: 0;
  }
  .sm-up-px-0 {
    padding-inline: 0;
  }
  .sm-up-m-xs {
    margin: 8px;
  }
  .sm-up-mt-xs {
    margin-top: 8px;
  }
  .sm-up-mb-xs {
    margin-bottom: 8px;
  }
  .sm-up-my-xs {
    margin-block: 8px;
  }
  .sm-up-ml-xs {
    margin-left: 8px;
  }
  .sm-up-mr-xs {
    margin-right: 8px;
  }
  .sm-up-mx-xs {
    margin-inline: 8px;
  }
  .sm-up-p-xs {
    padding: 8px;
  }
  .sm-up-pt-xs {
    padding-top: 8px;
  }
  .sm-up-pb-xs {
    padding-bottom: 8px;
  }
  .sm-up-py-xs {
    padding-block: 8px;
  }
  .sm-up-pl-xs {
    padding-left: 8px;
  }
  .sm-up-pr-xs {
    padding-right: 8px;
  }
  .sm-up-px-xs {
    padding-inline: 8px;
  }
  .sm-up-m-sm {
    margin: 16px;
  }
  .sm-up-mt-sm {
    margin-top: 16px;
  }
  .sm-up-mb-sm {
    margin-bottom: 16px;
  }
  .sm-up-my-sm {
    margin-block: 16px;
  }
  .sm-up-ml-sm {
    margin-left: 16px;
  }
  .sm-up-mr-sm {
    margin-right: 16px;
  }
  .sm-up-mx-sm {
    margin-inline: 16px;
  }
  .sm-up-p-sm {
    padding: 16px;
  }
  .sm-up-pt-sm {
    padding-top: 16px;
  }
  .sm-up-pb-sm {
    padding-bottom: 16px;
  }
  .sm-up-py-sm {
    padding-block: 16px;
  }
  .sm-up-pl-sm {
    padding-left: 16px;
  }
  .sm-up-pr-sm {
    padding-right: 16px;
  }
  .sm-up-px-sm {
    padding-inline: 16px;
  }
  .sm-up-m-md {
    margin: 22px;
  }
  .sm-up-mt-md {
    margin-top: 22px;
  }
  .sm-up-mb-md {
    margin-bottom: 22px;
  }
  .sm-up-my-md {
    margin-block: 22px;
  }
  .sm-up-ml-md {
    margin-left: 22px;
  }
  .sm-up-mr-md {
    margin-right: 22px;
  }
  .sm-up-mx-md {
    margin-inline: 22px;
  }
  .sm-up-p-md {
    padding: 22px;
  }
  .sm-up-pt-md {
    padding-top: 22px;
  }
  .sm-up-pb-md {
    padding-bottom: 22px;
  }
  .sm-up-py-md {
    padding-block: 22px;
  }
  .sm-up-pl-md {
    padding-left: 22px;
  }
  .sm-up-pr-md {
    padding-right: 22px;
  }
  .sm-up-px-md {
    padding-inline: 22px;
  }
  .sm-up-m-lg {
    margin: 32px;
  }
  .sm-up-mt-lg {
    margin-top: 32px;
  }
  .sm-up-mb-lg {
    margin-bottom: 32px;
  }
  .sm-up-my-lg {
    margin-block: 32px;
  }
  .sm-up-ml-lg {
    margin-left: 32px;
  }
  .sm-up-mr-lg {
    margin-right: 32px;
  }
  .sm-up-mx-lg {
    margin-inline: 32px;
  }
  .sm-up-p-lg {
    padding: 32px;
  }
  .sm-up-pt-lg {
    padding-top: 32px;
  }
  .sm-up-pb-lg {
    padding-bottom: 32px;
  }
  .sm-up-py-lg {
    padding-block: 32px;
  }
  .sm-up-pl-lg {
    padding-left: 32px;
  }
  .sm-up-pr-lg {
    padding-right: 32px;
  }
  .sm-up-px-lg {
    padding-inline: 32px;
  }
  .sm-up-m-xl {
    margin: 48px;
  }
  .sm-up-mt-xl {
    margin-top: 48px;
  }
  .sm-up-mb-xl {
    margin-bottom: 48px;
  }
  .sm-up-my-xl {
    margin-block: 48px;
  }
  .sm-up-ml-xl {
    margin-left: 48px;
  }
  .sm-up-mr-xl {
    margin-right: 48px;
  }
  .sm-up-mx-xl {
    margin-inline: 48px;
  }
  .sm-up-p-xl {
    padding: 48px;
  }
  .sm-up-pt-xl {
    padding-top: 48px;
  }
  .sm-up-pb-xl {
    padding-bottom: 48px;
  }
  .sm-up-py-xl {
    padding-block: 48px;
  }
  .sm-up-pl-xl {
    padding-left: 48px;
  }
  .sm-up-pr-xl {
    padding-right: 48px;
  }
  .sm-up-px-xl {
    padding-inline: 48px;
  }
  .sm-up-m-xxl {
    margin: 80px;
  }
  .sm-up-mt-xxl {
    margin-top: 80px;
  }
  .sm-up-mb-xxl {
    margin-bottom: 80px;
  }
  .sm-up-my-xxl {
    margin-block: 80px;
  }
  .sm-up-ml-xxl {
    margin-left: 80px;
  }
  .sm-up-mr-xxl {
    margin-right: 80px;
  }
  .sm-up-mx-xxl {
    margin-inline: 80px;
  }
  .sm-up-p-xxl {
    padding: 80px;
  }
  .sm-up-pt-xxl {
    padding-top: 80px;
  }
  .sm-up-pb-xxl {
    padding-bottom: 80px;
  }
  .sm-up-py-xxl {
    padding-block: 80px;
  }
  .sm-up-pl-xxl {
    padding-left: 80px;
  }
  .sm-up-pr-xxl {
    padding-right: 80px;
  }
  .sm-up-px-xxl {
    padding-inline: 80px;
  }
  .sm-up-m-fluid {
    margin: var(--side-margin);
  }
  .sm-up-mt-fluid {
    margin-top: var(--side-margin);
  }
  .sm-up-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .sm-up-my-fluid {
    margin-block: var(--side-margin);
  }
  .sm-up-ml-fluid {
    margin-left: var(--side-margin);
  }
  .sm-up-mr-fluid {
    margin-right: var(--side-margin);
  }
  .sm-up-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .sm-up-p-fluid {
    padding: var(--side-margin);
  }
  .sm-up-pt-fluid {
    padding-top: var(--side-margin);
  }
  .sm-up-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .sm-up-py-fluid {
    padding-block: var(--side-margin);
  }
  .sm-up-pl-fluid {
    padding-left: var(--side-margin);
  }
  .sm-up-pr-fluid {
    padding-right: var(--side-margin);
  }
  .sm-up-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (min-width: 48rem) {
  .md-up-m-0 {
    margin: 0;
  }
  .md-up-mt-0 {
    margin-top: 0;
  }
  .md-up-mb-0 {
    margin-bottom: 0;
  }
  .md-up-my-0 {
    margin-block: 0;
  }
  .md-up-ml-0 {
    margin-left: 0;
  }
  .md-up-mr-0 {
    margin-right: 0;
  }
  .md-up-mx-0 {
    margin-inline: 0;
  }
  .md-up-p-0 {
    padding: 0;
  }
  .md-up-pt-0 {
    padding-top: 0;
  }
  .md-up-pb-0 {
    padding-bottom: 0;
  }
  .md-up-py-0 {
    padding-block: 0;
  }
  .md-up-pl-0 {
    padding-left: 0;
  }
  .md-up-pr-0 {
    padding-right: 0;
  }
  .md-up-px-0 {
    padding-inline: 0;
  }
  .md-up-m-xs {
    margin: 8px;
  }
  .md-up-mt-xs {
    margin-top: 8px;
  }
  .md-up-mb-xs {
    margin-bottom: 8px;
  }
  .md-up-my-xs {
    margin-block: 8px;
  }
  .md-up-ml-xs {
    margin-left: 8px;
  }
  .md-up-mr-xs {
    margin-right: 8px;
  }
  .md-up-mx-xs {
    margin-inline: 8px;
  }
  .md-up-p-xs {
    padding: 8px;
  }
  .md-up-pt-xs {
    padding-top: 8px;
  }
  .md-up-pb-xs {
    padding-bottom: 8px;
  }
  .md-up-py-xs {
    padding-block: 8px;
  }
  .md-up-pl-xs {
    padding-left: 8px;
  }
  .md-up-pr-xs {
    padding-right: 8px;
  }
  .md-up-px-xs {
    padding-inline: 8px;
  }
  .md-up-m-sm {
    margin: 16px;
  }
  .md-up-mt-sm {
    margin-top: 16px;
  }
  .md-up-mb-sm {
    margin-bottom: 16px;
  }
  .md-up-my-sm {
    margin-block: 16px;
  }
  .md-up-ml-sm {
    margin-left: 16px;
  }
  .md-up-mr-sm {
    margin-right: 16px;
  }
  .md-up-mx-sm {
    margin-inline: 16px;
  }
  .md-up-p-sm {
    padding: 16px;
  }
  .md-up-pt-sm {
    padding-top: 16px;
  }
  .md-up-pb-sm {
    padding-bottom: 16px;
  }
  .md-up-py-sm {
    padding-block: 16px;
  }
  .md-up-pl-sm {
    padding-left: 16px;
  }
  .md-up-pr-sm {
    padding-right: 16px;
  }
  .md-up-px-sm {
    padding-inline: 16px;
  }
  .md-up-m-md {
    margin: 22px;
  }
  .md-up-mt-md {
    margin-top: 22px;
  }
  .md-up-mb-md {
    margin-bottom: 22px;
  }
  .md-up-my-md {
    margin-block: 22px;
  }
  .md-up-ml-md {
    margin-left: 22px;
  }
  .md-up-mr-md {
    margin-right: 22px;
  }
  .md-up-mx-md {
    margin-inline: 22px;
  }
  .md-up-p-md {
    padding: 22px;
  }
  .md-up-pt-md {
    padding-top: 22px;
  }
  .md-up-pb-md {
    padding-bottom: 22px;
  }
  .md-up-py-md {
    padding-block: 22px;
  }
  .md-up-pl-md {
    padding-left: 22px;
  }
  .md-up-pr-md {
    padding-right: 22px;
  }
  .md-up-px-md {
    padding-inline: 22px;
  }
  .md-up-m-lg {
    margin: 32px;
  }
  .md-up-mt-lg {
    margin-top: 32px;
  }
  .md-up-mb-lg {
    margin-bottom: 32px;
  }
  .md-up-my-lg {
    margin-block: 32px;
  }
  .md-up-ml-lg {
    margin-left: 32px;
  }
  .md-up-mr-lg {
    margin-right: 32px;
  }
  .md-up-mx-lg {
    margin-inline: 32px;
  }
  .md-up-p-lg {
    padding: 32px;
  }
  .md-up-pt-lg {
    padding-top: 32px;
  }
  .md-up-pb-lg {
    padding-bottom: 32px;
  }
  .md-up-py-lg {
    padding-block: 32px;
  }
  .md-up-pl-lg {
    padding-left: 32px;
  }
  .md-up-pr-lg {
    padding-right: 32px;
  }
  .md-up-px-lg {
    padding-inline: 32px;
  }
  .md-up-m-xl {
    margin: 48px;
  }
  .md-up-mt-xl {
    margin-top: 48px;
  }
  .md-up-mb-xl {
    margin-bottom: 48px;
  }
  .md-up-my-xl {
    margin-block: 48px;
  }
  .md-up-ml-xl {
    margin-left: 48px;
  }
  .md-up-mr-xl {
    margin-right: 48px;
  }
  .md-up-mx-xl {
    margin-inline: 48px;
  }
  .md-up-p-xl {
    padding: 48px;
  }
  .md-up-pt-xl {
    padding-top: 48px;
  }
  .md-up-pb-xl {
    padding-bottom: 48px;
  }
  .md-up-py-xl {
    padding-block: 48px;
  }
  .md-up-pl-xl {
    padding-left: 48px;
  }
  .md-up-pr-xl {
    padding-right: 48px;
  }
  .md-up-px-xl {
    padding-inline: 48px;
  }
  .md-up-m-xxl {
    margin: 80px;
  }
  .md-up-mt-xxl {
    margin-top: 80px;
  }
  .md-up-mb-xxl {
    margin-bottom: 80px;
  }
  .md-up-my-xxl {
    margin-block: 80px;
  }
  .md-up-ml-xxl {
    margin-left: 80px;
  }
  .md-up-mr-xxl {
    margin-right: 80px;
  }
  .md-up-mx-xxl {
    margin-inline: 80px;
  }
  .md-up-p-xxl {
    padding: 80px;
  }
  .md-up-pt-xxl {
    padding-top: 80px;
  }
  .md-up-pb-xxl {
    padding-bottom: 80px;
  }
  .md-up-py-xxl {
    padding-block: 80px;
  }
  .md-up-pl-xxl {
    padding-left: 80px;
  }
  .md-up-pr-xxl {
    padding-right: 80px;
  }
  .md-up-px-xxl {
    padding-inline: 80px;
  }
  .md-up-m-fluid {
    margin: var(--side-margin);
  }
  .md-up-mt-fluid {
    margin-top: var(--side-margin);
  }
  .md-up-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .md-up-my-fluid {
    margin-block: var(--side-margin);
  }
  .md-up-ml-fluid {
    margin-left: var(--side-margin);
  }
  .md-up-mr-fluid {
    margin-right: var(--side-margin);
  }
  .md-up-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .md-up-p-fluid {
    padding: var(--side-margin);
  }
  .md-up-pt-fluid {
    padding-top: var(--side-margin);
  }
  .md-up-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .md-up-py-fluid {
    padding-block: var(--side-margin);
  }
  .md-up-pl-fluid {
    padding-left: var(--side-margin);
  }
  .md-up-pr-fluid {
    padding-right: var(--side-margin);
  }
  .md-up-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (min-width: 64rem) {
  .lg-up-m-0 {
    margin: 0;
  }
  .lg-up-mt-0 {
    margin-top: 0;
  }
  .lg-up-mb-0 {
    margin-bottom: 0;
  }
  .lg-up-my-0 {
    margin-block: 0;
  }
  .lg-up-ml-0 {
    margin-left: 0;
  }
  .lg-up-mr-0 {
    margin-right: 0;
  }
  .lg-up-mx-0 {
    margin-inline: 0;
  }
  .lg-up-p-0 {
    padding: 0;
  }
  .lg-up-pt-0 {
    padding-top: 0;
  }
  .lg-up-pb-0 {
    padding-bottom: 0;
  }
  .lg-up-py-0 {
    padding-block: 0;
  }
  .lg-up-pl-0 {
    padding-left: 0;
  }
  .lg-up-pr-0 {
    padding-right: 0;
  }
  .lg-up-px-0 {
    padding-inline: 0;
  }
  .lg-up-m-xs {
    margin: 8px;
  }
  .lg-up-mt-xs {
    margin-top: 8px;
  }
  .lg-up-mb-xs {
    margin-bottom: 8px;
  }
  .lg-up-my-xs {
    margin-block: 8px;
  }
  .lg-up-ml-xs {
    margin-left: 8px;
  }
  .lg-up-mr-xs {
    margin-right: 8px;
  }
  .lg-up-mx-xs {
    margin-inline: 8px;
  }
  .lg-up-p-xs {
    padding: 8px;
  }
  .lg-up-pt-xs {
    padding-top: 8px;
  }
  .lg-up-pb-xs {
    padding-bottom: 8px;
  }
  .lg-up-py-xs {
    padding-block: 8px;
  }
  .lg-up-pl-xs {
    padding-left: 8px;
  }
  .lg-up-pr-xs {
    padding-right: 8px;
  }
  .lg-up-px-xs {
    padding-inline: 8px;
  }
  .lg-up-m-sm {
    margin: 16px;
  }
  .lg-up-mt-sm {
    margin-top: 16px;
  }
  .lg-up-mb-sm {
    margin-bottom: 16px;
  }
  .lg-up-my-sm {
    margin-block: 16px;
  }
  .lg-up-ml-sm {
    margin-left: 16px;
  }
  .lg-up-mr-sm {
    margin-right: 16px;
  }
  .lg-up-mx-sm {
    margin-inline: 16px;
  }
  .lg-up-p-sm {
    padding: 16px;
  }
  .lg-up-pt-sm {
    padding-top: 16px;
  }
  .lg-up-pb-sm {
    padding-bottom: 16px;
  }
  .lg-up-py-sm {
    padding-block: 16px;
  }
  .lg-up-pl-sm {
    padding-left: 16px;
  }
  .lg-up-pr-sm {
    padding-right: 16px;
  }
  .lg-up-px-sm {
    padding-inline: 16px;
  }
  .lg-up-m-md {
    margin: 22px;
  }
  .lg-up-mt-md {
    margin-top: 22px;
  }
  .lg-up-mb-md {
    margin-bottom: 22px;
  }
  .lg-up-my-md {
    margin-block: 22px;
  }
  .lg-up-ml-md {
    margin-left: 22px;
  }
  .lg-up-mr-md {
    margin-right: 22px;
  }
  .lg-up-mx-md {
    margin-inline: 22px;
  }
  .lg-up-p-md {
    padding: 22px;
  }
  .lg-up-pt-md {
    padding-top: 22px;
  }
  .lg-up-pb-md {
    padding-bottom: 22px;
  }
  .lg-up-py-md {
    padding-block: 22px;
  }
  .lg-up-pl-md {
    padding-left: 22px;
  }
  .lg-up-pr-md {
    padding-right: 22px;
  }
  .lg-up-px-md {
    padding-inline: 22px;
  }
  .lg-up-m-lg {
    margin: 32px;
  }
  .lg-up-mt-lg {
    margin-top: 32px;
  }
  .lg-up-mb-lg {
    margin-bottom: 32px;
  }
  .lg-up-my-lg {
    margin-block: 32px;
  }
  .lg-up-ml-lg {
    margin-left: 32px;
  }
  .lg-up-mr-lg {
    margin-right: 32px;
  }
  .lg-up-mx-lg {
    margin-inline: 32px;
  }
  .lg-up-p-lg {
    padding: 32px;
  }
  .lg-up-pt-lg {
    padding-top: 32px;
  }
  .lg-up-pb-lg {
    padding-bottom: 32px;
  }
  .lg-up-py-lg {
    padding-block: 32px;
  }
  .lg-up-pl-lg {
    padding-left: 32px;
  }
  .lg-up-pr-lg {
    padding-right: 32px;
  }
  .lg-up-px-lg {
    padding-inline: 32px;
  }
  .lg-up-m-xl {
    margin: 48px;
  }
  .lg-up-mt-xl {
    margin-top: 48px;
  }
  .lg-up-mb-xl {
    margin-bottom: 48px;
  }
  .lg-up-my-xl {
    margin-block: 48px;
  }
  .lg-up-ml-xl {
    margin-left: 48px;
  }
  .lg-up-mr-xl {
    margin-right: 48px;
  }
  .lg-up-mx-xl {
    margin-inline: 48px;
  }
  .lg-up-p-xl {
    padding: 48px;
  }
  .lg-up-pt-xl {
    padding-top: 48px;
  }
  .lg-up-pb-xl {
    padding-bottom: 48px;
  }
  .lg-up-py-xl {
    padding-block: 48px;
  }
  .lg-up-pl-xl {
    padding-left: 48px;
  }
  .lg-up-pr-xl {
    padding-right: 48px;
  }
  .lg-up-px-xl {
    padding-inline: 48px;
  }
  .lg-up-m-xxl {
    margin: 80px;
  }
  .lg-up-mt-xxl {
    margin-top: 80px;
  }
  .lg-up-mb-xxl {
    margin-bottom: 80px;
  }
  .lg-up-my-xxl {
    margin-block: 80px;
  }
  .lg-up-ml-xxl {
    margin-left: 80px;
  }
  .lg-up-mr-xxl {
    margin-right: 80px;
  }
  .lg-up-mx-xxl {
    margin-inline: 80px;
  }
  .lg-up-p-xxl {
    padding: 80px;
  }
  .lg-up-pt-xxl {
    padding-top: 80px;
  }
  .lg-up-pb-xxl {
    padding-bottom: 80px;
  }
  .lg-up-py-xxl {
    padding-block: 80px;
  }
  .lg-up-pl-xxl {
    padding-left: 80px;
  }
  .lg-up-pr-xxl {
    padding-right: 80px;
  }
  .lg-up-px-xxl {
    padding-inline: 80px;
  }
  .lg-up-m-fluid {
    margin: var(--side-margin);
  }
  .lg-up-mt-fluid {
    margin-top: var(--side-margin);
  }
  .lg-up-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .lg-up-my-fluid {
    margin-block: var(--side-margin);
  }
  .lg-up-ml-fluid {
    margin-left: var(--side-margin);
  }
  .lg-up-mr-fluid {
    margin-right: var(--side-margin);
  }
  .lg-up-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .lg-up-p-fluid {
    padding: var(--side-margin);
  }
  .lg-up-pt-fluid {
    padding-top: var(--side-margin);
  }
  .lg-up-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .lg-up-py-fluid {
    padding-block: var(--side-margin);
  }
  .lg-up-pl-fluid {
    padding-left: var(--side-margin);
  }
  .lg-up-pr-fluid {
    padding-right: var(--side-margin);
  }
  .lg-up-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (min-width: 80rem) {
  .xl-up-m-0 {
    margin: 0;
  }
  .xl-up-mt-0 {
    margin-top: 0;
  }
  .xl-up-mb-0 {
    margin-bottom: 0;
  }
  .xl-up-my-0 {
    margin-block: 0;
  }
  .xl-up-ml-0 {
    margin-left: 0;
  }
  .xl-up-mr-0 {
    margin-right: 0;
  }
  .xl-up-mx-0 {
    margin-inline: 0;
  }
  .xl-up-p-0 {
    padding: 0;
  }
  .xl-up-pt-0 {
    padding-top: 0;
  }
  .xl-up-pb-0 {
    padding-bottom: 0;
  }
  .xl-up-py-0 {
    padding-block: 0;
  }
  .xl-up-pl-0 {
    padding-left: 0;
  }
  .xl-up-pr-0 {
    padding-right: 0;
  }
  .xl-up-px-0 {
    padding-inline: 0;
  }
  .xl-up-m-xs {
    margin: 8px;
  }
  .xl-up-mt-xs {
    margin-top: 8px;
  }
  .xl-up-mb-xs {
    margin-bottom: 8px;
  }
  .xl-up-my-xs {
    margin-block: 8px;
  }
  .xl-up-ml-xs {
    margin-left: 8px;
  }
  .xl-up-mr-xs {
    margin-right: 8px;
  }
  .xl-up-mx-xs {
    margin-inline: 8px;
  }
  .xl-up-p-xs {
    padding: 8px;
  }
  .xl-up-pt-xs {
    padding-top: 8px;
  }
  .xl-up-pb-xs {
    padding-bottom: 8px;
  }
  .xl-up-py-xs {
    padding-block: 8px;
  }
  .xl-up-pl-xs {
    padding-left: 8px;
  }
  .xl-up-pr-xs {
    padding-right: 8px;
  }
  .xl-up-px-xs {
    padding-inline: 8px;
  }
  .xl-up-m-sm {
    margin: 16px;
  }
  .xl-up-mt-sm {
    margin-top: 16px;
  }
  .xl-up-mb-sm {
    margin-bottom: 16px;
  }
  .xl-up-my-sm {
    margin-block: 16px;
  }
  .xl-up-ml-sm {
    margin-left: 16px;
  }
  .xl-up-mr-sm {
    margin-right: 16px;
  }
  .xl-up-mx-sm {
    margin-inline: 16px;
  }
  .xl-up-p-sm {
    padding: 16px;
  }
  .xl-up-pt-sm {
    padding-top: 16px;
  }
  .xl-up-pb-sm {
    padding-bottom: 16px;
  }
  .xl-up-py-sm {
    padding-block: 16px;
  }
  .xl-up-pl-sm {
    padding-left: 16px;
  }
  .xl-up-pr-sm {
    padding-right: 16px;
  }
  .xl-up-px-sm {
    padding-inline: 16px;
  }
  .xl-up-m-md {
    margin: 22px;
  }
  .xl-up-mt-md {
    margin-top: 22px;
  }
  .xl-up-mb-md {
    margin-bottom: 22px;
  }
  .xl-up-my-md {
    margin-block: 22px;
  }
  .xl-up-ml-md {
    margin-left: 22px;
  }
  .xl-up-mr-md {
    margin-right: 22px;
  }
  .xl-up-mx-md {
    margin-inline: 22px;
  }
  .xl-up-p-md {
    padding: 22px;
  }
  .xl-up-pt-md {
    padding-top: 22px;
  }
  .xl-up-pb-md {
    padding-bottom: 22px;
  }
  .xl-up-py-md {
    padding-block: 22px;
  }
  .xl-up-pl-md {
    padding-left: 22px;
  }
  .xl-up-pr-md {
    padding-right: 22px;
  }
  .xl-up-px-md {
    padding-inline: 22px;
  }
  .xl-up-m-lg {
    margin: 32px;
  }
  .xl-up-mt-lg {
    margin-top: 32px;
  }
  .xl-up-mb-lg {
    margin-bottom: 32px;
  }
  .xl-up-my-lg {
    margin-block: 32px;
  }
  .xl-up-ml-lg {
    margin-left: 32px;
  }
  .xl-up-mr-lg {
    margin-right: 32px;
  }
  .xl-up-mx-lg {
    margin-inline: 32px;
  }
  .xl-up-p-lg {
    padding: 32px;
  }
  .xl-up-pt-lg {
    padding-top: 32px;
  }
  .xl-up-pb-lg {
    padding-bottom: 32px;
  }
  .xl-up-py-lg {
    padding-block: 32px;
  }
  .xl-up-pl-lg {
    padding-left: 32px;
  }
  .xl-up-pr-lg {
    padding-right: 32px;
  }
  .xl-up-px-lg {
    padding-inline: 32px;
  }
  .xl-up-m-xl {
    margin: 48px;
  }
  .xl-up-mt-xl {
    margin-top: 48px;
  }
  .xl-up-mb-xl {
    margin-bottom: 48px;
  }
  .xl-up-my-xl {
    margin-block: 48px;
  }
  .xl-up-ml-xl {
    margin-left: 48px;
  }
  .xl-up-mr-xl {
    margin-right: 48px;
  }
  .xl-up-mx-xl {
    margin-inline: 48px;
  }
  .xl-up-p-xl {
    padding: 48px;
  }
  .xl-up-pt-xl {
    padding-top: 48px;
  }
  .xl-up-pb-xl {
    padding-bottom: 48px;
  }
  .xl-up-py-xl {
    padding-block: 48px;
  }
  .xl-up-pl-xl {
    padding-left: 48px;
  }
  .xl-up-pr-xl {
    padding-right: 48px;
  }
  .xl-up-px-xl {
    padding-inline: 48px;
  }
  .xl-up-m-xxl {
    margin: 80px;
  }
  .xl-up-mt-xxl {
    margin-top: 80px;
  }
  .xl-up-mb-xxl {
    margin-bottom: 80px;
  }
  .xl-up-my-xxl {
    margin-block: 80px;
  }
  .xl-up-ml-xxl {
    margin-left: 80px;
  }
  .xl-up-mr-xxl {
    margin-right: 80px;
  }
  .xl-up-mx-xxl {
    margin-inline: 80px;
  }
  .xl-up-p-xxl {
    padding: 80px;
  }
  .xl-up-pt-xxl {
    padding-top: 80px;
  }
  .xl-up-pb-xxl {
    padding-bottom: 80px;
  }
  .xl-up-py-xxl {
    padding-block: 80px;
  }
  .xl-up-pl-xxl {
    padding-left: 80px;
  }
  .xl-up-pr-xxl {
    padding-right: 80px;
  }
  .xl-up-px-xxl {
    padding-inline: 80px;
  }
  .xl-up-m-fluid {
    margin: var(--side-margin);
  }
  .xl-up-mt-fluid {
    margin-top: var(--side-margin);
  }
  .xl-up-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .xl-up-my-fluid {
    margin-block: var(--side-margin);
  }
  .xl-up-ml-fluid {
    margin-left: var(--side-margin);
  }
  .xl-up-mr-fluid {
    margin-right: var(--side-margin);
  }
  .xl-up-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .xl-up-p-fluid {
    padding: var(--side-margin);
  }
  .xl-up-pt-fluid {
    padding-top: var(--side-margin);
  }
  .xl-up-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .xl-up-py-fluid {
    padding-block: var(--side-margin);
  }
  .xl-up-pl-fluid {
    padding-left: var(--side-margin);
  }
  .xl-up-pr-fluid {
    padding-right: var(--side-margin);
  }
  .xl-up-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (min-width: 90rem) {
  .xxl-up-m-0 {
    margin: 0;
  }
  .xxl-up-mt-0 {
    margin-top: 0;
  }
  .xxl-up-mb-0 {
    margin-bottom: 0;
  }
  .xxl-up-my-0 {
    margin-block: 0;
  }
  .xxl-up-ml-0 {
    margin-left: 0;
  }
  .xxl-up-mr-0 {
    margin-right: 0;
  }
  .xxl-up-mx-0 {
    margin-inline: 0;
  }
  .xxl-up-p-0 {
    padding: 0;
  }
  .xxl-up-pt-0 {
    padding-top: 0;
  }
  .xxl-up-pb-0 {
    padding-bottom: 0;
  }
  .xxl-up-py-0 {
    padding-block: 0;
  }
  .xxl-up-pl-0 {
    padding-left: 0;
  }
  .xxl-up-pr-0 {
    padding-right: 0;
  }
  .xxl-up-px-0 {
    padding-inline: 0;
  }
  .xxl-up-m-xs {
    margin: 8px;
  }
  .xxl-up-mt-xs {
    margin-top: 8px;
  }
  .xxl-up-mb-xs {
    margin-bottom: 8px;
  }
  .xxl-up-my-xs {
    margin-block: 8px;
  }
  .xxl-up-ml-xs {
    margin-left: 8px;
  }
  .xxl-up-mr-xs {
    margin-right: 8px;
  }
  .xxl-up-mx-xs {
    margin-inline: 8px;
  }
  .xxl-up-p-xs {
    padding: 8px;
  }
  .xxl-up-pt-xs {
    padding-top: 8px;
  }
  .xxl-up-pb-xs {
    padding-bottom: 8px;
  }
  .xxl-up-py-xs {
    padding-block: 8px;
  }
  .xxl-up-pl-xs {
    padding-left: 8px;
  }
  .xxl-up-pr-xs {
    padding-right: 8px;
  }
  .xxl-up-px-xs {
    padding-inline: 8px;
  }
  .xxl-up-m-sm {
    margin: 16px;
  }
  .xxl-up-mt-sm {
    margin-top: 16px;
  }
  .xxl-up-mb-sm {
    margin-bottom: 16px;
  }
  .xxl-up-my-sm {
    margin-block: 16px;
  }
  .xxl-up-ml-sm {
    margin-left: 16px;
  }
  .xxl-up-mr-sm {
    margin-right: 16px;
  }
  .xxl-up-mx-sm {
    margin-inline: 16px;
  }
  .xxl-up-p-sm {
    padding: 16px;
  }
  .xxl-up-pt-sm {
    padding-top: 16px;
  }
  .xxl-up-pb-sm {
    padding-bottom: 16px;
  }
  .xxl-up-py-sm {
    padding-block: 16px;
  }
  .xxl-up-pl-sm {
    padding-left: 16px;
  }
  .xxl-up-pr-sm {
    padding-right: 16px;
  }
  .xxl-up-px-sm {
    padding-inline: 16px;
  }
  .xxl-up-m-md {
    margin: 22px;
  }
  .xxl-up-mt-md {
    margin-top: 22px;
  }
  .xxl-up-mb-md {
    margin-bottom: 22px;
  }
  .xxl-up-my-md {
    margin-block: 22px;
  }
  .xxl-up-ml-md {
    margin-left: 22px;
  }
  .xxl-up-mr-md {
    margin-right: 22px;
  }
  .xxl-up-mx-md {
    margin-inline: 22px;
  }
  .xxl-up-p-md {
    padding: 22px;
  }
  .xxl-up-pt-md {
    padding-top: 22px;
  }
  .xxl-up-pb-md {
    padding-bottom: 22px;
  }
  .xxl-up-py-md {
    padding-block: 22px;
  }
  .xxl-up-pl-md {
    padding-left: 22px;
  }
  .xxl-up-pr-md {
    padding-right: 22px;
  }
  .xxl-up-px-md {
    padding-inline: 22px;
  }
  .xxl-up-m-lg {
    margin: 32px;
  }
  .xxl-up-mt-lg {
    margin-top: 32px;
  }
  .xxl-up-mb-lg {
    margin-bottom: 32px;
  }
  .xxl-up-my-lg {
    margin-block: 32px;
  }
  .xxl-up-ml-lg {
    margin-left: 32px;
  }
  .xxl-up-mr-lg {
    margin-right: 32px;
  }
  .xxl-up-mx-lg {
    margin-inline: 32px;
  }
  .xxl-up-p-lg {
    padding: 32px;
  }
  .xxl-up-pt-lg {
    padding-top: 32px;
  }
  .xxl-up-pb-lg {
    padding-bottom: 32px;
  }
  .xxl-up-py-lg {
    padding-block: 32px;
  }
  .xxl-up-pl-lg {
    padding-left: 32px;
  }
  .xxl-up-pr-lg {
    padding-right: 32px;
  }
  .xxl-up-px-lg {
    padding-inline: 32px;
  }
  .xxl-up-m-xl {
    margin: 48px;
  }
  .xxl-up-mt-xl {
    margin-top: 48px;
  }
  .xxl-up-mb-xl {
    margin-bottom: 48px;
  }
  .xxl-up-my-xl {
    margin-block: 48px;
  }
  .xxl-up-ml-xl {
    margin-left: 48px;
  }
  .xxl-up-mr-xl {
    margin-right: 48px;
  }
  .xxl-up-mx-xl {
    margin-inline: 48px;
  }
  .xxl-up-p-xl {
    padding: 48px;
  }
  .xxl-up-pt-xl {
    padding-top: 48px;
  }
  .xxl-up-pb-xl {
    padding-bottom: 48px;
  }
  .xxl-up-py-xl {
    padding-block: 48px;
  }
  .xxl-up-pl-xl {
    padding-left: 48px;
  }
  .xxl-up-pr-xl {
    padding-right: 48px;
  }
  .xxl-up-px-xl {
    padding-inline: 48px;
  }
  .xxl-up-m-xxl {
    margin: 80px;
  }
  .xxl-up-mt-xxl {
    margin-top: 80px;
  }
  .xxl-up-mb-xxl {
    margin-bottom: 80px;
  }
  .xxl-up-my-xxl {
    margin-block: 80px;
  }
  .xxl-up-ml-xxl {
    margin-left: 80px;
  }
  .xxl-up-mr-xxl {
    margin-right: 80px;
  }
  .xxl-up-mx-xxl {
    margin-inline: 80px;
  }
  .xxl-up-p-xxl {
    padding: 80px;
  }
  .xxl-up-pt-xxl {
    padding-top: 80px;
  }
  .xxl-up-pb-xxl {
    padding-bottom: 80px;
  }
  .xxl-up-py-xxl {
    padding-block: 80px;
  }
  .xxl-up-pl-xxl {
    padding-left: 80px;
  }
  .xxl-up-pr-xxl {
    padding-right: 80px;
  }
  .xxl-up-px-xxl {
    padding-inline: 80px;
  }
  .xxl-up-m-fluid {
    margin: var(--side-margin);
  }
  .xxl-up-mt-fluid {
    margin-top: var(--side-margin);
  }
  .xxl-up-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .xxl-up-my-fluid {
    margin-block: var(--side-margin);
  }
  .xxl-up-ml-fluid {
    margin-left: var(--side-margin);
  }
  .xxl-up-mr-fluid {
    margin-right: var(--side-margin);
  }
  .xxl-up-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .xxl-up-p-fluid {
    padding: var(--side-margin);
  }
  .xxl-up-pt-fluid {
    padding-top: var(--side-margin);
  }
  .xxl-up-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .xxl-up-py-fluid {
    padding-block: var(--side-margin);
  }
  .xxl-up-pl-fluid {
    padding-left: var(--side-margin);
  }
  .xxl-up-pr-fluid {
    padding-right: var(--side-margin);
  }
  .xxl-up-px-fluid {
    padding-inline: var(--side-margin);
  }
}
.m-0-child-not-last > :not(:last-child),
.m-0-child > * {
  margin: 0 !important;
}
.mt-0-child-not-last > :not(:last-child),
.mt-0-child > * {
  margin-top: 0 !important;
}
.mb-0-child-not-last > :not(:last-child),
.mb-0-child > * {
  margin-bottom: 0 !important;
}
.my-0-child-not-last > :not(:last-child),
.my-0-child > * {
  margin-block: 0 !important;
}
.ml-0-child-not-last > :not(:last-child),
.ml-0-child > * {
  margin-left: 0 !important;
}
.mr-0-child-not-last > :not(:last-child),
.mr-0-child > * {
  margin-right: 0 !important;
}
.mx-0-child-not-last > :not(:last-child),
.mx-0-child > * {
  margin-inline: 0 !important;
}
.p-0-child-not-last > :not(:last-child),
.p-0-child > * {
  padding: 0 !important;
}
.pt-0-child-not-last > :not(:last-child),
.pt-0-child > * {
  padding-top: 0 !important;
}
.pb-0-child-not-last > :not(:last-child),
.pb-0-child > * {
  padding-bottom: 0 !important;
}
.py-0-child-not-last > :not(:last-child),
.py-0-child > * {
  padding-block: 0 !important;
}
.pl-0-child-not-last > :not(:last-child),
.pl-0-child > * {
  padding-left: 0 !important;
}
.pr-0-child-not-last > :not(:last-child),
.pr-0-child > * {
  padding-right: 0 !important;
}
.px-0-child-not-last > :not(:last-child),
.px-0-child > * {
  padding-inline: 0 !important;
}
.m-xs-child-not-last > :not(:last-child),
.m-xs-child > * {
  margin: 8px !important;
}
.mt-xs-child-not-last > :not(:last-child),
.mt-xs-child > * {
  margin-top: 8px !important;
}
.mb-xs-child-not-last > :not(:last-child),
.mb-xs-child > * {
  margin-bottom: 8px !important;
}
.my-xs-child-not-last > :not(:last-child),
.my-xs-child > * {
  margin-block: 8px !important;
}
.ml-xs-child-not-last > :not(:last-child),
.ml-xs-child > * {
  margin-left: 8px !important;
}
.mr-xs-child-not-last > :not(:last-child),
.mr-xs-child > * {
  margin-right: 8px !important;
}
.mx-xs-child-not-last > :not(:last-child),
.mx-xs-child > * {
  margin-inline: 8px !important;
}
.p-xs-child-not-last > :not(:last-child),
.p-xs-child > * {
  padding: 8px !important;
}
.pt-xs-child-not-last > :not(:last-child),
.pt-xs-child > * {
  padding-top: 8px !important;
}
.pb-xs-child-not-last > :not(:last-child),
.pb-xs-child > * {
  padding-bottom: 8px !important;
}
.py-xs-child-not-last > :not(:last-child),
.py-xs-child > * {
  padding-block: 8px !important;
}
.pl-xs-child-not-last > :not(:last-child),
.pl-xs-child > * {
  padding-left: 8px !important;
}
.pr-xs-child-not-last > :not(:last-child),
.pr-xs-child > * {
  padding-right: 8px !important;
}
.px-xs-child-not-last > :not(:last-child),
.px-xs-child > * {
  padding-inline: 8px !important;
}
.m-sm-child-not-last > :not(:last-child),
.m-sm-child > * {
  margin: 16px !important;
}
.mt-sm-child-not-last > :not(:last-child),
.mt-sm-child > * {
  margin-top: 16px !important;
}
.mb-sm-child-not-last > :not(:last-child),
.mb-sm-child > * {
  margin-bottom: 16px !important;
}
.my-sm-child-not-last > :not(:last-child),
.my-sm-child > * {
  margin-block: 16px !important;
}
.ml-sm-child-not-last > :not(:last-child),
.ml-sm-child > * {
  margin-left: 16px !important;
}
.mr-sm-child-not-last > :not(:last-child),
.mr-sm-child > * {
  margin-right: 16px !important;
}
.mx-sm-child-not-last > :not(:last-child),
.mx-sm-child > * {
  margin-inline: 16px !important;
}
.p-sm-child-not-last > :not(:last-child),
.p-sm-child > * {
  padding: 16px !important;
}
.pt-sm-child-not-last > :not(:last-child),
.pt-sm-child > * {
  padding-top: 16px !important;
}
.pb-sm-child-not-last > :not(:last-child),
.pb-sm-child > * {
  padding-bottom: 16px !important;
}
.py-sm-child-not-last > :not(:last-child),
.py-sm-child > * {
  padding-block: 16px !important;
}
.pl-sm-child-not-last > :not(:last-child),
.pl-sm-child > * {
  padding-left: 16px !important;
}
.pr-sm-child-not-last > :not(:last-child),
.pr-sm-child > * {
  padding-right: 16px !important;
}
.px-sm-child-not-last > :not(:last-child),
.px-sm-child > * {
  padding-inline: 16px !important;
}
.m-md-child-not-last > :not(:last-child),
.m-md-child > * {
  margin: 22px !important;
}
.mt-md-child-not-last > :not(:last-child),
.mt-md-child > * {
  margin-top: 22px !important;
}
.mb-md-child-not-last > :not(:last-child),
.mb-md-child > * {
  margin-bottom: 22px !important;
}
.my-md-child-not-last > :not(:last-child),
.my-md-child > * {
  margin-block: 22px !important;
}
.ml-md-child-not-last > :not(:last-child),
.ml-md-child > * {
  margin-left: 22px !important;
}
.mr-md-child-not-last > :not(:last-child),
.mr-md-child > * {
  margin-right: 22px !important;
}
.mx-md-child-not-last > :not(:last-child),
.mx-md-child > * {
  margin-inline: 22px !important;
}
.p-md-child-not-last > :not(:last-child),
.p-md-child > * {
  padding: 22px !important;
}
.pt-md-child-not-last > :not(:last-child),
.pt-md-child > * {
  padding-top: 22px !important;
}
.pb-md-child-not-last > :not(:last-child),
.pb-md-child > * {
  padding-bottom: 22px !important;
}
.py-md-child-not-last > :not(:last-child),
.py-md-child > * {
  padding-block: 22px !important;
}
.pl-md-child-not-last > :not(:last-child),
.pl-md-child > * {
  padding-left: 22px !important;
}
.pr-md-child-not-last > :not(:last-child),
.pr-md-child > * {
  padding-right: 22px !important;
}
.px-md-child-not-last > :not(:last-child),
.px-md-child > * {
  padding-inline: 22px !important;
}
.m-lg-child-not-last > :not(:last-child),
.m-lg-child > * {
  margin: 32px !important;
}
.mt-lg-child-not-last > :not(:last-child),
.mt-lg-child > * {
  margin-top: 32px !important;
}
.mb-lg-child-not-last > :not(:last-child),
.mb-lg-child > * {
  margin-bottom: 32px !important;
}
.my-lg-child-not-last > :not(:last-child),
.my-lg-child > * {
  margin-block: 32px !important;
}
.ml-lg-child-not-last > :not(:last-child),
.ml-lg-child > * {
  margin-left: 32px !important;
}
.mr-lg-child-not-last > :not(:last-child),
.mr-lg-child > * {
  margin-right: 32px !important;
}
.mx-lg-child-not-last > :not(:last-child),
.mx-lg-child > * {
  margin-inline: 32px !important;
}
.p-lg-child-not-last > :not(:last-child),
.p-lg-child > * {
  padding: 32px !important;
}
.pt-lg-child-not-last > :not(:last-child),
.pt-lg-child > * {
  padding-top: 32px !important;
}
.pb-lg-child-not-last > :not(:last-child),
.pb-lg-child > * {
  padding-bottom: 32px !important;
}
.py-lg-child-not-last > :not(:last-child),
.py-lg-child > * {
  padding-block: 32px !important;
}
.pl-lg-child-not-last > :not(:last-child),
.pl-lg-child > * {
  padding-left: 32px !important;
}
.pr-lg-child-not-last > :not(:last-child),
.pr-lg-child > * {
  padding-right: 32px !important;
}
.px-lg-child-not-last > :not(:last-child),
.px-lg-child > * {
  padding-inline: 32px !important;
}
.m-xl-child-not-last > :not(:last-child),
.m-xl-child > * {
  margin: 48px !important;
}
.mt-xl-child-not-last > :not(:last-child),
.mt-xl-child > * {
  margin-top: 48px !important;
}
.mb-xl-child-not-last > :not(:last-child),
.mb-xl-child > * {
  margin-bottom: 48px !important;
}
.my-xl-child-not-last > :not(:last-child),
.my-xl-child > * {
  margin-block: 48px !important;
}
.ml-xl-child-not-last > :not(:last-child),
.ml-xl-child > * {
  margin-left: 48px !important;
}
.mr-xl-child-not-last > :not(:last-child),
.mr-xl-child > * {
  margin-right: 48px !important;
}
.mx-xl-child-not-last > :not(:last-child),
.mx-xl-child > * {
  margin-inline: 48px !important;
}
.p-xl-child-not-last > :not(:last-child),
.p-xl-child > * {
  padding: 48px !important;
}
.pt-xl-child-not-last > :not(:last-child),
.pt-xl-child > * {
  padding-top: 48px !important;
}
.pb-xl-child-not-last > :not(:last-child),
.pb-xl-child > * {
  padding-bottom: 48px !important;
}
.py-xl-child-not-last > :not(:last-child),
.py-xl-child > * {
  padding-block: 48px !important;
}
.pl-xl-child-not-last > :not(:last-child),
.pl-xl-child > * {
  padding-left: 48px !important;
}
.pr-xl-child-not-last > :not(:last-child),
.pr-xl-child > * {
  padding-right: 48px !important;
}
.px-xl-child-not-last > :not(:last-child),
.px-xl-child > * {
  padding-inline: 48px !important;
}
.m-xxl-child-not-last > :not(:last-child),
.m-xxl-child > * {
  margin: 80px !important;
}
.mt-xxl-child-not-last > :not(:last-child),
.mt-xxl-child > * {
  margin-top: 80px !important;
}
.mb-xxl-child-not-last > :not(:last-child),
.mb-xxl-child > * {
  margin-bottom: 80px !important;
}
.my-xxl-child-not-last > :not(:last-child),
.my-xxl-child > * {
  margin-block: 80px !important;
}
.ml-xxl-child-not-last > :not(:last-child),
.ml-xxl-child > * {
  margin-left: 80px !important;
}
.mr-xxl-child-not-last > :not(:last-child),
.mr-xxl-child > * {
  margin-right: 80px !important;
}
.mx-xxl-child-not-last > :not(:last-child),
.mx-xxl-child > * {
  margin-inline: 80px !important;
}
.p-xxl-child-not-last > :not(:last-child),
.p-xxl-child > * {
  padding: 80px !important;
}
.pt-xxl-child-not-last > :not(:last-child),
.pt-xxl-child > * {
  padding-top: 80px !important;
}
.pb-xxl-child-not-last > :not(:last-child),
.pb-xxl-child > * {
  padding-bottom: 80px !important;
}
.py-xxl-child-not-last > :not(:last-child),
.py-xxl-child > * {
  padding-block: 80px !important;
}
.pl-xxl-child-not-last > :not(:last-child),
.pl-xxl-child > * {
  padding-left: 80px !important;
}
.pr-xxl-child-not-last > :not(:last-child),
.pr-xxl-child > * {
  padding-right: 80px !important;
}
.px-xxl-child-not-last > :not(:last-child),
.px-xxl-child > * {
  padding-inline: 80px !important;
}
.m-fluid-child-not-last > :not(:last-child),
.m-fluid-child > * {
  margin: var(--side-margin) !important;
}
.mt-fluid-child-not-last > :not(:last-child),
.mt-fluid-child > * {
  margin-top: var(--side-margin) !important;
}
.mb-fluid-child-not-last > :not(:last-child),
.mb-fluid-child > * {
  margin-bottom: var(--side-margin) !important;
}
.my-fluid-child-not-last > :not(:last-child),
.my-fluid-child > * {
  margin-block: var(--side-margin) !important;
}
.ml-fluid-child-not-last > :not(:last-child),
.ml-fluid-child > * {
  margin-left: var(--side-margin) !important;
}
.mr-fluid-child-not-last > :not(:last-child),
.mr-fluid-child > * {
  margin-right: var(--side-margin) !important;
}
.mx-fluid-child-not-last > :not(:last-child),
.mx-fluid-child > * {
  margin-inline: var(--side-margin) !important;
}
.p-fluid-child-not-last > :not(:last-child),
.p-fluid-child > * {
  padding: var(--side-margin) !important;
}
.pt-fluid-child-not-last > :not(:last-child),
.pt-fluid-child > * {
  padding-top: var(--side-margin) !important;
}
.pb-fluid-child-not-last > :not(:last-child),
.pb-fluid-child > * {
  padding-bottom: var(--side-margin) !important;
}
.py-fluid-child-not-last > :not(:last-child),
.py-fluid-child > * {
  padding-block: var(--side-margin) !important;
}
.pl-fluid-child-not-last > :not(:last-child),
.pl-fluid-child > * {
  padding-left: var(--side-margin) !important;
}
.pr-fluid-child-not-last > :not(:last-child),
.pr-fluid-child > * {
  padding-right: var(--side-margin) !important;
}
.px-fluid-child-not-last > :not(:last-child),
.px-fluid-child > * {
  padding-inline: var(--side-margin) !important;
}
@media (max-width: 89.98rem) {
  .xxl-down-m-0-child-not-last > :not(:last-child),
  .xxl-down-m-0-child > * {
    margin: 0 !important;
  }
  .xxl-down-mt-0-child-not-last > :not(:last-child),
  .xxl-down-mt-0-child > * {
    margin-top: 0 !important;
  }
  .xxl-down-mb-0-child-not-last > :not(:last-child),
  .xxl-down-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .xxl-down-my-0-child-not-last > :not(:last-child),
  .xxl-down-my-0-child > * {
    margin-block: 0 !important;
  }
  .xxl-down-ml-0-child-not-last > :not(:last-child),
  .xxl-down-ml-0-child > * {
    margin-left: 0 !important;
  }
  .xxl-down-mr-0-child-not-last > :not(:last-child),
  .xxl-down-mr-0-child > * {
    margin-right: 0 !important;
  }
  .xxl-down-mx-0-child-not-last > :not(:last-child),
  .xxl-down-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .xxl-down-p-0-child-not-last > :not(:last-child),
  .xxl-down-p-0-child > * {
    padding: 0 !important;
  }
  .xxl-down-pt-0-child-not-last > :not(:last-child),
  .xxl-down-pt-0-child > * {
    padding-top: 0 !important;
  }
  .xxl-down-pb-0-child-not-last > :not(:last-child),
  .xxl-down-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .xxl-down-py-0-child-not-last > :not(:last-child),
  .xxl-down-py-0-child > * {
    padding-block: 0 !important;
  }
  .xxl-down-pl-0-child-not-last > :not(:last-child),
  .xxl-down-pl-0-child > * {
    padding-left: 0 !important;
  }
  .xxl-down-pr-0-child-not-last > :not(:last-child),
  .xxl-down-pr-0-child > * {
    padding-right: 0 !important;
  }
  .xxl-down-px-0-child-not-last > :not(:last-child),
  .xxl-down-px-0-child > * {
    padding-inline: 0 !important;
  }
  .xxl-down-m-xs-child-not-last > :not(:last-child),
  .xxl-down-m-xs-child > * {
    margin: 8px !important;
  }
  .xxl-down-mt-xs-child-not-last > :not(:last-child),
  .xxl-down-mt-xs-child > * {
    margin-top: 8px !important;
  }
  .xxl-down-mb-xs-child-not-last > :not(:last-child),
  .xxl-down-mb-xs-child > * {
    margin-bottom: 8px !important;
  }
  .xxl-down-my-xs-child-not-last > :not(:last-child),
  .xxl-down-my-xs-child > * {
    margin-block: 8px !important;
  }
  .xxl-down-ml-xs-child-not-last > :not(:last-child),
  .xxl-down-ml-xs-child > * {
    margin-left: 8px !important;
  }
  .xxl-down-mr-xs-child-not-last > :not(:last-child),
  .xxl-down-mr-xs-child > * {
    margin-right: 8px !important;
  }
  .xxl-down-mx-xs-child-not-last > :not(:last-child),
  .xxl-down-mx-xs-child > * {
    margin-inline: 8px !important;
  }
  .xxl-down-p-xs-child-not-last > :not(:last-child),
  .xxl-down-p-xs-child > * {
    padding: 8px !important;
  }
  .xxl-down-pt-xs-child-not-last > :not(:last-child),
  .xxl-down-pt-xs-child > * {
    padding-top: 8px !important;
  }
  .xxl-down-pb-xs-child-not-last > :not(:last-child),
  .xxl-down-pb-xs-child > * {
    padding-bottom: 8px !important;
  }
  .xxl-down-py-xs-child-not-last > :not(:last-child),
  .xxl-down-py-xs-child > * {
    padding-block: 8px !important;
  }
  .xxl-down-pl-xs-child-not-last > :not(:last-child),
  .xxl-down-pl-xs-child > * {
    padding-left: 8px !important;
  }
  .xxl-down-pr-xs-child-not-last > :not(:last-child),
  .xxl-down-pr-xs-child > * {
    padding-right: 8px !important;
  }
  .xxl-down-px-xs-child-not-last > :not(:last-child),
  .xxl-down-px-xs-child > * {
    padding-inline: 8px !important;
  }
  .xxl-down-m-sm-child-not-last > :not(:last-child),
  .xxl-down-m-sm-child > * {
    margin: 16px !important;
  }
  .xxl-down-mt-sm-child-not-last > :not(:last-child),
  .xxl-down-mt-sm-child > * {
    margin-top: 16px !important;
  }
  .xxl-down-mb-sm-child-not-last > :not(:last-child),
  .xxl-down-mb-sm-child > * {
    margin-bottom: 16px !important;
  }
  .xxl-down-my-sm-child-not-last > :not(:last-child),
  .xxl-down-my-sm-child > * {
    margin-block: 16px !important;
  }
  .xxl-down-ml-sm-child-not-last > :not(:last-child),
  .xxl-down-ml-sm-child > * {
    margin-left: 16px !important;
  }
  .xxl-down-mr-sm-child-not-last > :not(:last-child),
  .xxl-down-mr-sm-child > * {
    margin-right: 16px !important;
  }
  .xxl-down-mx-sm-child-not-last > :not(:last-child),
  .xxl-down-mx-sm-child > * {
    margin-inline: 16px !important;
  }
  .xxl-down-p-sm-child-not-last > :not(:last-child),
  .xxl-down-p-sm-child > * {
    padding: 16px !important;
  }
  .xxl-down-pt-sm-child-not-last > :not(:last-child),
  .xxl-down-pt-sm-child > * {
    padding-top: 16px !important;
  }
  .xxl-down-pb-sm-child-not-last > :not(:last-child),
  .xxl-down-pb-sm-child > * {
    padding-bottom: 16px !important;
  }
  .xxl-down-py-sm-child-not-last > :not(:last-child),
  .xxl-down-py-sm-child > * {
    padding-block: 16px !important;
  }
  .xxl-down-pl-sm-child-not-last > :not(:last-child),
  .xxl-down-pl-sm-child > * {
    padding-left: 16px !important;
  }
  .xxl-down-pr-sm-child-not-last > :not(:last-child),
  .xxl-down-pr-sm-child > * {
    padding-right: 16px !important;
  }
  .xxl-down-px-sm-child-not-last > :not(:last-child),
  .xxl-down-px-sm-child > * {
    padding-inline: 16px !important;
  }
  .xxl-down-m-md-child-not-last > :not(:last-child),
  .xxl-down-m-md-child > * {
    margin: 22px !important;
  }
  .xxl-down-mt-md-child-not-last > :not(:last-child),
  .xxl-down-mt-md-child > * {
    margin-top: 22px !important;
  }
  .xxl-down-mb-md-child-not-last > :not(:last-child),
  .xxl-down-mb-md-child > * {
    margin-bottom: 22px !important;
  }
  .xxl-down-my-md-child-not-last > :not(:last-child),
  .xxl-down-my-md-child > * {
    margin-block: 22px !important;
  }
  .xxl-down-ml-md-child-not-last > :not(:last-child),
  .xxl-down-ml-md-child > * {
    margin-left: 22px !important;
  }
  .xxl-down-mr-md-child-not-last > :not(:last-child),
  .xxl-down-mr-md-child > * {
    margin-right: 22px !important;
  }
  .xxl-down-mx-md-child-not-last > :not(:last-child),
  .xxl-down-mx-md-child > * {
    margin-inline: 22px !important;
  }
  .xxl-down-p-md-child-not-last > :not(:last-child),
  .xxl-down-p-md-child > * {
    padding: 22px !important;
  }
  .xxl-down-pt-md-child-not-last > :not(:last-child),
  .xxl-down-pt-md-child > * {
    padding-top: 22px !important;
  }
  .xxl-down-pb-md-child-not-last > :not(:last-child),
  .xxl-down-pb-md-child > * {
    padding-bottom: 22px !important;
  }
  .xxl-down-py-md-child-not-last > :not(:last-child),
  .xxl-down-py-md-child > * {
    padding-block: 22px !important;
  }
  .xxl-down-pl-md-child-not-last > :not(:last-child),
  .xxl-down-pl-md-child > * {
    padding-left: 22px !important;
  }
  .xxl-down-pr-md-child-not-last > :not(:last-child),
  .xxl-down-pr-md-child > * {
    padding-right: 22px !important;
  }
  .xxl-down-px-md-child-not-last > :not(:last-child),
  .xxl-down-px-md-child > * {
    padding-inline: 22px !important;
  }
  .xxl-down-m-lg-child-not-last > :not(:last-child),
  .xxl-down-m-lg-child > * {
    margin: 32px !important;
  }
  .xxl-down-mt-lg-child-not-last > :not(:last-child),
  .xxl-down-mt-lg-child > * {
    margin-top: 32px !important;
  }
  .xxl-down-mb-lg-child-not-last > :not(:last-child),
  .xxl-down-mb-lg-child > * {
    margin-bottom: 32px !important;
  }
  .xxl-down-my-lg-child-not-last > :not(:last-child),
  .xxl-down-my-lg-child > * {
    margin-block: 32px !important;
  }
  .xxl-down-ml-lg-child-not-last > :not(:last-child),
  .xxl-down-ml-lg-child > * {
    margin-left: 32px !important;
  }
  .xxl-down-mr-lg-child-not-last > :not(:last-child),
  .xxl-down-mr-lg-child > * {
    margin-right: 32px !important;
  }
  .xxl-down-mx-lg-child-not-last > :not(:last-child),
  .xxl-down-mx-lg-child > * {
    margin-inline: 32px !important;
  }
  .xxl-down-p-lg-child-not-last > :not(:last-child),
  .xxl-down-p-lg-child > * {
    padding: 32px !important;
  }
  .xxl-down-pt-lg-child-not-last > :not(:last-child),
  .xxl-down-pt-lg-child > * {
    padding-top: 32px !important;
  }
  .xxl-down-pb-lg-child-not-last > :not(:last-child),
  .xxl-down-pb-lg-child > * {
    padding-bottom: 32px !important;
  }
  .xxl-down-py-lg-child-not-last > :not(:last-child),
  .xxl-down-py-lg-child > * {
    padding-block: 32px !important;
  }
  .xxl-down-pl-lg-child-not-last > :not(:last-child),
  .xxl-down-pl-lg-child > * {
    padding-left: 32px !important;
  }
  .xxl-down-pr-lg-child-not-last > :not(:last-child),
  .xxl-down-pr-lg-child > * {
    padding-right: 32px !important;
  }
  .xxl-down-px-lg-child-not-last > :not(:last-child),
  .xxl-down-px-lg-child > * {
    padding-inline: 32px !important;
  }
  .xxl-down-m-xl-child-not-last > :not(:last-child),
  .xxl-down-m-xl-child > * {
    margin: 48px !important;
  }
  .xxl-down-mt-xl-child-not-last > :not(:last-child),
  .xxl-down-mt-xl-child > * {
    margin-top: 48px !important;
  }
  .xxl-down-mb-xl-child-not-last > :not(:last-child),
  .xxl-down-mb-xl-child > * {
    margin-bottom: 48px !important;
  }
  .xxl-down-my-xl-child-not-last > :not(:last-child),
  .xxl-down-my-xl-child > * {
    margin-block: 48px !important;
  }
  .xxl-down-ml-xl-child-not-last > :not(:last-child),
  .xxl-down-ml-xl-child > * {
    margin-left: 48px !important;
  }
  .xxl-down-mr-xl-child-not-last > :not(:last-child),
  .xxl-down-mr-xl-child > * {
    margin-right: 48px !important;
  }
  .xxl-down-mx-xl-child-not-last > :not(:last-child),
  .xxl-down-mx-xl-child > * {
    margin-inline: 48px !important;
  }
  .xxl-down-p-xl-child-not-last > :not(:last-child),
  .xxl-down-p-xl-child > * {
    padding: 48px !important;
  }
  .xxl-down-pt-xl-child-not-last > :not(:last-child),
  .xxl-down-pt-xl-child > * {
    padding-top: 48px !important;
  }
  .xxl-down-pb-xl-child-not-last > :not(:last-child),
  .xxl-down-pb-xl-child > * {
    padding-bottom: 48px !important;
  }
  .xxl-down-py-xl-child-not-last > :not(:last-child),
  .xxl-down-py-xl-child > * {
    padding-block: 48px !important;
  }
  .xxl-down-pl-xl-child-not-last > :not(:last-child),
  .xxl-down-pl-xl-child > * {
    padding-left: 48px !important;
  }
  .xxl-down-pr-xl-child-not-last > :not(:last-child),
  .xxl-down-pr-xl-child > * {
    padding-right: 48px !important;
  }
  .xxl-down-px-xl-child-not-last > :not(:last-child),
  .xxl-down-px-xl-child > * {
    padding-inline: 48px !important;
  }
  .xxl-down-m-xxl-child-not-last > :not(:last-child),
  .xxl-down-m-xxl-child > * {
    margin: 80px !important;
  }
  .xxl-down-mt-xxl-child-not-last > :not(:last-child),
  .xxl-down-mt-xxl-child > * {
    margin-top: 80px !important;
  }
  .xxl-down-mb-xxl-child-not-last > :not(:last-child),
  .xxl-down-mb-xxl-child > * {
    margin-bottom: 80px !important;
  }
  .xxl-down-my-xxl-child-not-last > :not(:last-child),
  .xxl-down-my-xxl-child > * {
    margin-block: 80px !important;
  }
  .xxl-down-ml-xxl-child-not-last > :not(:last-child),
  .xxl-down-ml-xxl-child > * {
    margin-left: 80px !important;
  }
  .xxl-down-mr-xxl-child-not-last > :not(:last-child),
  .xxl-down-mr-xxl-child > * {
    margin-right: 80px !important;
  }
  .xxl-down-mx-xxl-child-not-last > :not(:last-child),
  .xxl-down-mx-xxl-child > * {
    margin-inline: 80px !important;
  }
  .xxl-down-p-xxl-child-not-last > :not(:last-child),
  .xxl-down-p-xxl-child > * {
    padding: 80px !important;
  }
  .xxl-down-pt-xxl-child-not-last > :not(:last-child),
  .xxl-down-pt-xxl-child > * {
    padding-top: 80px !important;
  }
  .xxl-down-pb-xxl-child-not-last > :not(:last-child),
  .xxl-down-pb-xxl-child > * {
    padding-bottom: 80px !important;
  }
  .xxl-down-py-xxl-child-not-last > :not(:last-child),
  .xxl-down-py-xxl-child > * {
    padding-block: 80px !important;
  }
  .xxl-down-pl-xxl-child-not-last > :not(:last-child),
  .xxl-down-pl-xxl-child > * {
    padding-left: 80px !important;
  }
  .xxl-down-pr-xxl-child-not-last > :not(:last-child),
  .xxl-down-pr-xxl-child > * {
    padding-right: 80px !important;
  }
  .xxl-down-px-xxl-child-not-last > :not(:last-child),
  .xxl-down-px-xxl-child > * {
    padding-inline: 80px !important;
  }
  .xxl-down-m-fluid-child-not-last > :not(:last-child),
  .xxl-down-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .xxl-down-mt-fluid-child-not-last > :not(:last-child),
  .xxl-down-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .xxl-down-mb-fluid-child-not-last > :not(:last-child),
  .xxl-down-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .xxl-down-my-fluid-child-not-last > :not(:last-child),
  .xxl-down-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .xxl-down-ml-fluid-child-not-last > :not(:last-child),
  .xxl-down-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .xxl-down-mr-fluid-child-not-last > :not(:last-child),
  .xxl-down-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .xxl-down-mx-fluid-child-not-last > :not(:last-child),
  .xxl-down-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .xxl-down-p-fluid-child-not-last > :not(:last-child),
  .xxl-down-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .xxl-down-pt-fluid-child-not-last > :not(:last-child),
  .xxl-down-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .xxl-down-pb-fluid-child-not-last > :not(:last-child),
  .xxl-down-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .xxl-down-py-fluid-child-not-last > :not(:last-child),
  .xxl-down-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .xxl-down-pl-fluid-child-not-last > :not(:last-child),
  .xxl-down-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .xxl-down-pr-fluid-child-not-last > :not(:last-child),
  .xxl-down-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .xxl-down-px-fluid-child-not-last > :not(:last-child),
  .xxl-down-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
}
@media (max-width: 79.98rem) {
  .xl-down-m-0-child-not-last > :not(:last-child),
  .xl-down-m-0-child > * {
    margin: 0 !important;
  }
  .xl-down-mt-0-child-not-last > :not(:last-child),
  .xl-down-mt-0-child > * {
    margin-top: 0 !important;
  }
  .xl-down-mb-0-child-not-last > :not(:last-child),
  .xl-down-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .xl-down-my-0-child-not-last > :not(:last-child),
  .xl-down-my-0-child > * {
    margin-block: 0 !important;
  }
  .xl-down-ml-0-child-not-last > :not(:last-child),
  .xl-down-ml-0-child > * {
    margin-left: 0 !important;
  }
  .xl-down-mr-0-child-not-last > :not(:last-child),
  .xl-down-mr-0-child > * {
    margin-right: 0 !important;
  }
  .xl-down-mx-0-child-not-last > :not(:last-child),
  .xl-down-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .xl-down-p-0-child-not-last > :not(:last-child),
  .xl-down-p-0-child > * {
    padding: 0 !important;
  }
  .xl-down-pt-0-child-not-last > :not(:last-child),
  .xl-down-pt-0-child > * {
    padding-top: 0 !important;
  }
  .xl-down-pb-0-child-not-last > :not(:last-child),
  .xl-down-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .xl-down-py-0-child-not-last > :not(:last-child),
  .xl-down-py-0-child > * {
    padding-block: 0 !important;
  }
  .xl-down-pl-0-child-not-last > :not(:last-child),
  .xl-down-pl-0-child > * {
    padding-left: 0 !important;
  }
  .xl-down-pr-0-child-not-last > :not(:last-child),
  .xl-down-pr-0-child > * {
    padding-right: 0 !important;
  }
  .xl-down-px-0-child-not-last > :not(:last-child),
  .xl-down-px-0-child > * {
    padding-inline: 0 !important;
  }
  .xl-down-m-xs-child-not-last > :not(:last-child),
  .xl-down-m-xs-child > * {
    margin: 8px !important;
  }
  .xl-down-mt-xs-child-not-last > :not(:last-child),
  .xl-down-mt-xs-child > * {
    margin-top: 8px !important;
  }
  .xl-down-mb-xs-child-not-last > :not(:last-child),
  .xl-down-mb-xs-child > * {
    margin-bottom: 8px !important;
  }
  .xl-down-my-xs-child-not-last > :not(:last-child),
  .xl-down-my-xs-child > * {
    margin-block: 8px !important;
  }
  .xl-down-ml-xs-child-not-last > :not(:last-child),
  .xl-down-ml-xs-child > * {
    margin-left: 8px !important;
  }
  .xl-down-mr-xs-child-not-last > :not(:last-child),
  .xl-down-mr-xs-child > * {
    margin-right: 8px !important;
  }
  .xl-down-mx-xs-child-not-last > :not(:last-child),
  .xl-down-mx-xs-child > * {
    margin-inline: 8px !important;
  }
  .xl-down-p-xs-child-not-last > :not(:last-child),
  .xl-down-p-xs-child > * {
    padding: 8px !important;
  }
  .xl-down-pt-xs-child-not-last > :not(:last-child),
  .xl-down-pt-xs-child > * {
    padding-top: 8px !important;
  }
  .xl-down-pb-xs-child-not-last > :not(:last-child),
  .xl-down-pb-xs-child > * {
    padding-bottom: 8px !important;
  }
  .xl-down-py-xs-child-not-last > :not(:last-child),
  .xl-down-py-xs-child > * {
    padding-block: 8px !important;
  }
  .xl-down-pl-xs-child-not-last > :not(:last-child),
  .xl-down-pl-xs-child > * {
    padding-left: 8px !important;
  }
  .xl-down-pr-xs-child-not-last > :not(:last-child),
  .xl-down-pr-xs-child > * {
    padding-right: 8px !important;
  }
  .xl-down-px-xs-child-not-last > :not(:last-child),
  .xl-down-px-xs-child > * {
    padding-inline: 8px !important;
  }
  .xl-down-m-sm-child-not-last > :not(:last-child),
  .xl-down-m-sm-child > * {
    margin: 16px !important;
  }
  .xl-down-mt-sm-child-not-last > :not(:last-child),
  .xl-down-mt-sm-child > * {
    margin-top: 16px !important;
  }
  .xl-down-mb-sm-child-not-last > :not(:last-child),
  .xl-down-mb-sm-child > * {
    margin-bottom: 16px !important;
  }
  .xl-down-my-sm-child-not-last > :not(:last-child),
  .xl-down-my-sm-child > * {
    margin-block: 16px !important;
  }
  .xl-down-ml-sm-child-not-last > :not(:last-child),
  .xl-down-ml-sm-child > * {
    margin-left: 16px !important;
  }
  .xl-down-mr-sm-child-not-last > :not(:last-child),
  .xl-down-mr-sm-child > * {
    margin-right: 16px !important;
  }
  .xl-down-mx-sm-child-not-last > :not(:last-child),
  .xl-down-mx-sm-child > * {
    margin-inline: 16px !important;
  }
  .xl-down-p-sm-child-not-last > :not(:last-child),
  .xl-down-p-sm-child > * {
    padding: 16px !important;
  }
  .xl-down-pt-sm-child-not-last > :not(:last-child),
  .xl-down-pt-sm-child > * {
    padding-top: 16px !important;
  }
  .xl-down-pb-sm-child-not-last > :not(:last-child),
  .xl-down-pb-sm-child > * {
    padding-bottom: 16px !important;
  }
  .xl-down-py-sm-child-not-last > :not(:last-child),
  .xl-down-py-sm-child > * {
    padding-block: 16px !important;
  }
  .xl-down-pl-sm-child-not-last > :not(:last-child),
  .xl-down-pl-sm-child > * {
    padding-left: 16px !important;
  }
  .xl-down-pr-sm-child-not-last > :not(:last-child),
  .xl-down-pr-sm-child > * {
    padding-right: 16px !important;
  }
  .xl-down-px-sm-child-not-last > :not(:last-child),
  .xl-down-px-sm-child > * {
    padding-inline: 16px !important;
  }
  .xl-down-m-md-child-not-last > :not(:last-child),
  .xl-down-m-md-child > * {
    margin: 22px !important;
  }
  .xl-down-mt-md-child-not-last > :not(:last-child),
  .xl-down-mt-md-child > * {
    margin-top: 22px !important;
  }
  .xl-down-mb-md-child-not-last > :not(:last-child),
  .xl-down-mb-md-child > * {
    margin-bottom: 22px !important;
  }
  .xl-down-my-md-child-not-last > :not(:last-child),
  .xl-down-my-md-child > * {
    margin-block: 22px !important;
  }
  .xl-down-ml-md-child-not-last > :not(:last-child),
  .xl-down-ml-md-child > * {
    margin-left: 22px !important;
  }
  .xl-down-mr-md-child-not-last > :not(:last-child),
  .xl-down-mr-md-child > * {
    margin-right: 22px !important;
  }
  .xl-down-mx-md-child-not-last > :not(:last-child),
  .xl-down-mx-md-child > * {
    margin-inline: 22px !important;
  }
  .xl-down-p-md-child-not-last > :not(:last-child),
  .xl-down-p-md-child > * {
    padding: 22px !important;
  }
  .xl-down-pt-md-child-not-last > :not(:last-child),
  .xl-down-pt-md-child > * {
    padding-top: 22px !important;
  }
  .xl-down-pb-md-child-not-last > :not(:last-child),
  .xl-down-pb-md-child > * {
    padding-bottom: 22px !important;
  }
  .xl-down-py-md-child-not-last > :not(:last-child),
  .xl-down-py-md-child > * {
    padding-block: 22px !important;
  }
  .xl-down-pl-md-child-not-last > :not(:last-child),
  .xl-down-pl-md-child > * {
    padding-left: 22px !important;
  }
  .xl-down-pr-md-child-not-last > :not(:last-child),
  .xl-down-pr-md-child > * {
    padding-right: 22px !important;
  }
  .xl-down-px-md-child-not-last > :not(:last-child),
  .xl-down-px-md-child > * {
    padding-inline: 22px !important;
  }
  .xl-down-m-lg-child-not-last > :not(:last-child),
  .xl-down-m-lg-child > * {
    margin: 32px !important;
  }
  .xl-down-mt-lg-child-not-last > :not(:last-child),
  .xl-down-mt-lg-child > * {
    margin-top: 32px !important;
  }
  .xl-down-mb-lg-child-not-last > :not(:last-child),
  .xl-down-mb-lg-child > * {
    margin-bottom: 32px !important;
  }
  .xl-down-my-lg-child-not-last > :not(:last-child),
  .xl-down-my-lg-child > * {
    margin-block: 32px !important;
  }
  .xl-down-ml-lg-child-not-last > :not(:last-child),
  .xl-down-ml-lg-child > * {
    margin-left: 32px !important;
  }
  .xl-down-mr-lg-child-not-last > :not(:last-child),
  .xl-down-mr-lg-child > * {
    margin-right: 32px !important;
  }
  .xl-down-mx-lg-child-not-last > :not(:last-child),
  .xl-down-mx-lg-child > * {
    margin-inline: 32px !important;
  }
  .xl-down-p-lg-child-not-last > :not(:last-child),
  .xl-down-p-lg-child > * {
    padding: 32px !important;
  }
  .xl-down-pt-lg-child-not-last > :not(:last-child),
  .xl-down-pt-lg-child > * {
    padding-top: 32px !important;
  }
  .xl-down-pb-lg-child-not-last > :not(:last-child),
  .xl-down-pb-lg-child > * {
    padding-bottom: 32px !important;
  }
  .xl-down-py-lg-child-not-last > :not(:last-child),
  .xl-down-py-lg-child > * {
    padding-block: 32px !important;
  }
  .xl-down-pl-lg-child-not-last > :not(:last-child),
  .xl-down-pl-lg-child > * {
    padding-left: 32px !important;
  }
  .xl-down-pr-lg-child-not-last > :not(:last-child),
  .xl-down-pr-lg-child > * {
    padding-right: 32px !important;
  }
  .xl-down-px-lg-child-not-last > :not(:last-child),
  .xl-down-px-lg-child > * {
    padding-inline: 32px !important;
  }
  .xl-down-m-xl-child-not-last > :not(:last-child),
  .xl-down-m-xl-child > * {
    margin: 48px !important;
  }
  .xl-down-mt-xl-child-not-last > :not(:last-child),
  .xl-down-mt-xl-child > * {
    margin-top: 48px !important;
  }
  .xl-down-mb-xl-child-not-last > :not(:last-child),
  .xl-down-mb-xl-child > * {
    margin-bottom: 48px !important;
  }
  .xl-down-my-xl-child-not-last > :not(:last-child),
  .xl-down-my-xl-child > * {
    margin-block: 48px !important;
  }
  .xl-down-ml-xl-child-not-last > :not(:last-child),
  .xl-down-ml-xl-child > * {
    margin-left: 48px !important;
  }
  .xl-down-mr-xl-child-not-last > :not(:last-child),
  .xl-down-mr-xl-child > * {
    margin-right: 48px !important;
  }
  .xl-down-mx-xl-child-not-last > :not(:last-child),
  .xl-down-mx-xl-child > * {
    margin-inline: 48px !important;
  }
  .xl-down-p-xl-child-not-last > :not(:last-child),
  .xl-down-p-xl-child > * {
    padding: 48px !important;
  }
  .xl-down-pt-xl-child-not-last > :not(:last-child),
  .xl-down-pt-xl-child > * {
    padding-top: 48px !important;
  }
  .xl-down-pb-xl-child-not-last > :not(:last-child),
  .xl-down-pb-xl-child > * {
    padding-bottom: 48px !important;
  }
  .xl-down-py-xl-child-not-last > :not(:last-child),
  .xl-down-py-xl-child > * {
    padding-block: 48px !important;
  }
  .xl-down-pl-xl-child-not-last > :not(:last-child),
  .xl-down-pl-xl-child > * {
    padding-left: 48px !important;
  }
  .xl-down-pr-xl-child-not-last > :not(:last-child),
  .xl-down-pr-xl-child > * {
    padding-right: 48px !important;
  }
  .xl-down-px-xl-child-not-last > :not(:last-child),
  .xl-down-px-xl-child > * {
    padding-inline: 48px !important;
  }
  .xl-down-m-xxl-child-not-last > :not(:last-child),
  .xl-down-m-xxl-child > * {
    margin: 80px !important;
  }
  .xl-down-mt-xxl-child-not-last > :not(:last-child),
  .xl-down-mt-xxl-child > * {
    margin-top: 80px !important;
  }
  .xl-down-mb-xxl-child-not-last > :not(:last-child),
  .xl-down-mb-xxl-child > * {
    margin-bottom: 80px !important;
  }
  .xl-down-my-xxl-child-not-last > :not(:last-child),
  .xl-down-my-xxl-child > * {
    margin-block: 80px !important;
  }
  .xl-down-ml-xxl-child-not-last > :not(:last-child),
  .xl-down-ml-xxl-child > * {
    margin-left: 80px !important;
  }
  .xl-down-mr-xxl-child-not-last > :not(:last-child),
  .xl-down-mr-xxl-child > * {
    margin-right: 80px !important;
  }
  .xl-down-mx-xxl-child-not-last > :not(:last-child),
  .xl-down-mx-xxl-child > * {
    margin-inline: 80px !important;
  }
  .xl-down-p-xxl-child-not-last > :not(:last-child),
  .xl-down-p-xxl-child > * {
    padding: 80px !important;
  }
  .xl-down-pt-xxl-child-not-last > :not(:last-child),
  .xl-down-pt-xxl-child > * {
    padding-top: 80px !important;
  }
  .xl-down-pb-xxl-child-not-last > :not(:last-child),
  .xl-down-pb-xxl-child > * {
    padding-bottom: 80px !important;
  }
  .xl-down-py-xxl-child-not-last > :not(:last-child),
  .xl-down-py-xxl-child > * {
    padding-block: 80px !important;
  }
  .xl-down-pl-xxl-child-not-last > :not(:last-child),
  .xl-down-pl-xxl-child > * {
    padding-left: 80px !important;
  }
  .xl-down-pr-xxl-child-not-last > :not(:last-child),
  .xl-down-pr-xxl-child > * {
    padding-right: 80px !important;
  }
  .xl-down-px-xxl-child-not-last > :not(:last-child),
  .xl-down-px-xxl-child > * {
    padding-inline: 80px !important;
  }
  .xl-down-m-fluid-child-not-last > :not(:last-child),
  .xl-down-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .xl-down-mt-fluid-child-not-last > :not(:last-child),
  .xl-down-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .xl-down-mb-fluid-child-not-last > :not(:last-child),
  .xl-down-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .xl-down-my-fluid-child-not-last > :not(:last-child),
  .xl-down-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .xl-down-ml-fluid-child-not-last > :not(:last-child),
  .xl-down-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .xl-down-mr-fluid-child-not-last > :not(:last-child),
  .xl-down-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .xl-down-mx-fluid-child-not-last > :not(:last-child),
  .xl-down-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .xl-down-p-fluid-child-not-last > :not(:last-child),
  .xl-down-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .xl-down-pt-fluid-child-not-last > :not(:last-child),
  .xl-down-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .xl-down-pb-fluid-child-not-last > :not(:last-child),
  .xl-down-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .xl-down-py-fluid-child-not-last > :not(:last-child),
  .xl-down-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .xl-down-pl-fluid-child-not-last > :not(:last-child),
  .xl-down-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .xl-down-pr-fluid-child-not-last > :not(:last-child),
  .xl-down-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .xl-down-px-fluid-child-not-last > :not(:last-child),
  .xl-down-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
}
@media (max-width: 63.98rem) {
  .lg-down-m-0-child-not-last > :not(:last-child),
  .lg-down-m-0-child > * {
    margin: 0 !important;
  }
  .lg-down-mt-0-child-not-last > :not(:last-child),
  .lg-down-mt-0-child > * {
    margin-top: 0 !important;
  }
  .lg-down-mb-0-child-not-last > :not(:last-child),
  .lg-down-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .lg-down-my-0-child-not-last > :not(:last-child),
  .lg-down-my-0-child > * {
    margin-block: 0 !important;
  }
  .lg-down-ml-0-child-not-last > :not(:last-child),
  .lg-down-ml-0-child > * {
    margin-left: 0 !important;
  }
  .lg-down-mr-0-child-not-last > :not(:last-child),
  .lg-down-mr-0-child > * {
    margin-right: 0 !important;
  }
  .lg-down-mx-0-child-not-last > :not(:last-child),
  .lg-down-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .lg-down-p-0-child-not-last > :not(:last-child),
  .lg-down-p-0-child > * {
    padding: 0 !important;
  }
  .lg-down-pt-0-child-not-last > :not(:last-child),
  .lg-down-pt-0-child > * {
    padding-top: 0 !important;
  }
  .lg-down-pb-0-child-not-last > :not(:last-child),
  .lg-down-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .lg-down-py-0-child-not-last > :not(:last-child),
  .lg-down-py-0-child > * {
    padding-block: 0 !important;
  }
  .lg-down-pl-0-child-not-last > :not(:last-child),
  .lg-down-pl-0-child > * {
    padding-left: 0 !important;
  }
  .lg-down-pr-0-child-not-last > :not(:last-child),
  .lg-down-pr-0-child > * {
    padding-right: 0 !important;
  }
  .lg-down-px-0-child-not-last > :not(:last-child),
  .lg-down-px-0-child > * {
    padding-inline: 0 !important;
  }
  .lg-down-m-xs-child-not-last > :not(:last-child),
  .lg-down-m-xs-child > * {
    margin: 8px !important;
  }
  .lg-down-mt-xs-child-not-last > :not(:last-child),
  .lg-down-mt-xs-child > * {
    margin-top: 8px !important;
  }
  .lg-down-mb-xs-child-not-last > :not(:last-child),
  .lg-down-mb-xs-child > * {
    margin-bottom: 8px !important;
  }
  .lg-down-my-xs-child-not-last > :not(:last-child),
  .lg-down-my-xs-child > * {
    margin-block: 8px !important;
  }
  .lg-down-ml-xs-child-not-last > :not(:last-child),
  .lg-down-ml-xs-child > * {
    margin-left: 8px !important;
  }
  .lg-down-mr-xs-child-not-last > :not(:last-child),
  .lg-down-mr-xs-child > * {
    margin-right: 8px !important;
  }
  .lg-down-mx-xs-child-not-last > :not(:last-child),
  .lg-down-mx-xs-child > * {
    margin-inline: 8px !important;
  }
  .lg-down-p-xs-child-not-last > :not(:last-child),
  .lg-down-p-xs-child > * {
    padding: 8px !important;
  }
  .lg-down-pt-xs-child-not-last > :not(:last-child),
  .lg-down-pt-xs-child > * {
    padding-top: 8px !important;
  }
  .lg-down-pb-xs-child-not-last > :not(:last-child),
  .lg-down-pb-xs-child > * {
    padding-bottom: 8px !important;
  }
  .lg-down-py-xs-child-not-last > :not(:last-child),
  .lg-down-py-xs-child > * {
    padding-block: 8px !important;
  }
  .lg-down-pl-xs-child-not-last > :not(:last-child),
  .lg-down-pl-xs-child > * {
    padding-left: 8px !important;
  }
  .lg-down-pr-xs-child-not-last > :not(:last-child),
  .lg-down-pr-xs-child > * {
    padding-right: 8px !important;
  }
  .lg-down-px-xs-child-not-last > :not(:last-child),
  .lg-down-px-xs-child > * {
    padding-inline: 8px !important;
  }
  .lg-down-m-sm-child-not-last > :not(:last-child),
  .lg-down-m-sm-child > * {
    margin: 16px !important;
  }
  .lg-down-mt-sm-child-not-last > :not(:last-child),
  .lg-down-mt-sm-child > * {
    margin-top: 16px !important;
  }
  .lg-down-mb-sm-child-not-last > :not(:last-child),
  .lg-down-mb-sm-child > * {
    margin-bottom: 16px !important;
  }
  .lg-down-my-sm-child-not-last > :not(:last-child),
  .lg-down-my-sm-child > * {
    margin-block: 16px !important;
  }
  .lg-down-ml-sm-child-not-last > :not(:last-child),
  .lg-down-ml-sm-child > * {
    margin-left: 16px !important;
  }
  .lg-down-mr-sm-child-not-last > :not(:last-child),
  .lg-down-mr-sm-child > * {
    margin-right: 16px !important;
  }
  .lg-down-mx-sm-child-not-last > :not(:last-child),
  .lg-down-mx-sm-child > * {
    margin-inline: 16px !important;
  }
  .lg-down-p-sm-child-not-last > :not(:last-child),
  .lg-down-p-sm-child > * {
    padding: 16px !important;
  }
  .lg-down-pt-sm-child-not-last > :not(:last-child),
  .lg-down-pt-sm-child > * {
    padding-top: 16px !important;
  }
  .lg-down-pb-sm-child-not-last > :not(:last-child),
  .lg-down-pb-sm-child > * {
    padding-bottom: 16px !important;
  }
  .lg-down-py-sm-child-not-last > :not(:last-child),
  .lg-down-py-sm-child > * {
    padding-block: 16px !important;
  }
  .lg-down-pl-sm-child-not-last > :not(:last-child),
  .lg-down-pl-sm-child > * {
    padding-left: 16px !important;
  }
  .lg-down-pr-sm-child-not-last > :not(:last-child),
  .lg-down-pr-sm-child > * {
    padding-right: 16px !important;
  }
  .lg-down-px-sm-child-not-last > :not(:last-child),
  .lg-down-px-sm-child > * {
    padding-inline: 16px !important;
  }
  .lg-down-m-md-child-not-last > :not(:last-child),
  .lg-down-m-md-child > * {
    margin: 22px !important;
  }
  .lg-down-mt-md-child-not-last > :not(:last-child),
  .lg-down-mt-md-child > * {
    margin-top: 22px !important;
  }
  .lg-down-mb-md-child-not-last > :not(:last-child),
  .lg-down-mb-md-child > * {
    margin-bottom: 22px !important;
  }
  .lg-down-my-md-child-not-last > :not(:last-child),
  .lg-down-my-md-child > * {
    margin-block: 22px !important;
  }
  .lg-down-ml-md-child-not-last > :not(:last-child),
  .lg-down-ml-md-child > * {
    margin-left: 22px !important;
  }
  .lg-down-mr-md-child-not-last > :not(:last-child),
  .lg-down-mr-md-child > * {
    margin-right: 22px !important;
  }
  .lg-down-mx-md-child-not-last > :not(:last-child),
  .lg-down-mx-md-child > * {
    margin-inline: 22px !important;
  }
  .lg-down-p-md-child-not-last > :not(:last-child),
  .lg-down-p-md-child > * {
    padding: 22px !important;
  }
  .lg-down-pt-md-child-not-last > :not(:last-child),
  .lg-down-pt-md-child > * {
    padding-top: 22px !important;
  }
  .lg-down-pb-md-child-not-last > :not(:last-child),
  .lg-down-pb-md-child > * {
    padding-bottom: 22px !important;
  }
  .lg-down-py-md-child-not-last > :not(:last-child),
  .lg-down-py-md-child > * {
    padding-block: 22px !important;
  }
  .lg-down-pl-md-child-not-last > :not(:last-child),
  .lg-down-pl-md-child > * {
    padding-left: 22px !important;
  }
  .lg-down-pr-md-child-not-last > :not(:last-child),
  .lg-down-pr-md-child > * {
    padding-right: 22px !important;
  }
  .lg-down-px-md-child-not-last > :not(:last-child),
  .lg-down-px-md-child > * {
    padding-inline: 22px !important;
  }
  .lg-down-m-lg-child-not-last > :not(:last-child),
  .lg-down-m-lg-child > * {
    margin: 32px !important;
  }
  .lg-down-mt-lg-child-not-last > :not(:last-child),
  .lg-down-mt-lg-child > * {
    margin-top: 32px !important;
  }
  .lg-down-mb-lg-child-not-last > :not(:last-child),
  .lg-down-mb-lg-child > * {
    margin-bottom: 32px !important;
  }
  .lg-down-my-lg-child-not-last > :not(:last-child),
  .lg-down-my-lg-child > * {
    margin-block: 32px !important;
  }
  .lg-down-ml-lg-child-not-last > :not(:last-child),
  .lg-down-ml-lg-child > * {
    margin-left: 32px !important;
  }
  .lg-down-mr-lg-child-not-last > :not(:last-child),
  .lg-down-mr-lg-child > * {
    margin-right: 32px !important;
  }
  .lg-down-mx-lg-child-not-last > :not(:last-child),
  .lg-down-mx-lg-child > * {
    margin-inline: 32px !important;
  }
  .lg-down-p-lg-child-not-last > :not(:last-child),
  .lg-down-p-lg-child > * {
    padding: 32px !important;
  }
  .lg-down-pt-lg-child-not-last > :not(:last-child),
  .lg-down-pt-lg-child > * {
    padding-top: 32px !important;
  }
  .lg-down-pb-lg-child-not-last > :not(:last-child),
  .lg-down-pb-lg-child > * {
    padding-bottom: 32px !important;
  }
  .lg-down-py-lg-child-not-last > :not(:last-child),
  .lg-down-py-lg-child > * {
    padding-block: 32px !important;
  }
  .lg-down-pl-lg-child-not-last > :not(:last-child),
  .lg-down-pl-lg-child > * {
    padding-left: 32px !important;
  }
  .lg-down-pr-lg-child-not-last > :not(:last-child),
  .lg-down-pr-lg-child > * {
    padding-right: 32px !important;
  }
  .lg-down-px-lg-child-not-last > :not(:last-child),
  .lg-down-px-lg-child > * {
    padding-inline: 32px !important;
  }
  .lg-down-m-xl-child-not-last > :not(:last-child),
  .lg-down-m-xl-child > * {
    margin: 48px !important;
  }
  .lg-down-mt-xl-child-not-last > :not(:last-child),
  .lg-down-mt-xl-child > * {
    margin-top: 48px !important;
  }
  .lg-down-mb-xl-child-not-last > :not(:last-child),
  .lg-down-mb-xl-child > * {
    margin-bottom: 48px !important;
  }
  .lg-down-my-xl-child-not-last > :not(:last-child),
  .lg-down-my-xl-child > * {
    margin-block: 48px !important;
  }
  .lg-down-ml-xl-child-not-last > :not(:last-child),
  .lg-down-ml-xl-child > * {
    margin-left: 48px !important;
  }
  .lg-down-mr-xl-child-not-last > :not(:last-child),
  .lg-down-mr-xl-child > * {
    margin-right: 48px !important;
  }
  .lg-down-mx-xl-child-not-last > :not(:last-child),
  .lg-down-mx-xl-child > * {
    margin-inline: 48px !important;
  }
  .lg-down-p-xl-child-not-last > :not(:last-child),
  .lg-down-p-xl-child > * {
    padding: 48px !important;
  }
  .lg-down-pt-xl-child-not-last > :not(:last-child),
  .lg-down-pt-xl-child > * {
    padding-top: 48px !important;
  }
  .lg-down-pb-xl-child-not-last > :not(:last-child),
  .lg-down-pb-xl-child > * {
    padding-bottom: 48px !important;
  }
  .lg-down-py-xl-child-not-last > :not(:last-child),
  .lg-down-py-xl-child > * {
    padding-block: 48px !important;
  }
  .lg-down-pl-xl-child-not-last > :not(:last-child),
  .lg-down-pl-xl-child > * {
    padding-left: 48px !important;
  }
  .lg-down-pr-xl-child-not-last > :not(:last-child),
  .lg-down-pr-xl-child > * {
    padding-right: 48px !important;
  }
  .lg-down-px-xl-child-not-last > :not(:last-child),
  .lg-down-px-xl-child > * {
    padding-inline: 48px !important;
  }
  .lg-down-m-xxl-child-not-last > :not(:last-child),
  .lg-down-m-xxl-child > * {
    margin: 80px !important;
  }
  .lg-down-mt-xxl-child-not-last > :not(:last-child),
  .lg-down-mt-xxl-child > * {
    margin-top: 80px !important;
  }
  .lg-down-mb-xxl-child-not-last > :not(:last-child),
  .lg-down-mb-xxl-child > * {
    margin-bottom: 80px !important;
  }
  .lg-down-my-xxl-child-not-last > :not(:last-child),
  .lg-down-my-xxl-child > * {
    margin-block: 80px !important;
  }
  .lg-down-ml-xxl-child-not-last > :not(:last-child),
  .lg-down-ml-xxl-child > * {
    margin-left: 80px !important;
  }
  .lg-down-mr-xxl-child-not-last > :not(:last-child),
  .lg-down-mr-xxl-child > * {
    margin-right: 80px !important;
  }
  .lg-down-mx-xxl-child-not-last > :not(:last-child),
  .lg-down-mx-xxl-child > * {
    margin-inline: 80px !important;
  }
  .lg-down-p-xxl-child-not-last > :not(:last-child),
  .lg-down-p-xxl-child > * {
    padding: 80px !important;
  }
  .lg-down-pt-xxl-child-not-last > :not(:last-child),
  .lg-down-pt-xxl-child > * {
    padding-top: 80px !important;
  }
  .lg-down-pb-xxl-child-not-last > :not(:last-child),
  .lg-down-pb-xxl-child > * {
    padding-bottom: 80px !important;
  }
  .lg-down-py-xxl-child-not-last > :not(:last-child),
  .lg-down-py-xxl-child > * {
    padding-block: 80px !important;
  }
  .lg-down-pl-xxl-child-not-last > :not(:last-child),
  .lg-down-pl-xxl-child > * {
    padding-left: 80px !important;
  }
  .lg-down-pr-xxl-child-not-last > :not(:last-child),
  .lg-down-pr-xxl-child > * {
    padding-right: 80px !important;
  }
  .lg-down-px-xxl-child-not-last > :not(:last-child),
  .lg-down-px-xxl-child > * {
    padding-inline: 80px !important;
  }
  .lg-down-m-fluid-child-not-last > :not(:last-child),
  .lg-down-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .lg-down-mt-fluid-child-not-last > :not(:last-child),
  .lg-down-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .lg-down-mb-fluid-child-not-last > :not(:last-child),
  .lg-down-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .lg-down-my-fluid-child-not-last > :not(:last-child),
  .lg-down-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .lg-down-ml-fluid-child-not-last > :not(:last-child),
  .lg-down-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .lg-down-mr-fluid-child-not-last > :not(:last-child),
  .lg-down-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .lg-down-mx-fluid-child-not-last > :not(:last-child),
  .lg-down-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .lg-down-p-fluid-child-not-last > :not(:last-child),
  .lg-down-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .lg-down-pt-fluid-child-not-last > :not(:last-child),
  .lg-down-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .lg-down-pb-fluid-child-not-last > :not(:last-child),
  .lg-down-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .lg-down-py-fluid-child-not-last > :not(:last-child),
  .lg-down-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .lg-down-pl-fluid-child-not-last > :not(:last-child),
  .lg-down-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .lg-down-pr-fluid-child-not-last > :not(:last-child),
  .lg-down-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .lg-down-px-fluid-child-not-last > :not(:last-child),
  .lg-down-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
}
@media (max-width: 47.98rem) {
  .md-down-m-0-child-not-last > :not(:last-child),
  .md-down-m-0-child > * {
    margin: 0 !important;
  }
  .md-down-mt-0-child-not-last > :not(:last-child),
  .md-down-mt-0-child > * {
    margin-top: 0 !important;
  }
  .md-down-mb-0-child-not-last > :not(:last-child),
  .md-down-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .md-down-my-0-child-not-last > :not(:last-child),
  .md-down-my-0-child > * {
    margin-block: 0 !important;
  }
  .md-down-ml-0-child-not-last > :not(:last-child),
  .md-down-ml-0-child > * {
    margin-left: 0 !important;
  }
  .md-down-mr-0-child-not-last > :not(:last-child),
  .md-down-mr-0-child > * {
    margin-right: 0 !important;
  }
  .md-down-mx-0-child-not-last > :not(:last-child),
  .md-down-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .md-down-p-0-child-not-last > :not(:last-child),
  .md-down-p-0-child > * {
    padding: 0 !important;
  }
  .md-down-pt-0-child-not-last > :not(:last-child),
  .md-down-pt-0-child > * {
    padding-top: 0 !important;
  }
  .md-down-pb-0-child-not-last > :not(:last-child),
  .md-down-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .md-down-py-0-child-not-last > :not(:last-child),
  .md-down-py-0-child > * {
    padding-block: 0 !important;
  }
  .md-down-pl-0-child-not-last > :not(:last-child),
  .md-down-pl-0-child > * {
    padding-left: 0 !important;
  }
  .md-down-pr-0-child-not-last > :not(:last-child),
  .md-down-pr-0-child > * {
    padding-right: 0 !important;
  }
  .md-down-px-0-child-not-last > :not(:last-child),
  .md-down-px-0-child > * {
    padding-inline: 0 !important;
  }
  .md-down-m-xs-child-not-last > :not(:last-child),
  .md-down-m-xs-child > * {
    margin: 8px !important;
  }
  .md-down-mt-xs-child-not-last > :not(:last-child),
  .md-down-mt-xs-child > * {
    margin-top: 8px !important;
  }
  .md-down-mb-xs-child-not-last > :not(:last-child),
  .md-down-mb-xs-child > * {
    margin-bottom: 8px !important;
  }
  .md-down-my-xs-child-not-last > :not(:last-child),
  .md-down-my-xs-child > * {
    margin-block: 8px !important;
  }
  .md-down-ml-xs-child-not-last > :not(:last-child),
  .md-down-ml-xs-child > * {
    margin-left: 8px !important;
  }
  .md-down-mr-xs-child-not-last > :not(:last-child),
  .md-down-mr-xs-child > * {
    margin-right: 8px !important;
  }
  .md-down-mx-xs-child-not-last > :not(:last-child),
  .md-down-mx-xs-child > * {
    margin-inline: 8px !important;
  }
  .md-down-p-xs-child-not-last > :not(:last-child),
  .md-down-p-xs-child > * {
    padding: 8px !important;
  }
  .md-down-pt-xs-child-not-last > :not(:last-child),
  .md-down-pt-xs-child > * {
    padding-top: 8px !important;
  }
  .md-down-pb-xs-child-not-last > :not(:last-child),
  .md-down-pb-xs-child > * {
    padding-bottom: 8px !important;
  }
  .md-down-py-xs-child-not-last > :not(:last-child),
  .md-down-py-xs-child > * {
    padding-block: 8px !important;
  }
  .md-down-pl-xs-child-not-last > :not(:last-child),
  .md-down-pl-xs-child > * {
    padding-left: 8px !important;
  }
  .md-down-pr-xs-child-not-last > :not(:last-child),
  .md-down-pr-xs-child > * {
    padding-right: 8px !important;
  }
  .md-down-px-xs-child-not-last > :not(:last-child),
  .md-down-px-xs-child > * {
    padding-inline: 8px !important;
  }
  .md-down-m-sm-child-not-last > :not(:last-child),
  .md-down-m-sm-child > * {
    margin: 16px !important;
  }
  .md-down-mt-sm-child-not-last > :not(:last-child),
  .md-down-mt-sm-child > * {
    margin-top: 16px !important;
  }
  .md-down-mb-sm-child-not-last > :not(:last-child),
  .md-down-mb-sm-child > * {
    margin-bottom: 16px !important;
  }
  .md-down-my-sm-child-not-last > :not(:last-child),
  .md-down-my-sm-child > * {
    margin-block: 16px !important;
  }
  .md-down-ml-sm-child-not-last > :not(:last-child),
  .md-down-ml-sm-child > * {
    margin-left: 16px !important;
  }
  .md-down-mr-sm-child-not-last > :not(:last-child),
  .md-down-mr-sm-child > * {
    margin-right: 16px !important;
  }
  .md-down-mx-sm-child-not-last > :not(:last-child),
  .md-down-mx-sm-child > * {
    margin-inline: 16px !important;
  }
  .md-down-p-sm-child-not-last > :not(:last-child),
  .md-down-p-sm-child > * {
    padding: 16px !important;
  }
  .md-down-pt-sm-child-not-last > :not(:last-child),
  .md-down-pt-sm-child > * {
    padding-top: 16px !important;
  }
  .md-down-pb-sm-child-not-last > :not(:last-child),
  .md-down-pb-sm-child > * {
    padding-bottom: 16px !important;
  }
  .md-down-py-sm-child-not-last > :not(:last-child),
  .md-down-py-sm-child > * {
    padding-block: 16px !important;
  }
  .md-down-pl-sm-child-not-last > :not(:last-child),
  .md-down-pl-sm-child > * {
    padding-left: 16px !important;
  }
  .md-down-pr-sm-child-not-last > :not(:last-child),
  .md-down-pr-sm-child > * {
    padding-right: 16px !important;
  }
  .md-down-px-sm-child-not-last > :not(:last-child),
  .md-down-px-sm-child > * {
    padding-inline: 16px !important;
  }
  .md-down-m-md-child-not-last > :not(:last-child),
  .md-down-m-md-child > * {
    margin: 22px !important;
  }
  .md-down-mt-md-child-not-last > :not(:last-child),
  .md-down-mt-md-child > * {
    margin-top: 22px !important;
  }
  .md-down-mb-md-child-not-last > :not(:last-child),
  .md-down-mb-md-child > * {
    margin-bottom: 22px !important;
  }
  .md-down-my-md-child-not-last > :not(:last-child),
  .md-down-my-md-child > * {
    margin-block: 22px !important;
  }
  .md-down-ml-md-child-not-last > :not(:last-child),
  .md-down-ml-md-child > * {
    margin-left: 22px !important;
  }
  .md-down-mr-md-child-not-last > :not(:last-child),
  .md-down-mr-md-child > * {
    margin-right: 22px !important;
  }
  .md-down-mx-md-child-not-last > :not(:last-child),
  .md-down-mx-md-child > * {
    margin-inline: 22px !important;
  }
  .md-down-p-md-child-not-last > :not(:last-child),
  .md-down-p-md-child > * {
    padding: 22px !important;
  }
  .md-down-pt-md-child-not-last > :not(:last-child),
  .md-down-pt-md-child > * {
    padding-top: 22px !important;
  }
  .md-down-pb-md-child-not-last > :not(:last-child),
  .md-down-pb-md-child > * {
    padding-bottom: 22px !important;
  }
  .md-down-py-md-child-not-last > :not(:last-child),
  .md-down-py-md-child > * {
    padding-block: 22px !important;
  }
  .md-down-pl-md-child-not-last > :not(:last-child),
  .md-down-pl-md-child > * {
    padding-left: 22px !important;
  }
  .md-down-pr-md-child-not-last > :not(:last-child),
  .md-down-pr-md-child > * {
    padding-right: 22px !important;
  }
  .md-down-px-md-child-not-last > :not(:last-child),
  .md-down-px-md-child > * {
    padding-inline: 22px !important;
  }
  .md-down-m-lg-child-not-last > :not(:last-child),
  .md-down-m-lg-child > * {
    margin: 32px !important;
  }
  .md-down-mt-lg-child-not-last > :not(:last-child),
  .md-down-mt-lg-child > * {
    margin-top: 32px !important;
  }
  .md-down-mb-lg-child-not-last > :not(:last-child),
  .md-down-mb-lg-child > * {
    margin-bottom: 32px !important;
  }
  .md-down-my-lg-child-not-last > :not(:last-child),
  .md-down-my-lg-child > * {
    margin-block: 32px !important;
  }
  .md-down-ml-lg-child-not-last > :not(:last-child),
  .md-down-ml-lg-child > * {
    margin-left: 32px !important;
  }
  .md-down-mr-lg-child-not-last > :not(:last-child),
  .md-down-mr-lg-child > * {
    margin-right: 32px !important;
  }
  .md-down-mx-lg-child-not-last > :not(:last-child),
  .md-down-mx-lg-child > * {
    margin-inline: 32px !important;
  }
  .md-down-p-lg-child-not-last > :not(:last-child),
  .md-down-p-lg-child > * {
    padding: 32px !important;
  }
  .md-down-pt-lg-child-not-last > :not(:last-child),
  .md-down-pt-lg-child > * {
    padding-top: 32px !important;
  }
  .md-down-pb-lg-child-not-last > :not(:last-child),
  .md-down-pb-lg-child > * {
    padding-bottom: 32px !important;
  }
  .md-down-py-lg-child-not-last > :not(:last-child),
  .md-down-py-lg-child > * {
    padding-block: 32px !important;
  }
  .md-down-pl-lg-child-not-last > :not(:last-child),
  .md-down-pl-lg-child > * {
    padding-left: 32px !important;
  }
  .md-down-pr-lg-child-not-last > :not(:last-child),
  .md-down-pr-lg-child > * {
    padding-right: 32px !important;
  }
  .md-down-px-lg-child-not-last > :not(:last-child),
  .md-down-px-lg-child > * {
    padding-inline: 32px !important;
  }
  .md-down-m-xl-child-not-last > :not(:last-child),
  .md-down-m-xl-child > * {
    margin: 48px !important;
  }
  .md-down-mt-xl-child-not-last > :not(:last-child),
  .md-down-mt-xl-child > * {
    margin-top: 48px !important;
  }
  .md-down-mb-xl-child-not-last > :not(:last-child),
  .md-down-mb-xl-child > * {
    margin-bottom: 48px !important;
  }
  .md-down-my-xl-child-not-last > :not(:last-child),
  .md-down-my-xl-child > * {
    margin-block: 48px !important;
  }
  .md-down-ml-xl-child-not-last > :not(:last-child),
  .md-down-ml-xl-child > * {
    margin-left: 48px !important;
  }
  .md-down-mr-xl-child-not-last > :not(:last-child),
  .md-down-mr-xl-child > * {
    margin-right: 48px !important;
  }
  .md-down-mx-xl-child-not-last > :not(:last-child),
  .md-down-mx-xl-child > * {
    margin-inline: 48px !important;
  }
  .md-down-p-xl-child-not-last > :not(:last-child),
  .md-down-p-xl-child > * {
    padding: 48px !important;
  }
  .md-down-pt-xl-child-not-last > :not(:last-child),
  .md-down-pt-xl-child > * {
    padding-top: 48px !important;
  }
  .md-down-pb-xl-child-not-last > :not(:last-child),
  .md-down-pb-xl-child > * {
    padding-bottom: 48px !important;
  }
  .md-down-py-xl-child-not-last > :not(:last-child),
  .md-down-py-xl-child > * {
    padding-block: 48px !important;
  }
  .md-down-pl-xl-child-not-last > :not(:last-child),
  .md-down-pl-xl-child > * {
    padding-left: 48px !important;
  }
  .md-down-pr-xl-child-not-last > :not(:last-child),
  .md-down-pr-xl-child > * {
    padding-right: 48px !important;
  }
  .md-down-px-xl-child-not-last > :not(:last-child),
  .md-down-px-xl-child > * {
    padding-inline: 48px !important;
  }
  .md-down-m-xxl-child-not-last > :not(:last-child),
  .md-down-m-xxl-child > * {
    margin: 80px !important;
  }
  .md-down-mt-xxl-child-not-last > :not(:last-child),
  .md-down-mt-xxl-child > * {
    margin-top: 80px !important;
  }
  .md-down-mb-xxl-child-not-last > :not(:last-child),
  .md-down-mb-xxl-child > * {
    margin-bottom: 80px !important;
  }
  .md-down-my-xxl-child-not-last > :not(:last-child),
  .md-down-my-xxl-child > * {
    margin-block: 80px !important;
  }
  .md-down-ml-xxl-child-not-last > :not(:last-child),
  .md-down-ml-xxl-child > * {
    margin-left: 80px !important;
  }
  .md-down-mr-xxl-child-not-last > :not(:last-child),
  .md-down-mr-xxl-child > * {
    margin-right: 80px !important;
  }
  .md-down-mx-xxl-child-not-last > :not(:last-child),
  .md-down-mx-xxl-child > * {
    margin-inline: 80px !important;
  }
  .md-down-p-xxl-child-not-last > :not(:last-child),
  .md-down-p-xxl-child > * {
    padding: 80px !important;
  }
  .md-down-pt-xxl-child-not-last > :not(:last-child),
  .md-down-pt-xxl-child > * {
    padding-top: 80px !important;
  }
  .md-down-pb-xxl-child-not-last > :not(:last-child),
  .md-down-pb-xxl-child > * {
    padding-bottom: 80px !important;
  }
  .md-down-py-xxl-child-not-last > :not(:last-child),
  .md-down-py-xxl-child > * {
    padding-block: 80px !important;
  }
  .md-down-pl-xxl-child-not-last > :not(:last-child),
  .md-down-pl-xxl-child > * {
    padding-left: 80px !important;
  }
  .md-down-pr-xxl-child-not-last > :not(:last-child),
  .md-down-pr-xxl-child > * {
    padding-right: 80px !important;
  }
  .md-down-px-xxl-child-not-last > :not(:last-child),
  .md-down-px-xxl-child > * {
    padding-inline: 80px !important;
  }
  .md-down-m-fluid-child-not-last > :not(:last-child),
  .md-down-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .md-down-mt-fluid-child-not-last > :not(:last-child),
  .md-down-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .md-down-mb-fluid-child-not-last > :not(:last-child),
  .md-down-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .md-down-my-fluid-child-not-last > :not(:last-child),
  .md-down-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .md-down-ml-fluid-child-not-last > :not(:last-child),
  .md-down-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .md-down-mr-fluid-child-not-last > :not(:last-child),
  .md-down-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .md-down-mx-fluid-child-not-last > :not(:last-child),
  .md-down-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .md-down-p-fluid-child-not-last > :not(:last-child),
  .md-down-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .md-down-pt-fluid-child-not-last > :not(:last-child),
  .md-down-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .md-down-pb-fluid-child-not-last > :not(:last-child),
  .md-down-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .md-down-py-fluid-child-not-last > :not(:last-child),
  .md-down-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .md-down-pl-fluid-child-not-last > :not(:last-child),
  .md-down-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .md-down-pr-fluid-child-not-last > :not(:last-child),
  .md-down-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .md-down-px-fluid-child-not-last > :not(:last-child),
  .md-down-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
}
@media (max-width: 35.98rem) {
  .sm-down-m-0-child-not-last > :not(:last-child),
  .sm-down-m-0-child > * {
    margin: 0 !important;
  }
  .sm-down-mt-0-child-not-last > :not(:last-child),
  .sm-down-mt-0-child > * {
    margin-top: 0 !important;
  }
  .sm-down-mb-0-child-not-last > :not(:last-child),
  .sm-down-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .sm-down-my-0-child-not-last > :not(:last-child),
  .sm-down-my-0-child > * {
    margin-block: 0 !important;
  }
  .sm-down-ml-0-child-not-last > :not(:last-child),
  .sm-down-ml-0-child > * {
    margin-left: 0 !important;
  }
  .sm-down-mr-0-child-not-last > :not(:last-child),
  .sm-down-mr-0-child > * {
    margin-right: 0 !important;
  }
  .sm-down-mx-0-child-not-last > :not(:last-child),
  .sm-down-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .sm-down-p-0-child-not-last > :not(:last-child),
  .sm-down-p-0-child > * {
    padding: 0 !important;
  }
  .sm-down-pt-0-child-not-last > :not(:last-child),
  .sm-down-pt-0-child > * {
    padding-top: 0 !important;
  }
  .sm-down-pb-0-child-not-last > :not(:last-child),
  .sm-down-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .sm-down-py-0-child-not-last > :not(:last-child),
  .sm-down-py-0-child > * {
    padding-block: 0 !important;
  }
  .sm-down-pl-0-child-not-last > :not(:last-child),
  .sm-down-pl-0-child > * {
    padding-left: 0 !important;
  }
  .sm-down-pr-0-child-not-last > :not(:last-child),
  .sm-down-pr-0-child > * {
    padding-right: 0 !important;
  }
  .sm-down-px-0-child-not-last > :not(:last-child),
  .sm-down-px-0-child > * {
    padding-inline: 0 !important;
  }
  .sm-down-m-xs-child-not-last > :not(:last-child),
  .sm-down-m-xs-child > * {
    margin: 8px !important;
  }
  .sm-down-mt-xs-child-not-last > :not(:last-child),
  .sm-down-mt-xs-child > * {
    margin-top: 8px !important;
  }
  .sm-down-mb-xs-child-not-last > :not(:last-child),
  .sm-down-mb-xs-child > * {
    margin-bottom: 8px !important;
  }
  .sm-down-my-xs-child-not-last > :not(:last-child),
  .sm-down-my-xs-child > * {
    margin-block: 8px !important;
  }
  .sm-down-ml-xs-child-not-last > :not(:last-child),
  .sm-down-ml-xs-child > * {
    margin-left: 8px !important;
  }
  .sm-down-mr-xs-child-not-last > :not(:last-child),
  .sm-down-mr-xs-child > * {
    margin-right: 8px !important;
  }
  .sm-down-mx-xs-child-not-last > :not(:last-child),
  .sm-down-mx-xs-child > * {
    margin-inline: 8px !important;
  }
  .sm-down-p-xs-child-not-last > :not(:last-child),
  .sm-down-p-xs-child > * {
    padding: 8px !important;
  }
  .sm-down-pt-xs-child-not-last > :not(:last-child),
  .sm-down-pt-xs-child > * {
    padding-top: 8px !important;
  }
  .sm-down-pb-xs-child-not-last > :not(:last-child),
  .sm-down-pb-xs-child > * {
    padding-bottom: 8px !important;
  }
  .sm-down-py-xs-child-not-last > :not(:last-child),
  .sm-down-py-xs-child > * {
    padding-block: 8px !important;
  }
  .sm-down-pl-xs-child-not-last > :not(:last-child),
  .sm-down-pl-xs-child > * {
    padding-left: 8px !important;
  }
  .sm-down-pr-xs-child-not-last > :not(:last-child),
  .sm-down-pr-xs-child > * {
    padding-right: 8px !important;
  }
  .sm-down-px-xs-child-not-last > :not(:last-child),
  .sm-down-px-xs-child > * {
    padding-inline: 8px !important;
  }
  .sm-down-m-sm-child-not-last > :not(:last-child),
  .sm-down-m-sm-child > * {
    margin: 16px !important;
  }
  .sm-down-mt-sm-child-not-last > :not(:last-child),
  .sm-down-mt-sm-child > * {
    margin-top: 16px !important;
  }
  .sm-down-mb-sm-child-not-last > :not(:last-child),
  .sm-down-mb-sm-child > * {
    margin-bottom: 16px !important;
  }
  .sm-down-my-sm-child-not-last > :not(:last-child),
  .sm-down-my-sm-child > * {
    margin-block: 16px !important;
  }
  .sm-down-ml-sm-child-not-last > :not(:last-child),
  .sm-down-ml-sm-child > * {
    margin-left: 16px !important;
  }
  .sm-down-mr-sm-child-not-last > :not(:last-child),
  .sm-down-mr-sm-child > * {
    margin-right: 16px !important;
  }
  .sm-down-mx-sm-child-not-last > :not(:last-child),
  .sm-down-mx-sm-child > * {
    margin-inline: 16px !important;
  }
  .sm-down-p-sm-child-not-last > :not(:last-child),
  .sm-down-p-sm-child > * {
    padding: 16px !important;
  }
  .sm-down-pt-sm-child-not-last > :not(:last-child),
  .sm-down-pt-sm-child > * {
    padding-top: 16px !important;
  }
  .sm-down-pb-sm-child-not-last > :not(:last-child),
  .sm-down-pb-sm-child > * {
    padding-bottom: 16px !important;
  }
  .sm-down-py-sm-child-not-last > :not(:last-child),
  .sm-down-py-sm-child > * {
    padding-block: 16px !important;
  }
  .sm-down-pl-sm-child-not-last > :not(:last-child),
  .sm-down-pl-sm-child > * {
    padding-left: 16px !important;
  }
  .sm-down-pr-sm-child-not-last > :not(:last-child),
  .sm-down-pr-sm-child > * {
    padding-right: 16px !important;
  }
  .sm-down-px-sm-child-not-last > :not(:last-child),
  .sm-down-px-sm-child > * {
    padding-inline: 16px !important;
  }
  .sm-down-m-md-child-not-last > :not(:last-child),
  .sm-down-m-md-child > * {
    margin: 22px !important;
  }
  .sm-down-mt-md-child-not-last > :not(:last-child),
  .sm-down-mt-md-child > * {
    margin-top: 22px !important;
  }
  .sm-down-mb-md-child-not-last > :not(:last-child),
  .sm-down-mb-md-child > * {
    margin-bottom: 22px !important;
  }
  .sm-down-my-md-child-not-last > :not(:last-child),
  .sm-down-my-md-child > * {
    margin-block: 22px !important;
  }
  .sm-down-ml-md-child-not-last > :not(:last-child),
  .sm-down-ml-md-child > * {
    margin-left: 22px !important;
  }
  .sm-down-mr-md-child-not-last > :not(:last-child),
  .sm-down-mr-md-child > * {
    margin-right: 22px !important;
  }
  .sm-down-mx-md-child-not-last > :not(:last-child),
  .sm-down-mx-md-child > * {
    margin-inline: 22px !important;
  }
  .sm-down-p-md-child-not-last > :not(:last-child),
  .sm-down-p-md-child > * {
    padding: 22px !important;
  }
  .sm-down-pt-md-child-not-last > :not(:last-child),
  .sm-down-pt-md-child > * {
    padding-top: 22px !important;
  }
  .sm-down-pb-md-child-not-last > :not(:last-child),
  .sm-down-pb-md-child > * {
    padding-bottom: 22px !important;
  }
  .sm-down-py-md-child-not-last > :not(:last-child),
  .sm-down-py-md-child > * {
    padding-block: 22px !important;
  }
  .sm-down-pl-md-child-not-last > :not(:last-child),
  .sm-down-pl-md-child > * {
    padding-left: 22px !important;
  }
  .sm-down-pr-md-child-not-last > :not(:last-child),
  .sm-down-pr-md-child > * {
    padding-right: 22px !important;
  }
  .sm-down-px-md-child-not-last > :not(:last-child),
  .sm-down-px-md-child > * {
    padding-inline: 22px !important;
  }
  .sm-down-m-lg-child-not-last > :not(:last-child),
  .sm-down-m-lg-child > * {
    margin: 32px !important;
  }
  .sm-down-mt-lg-child-not-last > :not(:last-child),
  .sm-down-mt-lg-child > * {
    margin-top: 32px !important;
  }
  .sm-down-mb-lg-child-not-last > :not(:last-child),
  .sm-down-mb-lg-child > * {
    margin-bottom: 32px !important;
  }
  .sm-down-my-lg-child-not-last > :not(:last-child),
  .sm-down-my-lg-child > * {
    margin-block: 32px !important;
  }
  .sm-down-ml-lg-child-not-last > :not(:last-child),
  .sm-down-ml-lg-child > * {
    margin-left: 32px !important;
  }
  .sm-down-mr-lg-child-not-last > :not(:last-child),
  .sm-down-mr-lg-child > * {
    margin-right: 32px !important;
  }
  .sm-down-mx-lg-child-not-last > :not(:last-child),
  .sm-down-mx-lg-child > * {
    margin-inline: 32px !important;
  }
  .sm-down-p-lg-child-not-last > :not(:last-child),
  .sm-down-p-lg-child > * {
    padding: 32px !important;
  }
  .sm-down-pt-lg-child-not-last > :not(:last-child),
  .sm-down-pt-lg-child > * {
    padding-top: 32px !important;
  }
  .sm-down-pb-lg-child-not-last > :not(:last-child),
  .sm-down-pb-lg-child > * {
    padding-bottom: 32px !important;
  }
  .sm-down-py-lg-child-not-last > :not(:last-child),
  .sm-down-py-lg-child > * {
    padding-block: 32px !important;
  }
  .sm-down-pl-lg-child-not-last > :not(:last-child),
  .sm-down-pl-lg-child > * {
    padding-left: 32px !important;
  }
  .sm-down-pr-lg-child-not-last > :not(:last-child),
  .sm-down-pr-lg-child > * {
    padding-right: 32px !important;
  }
  .sm-down-px-lg-child-not-last > :not(:last-child),
  .sm-down-px-lg-child > * {
    padding-inline: 32px !important;
  }
  .sm-down-m-xl-child-not-last > :not(:last-child),
  .sm-down-m-xl-child > * {
    margin: 48px !important;
  }
  .sm-down-mt-xl-child-not-last > :not(:last-child),
  .sm-down-mt-xl-child > * {
    margin-top: 48px !important;
  }
  .sm-down-mb-xl-child-not-last > :not(:last-child),
  .sm-down-mb-xl-child > * {
    margin-bottom: 48px !important;
  }
  .sm-down-my-xl-child-not-last > :not(:last-child),
  .sm-down-my-xl-child > * {
    margin-block: 48px !important;
  }
  .sm-down-ml-xl-child-not-last > :not(:last-child),
  .sm-down-ml-xl-child > * {
    margin-left: 48px !important;
  }
  .sm-down-mr-xl-child-not-last > :not(:last-child),
  .sm-down-mr-xl-child > * {
    margin-right: 48px !important;
  }
  .sm-down-mx-xl-child-not-last > :not(:last-child),
  .sm-down-mx-xl-child > * {
    margin-inline: 48px !important;
  }
  .sm-down-p-xl-child-not-last > :not(:last-child),
  .sm-down-p-xl-child > * {
    padding: 48px !important;
  }
  .sm-down-pt-xl-child-not-last > :not(:last-child),
  .sm-down-pt-xl-child > * {
    padding-top: 48px !important;
  }
  .sm-down-pb-xl-child-not-last > :not(:last-child),
  .sm-down-pb-xl-child > * {
    padding-bottom: 48px !important;
  }
  .sm-down-py-xl-child-not-last > :not(:last-child),
  .sm-down-py-xl-child > * {
    padding-block: 48px !important;
  }
  .sm-down-pl-xl-child-not-last > :not(:last-child),
  .sm-down-pl-xl-child > * {
    padding-left: 48px !important;
  }
  .sm-down-pr-xl-child-not-last > :not(:last-child),
  .sm-down-pr-xl-child > * {
    padding-right: 48px !important;
  }
  .sm-down-px-xl-child-not-last > :not(:last-child),
  .sm-down-px-xl-child > * {
    padding-inline: 48px !important;
  }
  .sm-down-m-xxl-child-not-last > :not(:last-child),
  .sm-down-m-xxl-child > * {
    margin: 80px !important;
  }
  .sm-down-mt-xxl-child-not-last > :not(:last-child),
  .sm-down-mt-xxl-child > * {
    margin-top: 80px !important;
  }
  .sm-down-mb-xxl-child-not-last > :not(:last-child),
  .sm-down-mb-xxl-child > * {
    margin-bottom: 80px !important;
  }
  .sm-down-my-xxl-child-not-last > :not(:last-child),
  .sm-down-my-xxl-child > * {
    margin-block: 80px !important;
  }
  .sm-down-ml-xxl-child-not-last > :not(:last-child),
  .sm-down-ml-xxl-child > * {
    margin-left: 80px !important;
  }
  .sm-down-mr-xxl-child-not-last > :not(:last-child),
  .sm-down-mr-xxl-child > * {
    margin-right: 80px !important;
  }
  .sm-down-mx-xxl-child-not-last > :not(:last-child),
  .sm-down-mx-xxl-child > * {
    margin-inline: 80px !important;
  }
  .sm-down-p-xxl-child-not-last > :not(:last-child),
  .sm-down-p-xxl-child > * {
    padding: 80px !important;
  }
  .sm-down-pt-xxl-child-not-last > :not(:last-child),
  .sm-down-pt-xxl-child > * {
    padding-top: 80px !important;
  }
  .sm-down-pb-xxl-child-not-last > :not(:last-child),
  .sm-down-pb-xxl-child > * {
    padding-bottom: 80px !important;
  }
  .sm-down-py-xxl-child-not-last > :not(:last-child),
  .sm-down-py-xxl-child > * {
    padding-block: 80px !important;
  }
  .sm-down-pl-xxl-child-not-last > :not(:last-child),
  .sm-down-pl-xxl-child > * {
    padding-left: 80px !important;
  }
  .sm-down-pr-xxl-child-not-last > :not(:last-child),
  .sm-down-pr-xxl-child > * {
    padding-right: 80px !important;
  }
  .sm-down-px-xxl-child-not-last > :not(:last-child),
  .sm-down-px-xxl-child > * {
    padding-inline: 80px !important;
  }
  .sm-down-m-fluid-child-not-last > :not(:last-child),
  .sm-down-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .sm-down-mt-fluid-child-not-last > :not(:last-child),
  .sm-down-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .sm-down-mb-fluid-child-not-last > :not(:last-child),
  .sm-down-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .sm-down-my-fluid-child-not-last > :not(:last-child),
  .sm-down-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .sm-down-ml-fluid-child-not-last > :not(:last-child),
  .sm-down-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .sm-down-mr-fluid-child-not-last > :not(:last-child),
  .sm-down-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .sm-down-mx-fluid-child-not-last > :not(:last-child),
  .sm-down-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .sm-down-p-fluid-child-not-last > :not(:last-child),
  .sm-down-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .sm-down-pt-fluid-child-not-last > :not(:last-child),
  .sm-down-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .sm-down-pb-fluid-child-not-last > :not(:last-child),
  .sm-down-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .sm-down-py-fluid-child-not-last > :not(:last-child),
  .sm-down-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .sm-down-pl-fluid-child-not-last > :not(:last-child),
  .sm-down-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .sm-down-pr-fluid-child-not-last > :not(:last-child),
  .sm-down-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .sm-down-px-fluid-child-not-last > :not(:last-child),
  .sm-down-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
}
@media (min-width: 36rem) {
  .sm-up-m-0-child-not-last > :not(:last-child),
  .sm-up-m-0-child > * {
    margin: 0 !important;
  }
  .sm-up-mt-0-child-not-last > :not(:last-child),
  .sm-up-mt-0-child > * {
    margin-top: 0 !important;
  }
  .sm-up-mb-0-child-not-last > :not(:last-child),
  .sm-up-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .sm-up-my-0-child-not-last > :not(:last-child),
  .sm-up-my-0-child > * {
    margin-block: 0 !important;
  }
  .sm-up-ml-0-child-not-last > :not(:last-child),
  .sm-up-ml-0-child > * {
    margin-left: 0 !important;
  }
  .sm-up-mr-0-child-not-last > :not(:last-child),
  .sm-up-mr-0-child > * {
    margin-right: 0 !important;
  }
  .sm-up-mx-0-child-not-last > :not(:last-child),
  .sm-up-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .sm-up-p-0-child-not-last > :not(:last-child),
  .sm-up-p-0-child > * {
    padding: 0 !important;
  }
  .sm-up-pt-0-child-not-last > :not(:last-child),
  .sm-up-pt-0-child > * {
    padding-top: 0 !important;
  }
  .sm-up-pb-0-child-not-last > :not(:last-child),
  .sm-up-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .sm-up-py-0-child-not-last > :not(:last-child),
  .sm-up-py-0-child > * {
    padding-block: 0 !important;
  }
  .sm-up-pl-0-child-not-last > :not(:last-child),
  .sm-up-pl-0-child > * {
    padding-left: 0 !important;
  }
  .sm-up-pr-0-child-not-last > :not(:last-child),
  .sm-up-pr-0-child > * {
    padding-right: 0 !important;
  }
  .sm-up-px-0-child-not-last > :not(:last-child),
  .sm-up-px-0-child > * {
    padding-inline: 0 !important;
  }
  .sm-up-m-xs-child-not-last > :not(:last-child),
  .sm-up-m-xs-child > * {
    margin: 8px !important;
  }
  .sm-up-mt-xs-child-not-last > :not(:last-child),
  .sm-up-mt-xs-child > * {
    margin-top: 8px !important;
  }
  .sm-up-mb-xs-child-not-last > :not(:last-child),
  .sm-up-mb-xs-child > * {
    margin-bottom: 8px !important;
  }
  .sm-up-my-xs-child-not-last > :not(:last-child),
  .sm-up-my-xs-child > * {
    margin-block: 8px !important;
  }
  .sm-up-ml-xs-child-not-last > :not(:last-child),
  .sm-up-ml-xs-child > * {
    margin-left: 8px !important;
  }
  .sm-up-mr-xs-child-not-last > :not(:last-child),
  .sm-up-mr-xs-child > * {
    margin-right: 8px !important;
  }
  .sm-up-mx-xs-child-not-last > :not(:last-child),
  .sm-up-mx-xs-child > * {
    margin-inline: 8px !important;
  }
  .sm-up-p-xs-child-not-last > :not(:last-child),
  .sm-up-p-xs-child > * {
    padding: 8px !important;
  }
  .sm-up-pt-xs-child-not-last > :not(:last-child),
  .sm-up-pt-xs-child > * {
    padding-top: 8px !important;
  }
  .sm-up-pb-xs-child-not-last > :not(:last-child),
  .sm-up-pb-xs-child > * {
    padding-bottom: 8px !important;
  }
  .sm-up-py-xs-child-not-last > :not(:last-child),
  .sm-up-py-xs-child > * {
    padding-block: 8px !important;
  }
  .sm-up-pl-xs-child-not-last > :not(:last-child),
  .sm-up-pl-xs-child > * {
    padding-left: 8px !important;
  }
  .sm-up-pr-xs-child-not-last > :not(:last-child),
  .sm-up-pr-xs-child > * {
    padding-right: 8px !important;
  }
  .sm-up-px-xs-child-not-last > :not(:last-child),
  .sm-up-px-xs-child > * {
    padding-inline: 8px !important;
  }
  .sm-up-m-sm-child-not-last > :not(:last-child),
  .sm-up-m-sm-child > * {
    margin: 16px !important;
  }
  .sm-up-mt-sm-child-not-last > :not(:last-child),
  .sm-up-mt-sm-child > * {
    margin-top: 16px !important;
  }
  .sm-up-mb-sm-child-not-last > :not(:last-child),
  .sm-up-mb-sm-child > * {
    margin-bottom: 16px !important;
  }
  .sm-up-my-sm-child-not-last > :not(:last-child),
  .sm-up-my-sm-child > * {
    margin-block: 16px !important;
  }
  .sm-up-ml-sm-child-not-last > :not(:last-child),
  .sm-up-ml-sm-child > * {
    margin-left: 16px !important;
  }
  .sm-up-mr-sm-child-not-last > :not(:last-child),
  .sm-up-mr-sm-child > * {
    margin-right: 16px !important;
  }
  .sm-up-mx-sm-child-not-last > :not(:last-child),
  .sm-up-mx-sm-child > * {
    margin-inline: 16px !important;
  }
  .sm-up-p-sm-child-not-last > :not(:last-child),
  .sm-up-p-sm-child > * {
    padding: 16px !important;
  }
  .sm-up-pt-sm-child-not-last > :not(:last-child),
  .sm-up-pt-sm-child > * {
    padding-top: 16px !important;
  }
  .sm-up-pb-sm-child-not-last > :not(:last-child),
  .sm-up-pb-sm-child > * {
    padding-bottom: 16px !important;
  }
  .sm-up-py-sm-child-not-last > :not(:last-child),
  .sm-up-py-sm-child > * {
    padding-block: 16px !important;
  }
  .sm-up-pl-sm-child-not-last > :not(:last-child),
  .sm-up-pl-sm-child > * {
    padding-left: 16px !important;
  }
  .sm-up-pr-sm-child-not-last > :not(:last-child),
  .sm-up-pr-sm-child > * {
    padding-right: 16px !important;
  }
  .sm-up-px-sm-child-not-last > :not(:last-child),
  .sm-up-px-sm-child > * {
    padding-inline: 16px !important;
  }
  .sm-up-m-md-child-not-last > :not(:last-child),
  .sm-up-m-md-child > * {
    margin: 22px !important;
  }
  .sm-up-mt-md-child-not-last > :not(:last-child),
  .sm-up-mt-md-child > * {
    margin-top: 22px !important;
  }
  .sm-up-mb-md-child-not-last > :not(:last-child),
  .sm-up-mb-md-child > * {
    margin-bottom: 22px !important;
  }
  .sm-up-my-md-child-not-last > :not(:last-child),
  .sm-up-my-md-child > * {
    margin-block: 22px !important;
  }
  .sm-up-ml-md-child-not-last > :not(:last-child),
  .sm-up-ml-md-child > * {
    margin-left: 22px !important;
  }
  .sm-up-mr-md-child-not-last > :not(:last-child),
  .sm-up-mr-md-child > * {
    margin-right: 22px !important;
  }
  .sm-up-mx-md-child-not-last > :not(:last-child),
  .sm-up-mx-md-child > * {
    margin-inline: 22px !important;
  }
  .sm-up-p-md-child-not-last > :not(:last-child),
  .sm-up-p-md-child > * {
    padding: 22px !important;
  }
  .sm-up-pt-md-child-not-last > :not(:last-child),
  .sm-up-pt-md-child > * {
    padding-top: 22px !important;
  }
  .sm-up-pb-md-child-not-last > :not(:last-child),
  .sm-up-pb-md-child > * {
    padding-bottom: 22px !important;
  }
  .sm-up-py-md-child-not-last > :not(:last-child),
  .sm-up-py-md-child > * {
    padding-block: 22px !important;
  }
  .sm-up-pl-md-child-not-last > :not(:last-child),
  .sm-up-pl-md-child > * {
    padding-left: 22px !important;
  }
  .sm-up-pr-md-child-not-last > :not(:last-child),
  .sm-up-pr-md-child > * {
    padding-right: 22px !important;
  }
  .sm-up-px-md-child-not-last > :not(:last-child),
  .sm-up-px-md-child > * {
    padding-inline: 22px !important;
  }
  .sm-up-m-lg-child-not-last > :not(:last-child),
  .sm-up-m-lg-child > * {
    margin: 32px !important;
  }
  .sm-up-mt-lg-child-not-last > :not(:last-child),
  .sm-up-mt-lg-child > * {
    margin-top: 32px !important;
  }
  .sm-up-mb-lg-child-not-last > :not(:last-child),
  .sm-up-mb-lg-child > * {
    margin-bottom: 32px !important;
  }
  .sm-up-my-lg-child-not-last > :not(:last-child),
  .sm-up-my-lg-child > * {
    margin-block: 32px !important;
  }
  .sm-up-ml-lg-child-not-last > :not(:last-child),
  .sm-up-ml-lg-child > * {
    margin-left: 32px !important;
  }
  .sm-up-mr-lg-child-not-last > :not(:last-child),
  .sm-up-mr-lg-child > * {
    margin-right: 32px !important;
  }
  .sm-up-mx-lg-child-not-last > :not(:last-child),
  .sm-up-mx-lg-child > * {
    margin-inline: 32px !important;
  }
  .sm-up-p-lg-child-not-last > :not(:last-child),
  .sm-up-p-lg-child > * {
    padding: 32px !important;
  }
  .sm-up-pt-lg-child-not-last > :not(:last-child),
  .sm-up-pt-lg-child > * {
    padding-top: 32px !important;
  }
  .sm-up-pb-lg-child-not-last > :not(:last-child),
  .sm-up-pb-lg-child > * {
    padding-bottom: 32px !important;
  }
  .sm-up-py-lg-child-not-last > :not(:last-child),
  .sm-up-py-lg-child > * {
    padding-block: 32px !important;
  }
  .sm-up-pl-lg-child-not-last > :not(:last-child),
  .sm-up-pl-lg-child > * {
    padding-left: 32px !important;
  }
  .sm-up-pr-lg-child-not-last > :not(:last-child),
  .sm-up-pr-lg-child > * {
    padding-right: 32px !important;
  }
  .sm-up-px-lg-child-not-last > :not(:last-child),
  .sm-up-px-lg-child > * {
    padding-inline: 32px !important;
  }
  .sm-up-m-xl-child-not-last > :not(:last-child),
  .sm-up-m-xl-child > * {
    margin: 48px !important;
  }
  .sm-up-mt-xl-child-not-last > :not(:last-child),
  .sm-up-mt-xl-child > * {
    margin-top: 48px !important;
  }
  .sm-up-mb-xl-child-not-last > :not(:last-child),
  .sm-up-mb-xl-child > * {
    margin-bottom: 48px !important;
  }
  .sm-up-my-xl-child-not-last > :not(:last-child),
  .sm-up-my-xl-child > * {
    margin-block: 48px !important;
  }
  .sm-up-ml-xl-child-not-last > :not(:last-child),
  .sm-up-ml-xl-child > * {
    margin-left: 48px !important;
  }
  .sm-up-mr-xl-child-not-last > :not(:last-child),
  .sm-up-mr-xl-child > * {
    margin-right: 48px !important;
  }
  .sm-up-mx-xl-child-not-last > :not(:last-child),
  .sm-up-mx-xl-child > * {
    margin-inline: 48px !important;
  }
  .sm-up-p-xl-child-not-last > :not(:last-child),
  .sm-up-p-xl-child > * {
    padding: 48px !important;
  }
  .sm-up-pt-xl-child-not-last > :not(:last-child),
  .sm-up-pt-xl-child > * {
    padding-top: 48px !important;
  }
  .sm-up-pb-xl-child-not-last > :not(:last-child),
  .sm-up-pb-xl-child > * {
    padding-bottom: 48px !important;
  }
  .sm-up-py-xl-child-not-last > :not(:last-child),
  .sm-up-py-xl-child > * {
    padding-block: 48px !important;
  }
  .sm-up-pl-xl-child-not-last > :not(:last-child),
  .sm-up-pl-xl-child > * {
    padding-left: 48px !important;
  }
  .sm-up-pr-xl-child-not-last > :not(:last-child),
  .sm-up-pr-xl-child > * {
    padding-right: 48px !important;
  }
  .sm-up-px-xl-child-not-last > :not(:last-child),
  .sm-up-px-xl-child > * {
    padding-inline: 48px !important;
  }
  .sm-up-m-xxl-child-not-last > :not(:last-child),
  .sm-up-m-xxl-child > * {
    margin: 80px !important;
  }
  .sm-up-mt-xxl-child-not-last > :not(:last-child),
  .sm-up-mt-xxl-child > * {
    margin-top: 80px !important;
  }
  .sm-up-mb-xxl-child-not-last > :not(:last-child),
  .sm-up-mb-xxl-child > * {
    margin-bottom: 80px !important;
  }
  .sm-up-my-xxl-child-not-last > :not(:last-child),
  .sm-up-my-xxl-child > * {
    margin-block: 80px !important;
  }
  .sm-up-ml-xxl-child-not-last > :not(:last-child),
  .sm-up-ml-xxl-child > * {
    margin-left: 80px !important;
  }
  .sm-up-mr-xxl-child-not-last > :not(:last-child),
  .sm-up-mr-xxl-child > * {
    margin-right: 80px !important;
  }
  .sm-up-mx-xxl-child-not-last > :not(:last-child),
  .sm-up-mx-xxl-child > * {
    margin-inline: 80px !important;
  }
  .sm-up-p-xxl-child-not-last > :not(:last-child),
  .sm-up-p-xxl-child > * {
    padding: 80px !important;
  }
  .sm-up-pt-xxl-child-not-last > :not(:last-child),
  .sm-up-pt-xxl-child > * {
    padding-top: 80px !important;
  }
  .sm-up-pb-xxl-child-not-last > :not(:last-child),
  .sm-up-pb-xxl-child > * {
    padding-bottom: 80px !important;
  }
  .sm-up-py-xxl-child-not-last > :not(:last-child),
  .sm-up-py-xxl-child > * {
    padding-block: 80px !important;
  }
  .sm-up-pl-xxl-child-not-last > :not(:last-child),
  .sm-up-pl-xxl-child > * {
    padding-left: 80px !important;
  }
  .sm-up-pr-xxl-child-not-last > :not(:last-child),
  .sm-up-pr-xxl-child > * {
    padding-right: 80px !important;
  }
  .sm-up-px-xxl-child-not-last > :not(:last-child),
  .sm-up-px-xxl-child > * {
    padding-inline: 80px !important;
  }
  .sm-up-m-fluid-child-not-last > :not(:last-child),
  .sm-up-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .sm-up-mt-fluid-child-not-last > :not(:last-child),
  .sm-up-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .sm-up-mb-fluid-child-not-last > :not(:last-child),
  .sm-up-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .sm-up-my-fluid-child-not-last > :not(:last-child),
  .sm-up-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .sm-up-ml-fluid-child-not-last > :not(:last-child),
  .sm-up-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .sm-up-mr-fluid-child-not-last > :not(:last-child),
  .sm-up-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .sm-up-mx-fluid-child-not-last > :not(:last-child),
  .sm-up-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .sm-up-p-fluid-child-not-last > :not(:last-child),
  .sm-up-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .sm-up-pt-fluid-child-not-last > :not(:last-child),
  .sm-up-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .sm-up-pb-fluid-child-not-last > :not(:last-child),
  .sm-up-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .sm-up-py-fluid-child-not-last > :not(:last-child),
  .sm-up-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .sm-up-pl-fluid-child-not-last > :not(:last-child),
  .sm-up-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .sm-up-pr-fluid-child-not-last > :not(:last-child),
  .sm-up-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .sm-up-px-fluid-child-not-last > :not(:last-child),
  .sm-up-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
}
@media (min-width: 48rem) {
  .md-up-m-0-child-not-last > :not(:last-child),
  .md-up-m-0-child > * {
    margin: 0 !important;
  }
  .md-up-mt-0-child-not-last > :not(:last-child),
  .md-up-mt-0-child > * {
    margin-top: 0 !important;
  }
  .md-up-mb-0-child-not-last > :not(:last-child),
  .md-up-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .md-up-my-0-child-not-last > :not(:last-child),
  .md-up-my-0-child > * {
    margin-block: 0 !important;
  }
  .md-up-ml-0-child-not-last > :not(:last-child),
  .md-up-ml-0-child > * {
    margin-left: 0 !important;
  }
  .md-up-mr-0-child-not-last > :not(:last-child),
  .md-up-mr-0-child > * {
    margin-right: 0 !important;
  }
  .md-up-mx-0-child-not-last > :not(:last-child),
  .md-up-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .md-up-p-0-child-not-last > :not(:last-child),
  .md-up-p-0-child > * {
    padding: 0 !important;
  }
  .md-up-pt-0-child-not-last > :not(:last-child),
  .md-up-pt-0-child > * {
    padding-top: 0 !important;
  }
  .md-up-pb-0-child-not-last > :not(:last-child),
  .md-up-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .md-up-py-0-child-not-last > :not(:last-child),
  .md-up-py-0-child > * {
    padding-block: 0 !important;
  }
  .md-up-pl-0-child-not-last > :not(:last-child),
  .md-up-pl-0-child > * {
    padding-left: 0 !important;
  }
  .md-up-pr-0-child-not-last > :not(:last-child),
  .md-up-pr-0-child > * {
    padding-right: 0 !important;
  }
  .md-up-px-0-child-not-last > :not(:last-child),
  .md-up-px-0-child > * {
    padding-inline: 0 !important;
  }
  .md-up-m-xs-child-not-last > :not(:last-child),
  .md-up-m-xs-child > * {
    margin: 8px !important;
  }
  .md-up-mt-xs-child-not-last > :not(:last-child),
  .md-up-mt-xs-child > * {
    margin-top: 8px !important;
  }
  .md-up-mb-xs-child-not-last > :not(:last-child),
  .md-up-mb-xs-child > * {
    margin-bottom: 8px !important;
  }
  .md-up-my-xs-child-not-last > :not(:last-child),
  .md-up-my-xs-child > * {
    margin-block: 8px !important;
  }
  .md-up-ml-xs-child-not-last > :not(:last-child),
  .md-up-ml-xs-child > * {
    margin-left: 8px !important;
  }
  .md-up-mr-xs-child-not-last > :not(:last-child),
  .md-up-mr-xs-child > * {
    margin-right: 8px !important;
  }
  .md-up-mx-xs-child-not-last > :not(:last-child),
  .md-up-mx-xs-child > * {
    margin-inline: 8px !important;
  }
  .md-up-p-xs-child-not-last > :not(:last-child),
  .md-up-p-xs-child > * {
    padding: 8px !important;
  }
  .md-up-pt-xs-child-not-last > :not(:last-child),
  .md-up-pt-xs-child > * {
    padding-top: 8px !important;
  }
  .md-up-pb-xs-child-not-last > :not(:last-child),
  .md-up-pb-xs-child > * {
    padding-bottom: 8px !important;
  }
  .md-up-py-xs-child-not-last > :not(:last-child),
  .md-up-py-xs-child > * {
    padding-block: 8px !important;
  }
  .md-up-pl-xs-child-not-last > :not(:last-child),
  .md-up-pl-xs-child > * {
    padding-left: 8px !important;
  }
  .md-up-pr-xs-child-not-last > :not(:last-child),
  .md-up-pr-xs-child > * {
    padding-right: 8px !important;
  }
  .md-up-px-xs-child-not-last > :not(:last-child),
  .md-up-px-xs-child > * {
    padding-inline: 8px !important;
  }
  .md-up-m-sm-child-not-last > :not(:last-child),
  .md-up-m-sm-child > * {
    margin: 16px !important;
  }
  .md-up-mt-sm-child-not-last > :not(:last-child),
  .md-up-mt-sm-child > * {
    margin-top: 16px !important;
  }
  .md-up-mb-sm-child-not-last > :not(:last-child),
  .md-up-mb-sm-child > * {
    margin-bottom: 16px !important;
  }
  .md-up-my-sm-child-not-last > :not(:last-child),
  .md-up-my-sm-child > * {
    margin-block: 16px !important;
  }
  .md-up-ml-sm-child-not-last > :not(:last-child),
  .md-up-ml-sm-child > * {
    margin-left: 16px !important;
  }
  .md-up-mr-sm-child-not-last > :not(:last-child),
  .md-up-mr-sm-child > * {
    margin-right: 16px !important;
  }
  .md-up-mx-sm-child-not-last > :not(:last-child),
  .md-up-mx-sm-child > * {
    margin-inline: 16px !important;
  }
  .md-up-p-sm-child-not-last > :not(:last-child),
  .md-up-p-sm-child > * {
    padding: 16px !important;
  }
  .md-up-pt-sm-child-not-last > :not(:last-child),
  .md-up-pt-sm-child > * {
    padding-top: 16px !important;
  }
  .md-up-pb-sm-child-not-last > :not(:last-child),
  .md-up-pb-sm-child > * {
    padding-bottom: 16px !important;
  }
  .md-up-py-sm-child-not-last > :not(:last-child),
  .md-up-py-sm-child > * {
    padding-block: 16px !important;
  }
  .md-up-pl-sm-child-not-last > :not(:last-child),
  .md-up-pl-sm-child > * {
    padding-left: 16px !important;
  }
  .md-up-pr-sm-child-not-last > :not(:last-child),
  .md-up-pr-sm-child > * {
    padding-right: 16px !important;
  }
  .md-up-px-sm-child-not-last > :not(:last-child),
  .md-up-px-sm-child > * {
    padding-inline: 16px !important;
  }
  .md-up-m-md-child-not-last > :not(:last-child),
  .md-up-m-md-child > * {
    margin: 22px !important;
  }
  .md-up-mt-md-child-not-last > :not(:last-child),
  .md-up-mt-md-child > * {
    margin-top: 22px !important;
  }
  .md-up-mb-md-child-not-last > :not(:last-child),
  .md-up-mb-md-child > * {
    margin-bottom: 22px !important;
  }
  .md-up-my-md-child-not-last > :not(:last-child),
  .md-up-my-md-child > * {
    margin-block: 22px !important;
  }
  .md-up-ml-md-child-not-last > :not(:last-child),
  .md-up-ml-md-child > * {
    margin-left: 22px !important;
  }
  .md-up-mr-md-child-not-last > :not(:last-child),
  .md-up-mr-md-child > * {
    margin-right: 22px !important;
  }
  .md-up-mx-md-child-not-last > :not(:last-child),
  .md-up-mx-md-child > * {
    margin-inline: 22px !important;
  }
  .md-up-p-md-child-not-last > :not(:last-child),
  .md-up-p-md-child > * {
    padding: 22px !important;
  }
  .md-up-pt-md-child-not-last > :not(:last-child),
  .md-up-pt-md-child > * {
    padding-top: 22px !important;
  }
  .md-up-pb-md-child-not-last > :not(:last-child),
  .md-up-pb-md-child > * {
    padding-bottom: 22px !important;
  }
  .md-up-py-md-child-not-last > :not(:last-child),
  .md-up-py-md-child > * {
    padding-block: 22px !important;
  }
  .md-up-pl-md-child-not-last > :not(:last-child),
  .md-up-pl-md-child > * {
    padding-left: 22px !important;
  }
  .md-up-pr-md-child-not-last > :not(:last-child),
  .md-up-pr-md-child > * {
    padding-right: 22px !important;
  }
  .md-up-px-md-child-not-last > :not(:last-child),
  .md-up-px-md-child > * {
    padding-inline: 22px !important;
  }
  .md-up-m-lg-child-not-last > :not(:last-child),
  .md-up-m-lg-child > * {
    margin: 32px !important;
  }
  .md-up-mt-lg-child-not-last > :not(:last-child),
  .md-up-mt-lg-child > * {
    margin-top: 32px !important;
  }
  .md-up-mb-lg-child-not-last > :not(:last-child),
  .md-up-mb-lg-child > * {
    margin-bottom: 32px !important;
  }
  .md-up-my-lg-child-not-last > :not(:last-child),
  .md-up-my-lg-child > * {
    margin-block: 32px !important;
  }
  .md-up-ml-lg-child-not-last > :not(:last-child),
  .md-up-ml-lg-child > * {
    margin-left: 32px !important;
  }
  .md-up-mr-lg-child-not-last > :not(:last-child),
  .md-up-mr-lg-child > * {
    margin-right: 32px !important;
  }
  .md-up-mx-lg-child-not-last > :not(:last-child),
  .md-up-mx-lg-child > * {
    margin-inline: 32px !important;
  }
  .md-up-p-lg-child-not-last > :not(:last-child),
  .md-up-p-lg-child > * {
    padding: 32px !important;
  }
  .md-up-pt-lg-child-not-last > :not(:last-child),
  .md-up-pt-lg-child > * {
    padding-top: 32px !important;
  }
  .md-up-pb-lg-child-not-last > :not(:last-child),
  .md-up-pb-lg-child > * {
    padding-bottom: 32px !important;
  }
  .md-up-py-lg-child-not-last > :not(:last-child),
  .md-up-py-lg-child > * {
    padding-block: 32px !important;
  }
  .md-up-pl-lg-child-not-last > :not(:last-child),
  .md-up-pl-lg-child > * {
    padding-left: 32px !important;
  }
  .md-up-pr-lg-child-not-last > :not(:last-child),
  .md-up-pr-lg-child > * {
    padding-right: 32px !important;
  }
  .md-up-px-lg-child-not-last > :not(:last-child),
  .md-up-px-lg-child > * {
    padding-inline: 32px !important;
  }
  .md-up-m-xl-child-not-last > :not(:last-child),
  .md-up-m-xl-child > * {
    margin: 48px !important;
  }
  .md-up-mt-xl-child-not-last > :not(:last-child),
  .md-up-mt-xl-child > * {
    margin-top: 48px !important;
  }
  .md-up-mb-xl-child-not-last > :not(:last-child),
  .md-up-mb-xl-child > * {
    margin-bottom: 48px !important;
  }
  .md-up-my-xl-child-not-last > :not(:last-child),
  .md-up-my-xl-child > * {
    margin-block: 48px !important;
  }
  .md-up-ml-xl-child-not-last > :not(:last-child),
  .md-up-ml-xl-child > * {
    margin-left: 48px !important;
  }
  .md-up-mr-xl-child-not-last > :not(:last-child),
  .md-up-mr-xl-child > * {
    margin-right: 48px !important;
  }
  .md-up-mx-xl-child-not-last > :not(:last-child),
  .md-up-mx-xl-child > * {
    margin-inline: 48px !important;
  }
  .md-up-p-xl-child-not-last > :not(:last-child),
  .md-up-p-xl-child > * {
    padding: 48px !important;
  }
  .md-up-pt-xl-child-not-last > :not(:last-child),
  .md-up-pt-xl-child > * {
    padding-top: 48px !important;
  }
  .md-up-pb-xl-child-not-last > :not(:last-child),
  .md-up-pb-xl-child > * {
    padding-bottom: 48px !important;
  }
  .md-up-py-xl-child-not-last > :not(:last-child),
  .md-up-py-xl-child > * {
    padding-block: 48px !important;
  }
  .md-up-pl-xl-child-not-last > :not(:last-child),
  .md-up-pl-xl-child > * {
    padding-left: 48px !important;
  }
  .md-up-pr-xl-child-not-last > :not(:last-child),
  .md-up-pr-xl-child > * {
    padding-right: 48px !important;
  }
  .md-up-px-xl-child-not-last > :not(:last-child),
  .md-up-px-xl-child > * {
    padding-inline: 48px !important;
  }
  .md-up-m-xxl-child-not-last > :not(:last-child),
  .md-up-m-xxl-child > * {
    margin: 80px !important;
  }
  .md-up-mt-xxl-child-not-last > :not(:last-child),
  .md-up-mt-xxl-child > * {
    margin-top: 80px !important;
  }
  .md-up-mb-xxl-child-not-last > :not(:last-child),
  .md-up-mb-xxl-child > * {
    margin-bottom: 80px !important;
  }
  .md-up-my-xxl-child-not-last > :not(:last-child),
  .md-up-my-xxl-child > * {
    margin-block: 80px !important;
  }
  .md-up-ml-xxl-child-not-last > :not(:last-child),
  .md-up-ml-xxl-child > * {
    margin-left: 80px !important;
  }
  .md-up-mr-xxl-child-not-last > :not(:last-child),
  .md-up-mr-xxl-child > * {
    margin-right: 80px !important;
  }
  .md-up-mx-xxl-child-not-last > :not(:last-child),
  .md-up-mx-xxl-child > * {
    margin-inline: 80px !important;
  }
  .md-up-p-xxl-child-not-last > :not(:last-child),
  .md-up-p-xxl-child > * {
    padding: 80px !important;
  }
  .md-up-pt-xxl-child-not-last > :not(:last-child),
  .md-up-pt-xxl-child > * {
    padding-top: 80px !important;
  }
  .md-up-pb-xxl-child-not-last > :not(:last-child),
  .md-up-pb-xxl-child > * {
    padding-bottom: 80px !important;
  }
  .md-up-py-xxl-child-not-last > :not(:last-child),
  .md-up-py-xxl-child > * {
    padding-block: 80px !important;
  }
  .md-up-pl-xxl-child-not-last > :not(:last-child),
  .md-up-pl-xxl-child > * {
    padding-left: 80px !important;
  }
  .md-up-pr-xxl-child-not-last > :not(:last-child),
  .md-up-pr-xxl-child > * {
    padding-right: 80px !important;
  }
  .md-up-px-xxl-child-not-last > :not(:last-child),
  .md-up-px-xxl-child > * {
    padding-inline: 80px !important;
  }
  .md-up-m-fluid-child-not-last > :not(:last-child),
  .md-up-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .md-up-mt-fluid-child-not-last > :not(:last-child),
  .md-up-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .md-up-mb-fluid-child-not-last > :not(:last-child),
  .md-up-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .md-up-my-fluid-child-not-last > :not(:last-child),
  .md-up-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .md-up-ml-fluid-child-not-last > :not(:last-child),
  .md-up-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .md-up-mr-fluid-child-not-last > :not(:last-child),
  .md-up-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .md-up-mx-fluid-child-not-last > :not(:last-child),
  .md-up-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .md-up-p-fluid-child-not-last > :not(:last-child),
  .md-up-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .md-up-pt-fluid-child-not-last > :not(:last-child),
  .md-up-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .md-up-pb-fluid-child-not-last > :not(:last-child),
  .md-up-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .md-up-py-fluid-child-not-last > :not(:last-child),
  .md-up-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .md-up-pl-fluid-child-not-last > :not(:last-child),
  .md-up-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .md-up-pr-fluid-child-not-last > :not(:last-child),
  .md-up-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .md-up-px-fluid-child-not-last > :not(:last-child),
  .md-up-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
}
@media (min-width: 64rem) {
  .lg-up-m-0-child-not-last > :not(:last-child),
  .lg-up-m-0-child > * {
    margin: 0 !important;
  }
  .lg-up-mt-0-child-not-last > :not(:last-child),
  .lg-up-mt-0-child > * {
    margin-top: 0 !important;
  }
  .lg-up-mb-0-child-not-last > :not(:last-child),
  .lg-up-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .lg-up-my-0-child-not-last > :not(:last-child),
  .lg-up-my-0-child > * {
    margin-block: 0 !important;
  }
  .lg-up-ml-0-child-not-last > :not(:last-child),
  .lg-up-ml-0-child > * {
    margin-left: 0 !important;
  }
  .lg-up-mr-0-child-not-last > :not(:last-child),
  .lg-up-mr-0-child > * {
    margin-right: 0 !important;
  }
  .lg-up-mx-0-child-not-last > :not(:last-child),
  .lg-up-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .lg-up-p-0-child-not-last > :not(:last-child),
  .lg-up-p-0-child > * {
    padding: 0 !important;
  }
  .lg-up-pt-0-child-not-last > :not(:last-child),
  .lg-up-pt-0-child > * {
    padding-top: 0 !important;
  }
  .lg-up-pb-0-child-not-last > :not(:last-child),
  .lg-up-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .lg-up-py-0-child-not-last > :not(:last-child),
  .lg-up-py-0-child > * {
    padding-block: 0 !important;
  }
  .lg-up-pl-0-child-not-last > :not(:last-child),
  .lg-up-pl-0-child > * {
    padding-left: 0 !important;
  }
  .lg-up-pr-0-child-not-last > :not(:last-child),
  .lg-up-pr-0-child > * {
    padding-right: 0 !important;
  }
  .lg-up-px-0-child-not-last > :not(:last-child),
  .lg-up-px-0-child > * {
    padding-inline: 0 !important;
  }
  .lg-up-m-xs-child-not-last > :not(:last-child),
  .lg-up-m-xs-child > * {
    margin: 8px !important;
  }
  .lg-up-mt-xs-child-not-last > :not(:last-child),
  .lg-up-mt-xs-child > * {
    margin-top: 8px !important;
  }
  .lg-up-mb-xs-child-not-last > :not(:last-child),
  .lg-up-mb-xs-child > * {
    margin-bottom: 8px !important;
  }
  .lg-up-my-xs-child-not-last > :not(:last-child),
  .lg-up-my-xs-child > * {
    margin-block: 8px !important;
  }
  .lg-up-ml-xs-child-not-last > :not(:last-child),
  .lg-up-ml-xs-child > * {
    margin-left: 8px !important;
  }
  .lg-up-mr-xs-child-not-last > :not(:last-child),
  .lg-up-mr-xs-child > * {
    margin-right: 8px !important;
  }
  .lg-up-mx-xs-child-not-last > :not(:last-child),
  .lg-up-mx-xs-child > * {
    margin-inline: 8px !important;
  }
  .lg-up-p-xs-child-not-last > :not(:last-child),
  .lg-up-p-xs-child > * {
    padding: 8px !important;
  }
  .lg-up-pt-xs-child-not-last > :not(:last-child),
  .lg-up-pt-xs-child > * {
    padding-top: 8px !important;
  }
  .lg-up-pb-xs-child-not-last > :not(:last-child),
  .lg-up-pb-xs-child > * {
    padding-bottom: 8px !important;
  }
  .lg-up-py-xs-child-not-last > :not(:last-child),
  .lg-up-py-xs-child > * {
    padding-block: 8px !important;
  }
  .lg-up-pl-xs-child-not-last > :not(:last-child),
  .lg-up-pl-xs-child > * {
    padding-left: 8px !important;
  }
  .lg-up-pr-xs-child-not-last > :not(:last-child),
  .lg-up-pr-xs-child > * {
    padding-right: 8px !important;
  }
  .lg-up-px-xs-child-not-last > :not(:last-child),
  .lg-up-px-xs-child > * {
    padding-inline: 8px !important;
  }
  .lg-up-m-sm-child-not-last > :not(:last-child),
  .lg-up-m-sm-child > * {
    margin: 16px !important;
  }
  .lg-up-mt-sm-child-not-last > :not(:last-child),
  .lg-up-mt-sm-child > * {
    margin-top: 16px !important;
  }
  .lg-up-mb-sm-child-not-last > :not(:last-child),
  .lg-up-mb-sm-child > * {
    margin-bottom: 16px !important;
  }
  .lg-up-my-sm-child-not-last > :not(:last-child),
  .lg-up-my-sm-child > * {
    margin-block: 16px !important;
  }
  .lg-up-ml-sm-child-not-last > :not(:last-child),
  .lg-up-ml-sm-child > * {
    margin-left: 16px !important;
  }
  .lg-up-mr-sm-child-not-last > :not(:last-child),
  .lg-up-mr-sm-child > * {
    margin-right: 16px !important;
  }
  .lg-up-mx-sm-child-not-last > :not(:last-child),
  .lg-up-mx-sm-child > * {
    margin-inline: 16px !important;
  }
  .lg-up-p-sm-child-not-last > :not(:last-child),
  .lg-up-p-sm-child > * {
    padding: 16px !important;
  }
  .lg-up-pt-sm-child-not-last > :not(:last-child),
  .lg-up-pt-sm-child > * {
    padding-top: 16px !important;
  }
  .lg-up-pb-sm-child-not-last > :not(:last-child),
  .lg-up-pb-sm-child > * {
    padding-bottom: 16px !important;
  }
  .lg-up-py-sm-child-not-last > :not(:last-child),
  .lg-up-py-sm-child > * {
    padding-block: 16px !important;
  }
  .lg-up-pl-sm-child-not-last > :not(:last-child),
  .lg-up-pl-sm-child > * {
    padding-left: 16px !important;
  }
  .lg-up-pr-sm-child-not-last > :not(:last-child),
  .lg-up-pr-sm-child > * {
    padding-right: 16px !important;
  }
  .lg-up-px-sm-child-not-last > :not(:last-child),
  .lg-up-px-sm-child > * {
    padding-inline: 16px !important;
  }
  .lg-up-m-md-child-not-last > :not(:last-child),
  .lg-up-m-md-child > * {
    margin: 22px !important;
  }
  .lg-up-mt-md-child-not-last > :not(:last-child),
  .lg-up-mt-md-child > * {
    margin-top: 22px !important;
  }
  .lg-up-mb-md-child-not-last > :not(:last-child),
  .lg-up-mb-md-child > * {
    margin-bottom: 22px !important;
  }
  .lg-up-my-md-child-not-last > :not(:last-child),
  .lg-up-my-md-child > * {
    margin-block: 22px !important;
  }
  .lg-up-ml-md-child-not-last > :not(:last-child),
  .lg-up-ml-md-child > * {
    margin-left: 22px !important;
  }
  .lg-up-mr-md-child-not-last > :not(:last-child),
  .lg-up-mr-md-child > * {
    margin-right: 22px !important;
  }
  .lg-up-mx-md-child-not-last > :not(:last-child),
  .lg-up-mx-md-child > * {
    margin-inline: 22px !important;
  }
  .lg-up-p-md-child-not-last > :not(:last-child),
  .lg-up-p-md-child > * {
    padding: 22px !important;
  }
  .lg-up-pt-md-child-not-last > :not(:last-child),
  .lg-up-pt-md-child > * {
    padding-top: 22px !important;
  }
  .lg-up-pb-md-child-not-last > :not(:last-child),
  .lg-up-pb-md-child > * {
    padding-bottom: 22px !important;
  }
  .lg-up-py-md-child-not-last > :not(:last-child),
  .lg-up-py-md-child > * {
    padding-block: 22px !important;
  }
  .lg-up-pl-md-child-not-last > :not(:last-child),
  .lg-up-pl-md-child > * {
    padding-left: 22px !important;
  }
  .lg-up-pr-md-child-not-last > :not(:last-child),
  .lg-up-pr-md-child > * {
    padding-right: 22px !important;
  }
  .lg-up-px-md-child-not-last > :not(:last-child),
  .lg-up-px-md-child > * {
    padding-inline: 22px !important;
  }
  .lg-up-m-lg-child-not-last > :not(:last-child),
  .lg-up-m-lg-child > * {
    margin: 32px !important;
  }
  .lg-up-mt-lg-child-not-last > :not(:last-child),
  .lg-up-mt-lg-child > * {
    margin-top: 32px !important;
  }
  .lg-up-mb-lg-child-not-last > :not(:last-child),
  .lg-up-mb-lg-child > * {
    margin-bottom: 32px !important;
  }
  .lg-up-my-lg-child-not-last > :not(:last-child),
  .lg-up-my-lg-child > * {
    margin-block: 32px !important;
  }
  .lg-up-ml-lg-child-not-last > :not(:last-child),
  .lg-up-ml-lg-child > * {
    margin-left: 32px !important;
  }
  .lg-up-mr-lg-child-not-last > :not(:last-child),
  .lg-up-mr-lg-child > * {
    margin-right: 32px !important;
  }
  .lg-up-mx-lg-child-not-last > :not(:last-child),
  .lg-up-mx-lg-child > * {
    margin-inline: 32px !important;
  }
  .lg-up-p-lg-child-not-last > :not(:last-child),
  .lg-up-p-lg-child > * {
    padding: 32px !important;
  }
  .lg-up-pt-lg-child-not-last > :not(:last-child),
  .lg-up-pt-lg-child > * {
    padding-top: 32px !important;
  }
  .lg-up-pb-lg-child-not-last > :not(:last-child),
  .lg-up-pb-lg-child > * {
    padding-bottom: 32px !important;
  }
  .lg-up-py-lg-child-not-last > :not(:last-child),
  .lg-up-py-lg-child > * {
    padding-block: 32px !important;
  }
  .lg-up-pl-lg-child-not-last > :not(:last-child),
  .lg-up-pl-lg-child > * {
    padding-left: 32px !important;
  }
  .lg-up-pr-lg-child-not-last > :not(:last-child),
  .lg-up-pr-lg-child > * {
    padding-right: 32px !important;
  }
  .lg-up-px-lg-child-not-last > :not(:last-child),
  .lg-up-px-lg-child > * {
    padding-inline: 32px !important;
  }
  .lg-up-m-xl-child-not-last > :not(:last-child),
  .lg-up-m-xl-child > * {
    margin: 48px !important;
  }
  .lg-up-mt-xl-child-not-last > :not(:last-child),
  .lg-up-mt-xl-child > * {
    margin-top: 48px !important;
  }
  .lg-up-mb-xl-child-not-last > :not(:last-child),
  .lg-up-mb-xl-child > * {
    margin-bottom: 48px !important;
  }
  .lg-up-my-xl-child-not-last > :not(:last-child),
  .lg-up-my-xl-child > * {
    margin-block: 48px !important;
  }
  .lg-up-ml-xl-child-not-last > :not(:last-child),
  .lg-up-ml-xl-child > * {
    margin-left: 48px !important;
  }
  .lg-up-mr-xl-child-not-last > :not(:last-child),
  .lg-up-mr-xl-child > * {
    margin-right: 48px !important;
  }
  .lg-up-mx-xl-child-not-last > :not(:last-child),
  .lg-up-mx-xl-child > * {
    margin-inline: 48px !important;
  }
  .lg-up-p-xl-child-not-last > :not(:last-child),
  .lg-up-p-xl-child > * {
    padding: 48px !important;
  }
  .lg-up-pt-xl-child-not-last > :not(:last-child),
  .lg-up-pt-xl-child > * {
    padding-top: 48px !important;
  }
  .lg-up-pb-xl-child-not-last > :not(:last-child),
  .lg-up-pb-xl-child > * {
    padding-bottom: 48px !important;
  }
  .lg-up-py-xl-child-not-last > :not(:last-child),
  .lg-up-py-xl-child > * {
    padding-block: 48px !important;
  }
  .lg-up-pl-xl-child-not-last > :not(:last-child),
  .lg-up-pl-xl-child > * {
    padding-left: 48px !important;
  }
  .lg-up-pr-xl-child-not-last > :not(:last-child),
  .lg-up-pr-xl-child > * {
    padding-right: 48px !important;
  }
  .lg-up-px-xl-child-not-last > :not(:last-child),
  .lg-up-px-xl-child > * {
    padding-inline: 48px !important;
  }
  .lg-up-m-xxl-child-not-last > :not(:last-child),
  .lg-up-m-xxl-child > * {
    margin: 80px !important;
  }
  .lg-up-mt-xxl-child-not-last > :not(:last-child),
  .lg-up-mt-xxl-child > * {
    margin-top: 80px !important;
  }
  .lg-up-mb-xxl-child-not-last > :not(:last-child),
  .lg-up-mb-xxl-child > * {
    margin-bottom: 80px !important;
  }
  .lg-up-my-xxl-child-not-last > :not(:last-child),
  .lg-up-my-xxl-child > * {
    margin-block: 80px !important;
  }
  .lg-up-ml-xxl-child-not-last > :not(:last-child),
  .lg-up-ml-xxl-child > * {
    margin-left: 80px !important;
  }
  .lg-up-mr-xxl-child-not-last > :not(:last-child),
  .lg-up-mr-xxl-child > * {
    margin-right: 80px !important;
  }
  .lg-up-mx-xxl-child-not-last > :not(:last-child),
  .lg-up-mx-xxl-child > * {
    margin-inline: 80px !important;
  }
  .lg-up-p-xxl-child-not-last > :not(:last-child),
  .lg-up-p-xxl-child > * {
    padding: 80px !important;
  }
  .lg-up-pt-xxl-child-not-last > :not(:last-child),
  .lg-up-pt-xxl-child > * {
    padding-top: 80px !important;
  }
  .lg-up-pb-xxl-child-not-last > :not(:last-child),
  .lg-up-pb-xxl-child > * {
    padding-bottom: 80px !important;
  }
  .lg-up-py-xxl-child-not-last > :not(:last-child),
  .lg-up-py-xxl-child > * {
    padding-block: 80px !important;
  }
  .lg-up-pl-xxl-child-not-last > :not(:last-child),
  .lg-up-pl-xxl-child > * {
    padding-left: 80px !important;
  }
  .lg-up-pr-xxl-child-not-last > :not(:last-child),
  .lg-up-pr-xxl-child > * {
    padding-right: 80px !important;
  }
  .lg-up-px-xxl-child-not-last > :not(:last-child),
  .lg-up-px-xxl-child > * {
    padding-inline: 80px !important;
  }
  .lg-up-m-fluid-child-not-last > :not(:last-child),
  .lg-up-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .lg-up-mt-fluid-child-not-last > :not(:last-child),
  .lg-up-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .lg-up-mb-fluid-child-not-last > :not(:last-child),
  .lg-up-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .lg-up-my-fluid-child-not-last > :not(:last-child),
  .lg-up-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .lg-up-ml-fluid-child-not-last > :not(:last-child),
  .lg-up-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .lg-up-mr-fluid-child-not-last > :not(:last-child),
  .lg-up-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .lg-up-mx-fluid-child-not-last > :not(:last-child),
  .lg-up-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .lg-up-p-fluid-child-not-last > :not(:last-child),
  .lg-up-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .lg-up-pt-fluid-child-not-last > :not(:last-child),
  .lg-up-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .lg-up-pb-fluid-child-not-last > :not(:last-child),
  .lg-up-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .lg-up-py-fluid-child-not-last > :not(:last-child),
  .lg-up-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .lg-up-pl-fluid-child-not-last > :not(:last-child),
  .lg-up-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .lg-up-pr-fluid-child-not-last > :not(:last-child),
  .lg-up-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .lg-up-px-fluid-child-not-last > :not(:last-child),
  .lg-up-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
}
@media (min-width: 80rem) {
  .xl-up-m-0-child-not-last > :not(:last-child),
  .xl-up-m-0-child > * {
    margin: 0 !important;
  }
  .xl-up-mt-0-child-not-last > :not(:last-child),
  .xl-up-mt-0-child > * {
    margin-top: 0 !important;
  }
  .xl-up-mb-0-child-not-last > :not(:last-child),
  .xl-up-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .xl-up-my-0-child-not-last > :not(:last-child),
  .xl-up-my-0-child > * {
    margin-block: 0 !important;
  }
  .xl-up-ml-0-child-not-last > :not(:last-child),
  .xl-up-ml-0-child > * {
    margin-left: 0 !important;
  }
  .xl-up-mr-0-child-not-last > :not(:last-child),
  .xl-up-mr-0-child > * {
    margin-right: 0 !important;
  }
  .xl-up-mx-0-child-not-last > :not(:last-child),
  .xl-up-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .xl-up-p-0-child-not-last > :not(:last-child),
  .xl-up-p-0-child > * {
    padding: 0 !important;
  }
  .xl-up-pt-0-child-not-last > :not(:last-child),
  .xl-up-pt-0-child > * {
    padding-top: 0 !important;
  }
  .xl-up-pb-0-child-not-last > :not(:last-child),
  .xl-up-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .xl-up-py-0-child-not-last > :not(:last-child),
  .xl-up-py-0-child > * {
    padding-block: 0 !important;
  }
  .xl-up-pl-0-child-not-last > :not(:last-child),
  .xl-up-pl-0-child > * {
    padding-left: 0 !important;
  }
  .xl-up-pr-0-child-not-last > :not(:last-child),
  .xl-up-pr-0-child > * {
    padding-right: 0 !important;
  }
  .xl-up-px-0-child-not-last > :not(:last-child),
  .xl-up-px-0-child > * {
    padding-inline: 0 !important;
  }
  .xl-up-m-xs-child-not-last > :not(:last-child),
  .xl-up-m-xs-child > * {
    margin: 8px !important;
  }
  .xl-up-mt-xs-child-not-last > :not(:last-child),
  .xl-up-mt-xs-child > * {
    margin-top: 8px !important;
  }
  .xl-up-mb-xs-child-not-last > :not(:last-child),
  .xl-up-mb-xs-child > * {
    margin-bottom: 8px !important;
  }
  .xl-up-my-xs-child-not-last > :not(:last-child),
  .xl-up-my-xs-child > * {
    margin-block: 8px !important;
  }
  .xl-up-ml-xs-child-not-last > :not(:last-child),
  .xl-up-ml-xs-child > * {
    margin-left: 8px !important;
  }
  .xl-up-mr-xs-child-not-last > :not(:last-child),
  .xl-up-mr-xs-child > * {
    margin-right: 8px !important;
  }
  .xl-up-mx-xs-child-not-last > :not(:last-child),
  .xl-up-mx-xs-child > * {
    margin-inline: 8px !important;
  }
  .xl-up-p-xs-child-not-last > :not(:last-child),
  .xl-up-p-xs-child > * {
    padding: 8px !important;
  }
  .xl-up-pt-xs-child-not-last > :not(:last-child),
  .xl-up-pt-xs-child > * {
    padding-top: 8px !important;
  }
  .xl-up-pb-xs-child-not-last > :not(:last-child),
  .xl-up-pb-xs-child > * {
    padding-bottom: 8px !important;
  }
  .xl-up-py-xs-child-not-last > :not(:last-child),
  .xl-up-py-xs-child > * {
    padding-block: 8px !important;
  }
  .xl-up-pl-xs-child-not-last > :not(:last-child),
  .xl-up-pl-xs-child > * {
    padding-left: 8px !important;
  }
  .xl-up-pr-xs-child-not-last > :not(:last-child),
  .xl-up-pr-xs-child > * {
    padding-right: 8px !important;
  }
  .xl-up-px-xs-child-not-last > :not(:last-child),
  .xl-up-px-xs-child > * {
    padding-inline: 8px !important;
  }
  .xl-up-m-sm-child-not-last > :not(:last-child),
  .xl-up-m-sm-child > * {
    margin: 16px !important;
  }
  .xl-up-mt-sm-child-not-last > :not(:last-child),
  .xl-up-mt-sm-child > * {
    margin-top: 16px !important;
  }
  .xl-up-mb-sm-child-not-last > :not(:last-child),
  .xl-up-mb-sm-child > * {
    margin-bottom: 16px !important;
  }
  .xl-up-my-sm-child-not-last > :not(:last-child),
  .xl-up-my-sm-child > * {
    margin-block: 16px !important;
  }
  .xl-up-ml-sm-child-not-last > :not(:last-child),
  .xl-up-ml-sm-child > * {
    margin-left: 16px !important;
  }
  .xl-up-mr-sm-child-not-last > :not(:last-child),
  .xl-up-mr-sm-child > * {
    margin-right: 16px !important;
  }
  .xl-up-mx-sm-child-not-last > :not(:last-child),
  .xl-up-mx-sm-child > * {
    margin-inline: 16px !important;
  }
  .xl-up-p-sm-child-not-last > :not(:last-child),
  .xl-up-p-sm-child > * {
    padding: 16px !important;
  }
  .xl-up-pt-sm-child-not-last > :not(:last-child),
  .xl-up-pt-sm-child > * {
    padding-top: 16px !important;
  }
  .xl-up-pb-sm-child-not-last > :not(:last-child),
  .xl-up-pb-sm-child > * {
    padding-bottom: 16px !important;
  }
  .xl-up-py-sm-child-not-last > :not(:last-child),
  .xl-up-py-sm-child > * {
    padding-block: 16px !important;
  }
  .xl-up-pl-sm-child-not-last > :not(:last-child),
  .xl-up-pl-sm-child > * {
    padding-left: 16px !important;
  }
  .xl-up-pr-sm-child-not-last > :not(:last-child),
  .xl-up-pr-sm-child > * {
    padding-right: 16px !important;
  }
  .xl-up-px-sm-child-not-last > :not(:last-child),
  .xl-up-px-sm-child > * {
    padding-inline: 16px !important;
  }
  .xl-up-m-md-child-not-last > :not(:last-child),
  .xl-up-m-md-child > * {
    margin: 22px !important;
  }
  .xl-up-mt-md-child-not-last > :not(:last-child),
  .xl-up-mt-md-child > * {
    margin-top: 22px !important;
  }
  .xl-up-mb-md-child-not-last > :not(:last-child),
  .xl-up-mb-md-child > * {
    margin-bottom: 22px !important;
  }
  .xl-up-my-md-child-not-last > :not(:last-child),
  .xl-up-my-md-child > * {
    margin-block: 22px !important;
  }
  .xl-up-ml-md-child-not-last > :not(:last-child),
  .xl-up-ml-md-child > * {
    margin-left: 22px !important;
  }
  .xl-up-mr-md-child-not-last > :not(:last-child),
  .xl-up-mr-md-child > * {
    margin-right: 22px !important;
  }
  .xl-up-mx-md-child-not-last > :not(:last-child),
  .xl-up-mx-md-child > * {
    margin-inline: 22px !important;
  }
  .xl-up-p-md-child-not-last > :not(:last-child),
  .xl-up-p-md-child > * {
    padding: 22px !important;
  }
  .xl-up-pt-md-child-not-last > :not(:last-child),
  .xl-up-pt-md-child > * {
    padding-top: 22px !important;
  }
  .xl-up-pb-md-child-not-last > :not(:last-child),
  .xl-up-pb-md-child > * {
    padding-bottom: 22px !important;
  }
  .xl-up-py-md-child-not-last > :not(:last-child),
  .xl-up-py-md-child > * {
    padding-block: 22px !important;
  }
  .xl-up-pl-md-child-not-last > :not(:last-child),
  .xl-up-pl-md-child > * {
    padding-left: 22px !important;
  }
  .xl-up-pr-md-child-not-last > :not(:last-child),
  .xl-up-pr-md-child > * {
    padding-right: 22px !important;
  }
  .xl-up-px-md-child-not-last > :not(:last-child),
  .xl-up-px-md-child > * {
    padding-inline: 22px !important;
  }
  .xl-up-m-lg-child-not-last > :not(:last-child),
  .xl-up-m-lg-child > * {
    margin: 32px !important;
  }
  .xl-up-mt-lg-child-not-last > :not(:last-child),
  .xl-up-mt-lg-child > * {
    margin-top: 32px !important;
  }
  .xl-up-mb-lg-child-not-last > :not(:last-child),
  .xl-up-mb-lg-child > * {
    margin-bottom: 32px !important;
  }
  .xl-up-my-lg-child-not-last > :not(:last-child),
  .xl-up-my-lg-child > * {
    margin-block: 32px !important;
  }
  .xl-up-ml-lg-child-not-last > :not(:last-child),
  .xl-up-ml-lg-child > * {
    margin-left: 32px !important;
  }
  .xl-up-mr-lg-child-not-last > :not(:last-child),
  .xl-up-mr-lg-child > * {
    margin-right: 32px !important;
  }
  .xl-up-mx-lg-child-not-last > :not(:last-child),
  .xl-up-mx-lg-child > * {
    margin-inline: 32px !important;
  }
  .xl-up-p-lg-child-not-last > :not(:last-child),
  .xl-up-p-lg-child > * {
    padding: 32px !important;
  }
  .xl-up-pt-lg-child-not-last > :not(:last-child),
  .xl-up-pt-lg-child > * {
    padding-top: 32px !important;
  }
  .xl-up-pb-lg-child-not-last > :not(:last-child),
  .xl-up-pb-lg-child > * {
    padding-bottom: 32px !important;
  }
  .xl-up-py-lg-child-not-last > :not(:last-child),
  .xl-up-py-lg-child > * {
    padding-block: 32px !important;
  }
  .xl-up-pl-lg-child-not-last > :not(:last-child),
  .xl-up-pl-lg-child > * {
    padding-left: 32px !important;
  }
  .xl-up-pr-lg-child-not-last > :not(:last-child),
  .xl-up-pr-lg-child > * {
    padding-right: 32px !important;
  }
  .xl-up-px-lg-child-not-last > :not(:last-child),
  .xl-up-px-lg-child > * {
    padding-inline: 32px !important;
  }
  .xl-up-m-xl-child-not-last > :not(:last-child),
  .xl-up-m-xl-child > * {
    margin: 48px !important;
  }
  .xl-up-mt-xl-child-not-last > :not(:last-child),
  .xl-up-mt-xl-child > * {
    margin-top: 48px !important;
  }
  .xl-up-mb-xl-child-not-last > :not(:last-child),
  .xl-up-mb-xl-child > * {
    margin-bottom: 48px !important;
  }
  .xl-up-my-xl-child-not-last > :not(:last-child),
  .xl-up-my-xl-child > * {
    margin-block: 48px !important;
  }
  .xl-up-ml-xl-child-not-last > :not(:last-child),
  .xl-up-ml-xl-child > * {
    margin-left: 48px !important;
  }
  .xl-up-mr-xl-child-not-last > :not(:last-child),
  .xl-up-mr-xl-child > * {
    margin-right: 48px !important;
  }
  .xl-up-mx-xl-child-not-last > :not(:last-child),
  .xl-up-mx-xl-child > * {
    margin-inline: 48px !important;
  }
  .xl-up-p-xl-child-not-last > :not(:last-child),
  .xl-up-p-xl-child > * {
    padding: 48px !important;
  }
  .xl-up-pt-xl-child-not-last > :not(:last-child),
  .xl-up-pt-xl-child > * {
    padding-top: 48px !important;
  }
  .xl-up-pb-xl-child-not-last > :not(:last-child),
  .xl-up-pb-xl-child > * {
    padding-bottom: 48px !important;
  }
  .xl-up-py-xl-child-not-last > :not(:last-child),
  .xl-up-py-xl-child > * {
    padding-block: 48px !important;
  }
  .xl-up-pl-xl-child-not-last > :not(:last-child),
  .xl-up-pl-xl-child > * {
    padding-left: 48px !important;
  }
  .xl-up-pr-xl-child-not-last > :not(:last-child),
  .xl-up-pr-xl-child > * {
    padding-right: 48px !important;
  }
  .xl-up-px-xl-child-not-last > :not(:last-child),
  .xl-up-px-xl-child > * {
    padding-inline: 48px !important;
  }
  .xl-up-m-xxl-child-not-last > :not(:last-child),
  .xl-up-m-xxl-child > * {
    margin: 80px !important;
  }
  .xl-up-mt-xxl-child-not-last > :not(:last-child),
  .xl-up-mt-xxl-child > * {
    margin-top: 80px !important;
  }
  .xl-up-mb-xxl-child-not-last > :not(:last-child),
  .xl-up-mb-xxl-child > * {
    margin-bottom: 80px !important;
  }
  .xl-up-my-xxl-child-not-last > :not(:last-child),
  .xl-up-my-xxl-child > * {
    margin-block: 80px !important;
  }
  .xl-up-ml-xxl-child-not-last > :not(:last-child),
  .xl-up-ml-xxl-child > * {
    margin-left: 80px !important;
  }
  .xl-up-mr-xxl-child-not-last > :not(:last-child),
  .xl-up-mr-xxl-child > * {
    margin-right: 80px !important;
  }
  .xl-up-mx-xxl-child-not-last > :not(:last-child),
  .xl-up-mx-xxl-child > * {
    margin-inline: 80px !important;
  }
  .xl-up-p-xxl-child-not-last > :not(:last-child),
  .xl-up-p-xxl-child > * {
    padding: 80px !important;
  }
  .xl-up-pt-xxl-child-not-last > :not(:last-child),
  .xl-up-pt-xxl-child > * {
    padding-top: 80px !important;
  }
  .xl-up-pb-xxl-child-not-last > :not(:last-child),
  .xl-up-pb-xxl-child > * {
    padding-bottom: 80px !important;
  }
  .xl-up-py-xxl-child-not-last > :not(:last-child),
  .xl-up-py-xxl-child > * {
    padding-block: 80px !important;
  }
  .xl-up-pl-xxl-child-not-last > :not(:last-child),
  .xl-up-pl-xxl-child > * {
    padding-left: 80px !important;
  }
  .xl-up-pr-xxl-child-not-last > :not(:last-child),
  .xl-up-pr-xxl-child > * {
    padding-right: 80px !important;
  }
  .xl-up-px-xxl-child-not-last > :not(:last-child),
  .xl-up-px-xxl-child > * {
    padding-inline: 80px !important;
  }
  .xl-up-m-fluid-child-not-last > :not(:last-child),
  .xl-up-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .xl-up-mt-fluid-child-not-last > :not(:last-child),
  .xl-up-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .xl-up-mb-fluid-child-not-last > :not(:last-child),
  .xl-up-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .xl-up-my-fluid-child-not-last > :not(:last-child),
  .xl-up-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .xl-up-ml-fluid-child-not-last > :not(:last-child),
  .xl-up-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .xl-up-mr-fluid-child-not-last > :not(:last-child),
  .xl-up-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .xl-up-mx-fluid-child-not-last > :not(:last-child),
  .xl-up-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .xl-up-p-fluid-child-not-last > :not(:last-child),
  .xl-up-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .xl-up-pt-fluid-child-not-last > :not(:last-child),
  .xl-up-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .xl-up-pb-fluid-child-not-last > :not(:last-child),
  .xl-up-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .xl-up-py-fluid-child-not-last > :not(:last-child),
  .xl-up-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .xl-up-pl-fluid-child-not-last > :not(:last-child),
  .xl-up-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .xl-up-pr-fluid-child-not-last > :not(:last-child),
  .xl-up-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .xl-up-px-fluid-child-not-last > :not(:last-child),
  .xl-up-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
}
@media (min-width: 90rem) {
  .xxl-up-m-0-child-not-last > :not(:last-child),
  .xxl-up-m-0-child > * {
    margin: 0 !important;
  }
  .xxl-up-mt-0-child-not-last > :not(:last-child),
  .xxl-up-mt-0-child > * {
    margin-top: 0 !important;
  }
  .xxl-up-mb-0-child-not-last > :not(:last-child),
  .xxl-up-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .xxl-up-my-0-child-not-last > :not(:last-child),
  .xxl-up-my-0-child > * {
    margin-block: 0 !important;
  }
  .xxl-up-ml-0-child-not-last > :not(:last-child),
  .xxl-up-ml-0-child > * {
    margin-left: 0 !important;
  }
  .xxl-up-mr-0-child-not-last > :not(:last-child),
  .xxl-up-mr-0-child > * {
    margin-right: 0 !important;
  }
  .xxl-up-mx-0-child-not-last > :not(:last-child),
  .xxl-up-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .xxl-up-p-0-child-not-last > :not(:last-child),
  .xxl-up-p-0-child > * {
    padding: 0 !important;
  }
  .xxl-up-pt-0-child-not-last > :not(:last-child),
  .xxl-up-pt-0-child > * {
    padding-top: 0 !important;
  }
  .xxl-up-pb-0-child-not-last > :not(:last-child),
  .xxl-up-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .xxl-up-py-0-child-not-last > :not(:last-child),
  .xxl-up-py-0-child > * {
    padding-block: 0 !important;
  }
  .xxl-up-pl-0-child-not-last > :not(:last-child),
  .xxl-up-pl-0-child > * {
    padding-left: 0 !important;
  }
  .xxl-up-pr-0-child-not-last > :not(:last-child),
  .xxl-up-pr-0-child > * {
    padding-right: 0 !important;
  }
  .xxl-up-px-0-child-not-last > :not(:last-child),
  .xxl-up-px-0-child > * {
    padding-inline: 0 !important;
  }
  .xxl-up-m-xs-child-not-last > :not(:last-child),
  .xxl-up-m-xs-child > * {
    margin: 8px !important;
  }
  .xxl-up-mt-xs-child-not-last > :not(:last-child),
  .xxl-up-mt-xs-child > * {
    margin-top: 8px !important;
  }
  .xxl-up-mb-xs-child-not-last > :not(:last-child),
  .xxl-up-mb-xs-child > * {
    margin-bottom: 8px !important;
  }
  .xxl-up-my-xs-child-not-last > :not(:last-child),
  .xxl-up-my-xs-child > * {
    margin-block: 8px !important;
  }
  .xxl-up-ml-xs-child-not-last > :not(:last-child),
  .xxl-up-ml-xs-child > * {
    margin-left: 8px !important;
  }
  .xxl-up-mr-xs-child-not-last > :not(:last-child),
  .xxl-up-mr-xs-child > * {
    margin-right: 8px !important;
  }
  .xxl-up-mx-xs-child-not-last > :not(:last-child),
  .xxl-up-mx-xs-child > * {
    margin-inline: 8px !important;
  }
  .xxl-up-p-xs-child-not-last > :not(:last-child),
  .xxl-up-p-xs-child > * {
    padding: 8px !important;
  }
  .xxl-up-pt-xs-child-not-last > :not(:last-child),
  .xxl-up-pt-xs-child > * {
    padding-top: 8px !important;
  }
  .xxl-up-pb-xs-child-not-last > :not(:last-child),
  .xxl-up-pb-xs-child > * {
    padding-bottom: 8px !important;
  }
  .xxl-up-py-xs-child-not-last > :not(:last-child),
  .xxl-up-py-xs-child > * {
    padding-block: 8px !important;
  }
  .xxl-up-pl-xs-child-not-last > :not(:last-child),
  .xxl-up-pl-xs-child > * {
    padding-left: 8px !important;
  }
  .xxl-up-pr-xs-child-not-last > :not(:last-child),
  .xxl-up-pr-xs-child > * {
    padding-right: 8px !important;
  }
  .xxl-up-px-xs-child-not-last > :not(:last-child),
  .xxl-up-px-xs-child > * {
    padding-inline: 8px !important;
  }
  .xxl-up-m-sm-child-not-last > :not(:last-child),
  .xxl-up-m-sm-child > * {
    margin: 16px !important;
  }
  .xxl-up-mt-sm-child-not-last > :not(:last-child),
  .xxl-up-mt-sm-child > * {
    margin-top: 16px !important;
  }
  .xxl-up-mb-sm-child-not-last > :not(:last-child),
  .xxl-up-mb-sm-child > * {
    margin-bottom: 16px !important;
  }
  .xxl-up-my-sm-child-not-last > :not(:last-child),
  .xxl-up-my-sm-child > * {
    margin-block: 16px !important;
  }
  .xxl-up-ml-sm-child-not-last > :not(:last-child),
  .xxl-up-ml-sm-child > * {
    margin-left: 16px !important;
  }
  .xxl-up-mr-sm-child-not-last > :not(:last-child),
  .xxl-up-mr-sm-child > * {
    margin-right: 16px !important;
  }
  .xxl-up-mx-sm-child-not-last > :not(:last-child),
  .xxl-up-mx-sm-child > * {
    margin-inline: 16px !important;
  }
  .xxl-up-p-sm-child-not-last > :not(:last-child),
  .xxl-up-p-sm-child > * {
    padding: 16px !important;
  }
  .xxl-up-pt-sm-child-not-last > :not(:last-child),
  .xxl-up-pt-sm-child > * {
    padding-top: 16px !important;
  }
  .xxl-up-pb-sm-child-not-last > :not(:last-child),
  .xxl-up-pb-sm-child > * {
    padding-bottom: 16px !important;
  }
  .xxl-up-py-sm-child-not-last > :not(:last-child),
  .xxl-up-py-sm-child > * {
    padding-block: 16px !important;
  }
  .xxl-up-pl-sm-child-not-last > :not(:last-child),
  .xxl-up-pl-sm-child > * {
    padding-left: 16px !important;
  }
  .xxl-up-pr-sm-child-not-last > :not(:last-child),
  .xxl-up-pr-sm-child > * {
    padding-right: 16px !important;
  }
  .xxl-up-px-sm-child-not-last > :not(:last-child),
  .xxl-up-px-sm-child > * {
    padding-inline: 16px !important;
  }
  .xxl-up-m-md-child-not-last > :not(:last-child),
  .xxl-up-m-md-child > * {
    margin: 22px !important;
  }
  .xxl-up-mt-md-child-not-last > :not(:last-child),
  .xxl-up-mt-md-child > * {
    margin-top: 22px !important;
  }
  .xxl-up-mb-md-child-not-last > :not(:last-child),
  .xxl-up-mb-md-child > * {
    margin-bottom: 22px !important;
  }
  .xxl-up-my-md-child-not-last > :not(:last-child),
  .xxl-up-my-md-child > * {
    margin-block: 22px !important;
  }
  .xxl-up-ml-md-child-not-last > :not(:last-child),
  .xxl-up-ml-md-child > * {
    margin-left: 22px !important;
  }
  .xxl-up-mr-md-child-not-last > :not(:last-child),
  .xxl-up-mr-md-child > * {
    margin-right: 22px !important;
  }
  .xxl-up-mx-md-child-not-last > :not(:last-child),
  .xxl-up-mx-md-child > * {
    margin-inline: 22px !important;
  }
  .xxl-up-p-md-child-not-last > :not(:last-child),
  .xxl-up-p-md-child > * {
    padding: 22px !important;
  }
  .xxl-up-pt-md-child-not-last > :not(:last-child),
  .xxl-up-pt-md-child > * {
    padding-top: 22px !important;
  }
  .xxl-up-pb-md-child-not-last > :not(:last-child),
  .xxl-up-pb-md-child > * {
    padding-bottom: 22px !important;
  }
  .xxl-up-py-md-child-not-last > :not(:last-child),
  .xxl-up-py-md-child > * {
    padding-block: 22px !important;
  }
  .xxl-up-pl-md-child-not-last > :not(:last-child),
  .xxl-up-pl-md-child > * {
    padding-left: 22px !important;
  }
  .xxl-up-pr-md-child-not-last > :not(:last-child),
  .xxl-up-pr-md-child > * {
    padding-right: 22px !important;
  }
  .xxl-up-px-md-child-not-last > :not(:last-child),
  .xxl-up-px-md-child > * {
    padding-inline: 22px !important;
  }
  .xxl-up-m-lg-child-not-last > :not(:last-child),
  .xxl-up-m-lg-child > * {
    margin: 32px !important;
  }
  .xxl-up-mt-lg-child-not-last > :not(:last-child),
  .xxl-up-mt-lg-child > * {
    margin-top: 32px !important;
  }
  .xxl-up-mb-lg-child-not-last > :not(:last-child),
  .xxl-up-mb-lg-child > * {
    margin-bottom: 32px !important;
  }
  .xxl-up-my-lg-child-not-last > :not(:last-child),
  .xxl-up-my-lg-child > * {
    margin-block: 32px !important;
  }
  .xxl-up-ml-lg-child-not-last > :not(:last-child),
  .xxl-up-ml-lg-child > * {
    margin-left: 32px !important;
  }
  .xxl-up-mr-lg-child-not-last > :not(:last-child),
  .xxl-up-mr-lg-child > * {
    margin-right: 32px !important;
  }
  .xxl-up-mx-lg-child-not-last > :not(:last-child),
  .xxl-up-mx-lg-child > * {
    margin-inline: 32px !important;
  }
  .xxl-up-p-lg-child-not-last > :not(:last-child),
  .xxl-up-p-lg-child > * {
    padding: 32px !important;
  }
  .xxl-up-pt-lg-child-not-last > :not(:last-child),
  .xxl-up-pt-lg-child > * {
    padding-top: 32px !important;
  }
  .xxl-up-pb-lg-child-not-last > :not(:last-child),
  .xxl-up-pb-lg-child > * {
    padding-bottom: 32px !important;
  }
  .xxl-up-py-lg-child-not-last > :not(:last-child),
  .xxl-up-py-lg-child > * {
    padding-block: 32px !important;
  }
  .xxl-up-pl-lg-child-not-last > :not(:last-child),
  .xxl-up-pl-lg-child > * {
    padding-left: 32px !important;
  }
  .xxl-up-pr-lg-child-not-last > :not(:last-child),
  .xxl-up-pr-lg-child > * {
    padding-right: 32px !important;
  }
  .xxl-up-px-lg-child-not-last > :not(:last-child),
  .xxl-up-px-lg-child > * {
    padding-inline: 32px !important;
  }
  .xxl-up-m-xl-child-not-last > :not(:last-child),
  .xxl-up-m-xl-child > * {
    margin: 48px !important;
  }
  .xxl-up-mt-xl-child-not-last > :not(:last-child),
  .xxl-up-mt-xl-child > * {
    margin-top: 48px !important;
  }
  .xxl-up-mb-xl-child-not-last > :not(:last-child),
  .xxl-up-mb-xl-child > * {
    margin-bottom: 48px !important;
  }
  .xxl-up-my-xl-child-not-last > :not(:last-child),
  .xxl-up-my-xl-child > * {
    margin-block: 48px !important;
  }
  .xxl-up-ml-xl-child-not-last > :not(:last-child),
  .xxl-up-ml-xl-child > * {
    margin-left: 48px !important;
  }
  .xxl-up-mr-xl-child-not-last > :not(:last-child),
  .xxl-up-mr-xl-child > * {
    margin-right: 48px !important;
  }
  .xxl-up-mx-xl-child-not-last > :not(:last-child),
  .xxl-up-mx-xl-child > * {
    margin-inline: 48px !important;
  }
  .xxl-up-p-xl-child-not-last > :not(:last-child),
  .xxl-up-p-xl-child > * {
    padding: 48px !important;
  }
  .xxl-up-pt-xl-child-not-last > :not(:last-child),
  .xxl-up-pt-xl-child > * {
    padding-top: 48px !important;
  }
  .xxl-up-pb-xl-child-not-last > :not(:last-child),
  .xxl-up-pb-xl-child > * {
    padding-bottom: 48px !important;
  }
  .xxl-up-py-xl-child-not-last > :not(:last-child),
  .xxl-up-py-xl-child > * {
    padding-block: 48px !important;
  }
  .xxl-up-pl-xl-child-not-last > :not(:last-child),
  .xxl-up-pl-xl-child > * {
    padding-left: 48px !important;
  }
  .xxl-up-pr-xl-child-not-last > :not(:last-child),
  .xxl-up-pr-xl-child > * {
    padding-right: 48px !important;
  }
  .xxl-up-px-xl-child-not-last > :not(:last-child),
  .xxl-up-px-xl-child > * {
    padding-inline: 48px !important;
  }
  .xxl-up-m-xxl-child-not-last > :not(:last-child),
  .xxl-up-m-xxl-child > * {
    margin: 80px !important;
  }
  .xxl-up-mt-xxl-child-not-last > :not(:last-child),
  .xxl-up-mt-xxl-child > * {
    margin-top: 80px !important;
  }
  .xxl-up-mb-xxl-child-not-last > :not(:last-child),
  .xxl-up-mb-xxl-child > * {
    margin-bottom: 80px !important;
  }
  .xxl-up-my-xxl-child-not-last > :not(:last-child),
  .xxl-up-my-xxl-child > * {
    margin-block: 80px !important;
  }
  .xxl-up-ml-xxl-child-not-last > :not(:last-child),
  .xxl-up-ml-xxl-child > * {
    margin-left: 80px !important;
  }
  .xxl-up-mr-xxl-child-not-last > :not(:last-child),
  .xxl-up-mr-xxl-child > * {
    margin-right: 80px !important;
  }
  .xxl-up-mx-xxl-child-not-last > :not(:last-child),
  .xxl-up-mx-xxl-child > * {
    margin-inline: 80px !important;
  }
  .xxl-up-p-xxl-child-not-last > :not(:last-child),
  .xxl-up-p-xxl-child > * {
    padding: 80px !important;
  }
  .xxl-up-pt-xxl-child-not-last > :not(:last-child),
  .xxl-up-pt-xxl-child > * {
    padding-top: 80px !important;
  }
  .xxl-up-pb-xxl-child-not-last > :not(:last-child),
  .xxl-up-pb-xxl-child > * {
    padding-bottom: 80px !important;
  }
  .xxl-up-py-xxl-child-not-last > :not(:last-child),
  .xxl-up-py-xxl-child > * {
    padding-block: 80px !important;
  }
  .xxl-up-pl-xxl-child-not-last > :not(:last-child),
  .xxl-up-pl-xxl-child > * {
    padding-left: 80px !important;
  }
  .xxl-up-pr-xxl-child-not-last > :not(:last-child),
  .xxl-up-pr-xxl-child > * {
    padding-right: 80px !important;
  }
  .xxl-up-px-xxl-child-not-last > :not(:last-child),
  .xxl-up-px-xxl-child > * {
    padding-inline: 80px !important;
  }
  .xxl-up-m-fluid-child-not-last > :not(:last-child),
  .xxl-up-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .xxl-up-mt-fluid-child-not-last > :not(:last-child),
  .xxl-up-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .xxl-up-mb-fluid-child-not-last > :not(:last-child),
  .xxl-up-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .xxl-up-my-fluid-child-not-last > :not(:last-child),
  .xxl-up-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .xxl-up-ml-fluid-child-not-last > :not(:last-child),
  .xxl-up-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .xxl-up-mr-fluid-child-not-last > :not(:last-child),
  .xxl-up-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .xxl-up-mx-fluid-child-not-last > :not(:last-child),
  .xxl-up-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .xxl-up-p-fluid-child-not-last > :not(:last-child),
  .xxl-up-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .xxl-up-pt-fluid-child-not-last > :not(:last-child),
  .xxl-up-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .xxl-up-pb-fluid-child-not-last > :not(:last-child),
  .xxl-up-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .xxl-up-py-fluid-child-not-last > :not(:last-child),
  .xxl-up-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .xxl-up-pl-fluid-child-not-last > :not(:last-child),
  .xxl-up-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .xxl-up-pr-fluid-child-not-last > :not(:last-child),
  .xxl-up-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .xxl-up-px-fluid-child-not-last > :not(:last-child),
  .xxl-up-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
}
.ratio-square {
  aspect-ratio: 1/1;
}
.ratio-almost-square {
  aspect-ratio: 1/0.85;
}
.ratio-landscape {
  aspect-ratio: 1/0.7;
}
.ratio-landscape-sm {
  aspect-ratio: 1/0.6;
}
.ratio-portrait {
  aspect-ratio: 1/1.3;
}
.ratio-img-txt {
  aspect-ratio: 131/174;
}
.ratio-video {
  aspect-ratio: 541/264;
}
.ratio-audio {
  aspect-ratio: 57/7;
}
.ratio-product {
  aspect-ratio: 31/22;
}
.ratio-map {
  aspect-ratio: 1440/721;
}
.ratio-map-proximity {
  aspect-ratio: 85/52;
}
.ratio-two-col-img-landscape {
  aspect-ratio: 160/107;
}
.ratio-two-col-img-portrait {
  aspect-ratio: 132/175;
}
.bg-black {
  background-color: #000;
}
.bg-very-dark-grey {
  background-color: #141414;
}
.bg-dark-grey {
  background-color: #424242;
}
.bg-grey {
  background-color: #546471;
}
.bg-light-grey {
  background-color: #e5e5e5;
}
.bg-very-light-grey {
  background-color: #f3f4f7;
}
.bg-white {
  background-color: #fff;
}
.bg-dark-blue {
  background-color: #090469;
}
.bg-blue {
  background-color: #2f2a86;
}
.bg-light-blue {
  background-color: #157efb;
}
.bg-very-light-blue {
  background-color: #0097d7;
}
.bg-red {
  background-color: #d2213c;
}
.bg-light-red {
  background-color: #fdf4f5;
}
.ta-r {
  text-align: right;
}
.ta-l {
  text-align: left;
}
.ta-c {
  text-align: center;
}
.ta-j {
  text-align: justify;
}
@media (max-width: 89.98rem) {
  .xxl-down-ta-r {
    text-align: right;
  }
  .xxl-down-ta-l {
    text-align: left;
  }
  .xxl-down-ta-c {
    text-align: center;
  }
  .xxl-down-ta-j {
    text-align: justify;
  }
}
@media (max-width: 79.98rem) {
  .xl-down-ta-r {
    text-align: right;
  }
  .xl-down-ta-l {
    text-align: left;
  }
  .xl-down-ta-c {
    text-align: center;
  }
  .xl-down-ta-j {
    text-align: justify;
  }
}
@media (max-width: 63.98rem) {
  .lg-down-ta-r {
    text-align: right;
  }
  .lg-down-ta-l {
    text-align: left;
  }
  .lg-down-ta-c {
    text-align: center;
  }
  .lg-down-ta-j {
    text-align: justify;
  }
}
@media (max-width: 47.98rem) {
  .md-down-ta-r {
    text-align: right;
  }
  .md-down-ta-l {
    text-align: left;
  }
  .md-down-ta-c {
    text-align: center;
  }
  .md-down-ta-j {
    text-align: justify;
  }
}
@media (max-width: 35.98rem) {
  .sm-down-ta-r {
    text-align: right;
  }
  .sm-down-ta-l {
    text-align: left;
  }
  .sm-down-ta-c {
    text-align: center;
  }
  .sm-down-ta-j {
    text-align: justify;
  }
}
@media (min-width: 36rem) {
  .sm-up-ta-r {
    text-align: right;
  }
  .sm-up-ta-l {
    text-align: left;
  }
  .sm-up-ta-c {
    text-align: center;
  }
  .sm-up-ta-j {
    text-align: justify;
  }
}
@media (min-width: 48rem) {
  .md-up-ta-r {
    text-align: right;
  }
  .md-up-ta-l {
    text-align: left;
  }
  .md-up-ta-c {
    text-align: center;
  }
  .md-up-ta-j {
    text-align: justify;
  }
}
@media (min-width: 64rem) {
  .lg-up-ta-r {
    text-align: right;
  }
  .lg-up-ta-l {
    text-align: left;
  }
  .lg-up-ta-c {
    text-align: center;
  }
  .lg-up-ta-j {
    text-align: justify;
  }
}
@media (min-width: 80rem) {
  .xl-up-ta-r {
    text-align: right;
  }
  .xl-up-ta-l {
    text-align: left;
  }
  .xl-up-ta-c {
    text-align: center;
  }
  .xl-up-ta-j {
    text-align: justify;
  }
}
@media (min-width: 90rem) {
  .xxl-up-ta-r {
    text-align: right;
  }
  .xxl-up-ta-l {
    text-align: left;
  }
  .xxl-up-ta-c {
    text-align: center;
  }
  .xxl-up-ta-j {
    text-align: justify;
  }
}
.ff-default {
  font-family: TT Norms Pro, sans-serif !important;
}
.ff-custom {
  font-family: Butler, sans-serif !important;
}
.ff-extra {
  font-family: TT Norms Pro, sans-serif !important;
}
.fs-xxs {
  font-size: 0.8125rem !important;
}
.fs-xs {
  font-size: 0.875rem !important;
}
.fs-sm {
  font-size: 0.9375rem !important;
}
.fs-md {
  font-size: 1em !important;
}
.fs-lg {
  font-size: 1.125rem !important;
}
.fs-xl {
  font-size: 1.25rem !important;
}
@media (max-width: 47.98rem) {
  .fs-xl {
    font-size: 1.125rem !important;
  }
}
@media (max-width: 35.98rem) {
  .fs-xl {
    font-size: 1rem !important;
  }
}
.fs-xxl {
  font-size: 2.25rem !important;
}
@media (max-width: 63.98rem) {
  .fs-xxl {
    font-size: 1.25rem !important;
  }
}
@media (max-width: 47.98rem) {
  .fs-xxl {
    font-size: 1.375rem !important;
  }
}
@media (max-width: 35.98rem) {
  .fs-xxl {
    font-size: 1.25rem !important;
  }
}
.fw-100 {
  font-weight: 100 !important;
}
.fw-200 {
  font-weight: 200 !important;
}
.fw-300 {
  font-weight: 300 !important;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}
.title-xs,
.wysiwyg h6 {
  font-size: 1rem;
}
.title-sm,
.title-xs,
.wysiwyg h5,
.wysiwyg h6 {
  font-family: Butler, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.title-sm,
.wysiwyg h5 {
  font-size: 1.4375rem;
}
@media (max-width: 47.98rem) {
  .title-sm,
  .wysiwyg h5 {
    font-size: 1.25rem;
  }
}
@media (max-width: 35.98rem) {
  .title-sm,
  .wysiwyg h5 {
    font-size: 1.125rem;
  }
}
.title-md,
.wysiwyg h4 {
  font-family: Butler, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2rem;
}
@media (max-width: 63.98rem) {
  .title-md,
  .wysiwyg h4 {
    font-size: 1.8125rem;
  }
}
@media (max-width: 47.98rem) {
  .title-md,
  .wysiwyg h4 {
    font-size: 1.625rem;
  }
}
@media (max-width: 35.98rem) {
  .title-md,
  .wysiwyg h4 {
    font-size: 1.4375rem;
  }
}
.title-lg,
.wysiwyg h3 {
  font-family: Butler, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 3rem;
}
@media (max-width: 79.98rem) {
  .title-lg,
  .wysiwyg h3 {
    font-size: 2.5rem;
  }
}
@media (max-width: 63.98rem) {
  .title-lg,
  .wysiwyg h3 {
    font-size: 2.125rem;
  }
}
@media (max-width: 47.98rem) {
  .title-lg,
  .wysiwyg h3 {
    font-size: 1.875rem;
  }
}
@media (max-width: 35.98rem) {
  .title-lg,
  .wysiwyg h3 {
    font-size: 1.625rem;
  }
}
.title-xl,
.wysiwyg h2 {
  font-family: Butler, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 3.5625rem;
}
@media (max-width: 63.98rem) {
  .title-xl,
  .wysiwyg h2 {
    font-size: 2.625rem;
  }
}
@media (max-width: 47.98rem) {
  .title-xl,
  .wysiwyg h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 35.98rem) {
  .title-xl,
  .wysiwyg h2 {
    font-size: 1.875rem;
  }
}
.title-xxl,
.wysiwyg h1 {
  font-family: Butler, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 3.75rem;
}
@media (max-width: 79.98rem) {
  .title-xxl,
  .wysiwyg h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 63.98rem) {
  .title-xxl,
  .wysiwyg h1 {
    font-size: 3.125rem;
  }
}
@media (max-width: 47.98rem) {
  .title-xxl,
  .wysiwyg h1 {
    font-size: 2.625rem;
  }
}
@media (max-width: 35.98rem) {
  .title-xxl,
  .wysiwyg h1 {
    font-size: 2rem;
  }
}
.c-black {
  color: #000;
}
.c-very-dark-grey {
  color: #141414;
}
.c-dark-grey {
  color: #424242;
}
.c-grey {
  color: #546471;
}
.c-light-grey {
  color: #e5e5e5;
}
.c-very-light-grey {
  color: #f3f4f7;
}
.c-white {
  color: #fff;
}
.c-dark-blue {
  color: #090469;
}
.c-blue {
  color: #2f2a86;
}
.c-light-blue {
  color: #157efb;
}
.c-very-light-blue {
  color: #0097d7;
}
.c-red {
  color: #d2213c;
}
.c-light-red {
  color: #fdf4f5;
}
:root {
  --header-height: 132px;
  --side-margin: clamp(20px, 3.5vw, 70px);
}
@font-face {
  font-family: Butler;
  src: url(../Fonts/Butler-Bold.eot);
  src: url(../Fonts/Butler-Bold.eot?#iefix) format("embedded-opentype"),
    url(../Fonts/Butler-Bold.woff2) format("woff2"),
    url(../Fonts/Butler-Bold.woff) format("woff"),
    url(../Fonts/Butler-Bold.ttf) format("truetype"),
    url(../Images/Butler-Bold.svg#Butler-Bold) format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: TT Norms Pro;
  src: url(../Fonts/TTNormsPro-Regular.eot);
  src: url(../Fonts/TTNormsPro-Regular.eot?#iefix) format("embedded-opentype"),
    url(../Fonts/TTNormsPro-Regular.woff2) format("woff2"),
    url(../Fonts/TTNormsPro-Regular.woff) format("woff"),
    url(../Fonts/TTNormsPro-Regular.ttf) format("truetype"),
    url(../Images/TTNormsPro-Regular.svg#TTNormsPro-Regular) format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: TT Norms Pro;
  src: url(../Fonts/TTNormsPro-Medium.eot);
  src: url(../Fonts/TTNormsPro-Medium.eot?#iefix) format("embedded-opentype"),
    url(../Fonts/TTNormsPro-Medium.woff2) format("woff2"),
    url(../Fonts/TTNormsPro-Medium.woff) format("woff"),
    url(../Fonts/TTNormsPro-Medium.ttf) format("truetype"),
    url(../Images/TTNormsPro-Medium.svg#TTNormsPro-Medium) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: TT Norms Pro;
  src: url(../Fonts/TTNormsPro-Bold.eot);
  src: url(../Fonts/TTNormsPro-Bold.eot?#iefix) format("embedded-opentype"),
    url(../Fonts/TTNormsPro-Bold.woff2) format("woff2"),
    url(../Fonts/TTNormsPro-Bold.woff) format("woff"),
    url(../Fonts/TTNormsPro-Bold.ttf) format("truetype"),
    url(../Images/TTNormsPro-Bold.svg#TTNormsPro-Bold) format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
}
*,
:after,
:before {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}
body {
  font-family: TT Norms Pro, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.6;
  color: #090469;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
button,
input,
select,
textarea {
  border: 0;
  border-radius: 0;
  background-color: initial;
  appearance: none;
  letter-spacing: inherit;
  font-family: inherit;
  font-size: inherit;
}
a,
button,
input,
select,
textarea {
  color: inherit;
}
a:focus,
a:focus-visible,
button:focus,
button:focus-visible,
input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible {
  outline: none;
  outline-offset: 0;
}
a,
button {
  cursor: pointer;
}
button {
  text-transform: inherit;
}
a {
  text-decoration: none;
}
ol li,
ul li {
  list-style-type: none;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
    format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: initial;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
@keyframes plyr-progress {
  to {
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  align-items: center;
  direction: ltr;
  display: flex;
  flex-direction: column;
  font-family: var(--plyr-font-family, inherit);
  font-variant-numeric: tabular-nums;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: var(--plyr-line-height, 1.7);
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
  z-index: 0;
}
.plyr audio,
.plyr iframe,
.plyr video {
  display: block;
  height: 100%;
  width: 100%;
}
.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}
.plyr:focus {
  outline: 0;
}
.plyr--full-ui {
  box-sizing: border-box;
}
.plyr--full-ui *,
.plyr--full-ui :after,
.plyr--full-ui :before {
  box-sizing: inherit;
}
.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
  touch-action: manipulation;
}
.plyr__badge {
  background: var(--plyr-badge-background, #4a5464);
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: var(--plyr-badge-text-color, #fff);
  font-size: var(--plyr-font-size-badge, 9px);
  line-height: 1;
  padding: 3px 4px;
}
.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}
.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}
.plyr__captions span:empty {
  display: none;
}
@media (min-width: 480px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-base, 15px);
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-large, 18px);
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}
.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}
.plyr__caption {
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  box-decoration-break: clone;
  color: var(--plyr-captions-text-color, #fff);
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}
.plyr__caption div {
  display: inline;
}
.plyr__control {
  background: transparent;
  border: 0;
  border-radius: var(--plyr-control-radius, 3px);
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  transition: all 0.3s ease;
}
.plyr__control svg {
  display: block;
  fill: currentColor;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: var(--plyr-control-icon-size, 18px);
}
.plyr__control:focus {
  outline: 0;
}
.plyr__control.plyr__tab-focus {
  outline: var(
      --plyr-tab-focus-color,
      var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
    )
    dotted 3px;
  outline-offset: 2px;
}
a.plyr__control {
  text-decoration: none;
}
.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control.plyr__control--pressed .label--not-pressed,
.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
a.plyr__control:after,
a.plyr__control:before {
  display: none;
}
.plyr--full-ui ::-webkit-media-controls {
  display: none;
}
.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}
.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}
.plyr__controls .plyr__controls__item {
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}
.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}
.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,
.plyr__controls .plyr__controls__item.plyr__time + .plyr__time,
.plyr__controls .plyr__controls__item.plyr__time:first-child {
  padding-left: 0;
}
.plyr [data-plyr="airplay"],
.plyr [data-plyr="captions"],
.plyr [data-plyr="fullscreen"],
.plyr [data-plyr="pip"],
.plyr__controls:empty {
  display: none;
}
.plyr--airplay-supported [data-plyr="airplay"],
.plyr--captions-enabled [data-plyr="captions"],
.plyr--fullscreen-enabled [data-plyr="fullscreen"],
.plyr--pip-supported [data-plyr="pip"] {
  display: inline-block;
}
.plyr__menu {
  display: flex;
  position: relative;
}
.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}
.plyr__menu .plyr__control[aria-expanded="true"] svg {
  transform: rotate(90deg);
}
.plyr__menu .plyr__control[aria-expanded="true"] .plyr__tooltip {
  display: none;
}
.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: var(--plyr-menu-background, hsla(0, 0%, 100%, 0.9));
  border-radius: var(--plyr-menu-radius, 4px);
  bottom: 100%;
  box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-menu-color, #4a5464);
  font-size: var(--plyr-font-size-base, 15px);
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}
.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.plyr__menu__container:after {
  border-top: var(--plyr-menu-arrow-size, 4px) solid transparent;
  border-top-color: var(--plyr-menu-background, hsla(0, 0%, 100%, 0.9));
  border-style: solid;
  border-width: var(--plyr-menu-arrow-size, 4px);
  content: "";
  height: 0;
  position: absolute;
  right: calc(
    var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) *
      0.7 - var(--plyr-menu-arrow-size, 4px) / 2
  );
  top: 100%;
  width: 0;
}
.plyr__menu__container [role="menu"] {
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container [role="menuitem"],
.plyr__menu__container [role="menuitemradio"] {
  margin-top: 2px;
}
.plyr__menu__container [role="menuitem"]:first-child,
.plyr__menu__container [role="menuitemradio"]:first-child {
  margin-top: 0;
}
.plyr__menu__container .plyr__control {
  align-items: center;
  color: var(--plyr-menu-color, #4a5464);
  display: flex;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7 / 1.5)
    calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5);
  user-select: none;
  width: 100%;
}
.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}
.plyr__menu__container .plyr__control:after {
  border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.plyr__menu__container .plyr__control--forward {
  padding-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
}
.plyr__menu__container .plyr__control--forward:after {
  border-left-color: var(--plyr-menu-arrow-color, #728197);
  right: calc(
    var(--plyr-control-spacing, 10px) * 0.7 * 1.5 -
      var(--plyr-menu-item-arrow-size, 4px)
  );
}
.plyr__menu__container .plyr__control--forward.plyr__tab-focus:after,
.plyr__menu__container .plyr__control--forward:hover:after {
  border-left-color: initial;
}
.plyr__menu__container .plyr__control--back {
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
  position: relative;
  width: calc(100% - var(--plyr-control-spacing, 10px) * 0.7 * 2);
}
.plyr__menu__container .plyr__control--back:after {
  border-right-color: var(--plyr-menu-arrow-color, #728197);
  left: calc(
    var(--plyr-control-spacing, 10px) * 0.7 * 1.5 -
      var(--plyr-menu-item-arrow-size, 4px)
  );
}
.plyr__menu__container .plyr__control--back:before {
  background: var(--plyr-menu-back-border-color, #dcdfe5);
  box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}
.plyr__menu__container .plyr__control--back.plyr__tab-focus:after,
.plyr__menu__container .plyr__control--back:hover:after {
  border-right-color: initial;
}
.plyr__menu__container .plyr__control[role="menuitemradio"] {
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container .plyr__control[role="menuitemradio"]:after,
.plyr__menu__container .plyr__control[role="menuitemradio"]:before {
  border-radius: 100%;
}
.plyr__menu__container .plyr__control[role="menuitemradio"]:before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: var(--plyr-control-spacing, 10px);
  transition: all 0.3s ease;
  width: 16px;
}
.plyr__menu__container .plyr__control[role="menuitemradio"]:after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}
.plyr__menu__container
  .plyr__control[role="menuitemradio"][aria-checked="true"]:before {
  background: var(
    --plyr-control-toggle-checked-background,
    var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
  );
}
.plyr__menu__container
  .plyr__control[role="menuitemradio"][aria-checked="true"]:after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.plyr__menu__container
  .plyr__control[role="menuitemradio"].plyr__tab-focus:before,
.plyr__menu__container .plyr__control[role="menuitemradio"]:hover:before {
  background: rgba(35, 40, 47, 0.1);
}
.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * -1 - -2px);
  overflow: hidden;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 3.5);
  pointer-events: none;
}
.plyr--full-ui input[type="range"] {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: var(
    --plyr-range-fill-background,
    var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
  );
  display: block;
  height: calc(
    var(--plyr-range-thumb-active-shadow-width, 3px) * 2 +
      var(--plyr-range-thumb-height, 13px)
  );
  margin: 0;
  min-width: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}
.plyr--full-ui input[type="range"]::-webkit-slider-runnable-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  transition: box-shadow 0.3s ease;
  user-select: none;
  background-image: linear-gradient(
    90deg,
    currentColor var(--value, 0),
    transparent var(--value, 0)
  );
}
.plyr--full-ui input[type="range"]::-webkit-slider-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(
    --plyr-range-thumb-shadow,
    0 1px 1px rgba(35, 40, 47, 0.15),
    0 0 0 1px rgba(35, 40, 47, 0.2)
  );
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  appearance: none;
  margin-top: calc(
    var(--plyr-range-thumb-height, 13px) / 2 * -1 -
      var(--plyr-range-track-height, 5px) / 2 * -1
  );
}
.plyr--full-ui input[type="range"]::-moz-range-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  transition: box-shadow 0.3s ease;
  user-select: none;
}
.plyr--full-ui input[type="range"]::-moz-range-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(
    --plyr-range-thumb-shadow,
    0 1px 1px rgba(35, 40, 47, 0.15),
    0 0 0 1px rgba(35, 40, 47, 0.2)
  );
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
}
.plyr--full-ui input[type="range"]::-moz-range-progress {
  background: currentColor;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
}
.plyr--full-ui input[type="range"]::-ms-track {
  color: transparent;
}
.plyr--full-ui input[type="range"]::-ms-fill-upper,
.plyr--full-ui input[type="range"]::-ms-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  transition: box-shadow 0.3s ease;
  user-select: none;
}
.plyr--full-ui input[type="range"]::-ms-fill-lower {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  transition: box-shadow 0.3s ease;
  user-select: none;
  background: currentColor;
}
.plyr--full-ui input[type="range"]::-ms-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(
    --plyr-range-thumb-shadow,
    0 1px 1px rgba(35, 40, 47, 0.15),
    0 0 0 1px rgba(35, 40, 47, 0.2)
  );
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  margin-top: 0;
}
.plyr--full-ui input[type="range"]::-ms-tooltip {
  display: none;
}
.plyr--full-ui input[type="range"]::-moz-focus-outer {
  border: 0;
}
.plyr--full-ui input[type="range"]:focus {
  outline: 0;
}
.plyr--full-ui
  input[type="range"].plyr__tab-focus::-webkit-slider-runnable-track {
  outline: var(
      --plyr-tab-focus-color,
      var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
    )
    dotted 3px;
  outline-offset: 2px;
}
.plyr--full-ui input[type="range"].plyr__tab-focus::-moz-range-track {
  outline: var(
      --plyr-tab-focus-color,
      var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
    )
    dotted 3px;
  outline-offset: 2px;
}
.plyr--full-ui input[type="range"].plyr__tab-focus::-ms-track {
  outline: var(
      --plyr-tab-focus-color,
      var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
    )
    dotted 3px;
  outline-offset: 2px;
}
.plyr__poster {
  background-color: var(
    --plyr-video-background,
    var(--plyr-video-background, #000)
  );
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}
.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}
.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped)
  .plyr__poster {
  display: none;
}
.plyr__time {
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}
.plyr__time + .plyr__time:before {
  content: "\2044";
  margin-right: var(--plyr-control-spacing, 10px);
}
@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}
.plyr__tooltip {
  background: var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-tooltip-color, #4a5464);
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2)
    calc(var(--plyr-control-spacing, 10px) / 2 * 1.5);
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s;
  white-space: nowrap;
  z-index: 2;
}
.plyr__tooltip:before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid
    var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}
.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr .plyr__control:hover .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%) scale(1);
}
.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip,
.plyr__controls > .plyr__control:first-child .plyr__tooltip {
  left: 0;
  transform: translateY(10px) scale(0.8);
  transform-origin: 0 100%;
}
.plyr__controls
  > .plyr__control:first-child
  + .plyr__control
  .plyr__tooltip:before,
.plyr__controls > .plyr__control:first-child .plyr__tooltip:before {
  left: calc(
    var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) *
      0.7
  );
}
.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translateY(10px) scale(0.8);
  transform-origin: 100% 100%;
}
.plyr__controls > .plyr__control:last-child .plyr__tooltip:before {
  left: auto;
  right: calc(
    var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) *
      0.7
  );
  transform: translateX(50%);
}
.plyr__controls
  > .plyr__control:first-child
  + .plyr__control.plyr__tab-focus
  .plyr__tooltip,
.plyr__controls
  > .plyr__control:first-child
  + .plyr__control
  .plyr__tooltip--visible,
.plyr__controls
  > .plyr__control:first-child
  + .plyr__control:hover
  .plyr__tooltip,
.plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  transform: translate(0) scale(1);
}
.plyr__progress {
  left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}
.plyr__progress__buffer,
.plyr__progress input[type="range"] {
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  width: calc(100% + var(--plyr-range-thumb-height, 13px));
}
.plyr__progress input[type="range"] {
  position: relative;
  z-index: 2;
}
.plyr__progress .plyr__tooltip {
  left: 0;
  max-width: 120px;
  overflow-wrap: break-word;
}
.plyr__progress__buffer {
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-radius: 100px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin-top: calc(var(--plyr-range-track-height, 5px) / 2 * -1);
  padding: 0;
  position: absolute;
  top: 50%;
}
.plyr__progress__buffer::-webkit-progress-bar {
  background: transparent;
}
.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: var(--plyr-range-track-height, 5px);
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: var(--plyr-range-track-height, 5px);
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  transition: width 0.2s ease;
}
.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(
    -45deg,
    var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 25%,
    transparent 0,
    transparent 50%,
    var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 0,
    var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 75%,
    transparent 0,
    transparent
  );
  background-repeat: repeat-x;
  background-size: var(--plyr-progress-loading-size, 25px)
    var(--plyr-progress-loading-size, 25px);
  color: transparent;
}
.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: var(
    --plyr-video-progress-buffered-background,
    hsla(0, 0%, 100%, 0.25)
  );
}
.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: var(
    --plyr-audio-progress-buffered-background,
    rgba(193, 200, 209, 0.6)
  );
}
.plyr__progress__marker {
  background-color: var(--plyr-progress-marker-background, #fff);
  border-radius: 1px;
  height: var(--plyr-range-track-height, 5px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--plyr-progress-marker-width, 3px);
  z-index: 3;
}
.plyr__volume {
  align-items: center;
  display: flex;
  max-width: 110px;
  min-width: 80px;
  position: relative;
  width: 20%;
}
.plyr__volume input[type="range"] {
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: calc(var(--plyr-control-spacing, 10px) / 2);
  position: relative;
  z-index: 2;
}
.plyr--is-ios .plyr__volume {
  min-width: 0;
  width: auto;
}
.plyr--audio {
  display: block;
}
.plyr--audio .plyr__controls {
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: var(--plyr-audio-control-color, #4a5464);
  padding: var(--plyr-control-spacing, 10px);
}
.plyr--audio .plyr__control.plyr__tab-focus,
.plyr--audio .plyr__control:hover,
.plyr--audio .plyr__control[aria-expanded="true"] {
  background: var(
    --plyr-audio-control-background-hover,
    var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
  );
  color: var(--plyr-audio-control-color-hover, #fff);
}
.plyr--full-ui.plyr--audio input[type="range"]::-webkit-slider-runnable-track {
  background-color: var(
    --plyr-audio-range-track-background,
    var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6))
  );
}
.plyr--full-ui.plyr--audio input[type="range"]::-moz-range-track {
  background-color: var(
    --plyr-audio-range-track-background,
    var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6))
  );
}
.plyr--full-ui.plyr--audio input[type="range"]::-ms-track {
  background-color: var(
    --plyr-audio-range-track-background,
    var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6))
  );
}
.plyr--full-ui.plyr--audio input[type="range"]:active::-webkit-slider-thumb {
  box-shadow: var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.15),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--full-ui.plyr--audio input[type="range"]:active::-moz-range-thumb {
  box-shadow: var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.15),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--full-ui.plyr--audio input[type="range"]:active::-ms-thumb {
  box-shadow: var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.15),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--audio .plyr__progress__buffer {
  color: var(
    --plyr-audio-progress-buffered-background,
    rgba(193, 200, 209, 0.6)
  );
}
.plyr--video {
  background: var(--plyr-video-background, var(--plyr-video-background, #000));
  overflow: hidden;
}
.plyr--video.plyr--menu-open {
  overflow: visible;
}
.plyr__video-wrapper {
  background: var(--plyr-video-background, var(--plyr-video-background, #000));
  height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 16/9;
}
@supports not (aspect-ratio: 16/9) {
  .plyr__video-embed,
  .plyr__video-wrapper--fixed-ratio {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
}
.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}
.plyr--video .plyr__controls {
  background: var(
    --plyr-video-controls-background,
    linear-gradient(transparent, rgba(0, 0, 0, 0.75))
  );
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}
@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: var(--plyr-control-spacing, 10px);
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
  background: var(
    --plyr-video-control-background-hover,
    var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
  );
  color: var(--plyr-video-control-color-hover, #fff);
}
.plyr__control--overlaid {
  background: var(
    --plyr-video-control-background-hover,
    var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
  );
  border: 0;
  border-radius: 100%;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  z-index: 2;
}
.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}
.plyr__control--overlaid:focus,
.plyr__control--overlaid:hover {
  opacity: 1;
}
.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}
.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}
.plyr--full-ui.plyr--video input[type="range"]::-webkit-slider-runnable-track {
  background-color: var(
    --plyr-video-range-track-background,
    var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25))
  );
}
.plyr--full-ui.plyr--video input[type="range"]::-moz-range-track {
  background-color: var(
    --plyr-video-range-track-background,
    var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25))
  );
}
.plyr--full-ui.plyr--video input[type="range"]::-ms-track {
  background-color: var(
    --plyr-video-range-track-background,
    var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25))
  );
}
.plyr--full-ui.plyr--video input[type="range"]:active::-webkit-slider-thumb {
  box-shadow: var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.15),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5));
}
.plyr--full-ui.plyr--video input[type="range"]:active::-moz-range-thumb {
  box-shadow: var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.15),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5));
}
.plyr--full-ui.plyr--video input[type="range"]:active::-ms-thumb {
  box-shadow: var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.15),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5));
}
.plyr--video .plyr__progress__buffer {
  color: var(
    --plyr-video-progress-buffered-background,
    hsla(0, 0%, 100%, 0.25)
  );
}
.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:fullscreen video {
  height: 100%;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}
.plyr--fullscreen-fallback video {
  height: 100%;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.plyr__ads > div,
.plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}
.plyr__ads:after {
  background: #23282f;
  border-radius: 2px;
  bottom: var(--plyr-control-spacing, 10px);
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: var(--plyr-control-spacing, 10px);
  z-index: 3;
}
.plyr__ads:empty:after {
  display: none;
}
.plyr__cues {
  background: currentColor;
  display: block;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  z-index: 3;
}
.plyr__preview-thumb {
  background-color: var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  transform: translateY(10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s;
  z-index: 2;
}
.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0) scale(1);
}
.plyr__preview-thumb:before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid
    var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: calc(50% + var(--preview-arrow-offset));
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}
.plyr__preview-thumb__image-container {
  background: #c1c8d1;
  border-radius: calc(var(--plyr-tooltip-radius, 5px) - 1px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.plyr__preview-thumb__image-container:after,
.plyr__preview-thumb__image-container img {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr__preview-thumb__image-container:after {
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  content: "";
  pointer-events: none;
}
.plyr__preview-thumb__image-container img {
  max-height: none;
  max-width: none;
}
.plyr__preview-thumb__time-container {
  background: var(
    --plyr-video-controls-background,
    linear-gradient(transparent, rgba(0, 0, 0, 0.75))
  );
  border-bottom-left-radius: calc(var(--plyr-tooltip-radius, 5px) - 1px);
  border-bottom-right-radius: calc(var(--plyr-tooltip-radius, 5px) - 1px);
  bottom: 0;
  left: 0;
  line-height: 1.1;
  padding: 20px 6px 6px;
  position: absolute;
  right: 0;
  z-index: 3;
}
.plyr__preview-thumb__time-container span {
  color: #fff;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}
.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}
.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}
.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr--no-transition {
  transition: none !important;
}
.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
.plyr [hidden] {
  display: none !important;
}
:root {
  --plyr-color-main: #2f2a86;
}
.plyr {
  width: 100%;
  height: 100%;
}
.plyr--paused .plyr__poster {
  z-index: 3;
  opacity: 1;
}
.plyr__poster {
  background-size: cover;
}
.plyr__control--overlaid {
  background-color: #fff;
  width: 96px !important;
  height: 96px !important;
  opacity: 1;
  z-index: 3;
}
@media (max-width: 47.98rem) {
  .plyr__control--overlaid {
    width: 56px !important;
    height: 56px !important;
  }
}
.plyr__control--overlaid svg {
  fill: #2f2a86;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(calc(-50% + 2px), -50%, 0);
  width: 30px;
  height: 30px;
}
@media (max-width: 47.98rem) {
  .plyr__control--overlaid svg {
    width: 20px;
    height: 20px;
  }
}
.plyr__control--overlaid:hover svg {
  fill: #fff;
}
#footer .main-footer .footer-nav .nav-list .nav-item .nav-link,
.link {
  position: relative;
}
#footer .main-footer .footer-nav .nav-list .nav-item .nav-link:before,
.link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transition: all 0.3s ease-in 0s;
}
#footer .main-footer .footer-nav .nav-list .nav-item .nav-link:hover:before,
.link:hover:before {
  width: 0;
}
#footer .main-footer .footer-nav .nav-list .nav-item .center.nav-link:before,
.link.center:before {
  left: 50%;
  transform: translateX(-50%);
}
#footer .main-footer .footer-nav .nav-list .nav-item .nav-link:before,
.link.ltr:before {
  left: inherit;
  right: 0;
}
#footer .main-footer .footer-nav .nav-list .nav-item .nav-link:hover:before,
.link.ltr:hover:before {
  left: 0;
  right: auto;
}
#footer .main-footer .footer-nav .nav-list .nav-item .rtl.nav-link:before,
.link.rtl:before {
  left: 0;
  right: inherit;
}
#footer .main-footer .footer-nav .nav-list .nav-item .rtl.nav-link:hover:before,
.link.rtl:hover:before {
  left: auto;
  right: 0;
}
#footer .main-footer .footer-nav .nav-list .nav-item .nav-link:before,
.link.onHover:before {
  width: 0;
}
#footer .main-footer .footer-nav .nav-list .nav-item .nav-link:hover:before,
.link.onHover:hover:before {
  width: 100%;
}
#footer .main-footer .footer-nav .nav-list .nav-item .noline.nav-link:before,
.link.noline:before {
  content: none;
}
#footer .main-footer .footer-nav .nav-list .nav-item .black.nav-link,
.link.black {
  color: #000;
}
#footer .main-footer .footer-nav .nav-list .nav-item .black.nav-link:before,
.link.black:before {
  background-color: #000;
}
#footer .main-footer .footer-nav .nav-list .nav-item .nav-link,
.link.white {
  color: #fff;
}
#footer .main-footer .footer-nav .nav-list .nav-item .nav-link:before,
.link.white:before {
  background-color: #fff;
}
#footer .main-footer .footer-nav .nav-list .nav-item .blue.nav-link,
.link.blue {
  color: #2f2a86;
}
#footer .main-footer .footer-nav .nav-list .nav-item .blue.nav-link:before,
.link.blue:before {
  background-color: #157efb;
}
#footer .main-footer .footer-nav .nav-list .nav-item .dark-blue.nav-link,
.link.dark-blue {
  color: #090469;
}
#footer .main-footer .footer-nav .nav-list .nav-item .dark-blue.nav-link:before,
.link.dark-blue:before {
  background-color: #090469;
}
#footer .main-footer .footer-nav .nav-list .nav-item .light-blue.nav-link,
.link.light-blue {
  color: #157efb;
}
#footer
  .main-footer
  .footer-nav
  .nav-list
  .nav-item
  .light-blue.nav-link:before,
.link.light-blue:before {
  background-color: #157efb;
}
#footer .main-footer .footer-nav .nav-list .nav-item .red.nav-link,
.link.red {
  color: #d2213c;
}
#footer .main-footer .footer-nav .nav-list .nav-item .red.nav-link:before,
.link.red:before {
  background-color: #d2213c;
}
#footer .main-footer .footer-nav .nav-list .nav-item .light-red.nav-link,
.link.light-red {
  color: #fdf4f5;
}
#footer .main-footer .footer-nav .nav-list .nav-item .light-red.nav-link:before,
.link.light-red:before {
  background-color: #fdf4f5;
}
.cta,
.cta .txt {
  position: relative;
}
.cta .txt {
  display: inline-block;
}
.cta .txt:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transition: all 0.3s ease-in 0s;
}
.cta:hover .txt:before {
  width: 0;
}
.cta.icon .icon {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 22px;
  height: 22px;
}
.cta.icon .icon:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  mask: url(../Images/arrow.svg) center/auto no-repeat;
  -webkit-mask: url(../Images/arrow.svg) center/auto no-repeat;
}
.cta.icon.icon-left {
  padding-left: 30px;
}
.cta.icon.icon-left .icon {
  left: 0;
  transform: translate3d(0, -50%, 0) rotate(-180deg);
}
.cta.icon.icon-right {
  padding-right: 30px;
}
.cta.icon.icon-right .icon {
  right: 0;
}
.cta.icon.round .icon {
  border-radius: 50px;
}
.cta.icon.icon-external .icon {
  background-color: inherit;
}
.cta.icon.icon-external .icon:before {
  background-color: #2f2a86;
  mask-image: url(../Images/arrow-diagonal.svg);
  -webkit-mask-image: url(../Images/arrow-diagonal.svg);
}
.cta.center .txt:before {
  left: 50%;
  transform: translateX(-50%);
}
#footer .main-footer .footer-nav .nav-list .nav-item .cta.nav-link .txt:before,
.cta.ltr .txt:before {
  left: inherit;
  right: 0;
}
#footer
  .main-footer
  .footer-nav
  .nav-list
  .nav-item
  .cta.nav-link:hover
  .txt:before,
.cta.ltr:hover .txt:before {
  left: 0;
  right: auto;
}
.cta.rtl .txt:before {
  left: 0;
  right: inherit;
}
.cta.rtl:hover .txt:before {
  left: auto;
  right: 0;
}
#footer .main-footer .footer-nav .nav-list .nav-item .cta.nav-link .txt:before,
.cta.onHover .txt:before {
  width: 0;
}
#footer
  .main-footer
  .footer-nav
  .nav-list
  .nav-item
  .cta.nav-link:hover
  .txt:before,
.cta.onHover:hover .txt:before {
  width: 100%;
}
.cta.noline .txt:before {
  content: none;
}
.cta.black {
  color: #000;
}
.cta.black .txt:before {
  background-color: #000;
}
#footer .main-footer .footer-nav .nav-list .nav-item .cta.nav-link,
.cta.white {
  color: #fff;
}
#footer .main-footer .footer-nav .nav-list .nav-item .cta.nav-link .txt:before,
.cta.white .txt:before {
  background-color: #fff;
}
.cta.blue {
  color: #2f2a86;
}
.cta.blue .icon,
.cta.blue .txt:before {
  background-color: #157efb;
}
.cta.dark-blue {
  color: #090469;
}
.cta.dark-blue .icon,
.cta.dark-blue .txt:before {
  background-color: #090469;
}
.cta.light-blue {
  color: #157efb;
}
.cta.light-blue .txt:before {
  background-color: #157efb;
}
.cta.red {
  color: #d2213c;
}
.cta.red .txt:before {
  background-color: #d2213c;
}
.cta.light-red {
  color: #fdf4f5;
}
.cta.light-red .txt:before {
  background-color: #fdf4f5;
}
.btn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  text-align: center;
  font-weight: 700;
}
.btn .txt-small {
  font-size: 13px;
  font-weight: 400;
}
.btn.big {
  padding: 26px 40px;
}
.btn.round {
  border-radius: 34px;
}
.btn.square {
  border-radius: 10px;
}
.btn.shadow {
  box-shadow: 0 8px 20px rgba(46, 112, 191, 0.12);
}
.btn.blue {
  background-color: #2f2a86;
  color: #fff;
}
.btn.light-blue {
  background-color: #157efb;
  color: #fff;
}
.btn.icon .icon {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 24px;
  height: 24px;
  background-color: #fff;
  mask: url(../Images/arrow-diagonal.svg) center/100% auto no-repeat;
  -webkit-mask: url(../Images/arrow-diagonal.svg) center/100% auto no-repeat;
}
.btn.icon-left {
  padding-left: 50px;
}
.btn.icon-left .icon {
  left: 16px;
}
.btn.icon-right {
  padding-right: 50px;
}
.btn.icon-right .icon {
  right: 16px;
}
.page-loader {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  display: none;
}
.page-loader.active {
  display: flex;
}
.page-loader .item-content {
  width: 100%;
  color: #141414;
  text-align: center;
}
.page-loader .item-loadbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  margin: auto;
}
.page-loader .item-loadbar .item-loadbar-inner {
  width: 100%;
  height: 100%;
  border-radius: 1px;
  background-color: #141414;
  animation: loadbar 1.2s cubic-bezier(0.92, 0, 0.09, 1);
  transform-origin: left top;
}
@keyframes loadbar {
  0% {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(0.7);
  }
}
[data-splittext] {
  opacity: 0;
}
[data-splittext].split-ready {
  opacity: 1;
}
[data-kira-item="splitline"] .item-line {
  overflow: hidden;
}
[data-kira-item^="fadeIn"] {
  opacity: 0;
}
[data-kira-item^="fadeInLeft.stagger"],
[data-kira-item^="fadeInUp.stagger"] {
  opacity: 1;
}
[data-kira-item^="fadeInLeft.stagger"] [data-stagger-item],
[data-kira-item^="fadeInUp.stagger"] [data-stagger-item] {
  opacity: 0;
}
#header .header-container .header-nav .nav-list .nav-item .nav-link {
  color: #090469;
  font-size: 1em;
  font-weight: 400;
}
#header {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-block: 25px;
  background-color: #fff;
}
#header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .header-container .logo {
  width: 100%;
  height: auto;
  max-width: 230px;
}
#header .header-container .logo .logo-link {
  display: block;
}
#header .header-container .logo img,
#header .header-container .logo svg {
  width: 100%;
  height: auto;
}
#header .header-container .header-nav {
  display: none;
}
#header .header-container .header-nav .nav-list {
  display: flex;
}
#header .header-container .header-nav .nav-list .nav-item {
  display: flex;
  align-items: center;
}
#header .header-container .header-nav .nav-list .nav-item:not(:last-child) {
  margin-right: 32px;
}
@media (min-width: 80rem) {
  #header .header-container .header-nav {
    display: flex;
    align-items: center;
  }
  #header .header-container .header-nav .item-menu {
    margin-right: 25px;
  }
}
#header .btn-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  padding: 0;
  border: none;
  background-color: initial;
  cursor: pointer;
}
#header .btn-menu > .item-burger {
  display: block;
  width: 25px;
}
#header .btn-menu > .item-burger > span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #2f2a86;
  border-radius: 2px;
}
#header .btn-menu > .item-burger > span:nth-child(2) {
  margin: 6px 0;
}
@media (min-width: 80rem) {
  #header .btn-menu {
    display: none;
  }
}
#mobile-menu {
  display: flex;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  padding: var(--header-height) var(--side-margin);
  align-items: flex-start;
  background-color: #2f2a86;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
}
#mobile-menu .mobile-nav ul {
  margin: auto 0;
}
#mobile-menu .mobile-nav ul li:not(:last-child) {
  margin-bottom: 20px;
}
#mobile-menu .mobile-nav ul li a {
  text-transform: uppercase;
  font-size: 1.875rem;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 47.98rem) {
  #mobile-menu .mobile-nav ul li a {
    font-size: 26px;
  }
}
@media (max-width: 35.98rem) {
  #mobile-menu .mobile-nav ul li a {
    font-size: 18px;
  }
}
body.menu-active {
  overflow: hidden;
}
#footer .main-footer .footer-nav .nav-list .nav-item .nav-link {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 400;
}
#footer {
  background-color: #2f2a86;
  color: #fff;
}
#footer .main-footer {
  padding-block-start: 85px;
  padding-block-end: 65px;
  border-bottom: 1px solid #090469;
}
#footer .main-footer .logo {
  width: 100%;
  height: auto;
  max-width: 230px;
}
#footer .main-footer .logo .logo-link {
  display: block;
}
#footer .main-footer .logo img,
#footer .main-footer .logo svg {
  width: 100%;
  height: auto;
}
#footer .main-footer .logo svg path {
  fill: #fff;
}
#footer .main-footer .footer-nav .nav-list .nav-item:not(:last-child) {
  margin-bottom: 9px;
}
#footer .secondary-footer {
  padding-block: 35px;
}
@media (max-width: 35.98rem) {
  #footer .secondary-footer .col {
    flex-direction: column;
  }
}
@media (max-width: 35.98rem) {
  #footer .secondary-footer .madeby {
    margin-top: 8px;
  }
}
.page-offset {
  padding-top: var(--header-height);
}
.wysiwyg h1:not(:first-child),
.wysiwyg h2:not(:first-child),
.wysiwyg h3:not(:first-child),
.wysiwyg h4:not(:first-child),
.wysiwyg h5:not(:first-child),
.wysiwyg h6:not(:first-child),
.wysiwyg ol:not(:first-child),
.wysiwyg p:not(:first-child),
.wysiwyg ul:not(:first-child) {
  margin-top: 1em;
}
.wysiwyg img {
  display: block;
  width: 100%;
  height: auto;
}
.wysiwyg p:not(:last-child) {
  margin-bottom: 20px;
}
.wysiwyg ol,
.wysiwyg ul {
  padding-left: 1.25em;
}
.wysiwyg ol li:not(:first-child),
.wysiwyg ul li:not(:first-child) {
  margin-top: 0.25em;
}
.wysiwyg ul li {
  list-style: disc;
}
.wysiwyg ul li ul li {
  list-style: circle;
}
.wysiwyg ol li {
  list-style: decimal;
}
.wysiwyg a:not([class]) {
  position: relative;
  text-decoration: underline;
  padding-right: 26px;
}
.wysiwyg a:not([class]):after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: #2f2a86;
  mask: url(../Images/arrow-diagonal.svg) center/auto no-repeat;
  -webkit-mask: url(../Images/arrow-diagonal.svg) center/auto no-repeat;
}
.wysiwyg blockquote {
  position: relative;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.5em;
}
@media (max-width: 63.98rem) {
  .wysiwyg blockquote {
    font-size: 36px;
  }
}
@media (max-width: 47.98rem) {
  .wysiwyg blockquote {
    font-size: 30px;
  }
}
@media (max-width: 35.98rem) {
  .wysiwyg blockquote {
    font-size: 24px;
  }
}
.wysiwyg blockquote:after,
.wysiwyg blockquote:before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background-color: #d2213c;
  mask: url(../Images/quote.svg) center/auto no-repeat;
  -webkit-mask: url(../Images/quote.svg) center/auto no-repeat;
}
.wysiwyg blockquote:before {
  left: 0;
  transform: translateX(-60px) translateY(-30px);
}
@media (max-width: 35.98rem) {
  .wysiwyg blockquote:before {
    transform: translateX(0) translateY(-40px);
  }
}
.wysiwyg blockquote:after {
  right: 0;
  transform: translateX(0) translateY(40px) rotateY(-180deg);
}
@media (max-width: 79.98rem) {
  .wysiwyg blockquote:after {
    transform: translateX(60px) translateY(40px) rotateY(-180deg);
  }
}
@media (max-width: 35.98rem) {
  .wysiwyg blockquote:after {
    transform: translateX(0) translateY(40px) rotateY(-180deg);
  }
}
.wysiwyg blockquote strong {
  font-family: Butler, sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: #d2213c;
}
@media (max-width: 63.98rem) {
  .wysiwyg blockquote strong {
    font-size: 44px;
  }
}
@media (max-width: 47.98rem) {
  .wysiwyg blockquote strong {
    font-size: 36px;
  }
}
@media (max-width: 35.98rem) {
  .wysiwyg blockquote strong {
    font-size: 30px;
  }
}
.br-media {
  border-radius: 8px;
}
.br-media-full {
  border-radius: 100%;
}
.category {
  padding-block: 4px;
  padding-inline: 12px;
  background-color: #090469;
  color: #fff;
  border-radius: 64px;
}
.media-container .media-infos {
  margin-top: 8px;
}
@media (max-width: 47.98rem) {
  .media-container .media-infos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 48rem) {
  .media-container .media-infos > :not(:last-child) {
    margin-right: 12px;
  }
}
.media-container .media-infos .legend {
  font-size: 16px;
  color: #000;
}
.media-container .media-infos .credit {
  font-size: 12px;
  color: #546471;
}
.media-container .video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 96px;
  height: 96px;
  background-color: #fff;
  border-radius: 100%;
  cursor: pointer;
}
.media-container .video .play-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 57px;
  height: 57px;
  background-color: #2f2a86;
  mask: url(../Images/play.svg) center right calc(50% - 2px) / auto no-repeat;
  -webkit-mask: url(../Images/play.svg) center right calc(50% - 2px) / auto
    no-repeat;
}
.place-item {
  border-radius: 24px;
  box-shadow: 0 24px 44px rgba(4, 4, 4, 0.03);
  padding: 32px 24px;
  background-color: #fff;
}
.place-item > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.place-item > div:last-child {
  align-items: flex-start;
}
.media-audio audio {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.media-audio > span {
  display: inline-block;
}
.media-audio .audio-time .time {
  margin-right: 2px;
}
.media-audio .timeline {
  max-width: calc(100% - 172px);
  background-color: #546471;
}
.media-audio .timeline,
.media-audio .timeline .timeline-progress {
  mask: url(../Images/timeline-audio.svg) center/100% auto no-repeat;
  -webkit-mask: url(../Images/timeline-audio.svg) center/100% auto no-repeat;
}
.media-audio .timeline .timeline-progress {
  position: absolute;
  inset: 0;
  background-color: #d2213c;
  clip-path: inset(0 100% 0 0);
}
.media-audio .control {
  position: relative;
  border-radius: 100%;
  width: 72px;
  height: 72px;
  background-color: #d2213c;
  cursor: pointer;
}
.media-audio .control:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 32px;
  height: 32px;
  background-color: #fff;
  mask: center right/auto no-repeat;
  -webkit-mask: center right/auto no-repeat;
}
.media-audio .control.play:after {
  mask-image: url(../Images/play.svg);
  -webkit-mask-image: url(../Images/play.svg);
}
.media-audio .control.pause:after {
  mask-image: url(../Images/pause.svg);
  -webkit-mask: url(../Images/pause.svg);
}
#sticky-audio-player {
  position: fixed;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, -100%, 0);
  padding: 15px 0;
  background-color: #fff;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
#sticky-audio-player .media-audio .control {
  width: 42px;
  height: 42px;
}
#sticky-audio-player .media-audio .control:after {
  width: 16px;
  height: 16px;
  mask-size: auto 100%;
  -webkit-mask-size: auto 100%;
}
@media (max-width: 47.98rem) {
  .ratio-square {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 63.98rem) {
  .ratio-img-txt {
    aspect-ratio: 4/3;
  }
}
.close-btn {
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.close-btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #424242;
  mask: url(../Images/cross.svg) center/auto no-repeat;
  -webkit-mask: url(../Images/cross.svg) center/auto no-repeat;
}
@media (max-width: 63.98rem) {
  .dn-mobile {
    display: none;
  }
}
.section-branding {
  background: url(../Images/shapes.png) 50%/100% auto repeat-y;
}
.section-intro {
  padding-block-start: 77px;
  padding-block-end: 82px;
}
@media (max-width: 47.98rem) {
  .section-intro {
    padding-block-start: 55px;
    padding-block-end: 60px;
  }
}
@media (max-width: 35.98rem) {
  .section-intro {
    padding-block-start: 25px;
    padding-block-end: 30px;
  }
}
@media (max-width: 35.98rem) {
  .section-intro .wysiwyg {
    max-height: 96px;
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
@media (max-width: 35.98rem) {
  .section-intro .wysiwyg.active {
    max-height: inherit;
    overflow: visible;
  }
}
.section-intro .see-more {
  display: none;
  cursor: pointer;
}
@media (max-width: 35.98rem) {
  .section-intro .see-more {
    display: inline-block;
  }
}
.section-map #svg-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.section-map #svg-map .interactive {
  cursor: pointer;
}
.section-map #map-popin {
  opacity: 0;
  visibility: hidden;
}
.section-map #map-popin.active {
  opacity: 1;
  visibility: visible;
}
.section-map .popin {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 360px;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 34px 34px rgba(4, 4, 4, 0.06);
}
@media (max-width: 63.98rem) {
  .section-map .popin {
    right: inherit;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
  }
}
@media (max-width: 35.98rem) {
  .section-map .popin {
    top: 8px;
    width: calc(100% - 32px);
    padding: 20px 30px;
  }
}
.section-map .popin .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
}
.section-map .popin .popin-txt {
  margin-top: 12px;
}
.section-map .popin .popin-btn {
  margin-top: 17px;
  padding-inline: 48px;
}
@media (max-width: 35.98rem) {
  .section-map .popin .popin-btn {
    padding-block: 8px;
    padding-inline: 33px;
  }
}
.section-map .map-infos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 63.98rem) {
  .section-map .map-infos {
    margin: 12px;
    padding-top: 14px;
    padding-inline: 20px;
    background-color: #f3f4f7;
    box-shadow: 0 3.85321px 3.85321px rgba(0, 0, 0, 0.11);
  }
}
.section-map .legend {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 125px;
  padding: 22px 12px;
  background: #fff;
  border-radius: 8px;
}
@media (max-width: 63.98rem) {
  .section-map .legend {
    position: relative;
    left: inherit;
    top: inherit;
    width: inherit;
    background-color: inherit;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 0;
  }
}
.section-map .legend .legend-infos {
  margin-top: 14px;
}
@media (max-width: 63.98rem) {
  .section-map .legend .legend-infos {
    display: flex;
    flex-wrap: wrap;
  }
}
.section-map .legend .legend-infos .legend-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 63.98rem) {
  .section-map .legend .legend-infos .legend-item {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 64rem) {
  .section-map .legend .legend-infos .legend-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.section-map .legend .legend-infos .legend-item .legend-item-logo {
  position: relative;
  width: 76px;
  height: 46px;
}
.section-map .legend .legend-infos .legend-item .legend-item-logo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../Images/map-legend-2.svg) 50% / auto no-repeat;
}
.section-map .legend .legend-infos .legend-item .legend-item-txt {
  margin-top: 6px;
  font-size: 12px;
  text-align: center;
}
.section-map
  .legend
  .legend-infos
  .legend-item.interactive
  .legend-item-logo:after {
  background-image: url(../Images/map-legend-1.svg);
}
.section-map .proximity {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 193px;
  padding: 14px 12px 12px;
  background: #fff;
  border-radius: 8px;
}
@media (max-width: 63.98rem) {
  .section-map .proximity {
    position: relative;
    left: inherit;
    bottom: inherit;
    width: inherit;
    background-color: inherit;
    align-items: flex-start;
    padding: 0;
  }
}
.section-map .proximity .proximity-infos {
  margin-top: 14px;
}
@media (max-width: 63.98rem) {
  .section-map .proximity .proximity-infos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.section-map .proximity .proximity-infos .proximity-item {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  cursor: pointer;
}
@media (max-width: 63.98rem) {
  .section-map .proximity .proximity-infos .proximity-item {
    width: 100%;
    max-width: calc(33.33333% - 5px);
    margin-bottom: 20px;
  }
}
@media (min-width: 64rem) {
  .section-map .proximity .proximity-infos .proximity-item:not(:last-child) {
    margin-bottom: 8px;
  }
}
.section-map .proximity .proximity-infos .proximity-item .proximity-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-map .proximity .proximity-infos .proximity-item .proximity-item-txt {
  position: absolute;
  bottom: 6px;
  right: 9px;
  font-size: 12px;
  text-align: right;
}
@media (max-width: 35.98rem) {
  .section-map .proximity .proximity-infos .proximity-item .proximity-item-txt {
    font-size: 7px;
  }
}
.section-map .tooltip {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 16px;
  width: 100%;
  max-width: 650px;
  padding: 22px 45px 22px 20px;
  display: flex;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 34px 34px rgba(4, 4, 4, 0.06);
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 63.98rem) {
  .section-map .tooltip {
    bottom: inherit;
    right: inherit;
    top: 100px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    width: calc(100% - 32px);
    padding: 16px;
  }
}
@media (max-width: 47.98rem) {
  .section-map .tooltip {
    flex-direction: column;
    top: 50px;
  }
}
@media (max-width: 35.98rem) {
  .section-map .tooltip {
    top: 25px;
  }
}
.section-map .tooltip .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
}
.section-map .tooltip .tooltip-img {
  width: 100%;
  max-width: 224px;
  margin-right: 30px;
}
@media (max-width: 47.98rem) {
  .section-map .tooltip .tooltip-img {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.section-map .tooltip.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 63.98rem) {
  body.map-list .section-map {
    display: none;
  }
}
body.map-list .section-list {
  display: none;
}
@media (max-width: 63.98rem) {
  body.map-list .section-list {
    display: block;
  }
}
.section-list {
  padding-block: 70px;
}
@media (max-width: 47.98rem) {
  .section-list {
    padding-block: 50px;
  }
}
@media (max-width: 35.98rem) {
  .section-list {
    padding-block: 30px;
  }
}
.section-why {
  padding-block: 98px;
}
@media (max-width: 47.98rem) {
  .section-why {
    padding-block: 78px;
  }
}
@media (max-width: 35.98rem) {
  .section-why {
    padding-block: 48px;
  }
}
.section-why.bg-shapes {
  background: #0097d7 url(../Images/shapes-2.png) 100% / auto repeat-y;
}
.section-bottom {
  padding-block-start: 93px;
  padding-block-end: 83px;
}
@media (max-width: 47.98rem) {
  .section-bottom {
    padding-block-start: 73px;
    padding-block-end: 63px;
  }
}
@media (max-width: 35.98rem) {
  .section-bottom {
    padding-block-start: 53px;
    padding-block-end: 43px;
  }
}
.section-infos {
  padding-block-start: 40px;
  padding-block-end: 30px;
}
.section-infos .peoples {
  display: flex;
  flex-wrap: wrap;
}
.section-infos .separator {
  margin: 0 24px;
  width: 1px;
  height: 45px;
  background-color: #e5e5e5;
}
@media screen and (max-width: 414px) {
  .section-infos .separator {
    display: none;
  }
}
.section-infos .people {
  max-width: 335px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.section-infos .people .trombi {
  width: 57px;
  height: 57px;
}
.section-txt-img {
  padding-block-start: 30px;
  padding-block-end: 50px;
}
@media (max-width: 63.98rem) {
  .section-txt-img.img-right .row {
    flex-direction: column-reverse;
  }
}
.section-txt-bg {
  padding-block-start: 107px;
  padding-block-end: 62px;
}
@media (max-width: 47.98rem) {
  .section-txt-bg {
    padding-block-start: 87px;
    padding-block-end: 42px;
  }
}
@media (max-width: 35.98rem) {
  .section-txt-bg {
    padding-block-start: 57px;
    padding-block-end: 42px;
  }
}
.section-txt-img-bg {
  padding-block: 90px;
}
@media (max-width: 63.98rem) {
  .section-txt-img-bg {
    padding-block: 70px;
  }
}
@media (max-width: 47.98rem) {
  .section-txt-img-bg {
    padding-block: 50px;
  }
}
@media (max-width: 63.98rem) {
  .section-txt-img-bg .row {
    flex-direction: column-reverse;
  }
}
.section-txt-img-bg .media-container {
  max-width: 250px;
}
.section-quote {
  padding-block-start: 150px;
  padding-block-end: 90px;
}
@media (max-width: 47.98rem) {
  .section-quote {
    padding-block-start: 110px;
    padding-block-end: 70px;
  }
}
@media (max-width: 35.98rem) {
  .section-quote {
    padding-block-start: 80px;
    padding-block-end: 60px;
  }
}
.section-kpi {
  padding-block-start: 80px;
  padding-block-end: 90px;
}
@media (max-width: 47.98rem) {
  .section-kpi {
    padding-block-start: 60px;
    padding-block-end: 60px;
  }
}
@media (max-width: 35.98rem) {
  .section-kpi {
    padding-block-start: 40px;
    padding-block-end: 40px;
  }
}
.section-kpi .kpi .number-container {
  position: relative;
  display: inline-block;
  border-radius: 100%;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f3f4f7;
}
.section-kpi .kpi .number-container .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, calc(-50% + 6px), 0);
  font-size: 77px;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 63.98rem) {
  .section-kpi .kpi .number-container .number {
    font-size: 60px;
  }
}
@media (max-width: 47.98rem) {
  .section-kpi .kpi .number-container .number {
    font-size: 55px;
  }
}
@media (max-width: 35.98rem) {
  .section-kpi .kpi .number-container .number {
    font-size: 45px;
  }
}
.section-txt-simple {
  padding-block-start: 192px;
  padding-block-end: 182px;
}
@media (max-width: 47.98rem) {
  .section-txt-simple {
    padding-block-start: 90px;
    padding-block-end: 80px;
  }
}
@media (max-width: 35.98rem) {
  .section-txt-simple {
    padding-block-start: 70px;
    padding-block-end: 60px;
  }
}
.section-link {
  padding-block: 70px;
}
.section-two-col-img {
  padding-block-start: 30px;
  padding-block-end: 50px;
}
@media (max-width: 63.98rem) {
  .section-two-col-img.portrait .ratio-two-col-img-portrait {
    aspect-ratio: 160/107;
  }
}
.section-video {
  padding-block-start: 90px;
  padding-block-end: 60px;
}
@media (max-width: 47.98rem) {
  .section-video {
    padding-block-start: 60px;
    padding-block-end: 60px;
  }
}
@media (max-width: 35.98rem) {
  .section-video {
    padding-block-start: 40px;
    padding-block-end: 40px;
  }
}
.section-products {
  padding-block-start: 95px;
  padding-block-end: 80px;
}
@media (max-width: 47.98rem) {
  .section-products {
    padding-block-start: 85px;
    padding-block-end: 70px;
  }
}
@media (max-width: 35.98rem) {
  .section-products {
    padding-block-start: 60px;
    padding-block-end: 50px;
  }
}
.section-products .product .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
}
@media (max-width: 47.98rem) {
  .section-products .product .content {
    min-height: inherit;
  }
}
.section-related {
  padding-block: 80px;
}
@media (max-width: 47.98rem) {
  .section-related {
    padding-block: 60px;
  }
}
@media (max-width: 35.98rem) {
  .section-related {
    padding-block: 40px;
  }
}
