:root {
  --ct24-primary: #043cdc;
  --ct24-secondary: #cccdd4;
  --ct24-danger: #ed1c24;
  --ct24-text-primary: #000528;
  --ct24-text-secondary: #52556d;
  --ct24-primary-rgb: 4, 60, 220;
  --ct24-secondary-rgb: 204, 205, 212;
  --ct24-danger-rgb: 237, 28, 36;
  --ct24-text-primary-rgb: 0, 5, 40;
  --ct24-text-secondary-rgb: 82, 85, 109;
  --ct24-white-rgb: 255, 255, 255;
  --ct24-black-rgb: 0, 0, 0;
  --ct24-body-color-rgb: 0, 5, 40;
  --ct24-body-bg-rgb: 251, 251, 253;
  --ct24-font-sans-serif: "Source Sans Pro", sans-serif;
  --ct24-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --ct24-gradient: linear-gradient(
    180deg,
    hsla(0, 0%, 100%, 0.15),
    hsla(0, 0%, 100%, 0)
  );
  --ct24-body-font-family: var(--ct24-font-sans-serif);
  --ct24-body-font-size: 1rem;
  --ct24-body-font-weight: 400;
  --ct24-body-line-height: 1.5;
  --ct24-body-color: #000528;
  --ct24-body-bg: #fbfbfd;
  --ct24-border-width: 1px;
  --ct24-border-style: solid;
  --ct24-border-color: #e1e8fb;
  --ct24-border-color-translucent: rgba(0, 0, 0, 0.175);
  --ct24-border-radius: 2px;
  --ct24-border-radius-sm: 0.25rem;
  --ct24-border-radius-lg: 4px;
  --ct24-border-radius-xl: 1rem;
  --ct24-border-radius-2xl: 2rem;
  --ct24-border-radius-pill: 50rem;
  --ct24-link-color: #043cdc;
  --ct24-link-hover-color: #00288c;
  --ct24-code-color: #d63384;
  --ct24-highlight-bg: #fff3cd;
}
.article-strip-wrapper .article-strip__container,
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xs,
.container-xxl {
  --ct24-gutter-x: 2rem;
  --ct24-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--ct24-gutter-x) * 0.5);
  padding-left: calc(var(--ct24-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 480px) {
  .container,
  .container-xs {
    max-width: 480px;
  }
}
@media (min-width: 576px) {
  .container,
  .container-sm,
  .container-xs {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm,
  .container-xs {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .article-strip-wrapper .article-strip__container,
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xs {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .article-strip-wrapper .article-strip__container,
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xs {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .article-strip-wrapper .article-strip__container,
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xs,
  .container-xxl {
    max-width: 1248px;
  }
}
.row {
  --ct24-gutter-x: 2rem;
  --ct24-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--ct24-gutter-y));
  margin-right: calc(-0.5 * var(--ct24-gutter-x));
  margin-left: calc(-0.5 * var(--ct24-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--ct24-gutter-x) * 0.5);
  padding-left: calc(var(--ct24-gutter-x) * 0.5);
  margin-top: var(--ct24-gutter-y);
}
.col {
  flex: 1 0;
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.offset-1 {
  margin-left: 8.33333333%;
}
.offset-2 {
  margin-left: 16.66666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333333%;
}
.offset-5 {
  margin-left: 41.66666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333333%;
}
.offset-8 {
  margin-left: 66.66666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333333%;
}
.offset-11 {
  margin-left: 91.66666667%;
}
.g-0,
.gx-0 {
  --ct24-gutter-x: 0;
}
.g-0,
.gy-0 {
  --ct24-gutter-y: 0;
}
.g-0_5,
.gx-0_5 {
  --ct24-gutter-x: 0.125rem;
}
.g-0_5,
.gy-0_5 {
  --ct24-gutter-y: 0.125rem;
}
.g-1,
.gx-1 {
  --ct24-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
  --ct24-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
  --ct24-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
  --ct24-gutter-y: 0.5rem;
}
.g-2_5,
.gx-2_5 {
  --ct24-gutter-x: 0.75rem;
}
.g-2_5,
.gy-2_5 {
  --ct24-gutter-y: 0.75rem;
}
.g-3,
.gx-3 {
  --ct24-gutter-x: 1rem;
}
.g-3,
.gy-3 {
  --ct24-gutter-y: 1rem;
}
.g-4,
.gx-4 {
  --ct24-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
  --ct24-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
  --ct24-gutter-x: 2rem;
}
.g-5,
.gy-5 {
  --ct24-gutter-y: 2rem;
}
.g-5_5,
.gx-5_5 {
  --ct24-gutter-x: 2.5rem;
}
.g-5_5,
.gy-5_5 {
  --ct24-gutter-y: 2.5rem;
}
.g-6,
.gx-6 {
  --ct24-gutter-x: 3rem;
}
.g-6,
.gy-6 {
  --ct24-gutter-y: 3rem;
}
.g-7,
.gx-7 {
  --ct24-gutter-x: 4rem;
}
.g-7,
.gy-7 {
  --ct24-gutter-y: 4rem;
}
@media (min-width: 480px) {
  .col-xs {
    flex: 1 0;
  }
  .row-cols-xs-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xs-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xs-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xs-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xs-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xs-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xs-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xs-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xs-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xs-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xs-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xs-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xs-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xs-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xs-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xs-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xs-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xs-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xs-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xs-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xs-0 {
    margin-left: 0;
  }
  .offset-xs-1 {
    margin-left: 8.33333333%;
  }
  .offset-xs-2 {
    margin-left: 16.66666667%;
  }
  .offset-xs-3 {
    margin-left: 25%;
  }
  .offset-xs-4 {
    margin-left: 33.33333333%;
  }
  .offset-xs-5 {
    margin-left: 41.66666667%;
  }
  .offset-xs-6 {
    margin-left: 50%;
  }
  .offset-xs-7 {
    margin-left: 58.33333333%;
  }
  .offset-xs-8 {
    margin-left: 66.66666667%;
  }
  .offset-xs-9 {
    margin-left: 75%;
  }
  .offset-xs-10 {
    margin-left: 83.33333333%;
  }
  .offset-xs-11 {
    margin-left: 91.66666667%;
  }
  .g-xs-0,
  .gx-xs-0 {
    --ct24-gutter-x: 0;
  }
  .g-xs-0,
  .gy-xs-0 {
    --ct24-gutter-y: 0;
  }
  .g-xs-0_5,
  .gx-xs-0_5 {
    --ct24-gutter-x: 0.125rem;
  }
  .g-xs-0_5,
  .gy-xs-0_5 {
    --ct24-gutter-y: 0.125rem;
  }
  .g-xs-1,
  .gx-xs-1 {
    --ct24-gutter-x: 0.25rem;
  }
  .g-xs-1,
  .gy-xs-1 {
    --ct24-gutter-y: 0.25rem;
  }
  .g-xs-2,
  .gx-xs-2 {
    --ct24-gutter-x: 0.5rem;
  }
  .g-xs-2,
  .gy-xs-2 {
    --ct24-gutter-y: 0.5rem;
  }
  .g-xs-2_5,
  .gx-xs-2_5 {
    --ct24-gutter-x: 0.75rem;
  }
  .g-xs-2_5,
  .gy-xs-2_5 {
    --ct24-gutter-y: 0.75rem;
  }
  .g-xs-3,
  .gx-xs-3 {
    --ct24-gutter-x: 1rem;
  }
  .g-xs-3,
  .gy-xs-3 {
    --ct24-gutter-y: 1rem;
  }
  .g-xs-4,
  .gx-xs-4 {
    --ct24-gutter-x: 1.5rem;
  }
  .g-xs-4,
  .gy-xs-4 {
    --ct24-gutter-y: 1.5rem;
  }
  .g-xs-5,
  .gx-xs-5 {
    --ct24-gutter-x: 2rem;
  }
  .g-xs-5,
  .gy-xs-5 {
    --ct24-gutter-y: 2rem;
  }
  .g-xs-5_5,
  .gx-xs-5_5 {
    --ct24-gutter-x: 2.5rem;
  }
  .g-xs-5_5,
  .gy-xs-5_5 {
    --ct24-gutter-y: 2.5rem;
  }
  .g-xs-6,
  .gx-xs-6 {
    --ct24-gutter-x: 3rem;
  }
  .g-xs-6,
  .gy-xs-6 {
    --ct24-gutter-y: 3rem;
  }
  .g-xs-7,
  .gx-xs-7 {
    --ct24-gutter-x: 4rem;
  }
  .g-xs-7,
  .gy-xs-7 {
    --ct24-gutter-y: 4rem;
  }
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --ct24-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --ct24-gutter-y: 0;
  }
  .g-sm-0_5,
  .gx-sm-0_5 {
    --ct24-gutter-x: 0.125rem;
  }
  .g-sm-0_5,
  .gy-sm-0_5 {
    --ct24-gutter-y: 0.125rem;
  }
  .g-sm-1,
  .gx-sm-1 {
    --ct24-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --ct24-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --ct24-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --ct24-gutter-y: 0.5rem;
  }
  .g-sm-2_5,
  .gx-sm-2_5 {
    --ct24-gutter-x: 0.75rem;
  }
  .g-sm-2_5,
  .gy-sm-2_5 {
    --ct24-gutter-y: 0.75rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --ct24-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --ct24-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --ct24-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --ct24-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --ct24-gutter-x: 2rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --ct24-gutter-y: 2rem;
  }
  .g-sm-5_5,
  .gx-sm-5_5 {
    --ct24-gutter-x: 2.5rem;
  }
  .g-sm-5_5,
  .gy-sm-5_5 {
    --ct24-gutter-y: 2.5rem;
  }
  .g-sm-6,
  .gx-sm-6 {
    --ct24-gutter-x: 3rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --ct24-gutter-y: 3rem;
  }
  .g-sm-7,
  .gx-sm-7 {
    --ct24-gutter-x: 4rem;
  }
  .g-sm-7,
  .gy-sm-7 {
    --ct24-gutter-y: 4rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --ct24-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --ct24-gutter-y: 0;
  }
  .g-md-0_5,
  .gx-md-0_5 {
    --ct24-gutter-x: 0.125rem;
  }
  .g-md-0_5,
  .gy-md-0_5 {
    --ct24-gutter-y: 0.125rem;
  }
  .g-md-1,
  .gx-md-1 {
    --ct24-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --ct24-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --ct24-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --ct24-gutter-y: 0.5rem;
  }
  .g-md-2_5,
  .gx-md-2_5 {
    --ct24-gutter-x: 0.75rem;
  }
  .g-md-2_5,
  .gy-md-2_5 {
    --ct24-gutter-y: 0.75rem;
  }
  .g-md-3,
  .gx-md-3 {
    --ct24-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --ct24-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --ct24-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --ct24-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --ct24-gutter-x: 2rem;
  }
  .g-md-5,
  .gy-md-5 {
    --ct24-gutter-y: 2rem;
  }
  .g-md-5_5,
  .gx-md-5_5 {
    --ct24-gutter-x: 2.5rem;
  }
  .g-md-5_5,
  .gy-md-5_5 {
    --ct24-gutter-y: 2.5rem;
  }
  .g-md-6,
  .gx-md-6 {
    --ct24-gutter-x: 3rem;
  }
  .g-md-6,
  .gy-md-6 {
    --ct24-gutter-y: 3rem;
  }
  .g-md-7,
  .gx-md-7 {
    --ct24-gutter-x: 4rem;
  }
  .g-md-7,
  .gy-md-7 {
    --ct24-gutter-y: 4rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --ct24-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --ct24-gutter-y: 0;
  }
  .g-lg-0_5,
  .gx-lg-0_5 {
    --ct24-gutter-x: 0.125rem;
  }
  .g-lg-0_5,
  .gy-lg-0_5 {
    --ct24-gutter-y: 0.125rem;
  }
  .g-lg-1,
  .gx-lg-1 {
    --ct24-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --ct24-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --ct24-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --ct24-gutter-y: 0.5rem;
  }
  .g-lg-2_5,
  .gx-lg-2_5 {
    --ct24-gutter-x: 0.75rem;
  }
  .g-lg-2_5,
  .gy-lg-2_5 {
    --ct24-gutter-y: 0.75rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --ct24-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --ct24-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --ct24-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --ct24-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --ct24-gutter-x: 2rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --ct24-gutter-y: 2rem;
  }
  .g-lg-5_5,
  .gx-lg-5_5 {
    --ct24-gutter-x: 2.5rem;
  }
  .g-lg-5_5,
  .gy-lg-5_5 {
    --ct24-gutter-y: 2.5rem;
  }
  .g-lg-6,
  .gx-lg-6 {
    --ct24-gutter-x: 3rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --ct24-gutter-y: 3rem;
  }
  .g-lg-7,
  .gx-lg-7 {
    --ct24-gutter-x: 4rem;
  }
  .g-lg-7,
  .gy-lg-7 {
    --ct24-gutter-y: 4rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --ct24-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --ct24-gutter-y: 0;
  }
  .g-xl-0_5,
  .gx-xl-0_5 {
    --ct24-gutter-x: 0.125rem;
  }
  .g-xl-0_5,
  .gy-xl-0_5 {
    --ct24-gutter-y: 0.125rem;
  }
  .g-xl-1,
  .gx-xl-1 {
    --ct24-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --ct24-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --ct24-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --ct24-gutter-y: 0.5rem;
  }
  .g-xl-2_5,
  .gx-xl-2_5 {
    --ct24-gutter-x: 0.75rem;
  }
  .g-xl-2_5,
  .gy-xl-2_5 {
    --ct24-gutter-y: 0.75rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --ct24-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --ct24-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --ct24-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --ct24-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --ct24-gutter-x: 2rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --ct24-gutter-y: 2rem;
  }
  .g-xl-5_5,
  .gx-xl-5_5 {
    --ct24-gutter-x: 2.5rem;
  }
  .g-xl-5_5,
  .gy-xl-5_5 {
    --ct24-gutter-y: 2.5rem;
  }
  .g-xl-6,
  .gx-xl-6 {
    --ct24-gutter-x: 3rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --ct24-gutter-y: 3rem;
  }
  .g-xl-7,
  .gx-xl-7 {
    --ct24-gutter-x: 4rem;
  }
  .g-xl-7,
  .gy-xl-7 {
    --ct24-gutter-y: 4rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --ct24-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --ct24-gutter-y: 0;
  }
  .g-xxl-0_5,
  .gx-xxl-0_5 {
    --ct24-gutter-x: 0.125rem;
  }
  .g-xxl-0_5,
  .gy-xxl-0_5 {
    --ct24-gutter-y: 0.125rem;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --ct24-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --ct24-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --ct24-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --ct24-gutter-y: 0.5rem;
  }
  .g-xxl-2_5,
  .gx-xxl-2_5 {
    --ct24-gutter-x: 0.75rem;
  }
  .g-xxl-2_5,
  .gy-xxl-2_5 {
    --ct24-gutter-y: 0.75rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --ct24-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --ct24-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --ct24-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --ct24-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --ct24-gutter-x: 2rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --ct24-gutter-y: 2rem;
  }
  .g-xxl-5_5,
  .gx-xxl-5_5 {
    --ct24-gutter-x: 2.5rem;
  }
  .g-xxl-5_5,
  .gy-xxl-5_5 {
    --ct24-gutter-y: 2.5rem;
  }
  .g-xxl-6,
  .gx-xxl-6 {
    --ct24-gutter-x: 3rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --ct24-gutter-y: 3rem;
  }
  .g-xxl-7,
  .gx-xxl-7 {
    --ct24-gutter-x: 4rem;
  }
  .g-xxl-7,
  .gy-xxl-7 {
    --ct24-gutter-y: 4rem;
  }
}
.color-primary {
  --ct24-text-opacity: 1;
  color: rgba(var(--ct24-primary-rgb), var(--ct24-text-opacity)) !important;
}
.color-secondary {
  --ct24-text-opacity: 1;
  color: rgba(var(--ct24-secondary-rgb), var(--ct24-text-opacity)) !important;
}
.color-danger {
  --ct24-text-opacity: 1;
  color: rgba(var(--ct24-danger-rgb), var(--ct24-text-opacity)) !important;
}
.color-text-primary {
  --ct24-text-opacity: 1;
  color: rgba(
    var(--ct24-text-primary-rgb),
    var(--ct24-text-opacity)
  ) !important;
}
.color-text-secondary {
  --ct24-text-opacity: 1;
  color: rgba(
    var(--ct24-text-secondary-rgb),
    var(--ct24-text-opacity)
  ) !important;
}
.color-black {
  --ct24-text-opacity: 1;
  color: rgba(var(--ct24-black-rgb), var(--ct24-text-opacity)) !important;
}
.color-white {
  --ct24-text-opacity: 1;
  color: rgba(var(--ct24-white-rgb), var(--ct24-text-opacity)) !important;
}
.color-body {
  --ct24-text-opacity: 1;
  color: rgba(var(--ct24-body-color-rgb), var(--ct24-text-opacity)) !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.border {
  border: var(--ct24-border-width) var(--ct24-border-style)
    var(--ct24-border-color) !important;
}
.border-0 {
  border: 0 !important;
}
.border-top {
  border-top: var(--ct24-border-width) var(--ct24-border-style)
    var(--ct24-border-color) !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-end {
  border-right: var(--ct24-border-width) var(--ct24-border-style)
    var(--ct24-border-color) !important;
}
.border-end-0 {
  border-right: 0 !important;
}
.border-bottom {
  border-bottom: var(--ct24-border-width) var(--ct24-border-style)
    var(--ct24-border-color) !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-start {
  border-left: var(--ct24-border-width) var(--ct24-border-style)
    var(--ct24-border-color) !important;
}
.border-start-0 {
  border-left: 0 !important;
}
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.mw-100 {
  max-width: 100% !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-evenly {
  justify-content: space-evenly !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.order-first {
  order: -1 !important;
}
.order-0 {
  order: 0 !important;
}
.order-1 {
  order: 1 !important;
}
.order-2 {
  order: 2 !important;
}
.order-3 {
  order: 3 !important;
}
.order-4 {
  order: 4 !important;
}
.order-5 {
  order: 5 !important;
}
.order-last {
  order: 6 !important;
}
.m-0 {
  margin: 0 !important;
}
.m-0_5 {
  margin: 0.125rem !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-2_5 {
  margin: 0.75rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 2rem !important;
}
.m-5_5 {
  margin: 2.5rem !important;
}
.m-6 {
  margin: 3rem !important;
}
.m-7 {
  margin: 4rem !important;
}
.m-auto {
  margin: auto !important;
}
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.mx-0_5 {
  margin-right: 0.125rem !important;
  margin-left: 0.125rem !important;
}
.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.mx-2_5 {
  margin-right: 0.75rem !important;
  margin-left: 0.75rem !important;
}
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.mx-5 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}
.mx-5_5 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}
.mx-6 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.mx-7 {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-0_5 {
  margin-top: 0.125rem !important;
  margin-bottom: 0.125rem !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-2_5 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.my-5_5 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}
.my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-7 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-0_5 {
  margin-top: 0.125rem !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-2_5 {
  margin-top: 0.75rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 2rem !important;
}
.mt-5_5 {
  margin-top: 2.5rem !important;
}
.mt-6 {
  margin-top: 3rem !important;
}
.mt-7 {
  margin-top: 4rem !important;
}
.mt-auto {
  margin-top: auto !important;
}
.me-0 {
  margin-right: 0 !important;
}
.me-0_5 {
  margin-right: 0.125rem !important;
}
.me-1 {
  margin-right: 0.25rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-2_5 {
  margin-right: 0.75rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.me-4 {
  margin-right: 1.5rem !important;
}
.me-5 {
  margin-right: 2rem !important;
}
.me-5_5 {
  margin-right: 2.5rem !important;
}
.me-6 {
  margin-right: 3rem !important;
}
.me-7 {
  margin-right: 4rem !important;
}
.me-auto {
  margin-right: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-0_5 {
  margin-bottom: 0.125rem !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-2_5 {
  margin-bottom: 0.75rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.article-strip-wrapper,
.column .article-strip-wrapper,
.column .component-spacer,
.component-spacer,
.mb-5 {
  margin-bottom: 2rem !important;
}
.mb-5_5 {
  margin-bottom: 2.5rem !important;
}
.mb-6 {
  margin-bottom: 3rem !important;
}
.mb-7 {
  margin-bottom: 4rem !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ms-0 {
  margin-left: 0 !important;
}
.ms-0_5 {
  margin-left: 0.125rem !important;
}
.ms-1 {
  margin-left: 0.25rem !important;
}
.ms-2 {
  margin-left: 0.5rem !important;
}
.ms-2_5 {
  margin-left: 0.75rem !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.ms-4 {
  margin-left: 1.5rem !important;
}
.ms-5 {
  margin-left: 2rem !important;
}
.ms-5_5 {
  margin-left: 2.5rem !important;
}
.ms-6 {
  margin-left: 3rem !important;
}
.ms-7 {
  margin-left: 4rem !important;
}
.ms-auto {
  margin-left: auto !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.ml-0_5 {
  margin-left: 0.125rem !important;
}
.ml-1 {
  margin-left: 0.25rem !important;
}
.ml-2 {
  margin-left: 0.5rem !important;
}
.ml-2_5 {
  margin-left: 0.75rem !important;
}
.ml-3 {
  margin-left: 1rem !important;
}
.ml-4 {
  margin-left: 1.5rem !important;
}
.ml-5 {
  margin-left: 2rem !important;
}
.ml-5_5 {
  margin-left: 2.5rem !important;
}
.ml-6 {
  margin-left: 3rem !important;
}
.ml-7 {
  margin-left: 4rem !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mr-0_5 {
  margin-right: 0.125rem !important;
}
.mr-1 {
  margin-right: 0.25rem !important;
}
.mr-2 {
  margin-right: 0.5rem !important;
}
.mr-2_5 {
  margin-right: 0.75rem !important;
}
.mr-3 {
  margin-right: 1rem !important;
}
.mr-4 {
  margin-right: 1.5rem !important;
}
.mr-5 {
  margin-right: 2rem !important;
}
.mr-5_5 {
  margin-right: 2.5rem !important;
}
.mr-6 {
  margin-right: 3rem !important;
}
.mr-7 {
  margin-right: 4rem !important;
}
.p-0 {
  padding: 0 !important;
}
.p-0_5 {
  padding: 0.125rem !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-2_5 {
  padding: 0.75rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 2rem !important;
}
.p-5_5 {
  padding: 2.5rem !important;
}
.p-6 {
  padding: 3rem !important;
}
.p-7 {
  padding: 4rem !important;
}
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.px-0_5 {
  padding-right: 0.125rem !important;
  padding-left: 0.125rem !important;
}
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.px-2_5 {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.px-5 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}
.px-5_5 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}
.px-6 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.px-7 {
  padding-right: 4rem !important;
  padding-left: 4rem !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-0_5 {
  padding-top: 0.125rem !important;
  padding-bottom: 0.125rem !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-2_5 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.py-5_5 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.py-7 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-0_5 {
  padding-top: 0.125rem !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-2_5 {
  padding-top: 0.75rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-5 {
  padding-top: 2rem !important;
}
.pt-5_5 {
  padding-top: 2.5rem !important;
}
.pt-6 {
  padding-top: 3rem !important;
}
.pt-7 {
  padding-top: 4rem !important;
}
.pe-0 {
  padding-right: 0 !important;
}
.pe-0_5 {
  padding-right: 0.125rem !important;
}
.pe-1 {
  padding-right: 0.25rem !important;
}
.pe-2 {
  padding-right: 0.5rem !important;
}
.pe-2_5 {
  padding-right: 0.75rem !important;
}
.pe-3 {
  padding-right: 1rem !important;
}
.pe-4 {
  padding-right: 1.5rem !important;
}
.pe-5 {
  padding-right: 2rem !important;
}
.pe-5_5 {
  padding-right: 2.5rem !important;
}
.pe-6 {
  padding-right: 3rem !important;
}
.pe-7 {
  padding-right: 4rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-0_5 {
  padding-bottom: 0.125rem !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-2_5 {
  padding-bottom: 0.75rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 2rem !important;
}
.pb-5_5 {
  padding-bottom: 2.5rem !important;
}
.pb-6 {
  padding-bottom: 3rem !important;
}
.pb-7 {
  padding-bottom: 4rem !important;
}
.ps-0 {
  padding-left: 0 !important;
}
.ps-0_5 {
  padding-left: 0.125rem !important;
}
.ps-1 {
  padding-left: 0.25rem !important;
}
.ps-2 {
  padding-left: 0.5rem !important;
}
.ps-2_5 {
  padding-left: 0.75rem !important;
}
.ps-3 {
  padding-left: 1rem !important;
}
.ps-4 {
  padding-left: 1.5rem !important;
}
.ps-5 {
  padding-left: 2rem !important;
}
.ps-5_5 {
  padding-left: 2.5rem !important;
}
.ps-6 {
  padding-left: 3rem !important;
}
.ps-7 {
  padding-left: 4rem !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.pl-0_5 {
  padding-left: 0.125rem !important;
}
.pl-1 {
  padding-left: 0.25rem !important;
}
.pl-2 {
  padding-left: 0.5rem !important;
}
.pl-2_5 {
  padding-left: 0.75rem !important;
}
.pl-3 {
  padding-left: 1rem !important;
}
.pl-4 {
  padding-left: 1.5rem !important;
}
.pl-5 {
  padding-left: 2rem !important;
}
.pl-5_5 {
  padding-left: 2.5rem !important;
}
.pl-6 {
  padding-left: 3rem !important;
}
.pl-7 {
  padding-left: 4rem !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.pr-0_5 {
  padding-right: 0.125rem !important;
}
.pr-1 {
  padding-right: 0.25rem !important;
}
.pr-2 {
  padding-right: 0.5rem !important;
}
.pr-2_5 {
  padding-right: 0.75rem !important;
}
.pr-3 {
  padding-right: 1rem !important;
}
.pr-4 {
  padding-right: 1.5rem !important;
}
.pr-5 {
  padding-right: 2rem !important;
}
.pr-5_5 {
  padding-right: 2.5rem !important;
}
.pr-6 {
  padding-right: 3rem !important;
}
.pr-7 {
  padding-right: 4rem !important;
}
.gap-0 {
  gap: 0 !important;
}
.gap-0_5 {
  gap: 0.125rem !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-2_5 {
  gap: 0.75rem !important;
}
.gap-3 {
  gap: 1rem !important;
}
.gap-4 {
  gap: 1.5rem !important;
}
.gap-5 {
  gap: 2rem !important;
}
.gap-5_5 {
  gap: 2.5rem !important;
}
.gap-6 {
  gap: 3rem !important;
}
.gap-7 {
  gap: 4rem !important;
}
.fw-light {
  font-weight: 300 !important;
}
.fw-lighter {
  font-weight: lighter !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-bold {
  font-weight: 600 !important;
}
.fw-semibold {
  font-weight: 500 !important;
}
.fw-bolder {
  font-weight: 700 !important;
}
.lh-1 {
  line-height: 1 !important;
}
.lh-sm {
  line-height: 1.25 !important;
}
.lh-base {
  line-height: 1.5 !important;
}
.lh-lg {
  line-height: 2 !important;
}
.text-start {
  text-align: left !important;
}
.text-end {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-decoration-none {
  text-decoration: none !important;
}
.text-decoration-underline {
  text-decoration: underline !important;
}
.text-decoration-line-through {
  text-decoration: line-through !important;
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.rounded {
  border-radius: var(--ct24-border-radius) !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.rounded-1 {
  border-radius: var(--ct24-border-radius-sm) !important;
}
.rounded-2 {
  border-radius: var(--ct24-border-radius) !important;
}
.rounded-3 {
  border-radius: var(--ct24-border-radius-lg) !important;
}
.rounded-4 {
  border-radius: var(--ct24-border-radius-xl) !important;
}
.rounded-5 {
  border-radius: var(--ct24-border-radius-2xl) !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-pill {
  border-radius: var(--ct24-border-radius-pill) !important;
}
@media (min-width: 480px) {
  .d-xs-inline {
    display: inline !important;
  }
  .d-xs-inline-block {
    display: inline-block !important;
  }
  .d-xs-block {
    display: block !important;
  }
  .d-xs-grid {
    display: grid !important;
  }
  .d-xs-table {
    display: table !important;
  }
  .d-xs-table-row {
    display: table-row !important;
  }
  .d-xs-table-cell {
    display: table-cell !important;
  }
  .d-xs-flex {
    display: flex !important;
  }
  .d-xs-inline-flex {
    display: inline-flex !important;
  }
  .d-xs-none {
    display: none !important;
  }
  .flex-xs-fill {
    flex: 1 1 auto !important;
  }
  .flex-xs-row {
    flex-direction: row !important;
  }
  .flex-xs-column {
    flex-direction: column !important;
  }
  .flex-xs-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xs-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xs-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xs-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xs-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xs-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xs-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xs-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xs-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xs-start {
    justify-content: flex-start !important;
  }
  .justify-content-xs-end {
    justify-content: flex-end !important;
  }
  .justify-content-xs-center {
    justify-content: center !important;
  }
  .justify-content-xs-between {
    justify-content: space-between !important;
  }
  .justify-content-xs-around {
    justify-content: space-around !important;
  }
  .justify-content-xs-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xs-start {
    align-items: flex-start !important;
  }
  .align-items-xs-end {
    align-items: flex-end !important;
  }
  .align-items-xs-center {
    align-items: center !important;
  }
  .align-items-xs-baseline {
    align-items: baseline !important;
  }
  .align-items-xs-stretch {
    align-items: stretch !important;
  }
  .align-content-xs-start {
    align-content: flex-start !important;
  }
  .align-content-xs-end {
    align-content: flex-end !important;
  }
  .align-content-xs-center {
    align-content: center !important;
  }
  .align-content-xs-between {
    align-content: space-between !important;
  }
  .align-content-xs-around {
    align-content: space-around !important;
  }
  .align-content-xs-stretch {
    align-content: stretch !important;
  }
  .align-self-xs-auto {
    align-self: auto !important;
  }
  .align-self-xs-start {
    align-self: flex-start !important;
  }
  .align-self-xs-end {
    align-self: flex-end !important;
  }
  .align-self-xs-center {
    align-self: center !important;
  }
  .align-self-xs-baseline {
    align-self: baseline !important;
  }
  .align-self-xs-stretch {
    align-self: stretch !important;
  }
  .order-xs-first {
    order: -1 !important;
  }
  .order-xs-0 {
    order: 0 !important;
  }
  .order-xs-1 {
    order: 1 !important;
  }
  .order-xs-2 {
    order: 2 !important;
  }
  .order-xs-3 {
    order: 3 !important;
  }
  .order-xs-4 {
    order: 4 !important;
  }
  .order-xs-5 {
    order: 5 !important;
  }
  .order-xs-last {
    order: 6 !important;
  }
  .m-xs-0 {
    margin: 0 !important;
  }
  .m-xs-0_5 {
    margin: 0.125rem !important;
  }
  .m-xs-1 {
    margin: 0.25rem !important;
  }
  .m-xs-2 {
    margin: 0.5rem !important;
  }
  .m-xs-2_5 {
    margin: 0.75rem !important;
  }
  .m-xs-3 {
    margin: 1rem !important;
  }
  .m-xs-4 {
    margin: 1.5rem !important;
  }
  .m-xs-5 {
    margin: 2rem !important;
  }
  .m-xs-5_5 {
    margin: 2.5rem !important;
  }
  .m-xs-6 {
    margin: 3rem !important;
  }
  .m-xs-7 {
    margin: 4rem !important;
  }
  .m-xs-auto {
    margin: auto !important;
  }
  .mx-xs-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xs-0_5 {
    margin-right: 0.125rem !important;
    margin-left: 0.125rem !important;
  }
  .mx-xs-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xs-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xs-2_5 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xs-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xs-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xs-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xs-5_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xs-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xs-7 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xs-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xs-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xs-0_5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
  .my-xs-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xs-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xs-2_5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xs-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xs-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xs-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xs-5_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xs-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xs-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xs-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xs-0 {
    margin-top: 0 !important;
  }
  .mt-xs-0_5 {
    margin-top: 0.125rem !important;
  }
  .mt-xs-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xs-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xs-2_5 {
    margin-top: 0.75rem !important;
  }
  .mt-xs-3 {
    margin-top: 1rem !important;
  }
  .mt-xs-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xs-5 {
    margin-top: 2rem !important;
  }
  .mt-xs-5_5 {
    margin-top: 2.5rem !important;
  }
  .mt-xs-6 {
    margin-top: 3rem !important;
  }
  .mt-xs-7 {
    margin-top: 4rem !important;
  }
  .mt-xs-auto {
    margin-top: auto !important;
  }
  .me-xs-0 {
    margin-right: 0 !important;
  }
  .me-xs-0_5 {
    margin-right: 0.125rem !important;
  }
  .me-xs-1 {
    margin-right: 0.25rem !important;
  }
  .me-xs-2 {
    margin-right: 0.5rem !important;
  }
  .me-xs-2_5 {
    margin-right: 0.75rem !important;
  }
  .me-xs-3 {
    margin-right: 1rem !important;
  }
  .me-xs-4 {
    margin-right: 1.5rem !important;
  }
  .me-xs-5 {
    margin-right: 2rem !important;
  }
  .me-xs-5_5 {
    margin-right: 2.5rem !important;
  }
  .me-xs-6 {
    margin-right: 3rem !important;
  }
  .me-xs-7 {
    margin-right: 4rem !important;
  }
  .me-xs-auto {
    margin-right: auto !important;
  }
  .mb-xs-0 {
    margin-bottom: 0 !important;
  }
  .mb-xs-0_5 {
    margin-bottom: 0.125rem !important;
  }
  .mb-xs-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xs-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xs-2_5 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xs-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xs-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xs-5 {
    margin-bottom: 2rem !important;
  }
  .mb-xs-5_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xs-6 {
    margin-bottom: 3rem !important;
  }
  .mb-xs-7 {
    margin-bottom: 4rem !important;
  }
  .mb-xs-auto {
    margin-bottom: auto !important;
  }
  .ms-xs-0 {
    margin-left: 0 !important;
  }
  .ms-xs-0_5 {
    margin-left: 0.125rem !important;
  }
  .ms-xs-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xs-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xs-2_5 {
    margin-left: 0.75rem !important;
  }
  .ms-xs-3 {
    margin-left: 1rem !important;
  }
  .ms-xs-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xs-5 {
    margin-left: 2rem !important;
  }
  .ms-xs-5_5 {
    margin-left: 2.5rem !important;
  }
  .ms-xs-6 {
    margin-left: 3rem !important;
  }
  .ms-xs-7 {
    margin-left: 4rem !important;
  }
  .ms-xs-auto {
    margin-left: auto !important;
  }
  .ml-xs-0 {
    margin-left: 0 !important;
  }
  .ml-xs-0_5 {
    margin-left: 0.125rem !important;
  }
  .ml-xs-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xs-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xs-2_5 {
    margin-left: 0.75rem !important;
  }
  .ml-xs-3 {
    margin-left: 1rem !important;
  }
  .ml-xs-4 {
    margin-left: 1.5rem !important;
  }
  .ml-xs-5 {
    margin-left: 2rem !important;
  }
  .ml-xs-5_5 {
    margin-left: 2.5rem !important;
  }
  .ml-xs-6 {
    margin-left: 3rem !important;
  }
  .ml-xs-7 {
    margin-left: 4rem !important;
  }
  .mr-xs-0 {
    margin-right: 0 !important;
  }
  .mr-xs-0_5 {
    margin-right: 0.125rem !important;
  }
  .mr-xs-1 {
    margin-right: 0.25rem !important;
  }
  .mr-xs-2 {
    margin-right: 0.5rem !important;
  }
  .mr-xs-2_5 {
    margin-right: 0.75rem !important;
  }
  .mr-xs-3 {
    margin-right: 1rem !important;
  }
  .mr-xs-4 {
    margin-right: 1.5rem !important;
  }
  .mr-xs-5 {
    margin-right: 2rem !important;
  }
  .mr-xs-5_5 {
    margin-right: 2.5rem !important;
  }
  .mr-xs-6 {
    margin-right: 3rem !important;
  }
  .mr-xs-7 {
    margin-right: 4rem !important;
  }
  .p-xs-0 {
    padding: 0 !important;
  }
  .p-xs-0_5 {
    padding: 0.125rem !important;
  }
  .p-xs-1 {
    padding: 0.25rem !important;
  }
  .p-xs-2 {
    padding: 0.5rem !important;
  }
  .p-xs-2_5 {
    padding: 0.75rem !important;
  }
  .p-xs-3 {
    padding: 1rem !important;
  }
  .p-xs-4 {
    padding: 1.5rem !important;
  }
  .p-xs-5 {
    padding: 2rem !important;
  }
  .p-xs-5_5 {
    padding: 2.5rem !important;
  }
  .p-xs-6 {
    padding: 3rem !important;
  }
  .p-xs-7 {
    padding: 4rem !important;
  }
  .px-xs-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xs-0_5 {
    padding-right: 0.125rem !important;
    padding-left: 0.125rem !important;
  }
  .px-xs-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xs-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xs-2_5 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xs-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xs-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xs-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xs-5_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xs-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xs-7 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .py-xs-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xs-0_5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
  .py-xs-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xs-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xs-2_5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xs-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xs-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xs-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xs-5_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xs-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xs-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pt-xs-0 {
    padding-top: 0 !important;
  }
  .pt-xs-0_5 {
    padding-top: 0.125rem !important;
  }
  .pt-xs-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xs-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xs-2_5 {
    padding-top: 0.75rem !important;
  }
  .pt-xs-3 {
    padding-top: 1rem !important;
  }
  .pt-xs-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xs-5 {
    padding-top: 2rem !important;
  }
  .pt-xs-5_5 {
    padding-top: 2.5rem !important;
  }
  .pt-xs-6 {
    padding-top: 3rem !important;
  }
  .pt-xs-7 {
    padding-top: 4rem !important;
  }
  .pe-xs-0 {
    padding-right: 0 !important;
  }
  .pe-xs-0_5 {
    padding-right: 0.125rem !important;
  }
  .pe-xs-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xs-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xs-2_5 {
    padding-right: 0.75rem !important;
  }
  .pe-xs-3 {
    padding-right: 1rem !important;
  }
  .pe-xs-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xs-5 {
    padding-right: 2rem !important;
  }
  .pe-xs-5_5 {
    padding-right: 2.5rem !important;
  }
  .pe-xs-6 {
    padding-right: 3rem !important;
  }
  .pe-xs-7 {
    padding-right: 4rem !important;
  }
  .pb-xs-0 {
    padding-bottom: 0 !important;
  }
  .pb-xs-0_5 {
    padding-bottom: 0.125rem !important;
  }
  .pb-xs-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xs-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xs-2_5 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xs-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xs-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xs-5 {
    padding-bottom: 2rem !important;
  }
  .pb-xs-5_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xs-6 {
    padding-bottom: 3rem !important;
  }
  .pb-xs-7 {
    padding-bottom: 4rem !important;
  }
  .ps-xs-0 {
    padding-left: 0 !important;
  }
  .ps-xs-0_5 {
    padding-left: 0.125rem !important;
  }
  .ps-xs-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xs-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xs-2_5 {
    padding-left: 0.75rem !important;
  }
  .ps-xs-3 {
    padding-left: 1rem !important;
  }
  .ps-xs-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xs-5 {
    padding-left: 2rem !important;
  }
  .ps-xs-5_5 {
    padding-left: 2.5rem !important;
  }
  .ps-xs-6 {
    padding-left: 3rem !important;
  }
  .ps-xs-7 {
    padding-left: 4rem !important;
  }
  .pl-xs-0 {
    padding-left: 0 !important;
  }
  .pl-xs-0_5 {
    padding-left: 0.125rem !important;
  }
  .pl-xs-1 {
    padding-left: 0.25rem !important;
  }
  .pl-xs-2 {
    padding-left: 0.5rem !important;
  }
  .pl-xs-2_5 {
    padding-left: 0.75rem !important;
  }
  .pl-xs-3 {
    padding-left: 1rem !important;
  }
  .pl-xs-4 {
    padding-left: 1.5rem !important;
  }
  .pl-xs-5 {
    padding-left: 2rem !important;
  }
  .pl-xs-5_5 {
    padding-left: 2.5rem !important;
  }
  .pl-xs-6 {
    padding-left: 3rem !important;
  }
  .pl-xs-7 {
    padding-left: 4rem !important;
  }
  .pr-xs-0 {
    padding-right: 0 !important;
  }
  .pr-xs-0_5 {
    padding-right: 0.125rem !important;
  }
  .pr-xs-1 {
    padding-right: 0.25rem !important;
  }
  .pr-xs-2 {
    padding-right: 0.5rem !important;
  }
  .pr-xs-2_5 {
    padding-right: 0.75rem !important;
  }
  .pr-xs-3 {
    padding-right: 1rem !important;
  }
  .pr-xs-4 {
    padding-right: 1.5rem !important;
  }
  .pr-xs-5 {
    padding-right: 2rem !important;
  }
  .pr-xs-5_5 {
    padding-right: 2.5rem !important;
  }
  .pr-xs-6 {
    padding-right: 3rem !important;
  }
  .pr-xs-7 {
    padding-right: 4rem !important;
  }
  .gap-xs-0 {
    gap: 0 !important;
  }
  .gap-xs-0_5 {
    gap: 0.125rem !important;
  }
  .gap-xs-1 {
    gap: 0.25rem !important;
  }
  .gap-xs-2 {
    gap: 0.5rem !important;
  }
  .gap-xs-2_5 {
    gap: 0.75rem !important;
  }
  .gap-xs-3 {
    gap: 1rem !important;
  }
  .gap-xs-4 {
    gap: 1.5rem !important;
  }
  .gap-xs-5 {
    gap: 2rem !important;
  }
  .gap-xs-5_5 {
    gap: 2.5rem !important;
  }
  .gap-xs-6 {
    gap: 3rem !important;
  }
  .gap-xs-7 {
    gap: 4rem !important;
  }
  .text-xs-start {
    text-align: left !important;
  }
  .text-xs-end {
    text-align: right !important;
  }
  .text-xs-center {
    text-align: center !important;
  }
}
@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-0_5 {
    margin: 0.125rem !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-2_5 {
    margin: 0.75rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 2rem !important;
  }
  .m-sm-5_5 {
    margin: 2.5rem !important;
  }
  .m-sm-6 {
    margin: 3rem !important;
  }
  .m-sm-7 {
    margin: 4rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-0_5 {
    margin-right: 0.125rem !important;
    margin-left: 0.125rem !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-2_5 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-5_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-7 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-0_5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-2_5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-5_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-0_5 {
    margin-top: 0.125rem !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-2_5 {
    margin-top: 0.75rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 2rem !important;
  }
  .mt-sm-5_5 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-6 {
    margin-top: 3rem !important;
  }
  .mt-sm-7 {
    margin-top: 4rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-0_5 {
    margin-right: 0.125rem !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-2_5 {
    margin-right: 0.75rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 2rem !important;
  }
  .me-sm-5_5 {
    margin-right: 2.5rem !important;
  }
  .me-sm-6 {
    margin-right: 3rem !important;
  }
  .me-sm-7 {
    margin-right: 4rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-0_5 {
    margin-bottom: 0.125rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-2_5 {
    margin-bottom: 0.75rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-5_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-0_5 {
    margin-left: 0.125rem !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-2_5 {
    margin-left: 0.75rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 2rem !important;
  }
  .ms-sm-5_5 {
    margin-left: 2.5rem !important;
  }
  .ms-sm-6 {
    margin-left: 3rem !important;
  }
  .ms-sm-7 {
    margin-left: 4rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  .ml-sm-0_5 {
    margin-left: 0.125rem !important;
  }
  .ml-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ml-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ml-sm-2_5 {
    margin-left: 0.75rem !important;
  }
  .ml-sm-3 {
    margin-left: 1rem !important;
  }
  .ml-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ml-sm-5 {
    margin-left: 2rem !important;
  }
  .ml-sm-5_5 {
    margin-left: 2.5rem !important;
  }
  .ml-sm-6 {
    margin-left: 3rem !important;
  }
  .ml-sm-7 {
    margin-left: 4rem !important;
  }
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  .mr-sm-0_5 {
    margin-right: 0.125rem !important;
  }
  .mr-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mr-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mr-sm-2_5 {
    margin-right: 0.75rem !important;
  }
  .mr-sm-3 {
    margin-right: 1rem !important;
  }
  .mr-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mr-sm-5 {
    margin-right: 2rem !important;
  }
  .mr-sm-5_5 {
    margin-right: 2.5rem !important;
  }
  .mr-sm-6 {
    margin-right: 3rem !important;
  }
  .mr-sm-7 {
    margin-right: 4rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-0_5 {
    padding: 0.125rem !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-2_5 {
    padding: 0.75rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 2rem !important;
  }
  .p-sm-5_5 {
    padding: 2.5rem !important;
  }
  .p-sm-6 {
    padding: 3rem !important;
  }
  .p-sm-7 {
    padding: 4rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-0_5 {
    padding-right: 0.125rem !important;
    padding-left: 0.125rem !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-2_5 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-5_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-7 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-0_5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-2_5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-5_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-0_5 {
    padding-top: 0.125rem !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-2_5 {
    padding-top: 0.75rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 2rem !important;
  }
  .pt-sm-5_5 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-6 {
    padding-top: 3rem !important;
  }
  .pt-sm-7 {
    padding-top: 4rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-0_5 {
    padding-right: 0.125rem !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-2_5 {
    padding-right: 0.75rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 2rem !important;
  }
  .pe-sm-5_5 {
    padding-right: 2.5rem !important;
  }
  .pe-sm-6 {
    padding-right: 3rem !important;
  }
  .pe-sm-7 {
    padding-right: 4rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-0_5 {
    padding-bottom: 0.125rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-2_5 {
    padding-bottom: 0.75rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-5_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 4rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-0_5 {
    padding-left: 0.125rem !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-2_5 {
    padding-left: 0.75rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 2rem !important;
  }
  .ps-sm-5_5 {
    padding-left: 2.5rem !important;
  }
  .ps-sm-6 {
    padding-left: 3rem !important;
  }
  .ps-sm-7 {
    padding-left: 4rem !important;
  }
  .pl-sm-0 {
    padding-left: 0 !important;
  }
  .pl-sm-0_5 {
    padding-left: 0.125rem !important;
  }
  .pl-sm-1 {
    padding-left: 0.25rem !important;
  }
  .pl-sm-2 {
    padding-left: 0.5rem !important;
  }
  .pl-sm-2_5 {
    padding-left: 0.75rem !important;
  }
  .pl-sm-3 {
    padding-left: 1rem !important;
  }
  .pl-sm-4 {
    padding-left: 1.5rem !important;
  }
  .pl-sm-5 {
    padding-left: 2rem !important;
  }
  .pl-sm-5_5 {
    padding-left: 2.5rem !important;
  }
  .pl-sm-6 {
    padding-left: 3rem !important;
  }
  .pl-sm-7 {
    padding-left: 4rem !important;
  }
  .pr-sm-0 {
    padding-right: 0 !important;
  }
  .pr-sm-0_5 {
    padding-right: 0.125rem !important;
  }
  .pr-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pr-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pr-sm-2_5 {
    padding-right: 0.75rem !important;
  }
  .pr-sm-3 {
    padding-right: 1rem !important;
  }
  .pr-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pr-sm-5 {
    padding-right: 2rem !important;
  }
  .pr-sm-5_5 {
    padding-right: 2.5rem !important;
  }
  .pr-sm-6 {
    padding-right: 3rem !important;
  }
  .pr-sm-7 {
    padding-right: 4rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-0_5 {
    gap: 0.125rem !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-2_5 {
    gap: 0.75rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 2rem !important;
  }
  .gap-sm-5_5 {
    gap: 2.5rem !important;
  }
  .gap-sm-6 {
    gap: 3rem !important;
  }
  .gap-sm-7 {
    gap: 4rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-0_5 {
    margin: 0.125rem !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-2_5 {
    margin: 0.75rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 2rem !important;
  }
  .m-md-5_5 {
    margin: 2.5rem !important;
  }
  .m-md-6 {
    margin: 3rem !important;
  }
  .m-md-7 {
    margin: 4rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-0_5 {
    margin-right: 0.125rem !important;
    margin-left: 0.125rem !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-2_5 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-5_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-7 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-0_5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-2_5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-5_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-0_5 {
    margin-top: 0.125rem !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-2_5 {
    margin-top: 0.75rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 2rem !important;
  }
  .mt-md-5_5 {
    margin-top: 2.5rem !important;
  }
  .mt-md-6 {
    margin-top: 3rem !important;
  }
  .mt-md-7 {
    margin-top: 4rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-0_5 {
    margin-right: 0.125rem !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-2_5 {
    margin-right: 0.75rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 2rem !important;
  }
  .me-md-5_5 {
    margin-right: 2.5rem !important;
  }
  .me-md-6 {
    margin-right: 3rem !important;
  }
  .me-md-7 {
    margin-right: 4rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-0_5 {
    margin-bottom: 0.125rem !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-2_5 {
    margin-bottom: 0.75rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 2rem !important;
  }
  .mb-md-5_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-6 {
    margin-bottom: 3rem !important;
  }
  .mb-md-7 {
    margin-bottom: 4rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-0_5 {
    margin-left: 0.125rem !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-2_5 {
    margin-left: 0.75rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 2rem !important;
  }
  .ms-md-5_5 {
    margin-left: 2.5rem !important;
  }
  .ms-md-6 {
    margin-left: 3rem !important;
  }
  .ms-md-7 {
    margin-left: 4rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .ml-md-0_5 {
    margin-left: 0.125rem !important;
  }
  .ml-md-1 {
    margin-left: 0.25rem !important;
  }
  .ml-md-2 {
    margin-left: 0.5rem !important;
  }
  .ml-md-2_5 {
    margin-left: 0.75rem !important;
  }
  .ml-md-3 {
    margin-left: 1rem !important;
  }
  .ml-md-4 {
    margin-left: 1.5rem !important;
  }
  .ml-md-5 {
    margin-left: 2rem !important;
  }
  .ml-md-5_5 {
    margin-left: 2.5rem !important;
  }
  .ml-md-6 {
    margin-left: 3rem !important;
  }
  .ml-md-7 {
    margin-left: 4rem !important;
  }
  .mr-md-0 {
    margin-right: 0 !important;
  }
  .mr-md-0_5 {
    margin-right: 0.125rem !important;
  }
  .mr-md-1 {
    margin-right: 0.25rem !important;
  }
  .mr-md-2 {
    margin-right: 0.5rem !important;
  }
  .mr-md-2_5 {
    margin-right: 0.75rem !important;
  }
  .mr-md-3 {
    margin-right: 1rem !important;
  }
  .mr-md-4 {
    margin-right: 1.5rem !important;
  }
  .mr-md-5 {
    margin-right: 2rem !important;
  }
  .mr-md-5_5 {
    margin-right: 2.5rem !important;
  }
  .mr-md-6 {
    margin-right: 3rem !important;
  }
  .mr-md-7 {
    margin-right: 4rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-0_5 {
    padding: 0.125rem !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-2_5 {
    padding: 0.75rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 2rem !important;
  }
  .p-md-5_5 {
    padding: 2.5rem !important;
  }
  .p-md-6 {
    padding: 3rem !important;
  }
  .p-md-7 {
    padding: 4rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-0_5 {
    padding-right: 0.125rem !important;
    padding-left: 0.125rem !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-2_5 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-5_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-7 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-0_5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-2_5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-5_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-0_5 {
    padding-top: 0.125rem !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-2_5 {
    padding-top: 0.75rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 2rem !important;
  }
  .pt-md-5_5 {
    padding-top: 2.5rem !important;
  }
  .pt-md-6 {
    padding-top: 3rem !important;
  }
  .pt-md-7 {
    padding-top: 4rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-0_5 {
    padding-right: 0.125rem !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-2_5 {
    padding-right: 0.75rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 2rem !important;
  }
  .pe-md-5_5 {
    padding-right: 2.5rem !important;
  }
  .pe-md-6 {
    padding-right: 3rem !important;
  }
  .pe-md-7 {
    padding-right: 4rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-0_5 {
    padding-bottom: 0.125rem !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-2_5 {
    padding-bottom: 0.75rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 2rem !important;
  }
  .pb-md-5_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-6 {
    padding-bottom: 3rem !important;
  }
  .pb-md-7 {
    padding-bottom: 4rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-0_5 {
    padding-left: 0.125rem !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-2_5 {
    padding-left: 0.75rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 2rem !important;
  }
  .ps-md-5_5 {
    padding-left: 2.5rem !important;
  }
  .ps-md-6 {
    padding-left: 3rem !important;
  }
  .ps-md-7 {
    padding-left: 4rem !important;
  }
  .pl-md-0 {
    padding-left: 0 !important;
  }
  .pl-md-0_5 {
    padding-left: 0.125rem !important;
  }
  .pl-md-1 {
    padding-left: 0.25rem !important;
  }
  .pl-md-2 {
    padding-left: 0.5rem !important;
  }
  .pl-md-2_5 {
    padding-left: 0.75rem !important;
  }
  .pl-md-3 {
    padding-left: 1rem !important;
  }
  .pl-md-4 {
    padding-left: 1.5rem !important;
  }
  .pl-md-5 {
    padding-left: 2rem !important;
  }
  .pl-md-5_5 {
    padding-left: 2.5rem !important;
  }
  .pl-md-6 {
    padding-left: 3rem !important;
  }
  .pl-md-7 {
    padding-left: 4rem !important;
  }
  .pr-md-0 {
    padding-right: 0 !important;
  }
  .pr-md-0_5 {
    padding-right: 0.125rem !important;
  }
  .pr-md-1 {
    padding-right: 0.25rem !important;
  }
  .pr-md-2 {
    padding-right: 0.5rem !important;
  }
  .pr-md-2_5 {
    padding-right: 0.75rem !important;
  }
  .pr-md-3 {
    padding-right: 1rem !important;
  }
  .pr-md-4 {
    padding-right: 1.5rem !important;
  }
  .pr-md-5 {
    padding-right: 2rem !important;
  }
  .pr-md-5_5 {
    padding-right: 2.5rem !important;
  }
  .pr-md-6 {
    padding-right: 3rem !important;
  }
  .pr-md-7 {
    padding-right: 4rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-0_5 {
    gap: 0.125rem !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-2_5 {
    gap: 0.75rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 2rem !important;
  }
  .gap-md-5_5 {
    gap: 2.5rem !important;
  }
  .gap-md-6 {
    gap: 3rem !important;
  }
  .gap-md-7 {
    gap: 4rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-0_5 {
    margin: 0.125rem !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-2_5 {
    margin: 0.75rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 2rem !important;
  }
  .m-lg-5_5 {
    margin: 2.5rem !important;
  }
  .m-lg-6 {
    margin: 3rem !important;
  }
  .m-lg-7 {
    margin: 4rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-0_5 {
    margin-right: 0.125rem !important;
    margin-left: 0.125rem !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-2_5 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-5_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-7 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-0_5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-2_5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-5_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-0_5 {
    margin-top: 0.125rem !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-2_5 {
    margin-top: 0.75rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 2rem !important;
  }
  .mt-lg-5_5 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-6 {
    margin-top: 3rem !important;
  }
  .mt-lg-7 {
    margin-top: 4rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-0_5 {
    margin-right: 0.125rem !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-2_5 {
    margin-right: 0.75rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 2rem !important;
  }
  .me-lg-5_5 {
    margin-right: 2.5rem !important;
  }
  .me-lg-6 {
    margin-right: 3rem !important;
  }
  .me-lg-7 {
    margin-right: 4rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-0_5 {
    margin-bottom: 0.125rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-2_5 {
    margin-bottom: 0.75rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-5_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-0_5 {
    margin-left: 0.125rem !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-2_5 {
    margin-left: 0.75rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 2rem !important;
  }
  .ms-lg-5_5 {
    margin-left: 2.5rem !important;
  }
  .ms-lg-6 {
    margin-left: 3rem !important;
  }
  .ms-lg-7 {
    margin-left: 4rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .ml-lg-0_5 {
    margin-left: 0.125rem !important;
  }
  .ml-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ml-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ml-lg-2_5 {
    margin-left: 0.75rem !important;
  }
  .ml-lg-3 {
    margin-left: 1rem !important;
  }
  .ml-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ml-lg-5 {
    margin-left: 2rem !important;
  }
  .ml-lg-5_5 {
    margin-left: 2.5rem !important;
  }
  .ml-lg-6 {
    margin-left: 3rem !important;
  }
  .ml-lg-7 {
    margin-left: 4rem !important;
  }
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  .mr-lg-0_5 {
    margin-right: 0.125rem !important;
  }
  .mr-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mr-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mr-lg-2_5 {
    margin-right: 0.75rem !important;
  }
  .mr-lg-3 {
    margin-right: 1rem !important;
  }
  .mr-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mr-lg-5 {
    margin-right: 2rem !important;
  }
  .mr-lg-5_5 {
    margin-right: 2.5rem !important;
  }
  .mr-lg-6 {
    margin-right: 3rem !important;
  }
  .mr-lg-7 {
    margin-right: 4rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-0_5 {
    padding: 0.125rem !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-2_5 {
    padding: 0.75rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 2rem !important;
  }
  .p-lg-5_5 {
    padding: 2.5rem !important;
  }
  .p-lg-6 {
    padding: 3rem !important;
  }
  .p-lg-7 {
    padding: 4rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-0_5 {
    padding-right: 0.125rem !important;
    padding-left: 0.125rem !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-2_5 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-5_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-7 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-0_5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-2_5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-5_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-0_5 {
    padding-top: 0.125rem !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-2_5 {
    padding-top: 0.75rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 2rem !important;
  }
  .pt-lg-5_5 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-6 {
    padding-top: 3rem !important;
  }
  .pt-lg-7 {
    padding-top: 4rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-0_5 {
    padding-right: 0.125rem !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-2_5 {
    padding-right: 0.75rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 2rem !important;
  }
  .pe-lg-5_5 {
    padding-right: 2.5rem !important;
  }
  .pe-lg-6 {
    padding-right: 3rem !important;
  }
  .pe-lg-7 {
    padding-right: 4rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-0_5 {
    padding-bottom: 0.125rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-2_5 {
    padding-bottom: 0.75rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-5_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 4rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-0_5 {
    padding-left: 0.125rem !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-2_5 {
    padding-left: 0.75rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 2rem !important;
  }
  .ps-lg-5_5 {
    padding-left: 2.5rem !important;
  }
  .ps-lg-6 {
    padding-left: 3rem !important;
  }
  .ps-lg-7 {
    padding-left: 4rem !important;
  }
  .pl-lg-0 {
    padding-left: 0 !important;
  }
  .pl-lg-0_5 {
    padding-left: 0.125rem !important;
  }
  .pl-lg-1 {
    padding-left: 0.25rem !important;
  }
  .pl-lg-2 {
    padding-left: 0.5rem !important;
  }
  .pl-lg-2_5 {
    padding-left: 0.75rem !important;
  }
  .pl-lg-3 {
    padding-left: 1rem !important;
  }
  .pl-lg-4 {
    padding-left: 1.5rem !important;
  }
  .pl-lg-5 {
    padding-left: 2rem !important;
  }
  .pl-lg-5_5 {
    padding-left: 2.5rem !important;
  }
  .pl-lg-6 {
    padding-left: 3rem !important;
  }
  .pl-lg-7 {
    padding-left: 4rem !important;
  }
  .pr-lg-0 {
    padding-right: 0 !important;
  }
  .pr-lg-0_5 {
    padding-right: 0.125rem !important;
  }
  .pr-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pr-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pr-lg-2_5 {
    padding-right: 0.75rem !important;
  }
  .pr-lg-3 {
    padding-right: 1rem !important;
  }
  .pr-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pr-lg-5 {
    padding-right: 2rem !important;
  }
  .pr-lg-5_5 {
    padding-right: 2.5rem !important;
  }
  .pr-lg-6 {
    padding-right: 3rem !important;
  }
  .pr-lg-7 {
    padding-right: 4rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-0_5 {
    gap: 0.125rem !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-2_5 {
    gap: 0.75rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 2rem !important;
  }
  .gap-lg-5_5 {
    gap: 2.5rem !important;
  }
  .gap-lg-6 {
    gap: 3rem !important;
  }
  .gap-lg-7 {
    gap: 4rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-0_5 {
    margin: 0.125rem !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-2_5 {
    margin: 0.75rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 2rem !important;
  }
  .m-xl-5_5 {
    margin: 2.5rem !important;
  }
  .m-xl-6 {
    margin: 3rem !important;
  }
  .m-xl-7 {
    margin: 4rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-0_5 {
    margin-right: 0.125rem !important;
    margin-left: 0.125rem !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-2_5 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-5_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-7 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-0_5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-2_5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-5_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-0_5 {
    margin-top: 0.125rem !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-2_5 {
    margin-top: 0.75rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 2rem !important;
  }
  .mt-xl-5_5 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-6 {
    margin-top: 3rem !important;
  }
  .mt-xl-7 {
    margin-top: 4rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-0_5 {
    margin-right: 0.125rem !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-2_5 {
    margin-right: 0.75rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 2rem !important;
  }
  .me-xl-5_5 {
    margin-right: 2.5rem !important;
  }
  .me-xl-6 {
    margin-right: 3rem !important;
  }
  .me-xl-7 {
    margin-right: 4rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-0_5 {
    margin-bottom: 0.125rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-2_5 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-5_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-0_5 {
    margin-left: 0.125rem !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-2_5 {
    margin-left: 0.75rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 2rem !important;
  }
  .ms-xl-5_5 {
    margin-left: 2.5rem !important;
  }
  .ms-xl-6 {
    margin-left: 3rem !important;
  }
  .ms-xl-7 {
    margin-left: 4rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .ml-xl-0 {
    margin-left: 0 !important;
  }
  .ml-xl-0_5 {
    margin-left: 0.125rem !important;
  }
  .ml-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xl-2_5 {
    margin-left: 0.75rem !important;
  }
  .ml-xl-3 {
    margin-left: 1rem !important;
  }
  .ml-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ml-xl-5 {
    margin-left: 2rem !important;
  }
  .ml-xl-5_5 {
    margin-left: 2.5rem !important;
  }
  .ml-xl-6 {
    margin-left: 3rem !important;
  }
  .ml-xl-7 {
    margin-left: 4rem !important;
  }
  .mr-xl-0 {
    margin-right: 0 !important;
  }
  .mr-xl-0_5 {
    margin-right: 0.125rem !important;
  }
  .mr-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mr-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mr-xl-2_5 {
    margin-right: 0.75rem !important;
  }
  .mr-xl-3 {
    margin-right: 1rem !important;
  }
  .mr-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mr-xl-5 {
    margin-right: 2rem !important;
  }
  .mr-xl-5_5 {
    margin-right: 2.5rem !important;
  }
  .mr-xl-6 {
    margin-right: 3rem !important;
  }
  .mr-xl-7 {
    margin-right: 4rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-0_5 {
    padding: 0.125rem !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-2_5 {
    padding: 0.75rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 2rem !important;
  }
  .p-xl-5_5 {
    padding: 2.5rem !important;
  }
  .p-xl-6 {
    padding: 3rem !important;
  }
  .p-xl-7 {
    padding: 4rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-0_5 {
    padding-right: 0.125rem !important;
    padding-left: 0.125rem !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-2_5 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-5_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-7 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-0_5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-2_5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-5_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-0_5 {
    padding-top: 0.125rem !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-2_5 {
    padding-top: 0.75rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 2rem !important;
  }
  .pt-xl-5_5 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-6 {
    padding-top: 3rem !important;
  }
  .pt-xl-7 {
    padding-top: 4rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-0_5 {
    padding-right: 0.125rem !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-2_5 {
    padding-right: 0.75rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 2rem !important;
  }
  .pe-xl-5_5 {
    padding-right: 2.5rem !important;
  }
  .pe-xl-6 {
    padding-right: 3rem !important;
  }
  .pe-xl-7 {
    padding-right: 4rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-0_5 {
    padding-bottom: 0.125rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-2_5 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-5_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 4rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-0_5 {
    padding-left: 0.125rem !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-2_5 {
    padding-left: 0.75rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 2rem !important;
  }
  .ps-xl-5_5 {
    padding-left: 2.5rem !important;
  }
  .ps-xl-6 {
    padding-left: 3rem !important;
  }
  .ps-xl-7 {
    padding-left: 4rem !important;
  }
  .pl-xl-0 {
    padding-left: 0 !important;
  }
  .pl-xl-0_5 {
    padding-left: 0.125rem !important;
  }
  .pl-xl-1 {
    padding-left: 0.25rem !important;
  }
  .pl-xl-2 {
    padding-left: 0.5rem !important;
  }
  .pl-xl-2_5 {
    padding-left: 0.75rem !important;
  }
  .pl-xl-3 {
    padding-left: 1rem !important;
  }
  .pl-xl-4 {
    padding-left: 1.5rem !important;
  }
  .pl-xl-5 {
    padding-left: 2rem !important;
  }
  .pl-xl-5_5 {
    padding-left: 2.5rem !important;
  }
  .pl-xl-6 {
    padding-left: 3rem !important;
  }
  .pl-xl-7 {
    padding-left: 4rem !important;
  }
  .pr-xl-0 {
    padding-right: 0 !important;
  }
  .pr-xl-0_5 {
    padding-right: 0.125rem !important;
  }
  .pr-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pr-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pr-xl-2_5 {
    padding-right: 0.75rem !important;
  }
  .pr-xl-3 {
    padding-right: 1rem !important;
  }
  .pr-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pr-xl-5 {
    padding-right: 2rem !important;
  }
  .pr-xl-5_5 {
    padding-right: 2.5rem !important;
  }
  .pr-xl-6 {
    padding-right: 3rem !important;
  }
  .pr-xl-7 {
    padding-right: 4rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-0_5 {
    gap: 0.125rem !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-2_5 {
    gap: 0.75rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 2rem !important;
  }
  .gap-xl-5_5 {
    gap: 2.5rem !important;
  }
  .gap-xl-6 {
    gap: 3rem !important;
  }
  .gap-xl-7 {
    gap: 4rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-0_5 {
    margin: 0.125rem !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-2_5 {
    margin: 0.75rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 2rem !important;
  }
  .m-xxl-5_5 {
    margin: 2.5rem !important;
  }
  .m-xxl-6 {
    margin: 3rem !important;
  }
  .m-xxl-7 {
    margin: 4rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-0_5 {
    margin-right: 0.125rem !important;
    margin-left: 0.125rem !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-2_5 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-5_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxl-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-7 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-0_5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-2_5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-5_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxl-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-7 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-0_5 {
    margin-top: 0.125rem !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-2_5 {
    margin-top: 0.75rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 2rem !important;
  }
  .mt-xxl-5_5 {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-6 {
    margin-top: 3rem !important;
  }
  .mt-xxl-7 {
    margin-top: 4rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-0_5 {
    margin-right: 0.125rem !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-2_5 {
    margin-right: 0.75rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 2rem !important;
  }
  .me-xxl-5_5 {
    margin-right: 2.5rem !important;
  }
  .me-xxl-6 {
    margin-right: 3rem !important;
  }
  .me-xxl-7 {
    margin-right: 4rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-0_5 {
    margin-bottom: 0.125rem !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-2_5 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-5_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 4rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-0_5 {
    margin-left: 0.125rem !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-2_5 {
    margin-left: 0.75rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 2rem !important;
  }
  .ms-xxl-5_5 {
    margin-left: 2.5rem !important;
  }
  .ms-xxl-6 {
    margin-left: 3rem !important;
  }
  .ms-xxl-7 {
    margin-left: 4rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .ml-xxl-0 {
    margin-left: 0 !important;
  }
  .ml-xxl-0_5 {
    margin-left: 0.125rem !important;
  }
  .ml-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xxl-2_5 {
    margin-left: 0.75rem !important;
  }
  .ml-xxl-3 {
    margin-left: 1rem !important;
  }
  .ml-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ml-xxl-5 {
    margin-left: 2rem !important;
  }
  .ml-xxl-5_5 {
    margin-left: 2.5rem !important;
  }
  .ml-xxl-6 {
    margin-left: 3rem !important;
  }
  .ml-xxl-7 {
    margin-left: 4rem !important;
  }
  .mr-xxl-0 {
    margin-right: 0 !important;
  }
  .mr-xxl-0_5 {
    margin-right: 0.125rem !important;
  }
  .mr-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mr-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mr-xxl-2_5 {
    margin-right: 0.75rem !important;
  }
  .mr-xxl-3 {
    margin-right: 1rem !important;
  }
  .mr-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mr-xxl-5 {
    margin-right: 2rem !important;
  }
  .mr-xxl-5_5 {
    margin-right: 2.5rem !important;
  }
  .mr-xxl-6 {
    margin-right: 3rem !important;
  }
  .mr-xxl-7 {
    margin-right: 4rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-0_5 {
    padding: 0.125rem !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-2_5 {
    padding: 0.75rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 2rem !important;
  }
  .p-xxl-5_5 {
    padding: 2.5rem !important;
  }
  .p-xxl-6 {
    padding: 3rem !important;
  }
  .p-xxl-7 {
    padding: 4rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-0_5 {
    padding-right: 0.125rem !important;
    padding-left: 0.125rem !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-2_5 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-5_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxl-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-7 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-0_5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-2_5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-5_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-7 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-0_5 {
    padding-top: 0.125rem !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-2_5 {
    padding-top: 0.75rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 2rem !important;
  }
  .pt-xxl-5_5 {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-6 {
    padding-top: 3rem !important;
  }
  .pt-xxl-7 {
    padding-top: 4rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-0_5 {
    padding-right: 0.125rem !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-2_5 {
    padding-right: 0.75rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 2rem !important;
  }
  .pe-xxl-5_5 {
    padding-right: 2.5rem !important;
  }
  .pe-xxl-6 {
    padding-right: 3rem !important;
  }
  .pe-xxl-7 {
    padding-right: 4rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-0_5 {
    padding-bottom: 0.125rem !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-2_5 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-5_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 4rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-0_5 {
    padding-left: 0.125rem !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-2_5 {
    padding-left: 0.75rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 2rem !important;
  }
  .ps-xxl-5_5 {
    padding-left: 2.5rem !important;
  }
  .ps-xxl-6 {
    padding-left: 3rem !important;
  }
  .ps-xxl-7 {
    padding-left: 4rem !important;
  }
  .pl-xxl-0 {
    padding-left: 0 !important;
  }
  .pl-xxl-0_5 {
    padding-left: 0.125rem !important;
  }
  .pl-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .pl-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .pl-xxl-2_5 {
    padding-left: 0.75rem !important;
  }
  .pl-xxl-3 {
    padding-left: 1rem !important;
  }
  .pl-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .pl-xxl-5 {
    padding-left: 2rem !important;
  }
  .pl-xxl-5_5 {
    padding-left: 2.5rem !important;
  }
  .pl-xxl-6 {
    padding-left: 3rem !important;
  }
  .pl-xxl-7 {
    padding-left: 4rem !important;
  }
  .pr-xxl-0 {
    padding-right: 0 !important;
  }
  .pr-xxl-0_5 {
    padding-right: 0.125rem !important;
  }
  .pr-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pr-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pr-xxl-2_5 {
    padding-right: 0.75rem !important;
  }
  .pr-xxl-3 {
    padding-right: 1rem !important;
  }
  .pr-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pr-xxl-5 {
    padding-right: 2rem !important;
  }
  .pr-xxl-5_5 {
    padding-right: 2.5rem !important;
  }
  .pr-xxl-6 {
    padding-right: 3rem !important;
  }
  .pr-xxl-7 {
    padding-right: 4rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-0_5 {
    gap: 0.125rem !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-2_5 {
    gap: 0.75rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 2rem !important;
  }
  .gap-xxl-5_5 {
    gap: 2.5rem !important;
  }
  .gap-xxl-6 {
    gap: 3rem !important;
  }
  .gap-xxl-7 {
    gap: 4rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.gradient--breaking-x {
  background: linear-gradient(90deg, #ffa300 0, #ffeb00);
}
.gradient--breaking-y {
  background: linear-gradient(180deg, #ffa300 0, #ffeb00);
}
.gradient--primary-x {
  background: linear-gradient(90deg, #019ce1 0, #00288c);
}
.gradient--primary-y {
  background: linear-gradient(180deg, #019ce1 0, #00288c);
}
.fz-xl {
  font-size: 1.25rem;
  line-height: 2rem;
}
.fz-l {
  font-size: 1.125rem;
  line-height: 1.625rem;
}
.fz-m {
  font-size: 1rem;
  line-height: 1.5rem;
}
.fz-s {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.fz-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.ff-tv {
  font-family: sans-serif;
}
.ff-tvs {
  font-family: sans-serif;
}
.ff-ssp {
  font-family: sans-serif;
}
.tt-u {
  text-transform: uppercase;
}
.fw-b {
  font-weight: 700;
}
.fw-m {
  font-weight: 500;
}
body:hover .sr-only a,
body:hover .sr-only button,
body:hover .sr-only input {
  display: none !important;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.b-0 {
  border: 0;
}
.b-1 {
  border: 1px solid #e1e8fb;
}
.b-t-1 {
  border-top: 1px solid #e1e8fb;
}
.b-b-1 {
  border-bottom: 1px solid #e1e8fb;
}
.b-b-1-brand {
  border-bottom: 1px solid #2054b1;
}
.b-r-50 {
  border-radius: 50%;
}
.b-c-b {
  border-color: #000;
}
.b-c-w {
  border-color: #fff;
}
.ta-r {
  text-align: right;
}
.ta-l {
  text-align: left;
}
.ta-c {
  text-align: center;
}
.u-uppercase {
  text-transform: uppercase;
}
.u-underline {
  text-decoration: underline;
}
.color-text {
  color: #000528;
}
.color-black {
  color: #000;
}
.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0;
}
@media (min-width: 768px) {
  .sticky-md {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0;
  }
}
.c-t-l,
.c-t-m {
  color: #52556d;
}
.c-t {
  color: #000528;
}
.c-t-i {
  color: #fff !important;
}
.bgc-t {
  background-color: transparent;
}
.color-brand {
  color: #2054b1;
}
.color-live {
  color: #ed1c24;
}
*,
:after,
:before {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--ct24-body-font-family);
  font-size: var(--ct24-body-font-size);
  font-weight: var(--ct24-body-font-weight);
  line-height: var(--ct24-body-line-height);
  color: var(--ct24-body-color);
  text-align: var(--ct24-body-text-align);
  background-color: var(--ct24-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}
.h1,
.h2,
.h3,
.h4,
.h5,
h1,
h2,
h3,
h4,
h5 {
  font-family: sans-serif;
  font-weight: 500;
  margin-top: 0;
}
.h1 b,
.h1 strong,
.h2 b,
.h2 strong,
.h3 b,
.h3 strong,
.h4 b,
.h4 strong,
.h5 b,
.h5 strong,
h1 b,
h1 strong,
h2 b,
h2 strong,
h3 b,
h3 strong,
h4 b,
h4 strong,
h5 b,
h5 strong {
  font-weight: inherit;
}
.h5,
h5 {
  font-size: 1.125rem;
  line-height: 1.625rem;
}
@media (min-width: 768px) {
  .h5,
  h5 {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol,
ul {
  padding-left: 2rem;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}
dt {
  font-weight: 600;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
b,
strong {
  font-weight: 700;
}
small {
  font-size: 0.875em;
}
mark {
  padding: 0.1875em;
  background-color: var(--ct24-highlight-bg);
}
sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: var(--ct24-link-color);
  text-decoration: none;
}
a:hover {
  color: var(--ct24-link-hover-color);
  text-decoration: underline;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
code,
kbd,
pre,
samp {
  font-family: var(--ct24-font-monospace);
  font-size: 1em;
}
pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
code {
  font-size: 0.875em;
  color: var(--ct24-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--ct24-body-bg);
  background-color: var(--ct24-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}
figure {
  margin: 0 0 1rem;
}
img,
svg {
  vertical-align: middle;
}
table {
  caption-side: bottom;
  border-collapse: collapse;
}
caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
tbody,
td,
tfoot,
th,
thead,
tr {
  border: 0 solid;
  border-color: inherit;
}
label {
  display: inline-block;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
select {
  text-transform: none;
}
[role="button"] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}
[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not(
    [type="week"]
  ):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
textarea {
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.05rem + 0.6vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}
::-webkit-inner-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
  padding: 0;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
iframe {
  border: 0;
}
summary {
  display: list-item;
  cursor: pointer;
}
progress {
  vertical-align: baseline;
}
[hidden] {
  display: none !important;
}
html {
  font-size: 16px;
  line-height: 1.5rem;
  font-family: sans-serif;
}
body {
  font-size: 100%;
}
p {
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  p {
    font-size: 1.25rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }
}
ul {
  list-style: none;
  padding-left: 0;
}
figure {
  margin: 0;
}
.label,
b,
strong {
  font-weight: 600;
}
.label {
  color: #043cdc;
  text-transform: uppercase;
}
.label--sm {
  font-size: 0.75rem;
  line-height: 0.875rem;
  letter-spacing: 0.0375rem;
}
.label--md {
  font-size: 0.875rem;
  line-height: 1rem;
}
.label--lg,
.label--md {
  letter-spacing: 0.03125rem;
}
.label--lg {
  font-size: 1rem;
  line-height: 1.125rem;
}
.caption--14 {
  font-size: 0.875rem;
  line-height: normal;
  letter-spacing: 0.00625rem;
}
.fs-14 {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.ctg li,
.ctg p {
  font-size: 16px;
}
.ctg li:before {
  content: none !important;
}
.relative {
  position: relative;
}
.h-100 {
  height: 100%;
}
@media (min-width: 992px) {
  .article-strip-wrapper,
  .component-spacer {
    margin-top: 1rem !important;
    margin-bottom: 3rem !important;
  }
}
.column .article-strip-wrapper,
.column .component-spacer {
  margin-top: 0 !important;
}
.z-0 {
  z-index: 0;
}
.z-0,
.z-1 {
  position: relative;
}
.z-1 {
  z-index: 1;
}
.sr-only {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.sr-only:not(caption) {
  position: absolute !important;
}
.text-color-primary {
  color: #043cdc;
}

.article {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .article {
    margin-top: 1.5rem;
  }
}
@media (min-width: 992px) {
  .article {
    max-width: 904px;
  }
}
.article .h1,
.article h1 {
  max-width: 904px;
  font-size: 1.75rem;
  line-height: 2rem;
}
@media (min-width: 768px) {
  .article .h1,
  .article h1 {
    font-size: 3rem;
    line-height: 3.5rem;
    letter-spacing: -0.0625rem;
  }
}
.article__perex-photo,
.article__perex-video {
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (min-width: 992px) {
  .article__perex-photo,
  .article__perex-video {
    margin-left: 0;
    margin-right: 0;
  }
}
.article__perex-photo .media-caption__title,
.article__perex-video .media-caption__title {
  color: rgba(0, 5, 40, 0.6);
}
.article__content {
  max-width: 696px;
}
@media (min-width: 992px) {
  .article__content {
    max-width: calc(696px + 2rem);
    padding-left: 2rem;
  }
}
.article__content--wide {
  max-width: calc(904px + 2rem);
  margin-left: -16px;
  margin-right: -16px;
}
@media (min-width: 768px) {
  .article__content--wide {
    margin-left: 0;
    margin-right: 0;
  }
}
.article__content-item {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .article__content-item {
    margin-bottom: 2rem;
  }
}
.article__content-item > ol,
.article__content-item > ul {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .article__content-item > ol,
  .article__content-item > ul {
    margin-bottom: 2rem;
  }
}
.article__content-item > ol li:last-child,
.article__content-item > ul li:last-child {
  margin-bottom: 0;
}
.article__content-item > ol {
  padding-left: 1.125rem;
}
@media (min-width: 768px) {
  .article__content-item > ol {
    padding-left: 1.25rem;
  }
}
.article__content-item > ul {
  list-style: none;
  padding-left: 0;
}
.article__content-item > ul li {
  position: relative;
  padding-left: 1.125rem;
}
.article__content-item > ul li:not(.slide):before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  background-color: #cccdd4;
  top: calc(0.8125rem - 3.5px);
}
@media (min-width: 768px) {
  .article__content-item > ul li {
    position: relative;
    padding-left: 1.25rem;
  }
  .article__content-item > ul li:not(.slide):before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    background-color: #cccdd4;
    top: calc(1rem - 4px);
  }
}
.article__content-item > ol li,
.article__content-item > ul li {
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .article__content-item > ol li,
  .article__content-item > ul li {
    font-size: 1.25rem;
    line-height: 2rem;
    margin-bottom: 1rem;
  }
}
.article__content-item > p {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .article__content-item > p {
    margin-bottom: 1.5rem;
  }
}
.article__content-item > h2 {
  font-size: 1.3125rem;
  line-height: 1.625rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .article__content-item > h2 {
    font-size: 1.75rem;
    line-height: 2rem;
    margin-bottom: 1rem;
  }
}
.article__content-item > h3 {
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .article__content-item > h3 {
    font-size: 1.3125rem;
    line-height: 1.625rem;
    margin-bottom: 0.5rem;
  }
}
.article__content-item > p + h2 {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .article__content-item > p + h2 {
    margin-top: 2rem;
  }
}
.article__content-item > p + h3 {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .article__content-item--nested {
    max-width: 100%;
    padding-left: 0;
  }
}
.article__section-title {
  font-family: sans-serif;
  font-weight: 700;
  color: #00288c;
  margin-bottom: 1.5rem;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.75rem;
  transition: color 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .article__section-title {
    font-size: 2.25rem;
    line-height: 2.625rem;
    letter-spacing: -0.025rem;
    margin-bottom: 2rem;
  }
}
.article__section-title:hover {
  text-decoration: none;
  color: #043cdc;
}
@media (min-width: 768px) {
  .section {
    margin-top: 0.5rem;
  }
}
.section__content-item {
  max-width: 1248px;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
.section__content-item--wide {
  max-width: 100%;
  padding: 0;
}
.section__content-item--wide-opener {
  padding: 0;
}
@media (min-width: 768px) {
  .section__content-item--wide-opener {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.tag-detail__header {
  max-width: 1248px;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .tag-detail__header {
    padding-top: 2rem;
  }
}
.tag-detail__header--extension {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  margin-top: unset;
  background: linear-gradient(-180deg, rgba(240, 243, 253, 0), #f0f3fd);
  display: grid;
  grid-template-columns: 0 auto;
  grid-template-rows: auto auto;
  grid-gap: 1rem 0;
  gap: 1rem 0;
  grid-template-areas: "Title Title" "Photo Description";
}
@media (min-width: 768px) {
  .tag-detail__header--extension {
    margin-bottom: 2rem;
    grid-template-columns: auto 0;
    grid-template-rows: auto 1fr;
    gap: 1.5rem 0;
    grid-template-areas: "Title Photo" "Description Photo";
    padding: 2rem 1rem;
  }
}
.tag-detail__header--with-photo {
  grid-template-columns: 108px auto;
  gap: 1rem 0.75rem;
}
@media (min-width: 576px) {
  .tag-detail__header--with-photo {
    grid-template-columns: 144px auto;
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .tag-detail__header--with-photo {
    grid-template-columns: auto 228px;
    gap: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .tag-detail__header {
    background: none;
    padding-bottom: 0;
    display: block;
  }
}
.tag-detail__title {
  grid-area: Title;
}
.tag-detail__label {
  color: #043cdc;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 0.875rem;
  letter-spacing: 0.0375rem;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .tag-detail__label {
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0.03125rem;
    margin-bottom: 0.5rem;
  }
}
.tag-detail__name {
  font-size: 1.3125rem;
  line-height: 1.625rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .tag-detail__name {
    font-size: 2.25rem;
    line-height: 2.625rem;
    letter-spacing: -0.025rem;
    margin-bottom: 2rem;
  }
}
.tag-detail__content-item {
  max-width: 1248px;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
.tag-detail__content-item--wide {
  max-width: 100%;
  padding: 0;
}
@media (min-width: 1200px) {
  .tag-detail__content-item--with-tile {
    display: flex;
    gap: 1.5rem;
  }
}
.tag-detail__tile {
  display: flex;
  gap: 1rem;
}
@media (min-width: 1200px) {
  .tag-detail__tile {
    width: 384px;
  }
}
.tag-detail__description {
  grid-area: Description;
  color: #52556d;
  font-size: 0.75rem;
  line-height: 1rem;
}
@media (min-width: 576px) {
  .tag-detail__description {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 768px) {
  .tag-detail__description {
    font-size: 1rem;
    line-height: 1.5rem;
    line-height: 1.375rem;
  }
}
@media (min-width: 1200px) {
  .tag-detail__description {
    padding: 2rem;
    border-radius: 2px;
    border: 1px solid #e1e8fb;
    background-color: #f0f3fd;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.tag-detail__photo {
  flex-shrink: 0;
  grid-area: Photo;
}
@media (min-width: 768px) {
  .tag-detail__photo img {
    width: 100%;
  }
  .tag-detail__photo {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .tag-detail__photo {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .tag-detail__photo + .tag-detail__tile-text {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding-top: 1rem;
  }
}
.tag-detail__photo-meta {
  font-size: 0.6875rem;
  line-height: 1rem;
  color: #52556d;
}
@media (min-width: 768px) {
  .tag-detail__photo-meta {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
.page-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .page-404 {
    text-align: center;
  }
}
.page-404__content {
  margin-top: 207px;
  margin-bottom: 127px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .page-404__content {
    margin-top: 268px;
    margin-bottom: 187px;
  }
}
.page-404__error-code {
  font-family: sans-serif;
  font-weight: 500;
  font-size: 1.3125rem;
  line-height: 1.625rem;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-404__error-code {
    margin-bottom: 2rem;
  }
}
.page-404__title {
  font-family: sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 2rem;
  margin-bottom: 20px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .page-404__title {
    font-weight: 700;
  }
}
.page-404__text {
  font-size: 1.3125rem;
  line-height: 1.625rem;
  max-width: 65ch;
  font-family: sans-serif;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .page-404__text {
    font-size: 1.75rem;
    line-height: 2rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-404__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  gap: 0.5rem;
  height: 40px;
  font-size: 1rem;
  line-height: 1.125rem;
  font-family: sans-serif;
  font-weight: 600;
  border-radius: 4px;
  background-color: #043cdc;
  color: #fff;
  border: 0;
  overflow: visible;
  letter-spacing: 0.2px;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  transition: all 0.25s ease-in-out;
}
.page-404__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.page-404__button .icon {
  display: flex;
  width: 16px;
  height: 16px;
  color: #fff;
}
.page-404__button:focus,
.page-404__button:hover {
  background-color: #00288c;
}
.page-404__button:active {
  background-color: #000a50;
}
.page-404__button.disabled,
.page-404__button:disabled,
.page-404__button[disabled] {
  pointer-events: none;
  background-color: #8690a7;
  color: #cccdd4;
}
.page-404__button.disabled .icon,
.page-404__button:disabled .icon,
.page-404__button[disabled] .icon {
  color: #cccdd4;
}
.page-404__button .icon {
  transform: rotate(90deg);
}
.article-link {
  position: relative;
}
.article-link:hover .article-link__title {
  color: #000a64;
}
.article-link__content {
  font-size: 16px;
  color: #52556d;
}
.article-link__category:after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 2px 2px 6px;
  border-radius: 50%;
  background-color: currentColor;
}
.article-link__thumbnail {
  flex: 0 0 33%;
}
@media (min-width: 576px) {
  .article-link__thumbnail {
    flex: 0 0 140px;
  }
}
@media (min-width: 992px) {
  .article-link__thumbnail {
    flex: 0 0 190px;
  }
}
@media (min-width: 1200px) {
  .article-link__thumbnail {
    flex: 0 0 266px;
  }
}
@media (min-width: 576px) {
  .article-link__thumbnail--important {
    flex: 0 0 190px;
  }
}
@media (min-width: 992px) {
  .article-link__thumbnail--important {
    flex: 0 0 264px;
  }
}
@media (min-width: 1200px) {
  .article-link__thumbnail--important {
    flex: 0 0 364px;
  }
}
.article-link__flag {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 8px;
  border-radius: 20px;
  line-height: 1.2;
  background: rgba(0, 5, 40, 0.85);
  color: #fff;
  font-size: 12px;
}
.article-link__flag--big {
  padding: 12px;
  font-size: 14px;
  border-radius: 24px;
}
.article-link__flag-icon {
  width: 16px;
  height: 16px;
  fill: #fff;
}
.article-link__flag-icon--big {
  width: 24px;
  height: 24px;
  fill: #fff;
}
@media (min-width: 1200px) {
  .article-link__flag--results {
    bottom: 78px;
  }
}
@media (min-width: 480px) {
  .article-link__category-link {
    padding-left: calc(33% + 12px);
  }
}
@media (min-width: 576px) {
  .article-link__category-link {
    padding-left: 230px;
  }
}
@media (min-width: 768px) {
  .article-link__category-link {
    padding-left: 70%;
  }
}
@media (min-width: 1200px) {
  .article-link__category-link {
    padding-left: calc(100% - 182px);
  }
}
.article-link__category-link:before {
  content: "";
  display: block;
  width: 15%;
  height: 15px;
  margin-top: 8px;
  flex: 1 1;
  opacity: 0.5;
  border-left: 1px solid #52556d;
  border-bottom: 1px solid #52556d;
}
@media (min-width: 1200px) {
  .article-link--blog .article-link__wrapper {
    display: flex;
  }
}
.article-link--blog .article-link__meta:before {
  content: "";
  background-color: #52556d;
  width: 100%;
  height: 1px;
  display: block;
  opacity: 0.5;
}
@media (min-width: 1200px) {
  .article-link--blog .article-link__meta:before {
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  .article-link--blog .article-link__meta {
    flex: 1 0 182px;
    position: relative;
  }
}
.article-link--blog .article-link__autor {
  font-family: sans-serif;
  text-transform: none;
  font-size: 0.875rem;
  color: #000528;
}
.article-link--teaser {
  position: relative;
  display: block;
}
@media (min-width: 1200px) {
  .article-link--teaser .article-link__wrapper {
    display: flex;
  }
}
.article-link--teaser .article-link__teaser {
  position: relative;
}
@media (min-width: 1200px) {
  .article-link--teaser .article-link__teaser {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 0;
    margin-left: 0;
    width: 182px;
  }
}
@media (max-width: 991.98px) {
  .article-link--teaser .article-link__teaser {
    border: 1px solid #52556d;
  }
}
.article-link--teaser .article-link__teaser:before {
  content: "";
  display: block;
  background-color: #fff;
}
@media (max-width: 991.98px) {
  .article-link--teaser .article-link__teaser:before {
    transform: rotate(45deg);
    border-top: 1px solid rgba(82, 85, 109, 0.5);
    border-left: 1px solid rgba(82, 85, 109, 0.5);
    top: -6px;
    left: 50px;
    width: 10px;
    height: 10px;
    position: absolute;
  }
}
@media (min-width: 1200px) {
  .article-link--teaser .article-link__teaser:before {
    content: "";
    background-color: #52556d;
    display: block;
    opacity: 0.5;
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.article-link--teaser .article-link__teaser:after {
  content: "";
  clear: both;
  display: block;
}
.article-link--teaser .article-link__teaser-thumbnail {
  width: 100px;
  float: left;
}
@media (min-width: 1200px) {
  .article-link--teaser .article-link__teaser-thumbnail {
    float: none;
    order: 2;
    width: 166px;
  }
  .article-link--teaser .article-link__teaser-info {
    order: 1;
  }
  .article-link--teaser .article-link__teaser-title {
    order: 3;
  }
  .article-link--teaser .article-link__teaser-category {
    display: block;
  }
}
.article-link--teaser .article-link__teaser-title {
  color: #000528;
  font-size: 0.875rem;
  line-height: 1.25;
}
.article-link--teaser .article-link__autor {
  font-family: sans-serif;
  font-size: 0.875rem;
  text-transform: none;
  color: #000528;
}
@media (min-width: 1200px) {
  .article-link--teaser .article-link__title-wrapper {
    margin-right: 182px;
  }
}
.article-link--video .article-link__thumbnail {
  position: relative;
  height: 100%;
}
.article-link--video .article-link__thumbnail-playbutton-icon {
  fill: #fff;
}
@media (max-width: 575.98px) {
  .article-link--video .article-link__thumbnail-playbutton-icon {
    width: 16px;
    height: 16px;
  }
}
.article-link--photogallery .article-link__button {
  width: 100%;
}
@media (min-width: 768px) {
  .article-link--photogallery .article-link__button {
    position: relative;
    top: -60px;
    width: auto;
  }
}
.article-link--photogallery .article-link__button-wrapper {
  margin-top: -6px;
}
@media (min-width: 768px) {
  .article-link--photogallery .article-link__button-wrapper {
    position: absolute;
    right: 16px;
    bottom: 10px;
  }
}
.article-link--photogallery .article-link__button-wrapper .btn__icon {
  margin-left: 10px;
}
.article-link--videogallery {
  display: block;
  padding: 10px;
}
@media (min-width: 992px) {
  .article-link--videogallery {
    display: flex;
    padding: 0;
    background: none;
  }
}
.article-link--videogallery .article-link__videolinks {
  margin-left: -4px;
}
.article-link--videogallery .article-link__videolinks-item {
  padding: 4px;
}
@media (min-width: 992px) {
  .article-link--videogallery .article-link__videolinks-item {
    padding: 8px 8px 0;
  }
}
.article-link--videogallery .article-link__videolinks-link {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 56.25%;
  background: #fff;
  z-index: 0;
  color: #52556d;
}
.article-link--videogallery .article-link__videolinks-link-inner {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}
.article-link--videogallery .article-link__videolinks .slick-track {
  margin-left: 0;
}
.article-meta-sb {
  display: flex;
  flex-wrap: wrap;
  color: #52556d;
  font-size: 0.875rem;
  line-height: 1.25rem;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .article-meta-sb {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 480px) and (max-width: 575.98px) {
  .article-meta-sb__created,
  .article-meta-sb__updated {
    flex: 1 0 50%;
    justify-content: space-between;
  }
  .article-meta-sb__authors {
    flex: 0 1 100%;
    justify-content: space-between;
  }
}
.article-meta-sb__top-wrapper {
  flex: 1 0 100%;
}
@media (min-width: 576px) {
  .article-meta-sb__top-wrapper {
    flex: initial;
  }
}
@media (min-width: 480px) and (max-width: 575.98px) {
  .article-meta-sb__top-wrapper {
    flex-wrap: wrap;
  }
}
.article-meta-sb__location {
  flex: 1 0 100%;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.article-meta-sb__date {
  width: 100%;
}
@media (min-width: 560px) {
  .article-meta-sb__date {
    width: auto;
  }
  .article-meta-sb__date time:first-of-type {
    margin-right: 48px;
    padding-bottom: 2px;
    line-height: 1;
  }
}
@media (min-width: 576px) {
  .article-meta-sb__created {
    margin-right: 48px;
  }
}
@media (max-width: 575.98px) {
  .article-meta-sb__updated-title {
    display: none;
  }
}
.article-meta-sb__authors {
  margin-left: auto;
}
@media (min-width: 480px) and (max-width: 575.98px) {
  .article-meta-sb__icon {
    margin-left: auto;
  }
}
.article-meta-sb__icon svg {
  fill: #52556d;
}
.article-meta-sb__authors,
.article-meta-sb__created,
.article-meta-sb__updated {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.caption__content {
  display: block;
  max-width: 560px;
}
@media (min-width: 768px) {
  .caption--cover {
    padding: 86px 1rem 1rem;
    position: absolute;
    bottom: 0;
    background-image: linear-gradient(
      180deg,
      transparent 0,
      rgba(0, 0, 0, 0.82)
    );
    color: #fff;
    width: 100%;
  }
}
.caption__content,
.caption__source {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #52556d;
}
.flash {
  font-size: 0.875rem;
  font-family: sans-serif;
  padding: 0.2734375rem;
}
.flash__inner {
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.flash__close {
  display: block;
  line-height: 1;
}
.flash__close-inner {
  margin-top: 4px;
  cursor: pointer;
  fill: #000;
}
.flash__close-inner:hover {
  transform: rotate(-90deg);
}
.icon {
  display: inline-block;
}
img {
  max-width: 100%;
  height: auto;
}
.image {
  position: relative;
}
.image img {
  width: 100%;
  vertical-align: bottom;
}
@media (min-width: 480px) and (max-width: 450px),
  (min-width: 576px) and (max-width: 1060px) and (orientation: portrait),
  (min-width: 768px) and (max-width: 1060px) and (orientation: landscape) {
  .image--perex-photo {
    height: 100%;
  }
  .image--perex-photo img {
    position: absolute;
    height: 100%;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.image--fullheight {
  height: 100%;
}
.image--fullheight img {
  position: absolute;
  height: 100%;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 479.98px) {
  .image--fullheight-sm {
    height: 100%;
  }
  .image--fullheight-sm img {
    height: 100%;
    object-fit: cover;
  }
}
.image--fullheight-all {
  height: 100%;
}
.image--fullheight-all img {
  height: 100%;
  object-fit: cover;
}
.navbar {
  height: 48px;
  top: 0;
  z-index: 10002;
  font-family: sans-serif;
  color: #fff;
  background: #2054b1;
  transition: top 0.25s ease-out;
}
@media (min-width: 768px) {
  .navbar {
    height: 56px;
  }
}
.navbar--sticky-hidden {
  top: -48px;
}
@media (min-width: 768px) {
  .navbar--sticky-hidden {
    top: -56px;
  }
}
.navbar-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.navbar__link-main-wrap {
  display: none;
}
@media (min-width: 768px) {
  .navbar__link-main-wrap {
    display: block;
    height: 56px;
    overflow: hidden;
  }
}
.navbar__link-item,
.navbar__link-main-item {
  line-height: 1;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
}
.navbar__link-item,
.navbar__link-item:hover,
.navbar__link-item:visited,
.navbar__link-main-item,
.navbar__link-main-item:hover,
.navbar__link-main-item:visited {
  color: #fff;
}
.navbar__link-item:hover,
.navbar__link-main-item:hover {
  background-color: rgba(62, 136, 232, 0.3);
  cursor: pointer;
}
.navbar__link-main-item {
  display: none;
  padding: 20px;
}
@media (min-width: 992px) {
  .navbar__link-main-item {
    display: inline-block;
  }
}
.navbar__link-main-item--event {
  background-position: 0;
  background-repeat: no-repeat;
}
.navbar__link-main-item--active {
  background-color: #043cdc;
}
.navbar__link-main-item-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  margin-right: 20px;
}
.navbar__link-main-item-icon img {
  transform: scale(3.2);
}
.navbar__link-item {
  width: 100%;
}
@media (min-width: 768px) {
  .navbar__dropdown {
    padding-top: 0;
  }
}
@media (min-width: 576px) {
  .navbar__columns {
    columns: 2;
    column-rule: 1px solid #000a64;
    column-gap: 0;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .navbar__columns--primary {
    margin: 15px 0;
  }
}
@media (min-width: 768px) {
  .navbar__columns {
    columns: 3;
  }
}
@media (min-width: 992px) {
  .navbar__columns {
    columns: 4;
  }
  .navbar__columns--primary {
    margin: 0;
  }
  .navbar__columns--secondary {
    margin: 15px 0;
  }
}
.navbar__side-wrap {
  flex: 0 0 auto;
}
.navbar__dropdown-primary {
  display: block;
  position: absolute;
  width: 100%;
  top: 48px;
  background-color: #043cdc;
}
@media (min-width: 768px) {
  .navbar__dropdown-primary {
    top: 56px;
  }
}
.navbar__dropdown-primary-title {
  color: #fff;
  font-family: sans-serif;
  text-transform: uppercase;
}
.navbar__dropdown-primary-title--active {
  background-color: #043cdc;
}
.navbar__dropdown-primary-title:hover {
  background-color: rgba(62, 136, 232, 0.3);
  cursor: pointer;
}
.navbar__dropdown-secondary {
  background-color: #000528;
}
@media (min-width: 992px) {
  .navbar__dropdown-secondary {
    max-width: 1024px;
    margin: 0 auto;
    background-color: #043cdc;
  }
}
.navbar__dropdown-secondary-title {
  position: relative;
  cursor: pointer;
  font-weight: 500;
  font-family: sans-serif;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .navbar__dropdown-secondary-title {
    width: 100%;
  }
}
.navbar__dropdown-secondary-title:before {
  content: "";
  position: absolute;
  top: 0;
  border-top: 1px solid #000a64;
}
.navbar__dropdown-secondary-title--active {
  background-color: #000528;
  margin-bottom: 0;
}
.navbar__dropdown-icon {
  fill: #fff;
}
.navbar__dropdown-icon--close,
.navbar__dropdown-primary-title--active .navbar__dropdown-icon--menu,
.navbar__dropdown-secondary-title--active .navbar__dropdown-icon--menu {
  display: none;
}
.navbar__dropdown-primary-title--active .navbar__dropdown-icon--close,
.navbar__dropdown-secondary-title--active .navbar__dropdown-icon--close {
  display: inline;
}
.navbar__dropdown-primary-title--active .navbar__dropdown-icon--arrow,
.navbar__dropdown-secondary-title--active .navbar__dropdown-icon--arrow {
  transform: rotate(180deg);
}
.navbar__logo {
  width: 148px;
  width: auto;
  margin-left: 0;
  margin-right: 10px;
  fill: #fff;
}
.navbar__logo-image {
  width: 90px;
  height: 20px;
}
@media (min-width: 768px) {
  .navbar__logo-image {
    width: 88px;
    height: 27px;
  }
}
.navbar__logo-image svg * {
  fill: #fff;
}
.navbar__hoverbox {
  color: #000528;
  text-transform: none;
}
.navbar__hoverbox:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: -6px;
  right: 42.5px;
  transform: translateX(50%);
}
@media (min-width: 768px) {
  .navbar__hoverbox:before {
    right: 50px;
  }
}
.navbar__hoverbox-wrap {
  position: absolute;
  height: 0;
  right: 0;
  top: 60px;
  width: 100vw;
  z-index: -1;
  opacity: 0;
  visibility: none;
}
@media (min-width: 768px) {
  .navbar__hoverbox-wrap {
    width: 280px;
  }
}
.navbar__hoverbox-wrap:hover {
  padding-top: 8px;
  height: auto;
  opacity: 1;
  visibility: visible;
  top: 48px;
  z-index: 10003;
}
@media (min-width: 768px) {
  .navbar__hoverbox-wrap:hover {
    top: 56px;
  }
}
.navbar__hoverbox-wrap:hover .navbar__hoverbox-content,
.navbar__hoverbox-wrap:hover .navbar__hoverbox-link,
.navbar__hoverbox-wrap:hover .navbar__hoverbox-title {
  display: inline-block;
}
.navbar__hoverbox-wrap:hover .navbar__hoverbox {
  padding: 20px;
}
.navbar__hoverbox-wrap:hover .navbar__hoverbox:before {
  border-right: 8px solid transparent;
  border-top: 8px solid transparent;
  border-left: 8px solid transparent;
}
.navbar__hoverbox-content,
.navbar__hoverbox-link,
.navbar__hoverbox-title {
  display: none;
}
.navbar__hoverbox-title {
  font-weight: 500;
  color: #000528;
}
.navbar__hoverbox-content {
  font-weight: 400;
  font-family: sans-serif;
}
.navbar__hoverbox-link {
  text-align: right;
  font-family: sans-serif;
  line-height: 1.25rem;
  text-decoration: none;
}
.navbar__live {
  height: 48px;
  width: 85px;
  overflow: hidden;
  position: relative;
  box-sizing: content-box;
  cursor: pointer;
}
@media (min-width: 768px) {
  .navbar__live {
    height: 56px;
    width: 100px;
  }
}
.navbar__live:not(.live-no-hover):hover + .navbar__hoverbox-wrap {
  padding-top: 8px;
  height: auto;
  opacity: 1;
  visibility: visible;
  top: 48px;
  z-index: 10003;
}
@media (min-width: 768px) {
  .navbar__live:not(.live-no-hover):hover + .navbar__hoverbox-wrap {
    top: 56px;
  }
}
.navbar__live:not(.live-no-hover):hover
  + .navbar__hoverbox-wrap
  .navbar__hoverbox-content,
.navbar__live:not(.live-no-hover):hover
  + .navbar__hoverbox-wrap
  .navbar__hoverbox-link,
.navbar__live:not(.live-no-hover):hover
  + .navbar__hoverbox-wrap
  .navbar__hoverbox-title {
  display: inline-block;
}
.navbar__live:not(.live-no-hover):hover
  + .navbar__hoverbox-wrap
  .navbar__hoverbox {
  padding: 20px;
}
.navbar__live:not(.live-no-hover):hover
  + .navbar__hoverbox-wrap
  .navbar__hoverbox:before {
  border-right: 8px solid transparent;
  border-top: 8px solid transparent;
  border-left: 8px solid transparent;
}
.navbar__live-image--offline {
  position: relative;
}
.navbar__live-image--offline:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.8;
  background: #228900;
}
.navbar__live-state {
  position: absolute;
  top: 0;
  font-size: 0.875rem;
  background-color: #ed1c24;
  padding: 0.3rem 0.3rem 0.2rem;
  line-height: 1;
}
.navbar__offline-state {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 5px;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.2;
}
.navbar__live-progressbar {
  position: absolute;
  bottom: 0;
  height: 4px;
  background-color: hsla(0, 0%, 100%, 0.48);
}
.navbar__live-progressbar-position {
  position: absolute;
  width: 18%;
  height: 4px;
  background-color: #ed1c24;
}
@media (min-width: 768px) {
  .navbar__search {
    max-width: 33.3%;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .navbar__search {
    max-width: 25%;
  }
}
.navbar__search-input {
  width: 100%;
  padding: 14px 10px;
  color: #000528;
  border: none;
  font-size: 1rem;
}
.navbar__search-item--selected {
  background-color: #fff;
}
.navbar__search-autocomplete {
  margin: 0;
  padding: 0;
  list-style: none;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  max-height: 300px;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar__search-autocomplete {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 42px;
  }
}
.navbar__search-autocomplete--above {
  position: absolute;
  bottom: 62px;
  left: 20px;
  right: 20px;
}
@media (min-width: 768px) {
  .navbar__search-autocomplete--above {
    top: unset;
  }
}
.navbar__search-autocomplete-item {
  padding: 16px 10px;
  line-height: 1;
  font-weight: 400;
  font-family: sans-serif;
  text-transform: none;
}
.navbar__search-autocomplete-item--highlight {
  font-weight: 700;
}
.collapsed {
  display: none;
}
.perex-result {
  position: relative;
}
@media (min-width: 576px) {
  .perex-result {
    display: flex;
    flex-direction: column;
    margin-top: 4px;
  }
}
@media (min-width: 992px) {
  .perex-result {
    margin-top: 8px;
  }
}
@media (min-width: 1200px) {
  .perex-result {
    margin-top: 16px;
  }
}
.perex-result__team-background {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.perex-result__team-background:after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: skewX(-10deg);
  transform-origin: 100% 0;
}
.perex-result__team {
  position: relative;
}
@media (max-width: 479.98px) {
  .perex-result__team {
    height: 52px;
  }
}
@media (min-width: 576px) {
  .perex-result__team {
    min-height: 44px;
    flex: 1 0 50%;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .perex-result__team {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .perex-result__team {
    min-height: 64px;
  }
}
.perex-result__team--first {
  margin-bottom: 1px;
}
@media (min-width: 576px) {
  .perex-result__team--first {
    margin-bottom: 4px;
    margin-right: 2px;
  }
}
@media (min-width: 1200px) {
  .perex-result__team--first {
    margin-right: 4px;
  }
}
@media (min-width: 768px) {
  .perex-result__team--first .perex-result__team-background {
    transform: translateX(-10px);
  }
  .perex-result__team--first .perex-result__team-background:after {
    position: absolute;
    z-index: -1;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    transform: skewX(-10deg);
    transform-origin: 0 100%;
  }
}
.perex-result__team--second {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .perex-result__team--second .perex-result__team-title {
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .perex-result__team--second .perex-result__team-background {
    transform: translateX(10px);
  }
}
@media (max-width: 479.98px) {
  .perex-result__team--second .perex-result__team-score {
    flex: 0 0 65px;
    padding-left: 14px;
  }
}
@media (min-width: 576px) {
  .perex-result__team--second .perex-result__team-score {
    right: auto;
    left: 0;
  }
  .perex-result__team--second {
    flex-direction: row-reverse;
    margin-left: 2px;
  }
}
@media (min-width: 1200px) {
  .perex-result__team--second {
    margin-left: 4px;
  }
}
.perex-result__team-list {
  position: relative;
}
.perex-result__team-list:before {
  content: "";
  position: absolute;
  width: calc(100% - 16px);
  height: 100%;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background: linear-gradient(90deg, #019ce1 0, #00288c);
}
@media (min-width: 576px) {
  .perex-result__team-list:before {
    width: 50px;
  }
  .perex-result__team-list {
    display: flex;
  }
}
.perex-result__team-logo {
  flex: 0 0 32px;
  position: relative;
}
@media (min-width: 576px) {
  .perex-result__team-logo {
    flex: 1 0 56px;
  }
}
@media (min-width: 768px) {
  .perex-result__team-logo {
    flex: 1 0 64px;
  }
}
@media (min-width: 992px) {
  .perex-result__team-logo {
    flex: 1 0 80px;
  }
}
@media (min-width: 1200px) {
  .perex-result__team-logo {
    flex: 1 0 96px;
  }
}
.perex-result__team-logo-inner {
  width: 100%;
  height: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-size: cover;
}
@media (min-width: 576px) {
  .perex-result__team-logo-inner {
    height: 56px;
  }
}
@media (min-width: 768px) {
  .perex-result__team-logo-inner {
    height: 64px;
  }
}
@media (min-width: 992px) {
  .perex-result__team-logo-inner {
    height: 80px;
  }
}
@media (min-width: 1200px) {
  .perex-result__team-logo-inner {
    height: 96px;
  }
}
.perex-result__team-title {
  line-height: 1.25rem;
  color: #000528;
  z-index: 1;
}
@media (min-width: 576px) {
  .perex-result__team-title {
    width: 100%;
    justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  .perex-result__team-title {
    line-height: 1.625rem;
    font-size: 1.3125rem;
  }
}
.perex-result__team-score {
  position: relative;
  width: 56px;
  padding-left: 5px;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 1;
  justify-content: flex-end;
  color: #fff;
  font-size: 1.3125rem;
  overflow: hidden;
  margin-left: auto;
}
.perex-result__team-score:after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: skewX(-10deg);
  transform-origin: 0 100%;
}
@media (min-width: 576px) {
  .perex-result__team-score:after {
    transform: skewX(0deg);
  }
  .perex-result__team-score {
    flex: 1 0 48px;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .perex-result__team-score {
    font-size: 1.5rem;
    flex: 1 0 60px;
  }
}
@media (min-width: 992px) {
  .perex-result__team-score {
    font-size: 1.5rem;
    flex: 1 0 64px;
  }
}
.perex-result__team-score-inner {
  margin: 0 auto;
}
@media (min-width: 576px) {
  .perex-result__team-score-inner {
    margin: 0 auto;
  }
}
.perex-result__subresult {
  margin-bottom: 1px;
  color: #fff;
  position: relative;
}
.perex-result__subresult:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  top: -4px;
  left: 0;
  z-index: -1;
  background: linear-gradient(90deg, #019ce1 0, #00288c);
}
@media (min-width: 576px) {
  .perex-result__subresult {
    width: calc(100% - 2 * (56px + 16px + 8px));
    align-self: center;
  }
}
@media (min-width: 768px) {
  .perex-result__subresult {
    width: calc(100% - 2 * (64px + 16px + 8px));
  }
}
@media (min-width: 992px) {
  .perex-result__subresult {
    width: calc(100% - 2 * (80px + 16px + 8px));
  }
}
@media (min-width: 1200px) {
  .perex-result__subresult {
    width: calc(100% - 2 * (96px + 16px + 8px));
  }
}
.perex-result__subresult--channel {
  font-family: sans-serif;
}
.perex-result__subresult-channel {
  height: 16px;
  margin-bottom: -2px;
  margin-left: 4px;
}
.perex-result__info {
  background-color: #000528;
  color: #fff;
}
@media (min-width: 576px) {
  .perex-result__info {
    width: calc(100% - 2 * (56px + 16px + 8px));
    align-self: center;
  }
}
@media (min-width: 768px) {
  .perex-result__info {
    width: calc(100% - 2 * (64px + 16px + 8px));
  }
}
@media (min-width: 992px) {
  .perex-result__info {
    width: calc(100% - 2 * (80px + 16px + 8px));
  }
}
@media (min-width: 1200px) {
  .perex-result__info {
    width: calc(100% - 2 * (96px + 16px + 8px));
  }
}
.perex-result--opener .perex-result__team-list {
  flex-direction: row;
}
@media (min-width: 480px) and (max-width: 767.98px) {
  .perex-result--opener .perex-result__team-list {
    flex-direction: column;
    margin-bottom: 12px;
  }
}
.perex-result--opener .perex-result__team-list:before {
  z-index: 0;
}
@media (min-width: 480px) {
  .perex-result--opener .perex-result__team-list:before {
    height: 45px;
    width: calc(100% - 29px);
    top: 40px;
  }
}
@media (min-width: 992px) {
  .perex-result--opener .perex-result__team-list:before {
    height: 56px;
    width: calc(100% - 176px);
    top: 4px;
  }
}
@media (min-width: 1200px) {
  .perex-result--opener .perex-result__team-list:before {
    height: 64px;
  }
}
.perex-result--opener .perex-result__team--first {
  margin-right: 2px;
}
.perex-result--opener .perex-result__team--first .perex-result__team-score {
  flex: 0 0 60px;
}
.perex-result--opener
  .perex-result__team--first
  .perex-result__team-background {
  transform: none;
}
.perex-result--opener .perex-result__team--first .perex-result__team-title {
  justify-content: flex-start;
}
@media (min-width: 480px) {
  .perex-result--opener .perex-result__team--first {
    margin-right: 0;
    margin-bottom: 1px;
  }
}
@media (min-width: 768px) {
  .perex-result--opener .perex-result__team--first {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .perex-result--opener .perex-result__team--first {
    margin-right: 2px;
  }
}
.perex-result--opener .perex-result__team--second {
  flex-direction: row;
  margin-left: 0;
}
@media (min-width: 992px) {
  .perex-result--opener .perex-result__team--second {
    flex-direction: row-reverse;
    margin-left: 2px;
  }
}
.perex-result--opener .perex-result__team--second .perex-result__team-score {
  flex: 0 0 68px;
}
@media (min-width: 992px) {
  .perex-result--opener .perex-result__team--second .perex-result__team-score {
    flex: 0 0 60px;
  }
}
@media (max-width: 767.98px) {
  .perex-result--opener
    .perex-result__team--second
    .perex-result__team-background:after {
    width: 95%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .perex-result--opener
    .perex-result__team--second
    .perex-result__team-logo-inner {
    margin-left: 8px;
  }
}
.perex-result--opener .perex-result__team {
  height: 40px;
}
@media (min-width: 576px) {
  .perex-result--opener .perex-result__team {
    flex: 1 0 100%;
    max-height: 40px;
    min-height: 40px;
  }
}
@media (min-width: 992px) {
  .perex-result--opener .perex-result__team {
    height: 56px;
    flex: 1 0 50%;
    max-height: 56px;
  }
}
@media (min-width: 1200px) {
  .perex-result--opener .perex-result__team {
    min-height: 64px;
  }
}
.perex-result--opener .perex-result__team .perex-result__team-title {
  line-height: 1.25rem;
}
@media (min-width: 768px) {
  .perex-result--opener .perex-result__team .perex-result__team-title {
    justify-content: flex-start;
  }
}
.perex-result--opener .perex-result__team .perex-result__team-score {
  color: #000528;
  font-size: 1.3125rem;
}
.perex-result--opener .perex-result__team .perex-result__team-score:after {
  background: linear-gradient(180deg, #019ce1 0, #00288c);
}
@media (max-width: 767.98px) {
  .perex-result--opener .perex-result__team .perex-result__team-score:after {
    transform: skewX(-10deg);
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .perex-result--opener .perex-result__team .perex-result__team-score {
    font-size: 1.5rem;
  }
}
.perex-result--opener .perex-result__team-logo {
  flex: 0 0 32px;
  position: relative;
}
@media (min-width: 576px) {
  .perex-result--opener .perex-result__team-logo {
    flex: 1 0 32px;
  }
}
@media (min-width: 992px) {
  .perex-result--opener .perex-result__team-logo {
    flex: 1 0 52px;
  }
}
@media (min-width: 1200px) {
  .perex-result--opener .perex-result__team-logo {
    flex: 1 0 60px;
  }
}
.perex-result--opener .perex-result__team-logo .perex-result__team-logo-inner {
  max-height: 32px;
}
@media (min-width: 992px) {
  .perex-result--opener
    .perex-result__team-logo
    .perex-result__team-logo-inner {
    max-height: 52px;
  }
}
@media (min-width: 1200px) {
  .perex-result--opener
    .perex-result__team-logo
    .perex-result__team-logo-inner {
    max-height: 60px;
  }
}
.perex-result--opener-two-posts {
  margin: 12px 16px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .perex-result--opener-two-posts .perex-result__team-list {
    flex-direction: column;
    margin-bottom: 12px;
  }
  .perex-result--opener-two-posts .perex-result__team-list:before {
    height: 45px;
    width: calc(100% - 29px);
    top: 40px;
  }
}
@media (min-width: 1200px) {
  .perex-result--opener-two-posts .perex-result__team-list:before {
    height: 44px;
    width: calc(100% - 176px);
    top: 4px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .perex-result--opener-two-posts .perex-result__team--first {
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .perex-result--opener-two-posts .perex-result__team--first {
    margin-right: 2px;
  }
  .perex-result--opener-two-posts
    .perex-result__team--first
    .perex-result__team-background {
    transform: translateX(-10px);
  }
  .perex-result--opener-two-posts
    .perex-result__team--first
    .perex-result__team-score {
    flex: 0 0 48px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .perex-result--opener-two-posts .perex-result__team--second {
    flex-direction: row;
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .perex-result--opener-two-posts .perex-result__team--second {
    flex-direction: row-reverse;
    margin-left: 2px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .perex-result--opener-two-posts
    .perex-result__team--second
    .perex-result__team-score {
    flex: 0 0 68px;
  }
}
@media (min-width: 1200px) {
  .perex-result--opener-two-posts
    .perex-result__team--second
    .perex-result__team-score {
    flex: 0 0 48px;
  }
}
@media (max-width: 991.98px) {
  .perex-result--opener-two-posts
    .perex-result__team--second
    .perex-result__team-background:after {
    width: 95%;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .perex-result--opener-two-posts
    .perex-result__team--second
    .perex-result__team-logo-inner {
    margin-left: 8px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .perex-result--opener-two-posts .perex-result__team {
    height: 40px;
    flex: 1 0 100%;
    max-height: 40px;
  }
}
@media (min-width: 1200px) {
  .perex-result--opener-two-posts .perex-result__team {
    height: 44px;
    flex: 1 0 50%;
    min-height: 44px;
    max-height: 44px;
  }
}
@media (max-width: 991.98px) {
  .perex-result--opener-two-posts
    .perex-result__team
    .perex-result__team-score:after {
    transform: skewX(-10deg);
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .perex-result--opener-two-posts
    .perex-result__team
    .perex-result__team-score {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .perex-result--opener-two-posts .perex-result__team-logo {
    flex: 0 0 32px;
  }
}
@media (min-width: 1200px) {
  .perex-result--opener-two-posts .perex-result__team-logo {
    flex: 1 0 52px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .perex-result--opener-two-posts
    .perex-result__team-logo
    .perex-result__team-logo-inner {
    max-height: 32px;
  }
}
@media (min-width: 1200px) {
  .perex-result--opener-two-posts
    .perex-result__team-logo
    .perex-result__team-logo-inner {
    max-height: 52px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .perex-result--opener-two-posts {
    margin: 8px 16px;
  }
}
@media (max-width: 767.98px) {
  .perex-result--opener-two-posts {
    margin: 8px;
  }
}
@media (min-width: 1200px) {
  .perex-result--opener-three-posts .perex-result__team-list:before {
    height: 44px;
    width: calc(100% - 176px);
    top: 4px;
  }
  .perex-result--opener-three-posts .perex-result__team--first {
    margin-right: 2px;
  }
  .perex-result--opener-three-posts
    .perex-result__team--first
    .perex-result__team-background {
    transform: translateX(-10px);
  }
  .perex-result--opener-three-posts
    .perex-result__team--first
    .perex-result__team-score {
    flex: 0 0 48px;
  }
  .perex-result--opener-three-posts .perex-result__team--second {
    flex-direction: row-reverse;
    margin-left: 2px;
  }
  .perex-result--opener-three-posts
    .perex-result__team--second
    .perex-result__team-score {
    flex: 0 0 48px;
  }
  .perex-result--opener-three-posts .perex-result__team {
    height: 44px;
    flex: 1 0 50%;
    min-height: 44px;
    max-height: 44px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .perex-result--opener-three-posts
    .perex-result__team
    .perex-result__team-score {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .perex-result--opener-three-posts .perex-result__team-logo {
    flex: 1 0 52px;
  }
  .perex-result--opener-three-posts
    .perex-result__team-logo
    .perex-result__team-logo-inner {
    max-height: 52px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .perex-result--opener-three-posts {
    margin: 12px 20px;
    position: absolute;
    bottom: 16px;
    left: 25px;
    width: 504px;
    z-index: 1;
  }
}
.photo {
  margin: 0 auto;
}
.photo .icon {
  fill: #fff;
  display: block;
}
.photo__image--perex:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.photo__caption--perex .caption__content {
  margin-right: 70px;
}
.photo__controls-wrapper {
  position: relative;
}
.photo__controls-wrapper:hover {
  cursor: pointer;
}
.photo__controls-wrapper:hover .photo__controls,
.photo__controls-wrapper:hover .photo__controls--zoomed {
  display: none;
}
@media (min-width: 576px) {
  .photo__controls-wrapper:hover .photo__controls {
    display: flex;
  }
}
.photo__controls,
.photo__controls--zoomed {
  display: none;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgba(0, 5, 40, 0.86);
  border-radius: 28px;
  z-index: 1;
}
.photo--perex .photo {
  position: relative;
}
.photo--perex .photo:after {
  display: none;
}
.photo--perex .photo .button--gallery {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  display: inline-flex;
}
.photo .lightbox,
.photo--zoomed .photo__controls-wrapper:hover .photo__controls,
.photo--zoomed .photo__controls-wrapper:hover .photo__controls--zoomed {
  display: none;
}
@media (min-width: 576px) {
  .photo--zoomed .photo__controls-wrapper:hover .photo__controls--zoomed {
    display: flex;
  }
}
.gallery-item-meta__item:first-child {
  margin-right: 1rem;
}
.related-video {
  width: 100%;
  overflow: hidden;
}
.related-video__slick-align {
  margin: 0 -4px;
}
@media (min-width: 576px) {
  .related-video__slick-align {
    margin: 0 -8px;
  }
}
.related-video__item {
  width: 100%;
  padding: 0 4px;
}
@media (min-width: 768px) {
  .related-video__item {
    padding: 0 8px;
  }
}
.related-video__item--slidable {
  width: 30vw;
}
.related-video__item:not(:first-child) .related-video__item-figure {
  display: none;
}
@media (min-width: 768px) {
  .related-video__item:not(:first-child) .related-video__item-figure {
    display: flex;
  }
}
.related-video__item:not(:first-child) .related-video__item-wrapper {
  width: 100%;
}
@media (min-width: 768px) {
  .related-video__item:not(:first-child) .related-video__item-wrapper {
    width: 100%;
  }
}
.related-video__item-list {
  display: block;
  margin-right: -4px;
  margin-left: -4px;
}
@media (min-width: 768px) {
  .related-video__item-list {
    display: flex;
    margin-right: -8px;
    margin-left: -8px;
  }
}
.related-video__grid {
  display: grid;
  position: relative;
  justify-content: stretch;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: [row-1] auto [row-2] auto [row-3];
  grid-gap: 16px;
  padding-bottom: 16px;
}
.related-video__grid .related-video__item {
  padding: 0;
  grid-row: auto;
}
.related-video__grid--7 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.related-video__grid--7 .related-video__item:first-child {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
.related-video__grid--7
  .related-video__item:first-child
  .video-link__thumbnail {
  flex: 1 1;
}
.related-video__grid--6 {
  grid-template-columns: 1fr 1fr 1fr;
  width: 80%;
  margin: auto;
}
.related-video__grid--5 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.related-video__grid--5 .related-video__item:first-child {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
.related-video__grid--5
  .related-video__item:first-child
  .video-link__thumbnail {
  flex: 1 1;
}
.related-video__button {
  position: absolute;
  right: 0;
  bottom: -52px;
}
.related-video__video-link {
  display: flex;
  flex-direction: column;
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .related-video__grid--8 .related-video__item:first-child,
  .related-video__grid--8 .related-video__item:nth-child(2),
  .related-video__grid--8 .related-video__item:nth-child(3),
  .related-video__grid--8 .related-video__item:nth-child(4) {
    grid-row: 1;
  }
  .related-video__grid--8 .related-video__item:nth-child(5),
  .related-video__grid--8 .related-video__item:nth-child(6),
  .related-video__grid--8 .related-video__item:nth-child(7),
  .related-video__grid--8 .related-video__item:nth-child(8) {
    grid-row: 2;
  }
  .related-video__grid--8 .related-video__item:first-child,
  .related-video__grid--8 .related-video__item:nth-child(5) {
    grid-column: 1;
  }
  .related-video__grid--8 .related-video__item:nth-child(2),
  .related-video__grid--8 .related-video__item:nth-child(6) {
    grid-column: 2;
  }
  .related-video__grid--8 .related-video__item:nth-child(3),
  .related-video__grid--8 .related-video__item:nth-child(7) {
    grid-column: 3;
  }
  .related-video__grid--8 .related-video__item:nth-child(4),
  .related-video__grid--8 .related-video__item:nth-child(8) {
    grid-column: 4;
  }
  .related-video__grid--7 .related-video__item:nth-child(2),
  .related-video__grid--7 .related-video__item:nth-child(3),
  .related-video__grid--7 .related-video__item:nth-child(4) {
    grid-row: 1;
  }
  .related-video__grid--7 .related-video__item:nth-child(5),
  .related-video__grid--7 .related-video__item:nth-child(6),
  .related-video__grid--7 .related-video__item:nth-child(7) {
    grid-row: 2;
  }
  .related-video__grid--7 .related-video__item:nth-child(2),
  .related-video__grid--7 .related-video__item:nth-child(5) {
    grid-column: 3;
  }
  .related-video__grid--7 .related-video__item:nth-child(3),
  .related-video__grid--7 .related-video__item:nth-child(6) {
    grid-column: 4;
  }
  .related-video__grid--7 .related-video__item:nth-child(4),
  .related-video__grid--7 .related-video__item:nth-child(7) {
    grid-column: 5;
  }
  .related-video__grid--6 .related-video__item:first-child,
  .related-video__grid--6 .related-video__item:nth-child(2),
  .related-video__grid--6 .related-video__item:nth-child(3) {
    grid-row: 1;
  }
  .related-video__grid--6 .related-video__item:nth-child(4),
  .related-video__grid--6 .related-video__item:nth-child(5),
  .related-video__grid--6 .related-video__item:nth-child(6) {
    grid-row: 2;
  }
  .related-video__grid--6 .related-video__item:first-child,
  .related-video__grid--6 .related-video__item:nth-child(4) {
    grid-column: 1;
  }
  .related-video__grid--6 .related-video__item:nth-child(2),
  .related-video__grid--6 .related-video__item:nth-child(5) {
    grid-column: 2;
  }
  .related-video__grid--6 .related-video__item:nth-child(3),
  .related-video__grid--6 .related-video__item:nth-child(6) {
    grid-column: 3;
  }
  .related-video__grid--5 .related-video__item:nth-child(2),
  .related-video__grid--5 .related-video__item:nth-child(3) {
    grid-row: 1;
  }
  .related-video__grid--5 .related-video__item:nth-child(4),
  .related-video__grid--5 .related-video__item:nth-child(5) {
    grid-row: 2;
  }
  .related-video__grid--5 .related-video__item:nth-child(2),
  .related-video__grid--5 .related-video__item:nth-child(4) {
    grid-column: 3;
  }
  .related-video__grid--5 .related-video__item:nth-child(3),
  .related-video__grid--5 .related-video__item:nth-child(5) {
    grid-column: 4;
  }
}
.related-video--sameHeight .slick-track {
  display: flex !important;
}
.related-video--sameHeight .slick-slide {
  height: inherit !important;
}
.related-video--sameHeight .slick-slide > div,
.related-video--sameHeight .slick-slide > div .related-video__item {
  height: 100%;
}
.related-video--sameHeight .video-link {
  display: flex;
  flex-direction: column;
}
.related-video--sameHeight .video-link figcaption {
  flex-grow: 1;
}
.slick-slider {
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.slick-list,
.slick-slider {
  position: relative;
  display: block;
}
.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
  transform: translateZ(0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:after,
.slick-track:before {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.tag {
  border-radius: 1px;
  border: 1px solid #e1e8fb;
  background-color: #fff;
  line-height: 1;
  color: #52556d;
  transition: all 0.25s ease-in-out;
}
.tag--big {
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 1rem;
}
.tag--small {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}
.tag:hover {
  background-color: #f0f3fd;
  color: #043cdc;
  text-decoration: none;
}
.timestamp--bottom-right {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 5, 40, 0.86);
  color: #fff;
}
.top-articles {
  padding-top: 20px;
  font-family: sans-serif;
}
.top-articles__item {
  padding-bottom: 20px;
  font-size: 12px;
}
.top-articles__item,
.top-articles__item:hover {
  color: #52556d;
}
.top-articles__image {
  flex: 1 0 auto;
  max-width: 113px;
}
@media (min-width: 576px) {
  .top-articles__image {
    max-width: 140px;
  }
}
@media (min-width: 768px) {
  .top-articles__image {
    max-width: 190px;
  }
}
@media (min-width: 992px) {
  .top-articles__image {
    max-width: none;
  }
}
.top-articles__title,
.top-articles__title:hover {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #000528;
}
@media (min-width: 576px) {
  .top-articles__title,
  .top-articles__title:hover {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .top-articles__title,
  .top-articles__title:hover {
    font-size: 20px;
  }
}
.top-articles-text {
  padding: 16px 16px 8px;
  font-size: 18px;
}
@media (min-width: 768px) {
  .top-articles-text {
    font-size: 20px;
    padding: 24px 24px 8px;
  }
}
.top-articles-text__title {
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .top-articles-text__title {
    margin-bottom: 24px;
  }
}
.top-articles-text__item {
  display: inline-block;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .top-articles-text__item {
    margin-bottom: 16px;
  }
}
.video-link {
  text-decoration: none;
  display: block;
}
.video-link__label {
  text-transform: uppercase;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #52556d;
}
.video-link__thumbnail {
  position: relative;
}
.video-link__title {
  color: #2054b1;
  font-size: 1rem;
  line-height: 1.375rem;
}
@media (min-width: 768px) {
  .video-link__title {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.video-link__title--thin {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .video-link__title--thin {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
@media (max-width: 479.98px) {
  .video-link--single {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  .video-link--single .video-link__thumbnail {
    flex: 1 0 50%;
    overflow: hidden;
    position: relative;
  }
  .video-link--single .video-link__caption {
    flex: 1 0 50%;
  }
}
.article-link {
  container-type: inline-size;
  max-width: 800px;
  display: block;
}
.article-link__link {
  width: 100%;
  display: flex;
  margin-bottom: 1.5rem;
  color: #52556d;
}
@container (min-width: 736px) {
  .article-link__link {
    margin-bottom: 2rem;
  }
}
.article-link__link:hover {
  text-decoration: none;
  color: #52556d;
}
.article-link__link:hover .article-link__title {
  color: #043cdc;
  transition: color 0.25s ease-in-out;
}
.article-link__photo {
  flex-shrink: 0;
  width: 108px;
  margin-right: 0.75rem;
  position: relative;
}
@container (min-width: 544px) {
  .article-link__photo {
    width: 144px;
    margin-right: 1rem;
  }
}
@container (min-width: 736px) {
  .article-link__photo {
    width: auto;
  }
}
.article-link__text {
  flex-grow: 1;
}
.article-link__photo-wrap {
  position: relative;
}
.article-link__photo-play {
  position: absolute;
  bottom: 0.25rem;
  left: 0.25rem;
  width: 32px;
  height: 24px;
  line-height: 1;
}
.article-link__photo-play svg rect:first-child {
  transition: all 0.25s ease-in-out;
}
@container (min-width: 736px) {
  .article-link__photo-play {
    bottom: 0.5rem;
    left: 0.5rem;
  }
}
.article-link__above-title {
  color: #043cdc;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 0.875rem;
  letter-spacing: 0.0375rem;
  margin-bottom: 0.25rem;
}
@container (min-width: 736px) {
  .article-link__above-title {
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0.03125rem;
    margin-bottom: 0.5rem;
  }
}
.article-link__title {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #000528;
  margin-bottom: 0.25rem;
  transition: color 0.25s ease-in-out;
}
@container (min-width: 544px) {
  .article-link__title {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
@container (min-width: 736px) {
  .article-link__title {
    font-size: 1.3125rem;
    line-height: 1.625rem;
    margin-bottom: 0.5rem;
  }
}
.article-link__perex-text {
  display: none;
}
@container (min-width: 736px) {
  .article-link__perex-text {
    display: block;
    line-height: 1.375rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.article-link__meta {
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.0125rem;
}
@container (min-width: 736px) {
  .article-link__meta {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.article-link__date {
  font-weight: 600;
}
.article-link__date svg {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
}
.article-link__skeleton--big {
  display: none;
}
@container (min-width: 736px) {
  .article-link__skeleton--big {
    display: inline;
  }
  .article-link__skeleton--small {
    display: none;
  }
}
.article-meta__avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.article-meta__avatar {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #fbfbfd;
  background: #e1e8fb;
  margin-right: -8px;
}
@media (min-width: 768px) {
  .article-meta__avatar {
    width: 52px;
    height: 52px;
    margin-right: -16px;
    border: 2px solid #fbfbfd;
  }
}
.article-meta__avatar--monogram {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .article-meta__avatar--monogram {
    font-size: 18px;
  }
}
.article-meta__avatar--count {
  color: #fff;
  font-size: 14px;
  background: #cccdd4;
}
.article-meta__avatar:first-child {
  margin-left: -1px;
  z-index: 1;
}
@media (min-width: 768px) {
  .article-meta__avatar:first-child {
    margin-left: -2px;
  }
}
.article-meta__avatar:nth-child(2) {
  z-index: 0;
}
.article-meta__avatar:nth-child(3) {
  z-index: -1;
}
.article-meta__avatar:last-child {
  margin-right: 0;
}
.article-meta__avatar img {
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 100%;
}
.article-meta__authors {
  color: #043cdc;
  font-size: 12px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .article-meta__authors {
    font-size: 14px;
  }
}
.article-meta__authors-list {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}
.article-meta__authors-list li {
  display: inline;
}
.article-meta__authors-list li:last-child {
  margin-right: 0;
}
.article-meta__sources {
  font-size: 12px;
  color: #52556d;
}
@media (min-width: 768px) {
  .article-meta__sources {
    font-size: 14px;
  }
}
.article-meta__sources svg {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
}
.article-meta__share {
  flex-shrink: 0;
  align-self: flex-end;
}
.article-strip-wrapper {
  container-type: inline-size;
  background: linear-gradient(90deg, #000a50, #00288c);
  color: #fff;
  display: block;
}
.article-strip-wrapper .article-strip {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@container (min-width: 768px) {
  .article-strip-wrapper .article-strip {
    max-width: 1248px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 2.5rem 1rem;
  }
}
.article-strip-wrapper .article-strip__container {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 992px) {
  .article-strip-wrapper .article-strip__container {
    padding-left: inherit;
    padding-right: inherit;
  }
}
@media (min-width: 1400px) {
  .article-strip-wrapper .article-strip__container {
    padding-left: 0;
    padding-right: 0;
  }
}
.article-strip-wrapper .article-strip__carousel-wrap {
  position: relative;
}
@container (min-width: 768px) {
  .article-strip-wrapper .article-strip__carousel-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.article-strip-wrapper .article-strip__title {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.03125rem;
  font-weight: 700;
  color: #fff;
  font-family: sans-serif;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  transition: all 0.25s ease-in-out;
}
@container (min-width: 768px) {
  .article-strip-wrapper .article-strip__title {
    font-size: 2.25rem;
    line-height: 2.625rem;
    margin-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.article-strip-wrapper .article-strip a:hover {
  text-decoration: none;
}
.article-strip-wrapper .article-strip a:hover .article-strip__title {
  color: #b9cafc;
}
.article-strip-wrapper .article-strip__description {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 0.5rem;
}
@container (min-width: 768px) {
  .article-strip-wrapper .article-strip__description {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1rem;
  }
}
.article-strip-wrapper .article-strip__navigation {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #e1e8fb;
  z-index: 1;
  align-items: center;
  justify-content: center;
  top: 76px;
  display: none;
  transition: background-color 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .article-strip-wrapper .article-strip__navigation {
    display: flex;
  }
}
.article-strip-wrapper .article-strip__navigation .icon {
  width: 1rem;
  line-height: 0;
  color: #043cdc;
  color: #000528;
  transition: color 0.25s ease-in-out;
}
.article-strip-wrapper .article-strip__navigation--prev {
  rotate: 90deg;
  left: -12px;
  transform: translateX(-50%);
}
@media (min-width: 1400px) {
  .article-strip-wrapper .article-strip__navigation--prev {
    left: -20px;
  }
}
.article-strip-wrapper .article-strip__navigation--next {
  rotate: -90deg;
  right: -12px;
  transform: translateX(50%);
}
@media (min-width: 1400px) {
  .article-strip-wrapper .article-strip__navigation--next {
    right: -20px;
  }
}
.article-strip-wrapper .article-strip__navigation:hover {
  background-color: #e1e8fb;
}
.article-strip-wrapper .article-strip__navigation:hover .icon {
  color: #043cdc;
}
.article-strip-wrapper .article-strip__navigation--disabled {
  cursor: not-allowed;
}
.article-strip-wrapper .article-strip__navigation--disabled .icon {
  color: #cccdd4;
}
.article-strip-wrapper .article-strip__navigation--disabled:hover {
  background-color: #fff;
}
.article-strip-wrapper .article-strip__navigation--disabled:hover .icon {
  color: #cccdd4;
}
.article-strip-wrapper .article-strip__article {
  width: 150px;
}
@media (min-width: 768px) {
  .article-strip-wrapper .article-strip__article {
    width: 228px;
  }
}
.article-strip-wrapper
  .article-strip__article:hover
  .article-strip__article-title {
  color: #b9cafc;
  transition: color 0.25s ease-in-out;
}
.article-strip-wrapper .article-strip__article-title {
  font-family: sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.125rem;
  margin-top: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: color 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .article-strip-wrapper .article-strip__article-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25rem;
    letter-spacing: 0;
  }
}
.article-strip-wrapper .article-strip__article-date {
  font-family: sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: 0.01875rem;
  color: #cccdd4;
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .article-strip-wrapper .article-strip__article-date {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.0125rem;
  }
}
.article-strip-wrapper .article-strip__last a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 2px;
  width: calc(150px - 1rem);
  height: 100px;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .article-strip-wrapper .article-strip__last a {
    width: calc(228px - 1.5rem);
    height: 152px;
    margin-right: 0;
  }
}
.article-strip-wrapper .article-strip__last a .icon {
  display: flex;
  width: 1rem;
  height: 1rem;
  line-height: 0;
  color: #fff;
  transform: rotate(-90deg);
  margin-left: 0.25rem;
}
.article-strip-wrapper .article-strip__last a:hover {
  text-decoration: none;
  background-color: hsla(0, 0%, 100%, 0.05);
  border-color: hsla(0, 0%, 100%, 0.5);
}
.article-strip-wrapper .article-strip__article-image {
  position: relative;
}
.article-strip-wrapper .article-strip__article-image-play {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  width: 32px;
  height: 24px;
  line-height: 1;
}
.article-strip-wrapper--in-article {
  background: #f0f3fd;
}
.article-strip-wrapper--in-article .article-strip {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .article-strip-wrapper--in-article .article-strip {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.article-strip-wrapper--in-article .article-strip__title {
  color: #00288c;
}
.article-strip-wrapper--in-article .article-strip a:hover {
  text-decoration: none;
}
.article-strip-wrapper--in-article
  .article-strip
  a:hover
  .article-strip__title {
  color: #043cdc;
}
.article-strip-wrapper--in-article .article-strip__article {
  width: 150px;
}
@media (min-width: 768px) {
  .article-strip-wrapper--in-article .article-strip__article {
    width: 280px;
  }
}
.article-strip-wrapper--in-article
  .article-strip__link:hover
  .article-strip__article-title {
  color: #043cdc;
}
.article-strip-wrapper--in-article .article-strip__article-title,
.article-strip-wrapper--in-article .article-strip__article-title:hover {
  color: #000528;
}
.article-strip-wrapper--in-article .article-strip__article-date {
  color: #52556d;
}
@container (min-width: 768px) {
  .article-strip-wrapper--in-article .article-strip .swiper-slide {
    margin-right: 1rem;
    margin-left: 0;
  }
}
.article-strip-wrapper--in-article .article-strip__navigation {
  top: 93.3333333333px;
}
.article-strip .swiper-slide {
  margin-left: 1rem;
  margin-right: 0;
}
@container (min-width: 768px) {
  .article-strip .swiper-slide {
    margin-right: 1.5rem;
    margin-left: 0;
  }
}
.article-strip .swiper-slide:last-child {
  margin-right: 1rem;
}
@container (min-width: 768px) {
  .article-strip .swiper-slide:last-child {
    margin-right: 0;
  }
}
.column .article-strip-wrapper {
  padding-left: 1rem;
}
@media (min-width: 768px) {
  .column .article-strip-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.columns .article-strip__description,
.columns .article-strip__title {
  padding-left: 0;
}
.column .swiper-slide {
  margin-left: 0;
  margin-right: 0.75rem;
}
.column .article-strip__navigation--prev {
  left: -20px;
}
.column .article-strip__navigation--next {
  right: -20px;
}
button {
  overflow: visible;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: normal;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  transition: all 0.25s ease-in-out;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.btn--icon-only.btn--primary,
.opener-title--transparent .btn--icon-only.opener-btn {
  color: #043cdc;
}
.btn svg * {
  fill: currentColor;
}
.load-more-wrapper {
  max-width: 800px;
  width: 100%;
}
.btn-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  gap: 0.5rem;
  height: 40px;
  font-size: 1rem;
  line-height: 1.125rem;
  font-family: sans-serif;
  font-weight: 600;
  border-radius: 4px;
  background-color: #043cdc;
  color: #fff;
  border: 0;
  overflow: visible;
  letter-spacing: 0.2px;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  transition: all 0.25s ease-in-out;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.btn-load-more::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.btn-load-more .icon {
  display: flex;
  width: 16px;
  height: 16px;
  color: #fff;
}
.btn-load-more:focus,
.btn-load-more:hover {
  background-color: #00288c;
}
.btn-load-more:active {
  background-color: #000a50;
}
.btn-load-more.disabled,
.btn-load-more:disabled,
.btn-load-more[disabled] {
  pointer-events: none;
  background-color: #8690a7;
  color: #cccdd4;
}
.btn-load-more.disabled .icon,
.btn-load-more:disabled .icon,
.btn-load-more[disabled] .icon {
  color: #cccdd4;
}
.btn--primary,
.opener-title--transparent .opener-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  gap: 0.5rem;
  height: 40px;
  font-size: 1rem;
  line-height: 1.125rem;
  font-family: sans-serif;
  font-weight: 600;
  border-radius: 4px;
  background-color: #043cdc;
  color: #fff;
  border: 0;
  overflow: visible;
  letter-spacing: 0.2px;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  transition: all 0.25s ease-in-out;
}
.btn--primary::-moz-focus-inner,
.opener-title--transparent .opener-btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.btn--primary .icon,
.opener-title--transparent .opener-btn .icon {
  display: flex;
  width: 16px;
  height: 16px;
  color: #fff;
}
.btn--primary:focus,
.btn--primary:hover,
.opener-title--transparent .opener-btn:focus,
.opener-title--transparent .opener-btn:hover {
  background-color: #00288c;
}
.btn--primary:active,
.opener-title--transparent .opener-btn:active {
  background-color: #000a50;
}
.btn--primary.disabled,
.btn--primary:disabled,
.btn--primary[disabled],
.opener-title--transparent .disabled.opener-btn,
.opener-title--transparent .opener-btn:disabled,
.opener-title--transparent [disabled].opener-btn {
  pointer-events: none;
  background-color: #8690a7;
  color: #cccdd4;
}
.btn--primary.disabled .icon,
.btn--primary:disabled .icon,
.btn--primary[disabled] .icon,
.opener-title--transparent .disabled.opener-btn .icon,
.opener-title--transparent .opener-btn:disabled .icon,
.opener-title--transparent [disabled].opener-btn .icon {
  color: #cccdd4;
}
.btn--secondary {
  background: transparent;
  color: #043cdc;
}
.btn--secondary.btn--icon-only .icon {
  color: #043cdc;
}
.btn--secondary.btn--icon-only:hover .icon {
  color: #00288c;
}
.breaking-news {
  display: none;
  background: linear-gradient(90deg, #ffa300, #ffeb00);
  flex-direction: row;
  align-items: center;
  padding: 0.75rem;
  position: relative;
}
.breaking-news a {
  color: #000528;
}
.breaking-news__message-wrapper {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .breaking-news__message-wrapper {
    max-width: 960px;
    width: 100%;
    padding-right: 1rem;
    margin-right: auto;
    margin-left: auto;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding-left: inherit;
  }
}
@media (min-width: 1200px) {
  .breaking-news__message-wrapper {
    max-width: 1140px;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1400px) {
  .breaking-news__message-wrapper {
    max-width: 1248px;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
  }
}
.breaking-news__label {
  background: #000528;
  color: #fff;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-family: sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 2px;
}
@media (min-width: 992px) {
  .breaking-news__label {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    margin-bottom: unset;
  }
}
.breaking-news__message {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
}
@media (min-width: 992px) {
  .breaking-news__message {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}
.breaking-news__message-more {
  font-size: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  line-height: 0;
  padding: 0;
  height: 12px;
}
@media (min-width: 992px) {
  .breaking-news__message-more {
    font-family: sans-serif;
    font-size: 0.875rem;
    line-height: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.1px;
    margin-left: 1rem;
  }
}
.breaking-news__message-more .icon {
  margin-top: -7px;
  transform: scale(0.8);
}
@media (min-width: 992px) {
  .breaking-news__message-more .icon {
    margin-top: 0;
  }
}
.breaking-news__message-more .icon svg {
  width: 100%;
  height: 100%;
}
.breaking-news__message-more .icon svg path {
  fill: #000528;
}
.breaking-news__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
@media (min-width: 992px) {
  .breaking-news__close {
    right: 2rem;
    top: unset;
  }
}
.breaking-news__close-icon {
  display: flex;
  width: 1rem;
  height: 1rem;
  line-height: 0;
  color: #ffa300;
}
@media (min-width: 768px) {
  .columns {
    max-width: 800px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .columns {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    max-width: 100%;
    width: 100%;
  }
}
.column {
  width: 100%;
}
@media (min-width: 1200px) {
  .column {
    width: 50%;
  }
  .column--33 {
    width: 33.3333333333%;
  }
  .column--66 {
    width: 66.6666666667%;
  }
}
.column--100 {
  width: 100%;
}
.dropdown-container {
  max-width: 250px;
  width: auto;
  position: relative;
}
.dropdown-container--ep {
  max-width: none;
  width: 100%;
}
.dropdown {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: sans-serif;
  position: relative;
}
.dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 10px 1rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  color: #000528;
  border-radius: 4px;
  border: 1px solid #e1e8fb;
  transition: all 0.25s ease-in-out;
}
.dropdown__toggle:hover {
  color: #043cdc;
  border-color: #e1e8fb;
}
.dropdown__icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
  transition: transform 0.25s ease-in-out;
}
.dropdown__icon svg {
  width: 100%;
  height: 100%;
}
.dropdown__menu {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 100%;
  margin-top: 8px;
  width: 100%;
  z-index: 100;
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.3),
    0 1px 3px 0 rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  overflow-y: auto;
}
.dropdown--open .dropdown__toggle {
  color: #043cdc;
}
.dropdown--open .dropdown__menu {
  display: flex;
}
.dropdown--open .dropdown__icon {
  transform: rotateX(180deg);
  transition: all 0.25s ease-in-out;
}
.dropdown__item {
  padding: 0.5rem 1.5rem;
  color: #000528;
}
.dropdown__item:hover {
  background: #f0f3fd;
  text-decoration: none;
  color: #043cdc;
}
.dropdown__item--selected {
  pointer-events: none;
  color: #c5cced;
}
.dropdown__item--no-data {
  pointer-events: none;
}
.dropdown--ep {
  width: 100%;
}
.dropdown--ep .dropdown__toggle {
  max-width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}
.dropdown--ep .dropdown__menu {
  max-height: 310px;
}
.dropdown__flag {
  width: 32px;
  height: 24px;
  margin-right: 0.5rem;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 102;
  background-color: var(--ct24-body-bg);
}
.modal__content {
  margin-bottom: 76px;
}
@media (min-width: 768px) {
  .modal__content {
    margin-bottom: 0;
  }
}
.modal__container {
  overflow-y: auto;
  width: 100%;
  height: 100%;
}
.modal__header-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 102;
}
.modal__header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: linear-gradient(90deg, #019ce1 0, #00288c);
}
@media (min-width: 768px) {
  .modal__header {
    height: 65px;
  }
}
.modal__header--no-borders {
  border: none !important;
}
.modal__header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  height: 100%;
  border-right: 1px solid hsla(0, 0%, 100%, 0.2);
}
@media (min-width: 768px) {
  .modal__header-logo {
    padding: 20px 24px;
  }
}
.modal__header-logo-link {
  font-size: 0;
  line-height: 0;
}
.modal__header-center {
  justify-content: space-between;
  flex-grow: 1;
}
.modal__header-center,
.modal__header-center-title {
  display: flex;
  padding: 0 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.modal__header-center-title {
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .modal__header-center-title {
    padding: 0 24px;
  }
}
.modal__header-first-row {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #e1e8fb;
  text-transform: uppercase;
  font-family: sans-serif;
  font-weight: 600;
  letter-spacing: 0.6px;
}
.modal__header-second-row {
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #fff;
  font-family: sans-serif;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.modal__header-gallery-counter {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #e1e8fb;
  font-family: sans-serif;
  font-weight: 500;
}
.modal__header-gallery-btn {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #e1e8fb;
  font-family: sans-serif;
}
.modal__header-gallery-btn:hover {
  opacity: 0.7;
}
.modal__header-close {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  border-left: 1px solid hsla(0, 0%, 100%, 0.2);
  transition: background-color 0.25s ease-in-out;
}
.modal__header-close > button {
  display: block;
  padding: 1.5rem 1rem;
}
@media (min-width: 768px) {
  .modal__header-close > button {
    padding: 1.5rem;
  }
}
.modal__header-close-icon {
  color: #fff;
  height: 1rem;
}
.modal__header-close-icon svg {
  width: 1rem;
  height: 1rem;
}
.modal__header-close:hover {
  background-color: hsla(0, 0%, 100%, 0.08);
}
.modal__gallery-thumbnail-wrap {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (min-width: 768px) {
  .modal__gallery-thumbnail-wrap {
    max-width: 75%;
    margin: 0 auto;
    padding: 0;
  }
}
.modal__gallery-thumbnail img {
  max-height: 120px;
}
.modal__gallery-thumbnail:hover .icon svg rect:first-child {
  opacity: 1 !important;
  fill: #043cdc !important;
  transition: all 0.25s ease-in-out;
}
.modal__gallery-back-arrow,
.modal__gallery-front-arrow {
  display: none;
  position: fixed;
  align-items: center;
  background-color: transparent;
  z-index: 1;
  top: calc(50% - 28px);
  bottom: calc(50% - 28px);
  width: 56px;
  height: 56px;
}
@media (min-width: 768px) {
  .modal__gallery-back-arrow,
  .modal__gallery-front-arrow {
    display: flex;
  }
}
.modal__gallery-back-arrow:active,
.modal__gallery-back-arrow:focus,
.modal__gallery-back-arrow:hover,
.modal__gallery-front-arrow:active,
.modal__gallery-front-arrow:focus,
.modal__gallery-front-arrow:hover {
  outline: none;
}
.modal__gallery-back-arrow:hover .modal__gallery-back-arrow-icon,
.modal__gallery-back-arrow:hover .modal__gallery-front-arrow-icon,
.modal__gallery-front-arrow:hover .modal__gallery-back-arrow-icon,
.modal__gallery-front-arrow:hover .modal__gallery-front-arrow-icon {
  background-color: hsla(0, 0%, 100%, 0.11);
}
.modal__gallery-back-arrow-icon,
.modal__gallery-front-arrow-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  width: 56px;
  border-radius: 50%;
  color: #fff;
  background-color: hsla(0, 0%, 100%, 0.33);
  transition: background-color 0.25s ease-in-out;
}
.modal__gallery-back-arrow-icon svg,
.modal__gallery-front-arrow-icon svg {
  width: 16px;
  height: 16px;
  position: relative;
  top: 2px;
}
.modal__gallery-back-arrow {
  left: 1rem;
  justify-content: start;
}
.modal__gallery-back-arrow-icon {
  transform: rotate(90deg);
}
.modal__gallery-front-arrow {
  right: 1rem;
  justify-content: end;
}
.modal__gallery-front-arrow-icon {
  transform: rotate(-90deg);
}
.modal-gallery .slide {
  padding-left: 0;
}
.modal-gallery .carousel.carousel-slider {
  display: flex;
  justify-content: center;
  height: 100%;
}
.modal-root {
  position: relative;
}
.modal-gallery,
.modal-photo {
  z-index: 103;
}
.modal-textovy-prenos {
  z-index: 102;
}
.gallery {
  container-type: inline-size;
  background: transparent;
}
.gallery--perex {
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (min-width: 992px) {
  .gallery--perex {
    margin-left: 0;
    margin-right: 0;
  }
}
.gallery__flag {
  color: #043cdc;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@container (min-width: 576px) {
  .gallery__flag {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
.gallery__title {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #000528;
}
@container (min-width: 576px) {
  .gallery__title {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
.gallery__primary-photo {
  width: 100%;
  position: relative;
}
.gallery__primary-photo img {
  width: 100%;
}
.gallery__primary-photo-play-icon {
  width: 4.5rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.gallery__primary-photo-play-icon--small {
  width: 4rem;
}
@container (min-width: 768px) {
  .gallery__primary-photo-play-icon--small {
    display: none;
  }
}
.gallery__primary-photo-play-icon--big {
  width: 7.5rem;
  display: none;
}
@container (min-width: 768px) {
  .gallery__primary-photo-play-icon--big {
    display: inline-block;
  }
}
.gallery__primary-photo-play-icon svg rect:first-child {
  transition: all 0.25s ease-in-out;
}
.gallery__secondary-photo-play-icon {
  position: absolute;
  width: 3rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
@container (min-width: 480px) {
  .gallery__secondary-photo-play-icon {
    display: inline-block;
  }
}
.gallery__secondary-photo-play-icon--xs {
  display: inline-block;
}
@container (min-width: 480px) {
  .gallery__secondary-photo-play-icon--xs {
    display: none;
  }
}
.gallery__secondary-photo {
  position: relative;
  width: 33.33%;
  aspect-ratio: 16/9;
}
.gallery__secondary-photo img {
  width: 100%;
}
@container (min-width: 480px) {
  .gallery__secondary-photo {
    width: 25%;
  }
}
.gallery__secondary-photo--s {
  display: none;
}
@container (min-width: 480px) {
  .gallery__secondary-photo--s {
    display: block;
  }
  .gallery__secondary-photo--xs {
    display: none;
  }
}
.gallery__secondary-photo-info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.6));
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
}
@container (min-width: 480px) {
  .gallery__secondary-photo-info {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .gallery__secondary-photo-info--xs {
    display: none;
  }
}
.gallery__secondary-photo-info-icon,
.gallery__secondary-photo-info-icon svg {
  display: inline-block;
  width: 30px;
  height: 24px;
}
.gallery__secondary-photo-info-icon {
  margin-bottom: 0.25rem;
}
.gallery__secondary-photo-wrap {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.gallery__photo-description {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  font-family: sans-serif;
}
@container (min-width: 480px) {
  .gallery__photo-description {
    padding: 3rem 1.5rem 1rem;
  }
}
.gallery__photo-description-title {
  display: inline-block;
  padding-bottom: 0.25rem;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.gallery__photo-description-subtitle {
  color: #cccdd4;
  font-size: 0.75rem;
  line-height: 1rem;
}
.modal-gallery .modal {
  background-color: #101622;
  height: 100vh;
}
.modal-gallery__wrap {
  padding-top: 0 !important;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .modal-gallery__wrap {
    display: flex;
    flex-direction: column;
    padding: 0 4rem;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 64px);
  }
}
.modal-gallery__carousel-wrap {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}
.modal-gallery__image {
  text-align: center;
}
@media (min-width: 768px) {
  .modal-gallery__image {
    flex-grow: 1;
    height: calc(100vh - 160px);
  }
}
.modal-gallery__image img {
  width: auto !important;
}
@media (min-width: 768px) {
  .modal-gallery__image img {
    max-height: 100%;
  }
}
.modal-gallery__title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #fff;
}
@media (min-width: 768px) {
  .modal-gallery__title {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.modal-gallery__description {
  width: 100%;
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) {
  .modal-gallery__description {
    padding: 1rem 0;
  }
}
.modal-gallery__meta {
  font-size: 0.6875rem;
  line-height: 1rem;
  color: #cccdd4;
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .modal-gallery__meta {
    font-size: 0.75rem;
    line-height: 1rem;
    margin-top: 0.5rem;
  }
}
.modal-gallery__author a {
  color: #cccdd4;
  text-decoration: underline;
}
.modal-gallery__author a:hover {
  color: #fff;
}
.gallery
  .gallery__primary-photo:hover
  .gallery__primary-photo-play-icon
  rect:first-child,
.gallery
  .gallery__secondary-photo:hover
  .gallery__secondary-photo-play-icon
  rect:first-child {
  opacity: 1 !important;
  fill: #043cdc !important;
  transition: all 0.25s ease-in-out;
}
.gallery .gallery--open button {
  -webkit-text-fill-color: #000;
}
.gallery
  .gallery--open
  button:hover
  .gallery__primary-photo-play-icon
  rect:first-child {
  opacity: 1 !important;
  fill: #043cdc !important;
  transition: all 0.25s ease-in-out;
}
.heading-wrapper {
  container-type: inline-size;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.heading {
  font-family: sans-serif;
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: #000528;
  margin-bottom: 0;
  letter-spacing: 0;
}
@container (min-width: 768px) {
  .heading {
    font-size: 2.25rem;
    line-height: 2.625rem;
    letter-spacing: -0.5px;
  }
}
.heading--text-left {
  text-align: left;
}
.heading--text-center {
  text-align: center;
}
.heading--text-right {
  text-align: right;
}
.section__content-item:first-of-type .heading-wrapper {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.section__content-item
  .column
  .section__content-item:first-of-type
  .heading-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}
.link {
  container-type: inline-size;
  width: 100%;
  background: #fff;
  border: 1px solid #e1e8fb;
  border-radius: 2px;
}
.link a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 0.5rem;
  padding: 1rem;
  width: 100%;
  height: 100%;
  line-height: 1;
}
@container (min-width: 576px) {
  .link a {
    padding: 1.5rem;
    column-gap: 1.5rem;
  }
}
.link a:hover {
  color: #043cdc;
  text-decoration: none;
}
.link a:hover .link__title {
  color: #043cdc;
}
.link--special a {
  justify-content: flex-start;
}
.link__flag {
  color: #043cdc;
  font-size: 0.75rem;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}
@container (min-width: 576px) {
  .link__flag {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}
.link__flag--special {
  padding: 0.25rem 0.5rem;
  background: #e1e8fb;
  border-radius: 2px;
}
.link__title {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #000528;
  transition: color 0.25s ease-in-out;
}
@container (min-width: 576px) {
  .link__title {
    font-size: 1.3125rem;
    line-height: 1.625rem;
    margin-top: 0;
  }
}
.link__photo {
  aspect-ratio: 16/9;
  max-width: 96px;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
@container (min-width: 576px) {
  .link__photo {
    max-width: 170px;
    width: 100%;
  }
}
.link__photo--special {
  order: -1;
}
.live {
  background-color: #001830;
  padding-top: 106px;
  color: #fff;
  padding-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .live {
    padding-top: 122px;
  }
}
.live__player.video {
  width: auto;
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (min-width: 768px) {
  .live__player.video {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.live__channels-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
  padding-left: 1.5rem;
  color: #fff;
  background-color: #010b1a;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
  height: 3.5rem;
  margin-left: -1rem;
}
@media (min-width: 768px) {
  .live__channels-toggle {
    margin-left: 0;
  }
}
.live__channels-toggle-icon {
  height: 0.5rem;
  width: 1rem;
  display: flex;
  transition: transform 0.25s ease-in-out;
}
.live__channels-toggle-icon--open {
  transform: rotateX(180deg);
}
.live__channels {
  background-color: #010b1a;
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem;
  align-items: flex-start;
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (min-width: 768px) {
  .live__channels {
    margin-left: auto;
    margin-right: auto;
  }
}
.live__channel {
  max-width: 50%;
  padding: 1rem 0.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (min-width: 576px) {
  .live__channel {
    max-width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .live__channel {
    max-width: 25%;
  }
}
@media (min-width: 1200px) {
  .live__channel {
    max-width: 20%;
  }
}
.live__channel--selected {
  background-color: #fff;
  border-radius: 4px;
}
.live__channel--selected .live__channel-timeline {
  color: #1b60bb;
}
.live__channel--selected .live__channel-title {
  color: #000528;
}
.live__channel:hover {
  text-decoration: none;
  color: #fff;
}
.live__channel:hover .live__channel-play-icon svg rect:first-child {
  opacity: 1 !important;
  fill: #ed1c24 !important;
}
.live__channel-logo {
  text-align: center;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.live__channel-logo img {
  max-width: 100%;
  height: 1rem;
}
.live__channel-progress {
  width: 100%;
  background-color: #e1e8fb;
  height: 0.25rem;
  border-radius: 0.5rem;
  position: relative;
}
.live__channel-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 0.5rem;
}
.live__channel-timeline {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: #8faefa;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.live__channel-timeline--selected {
  margin: 1rem 0;
  width: 100%;
  display: block;
  max-width: 300px;
}
@media (min-width: 768px) {
  .live__channel-timeline--selected {
    margin: 1.5rem 0;
    max-width: 350px;
    display: flex;
    align-items: center;
  }
}
.live__channel-title {
  font-family: sans-serif;
  font-weight: 500;
  line-height: 1.25rem;
  margin-top: 0.25rem;
}
.live__channel-preview {
  position: relative;
}
.live__channel-preview img {
  display: inline-block;
}
.live__channel-preview-label {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 2px;
  letter-spacing: 0.01875rem;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
}
.live__channel-preview-label--top-left {
  top: 0.5rem;
  left: 0.5rem;
}
.live__channel-preview-label--top-right {
  top: 0.5rem;
  right: 0.5rem;
}
.live__channel-preview-label--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 9rem;
  padding: 0.25rem 0.5rem;
}
@media (min-width: 768px) {
  .live__channel-preview-label--center {
    max-width: 10rem;
  }
}
.live__channel-preview-label--bottom-right {
  bottom: 0.5rem;
  right: 0.5rem;
  padding: 0 0.25rem;
}
.live__channel-preview-label--bottom-left {
  bottom: 0.5rem;
  left: 0.5rem;
  background: none;
}
.live__channel-play-icon {
  width: 32px;
}
.live__close {
  position: absolute;
  cursor: pointer;
  color: #fff;
  right: 0;
  top: 1.75rem;
  transform: translateY(-50%);
  padding: 1rem;
}
.live__close-icon {
  height: 1rem;
  width: 1rem;
  display: flex;
}
.live__show-title {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .live__show-title {
    font-size: 2.25rem;
    line-height: 2.625rem;
    margin-bottom: 0.5rem;
  }
}
.live__show-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .live__show-link {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-bottom: 0.5rem;
  }
}
.live__show-link:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .live__show-description {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
.article__perex-photo .media-caption,
.article__perex-video .media-caption {
  margin-top: 5px;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .article__perex-photo .media-caption,
  .article__perex-video .media-caption {
    padding-left: 0;
    padding-right: 0;
  }
}
.article__perex-photo .media-caption__title,
.article__perex-video .media-caption__title {
  color: #000528;
}
.media-caption {
  font-size: 14px;
  line-height: 20px;
}
.media-caption__title {
  font-size: 0.875rem;
  line-height: 1.125rem;
  letter-spacing: 0.2px;
}
.media-caption__source {
  font-size: 0.75rem;
  color: #52556d;
  color: rgba(0, 5, 40, 0.6);
  line-height: 1rem;
}
.modal-photo__source {
  color: #cccdd4;
}
.video-content .media-caption {
  margin-top: 5px;
}
.modal__content .media-caption__source {
  color: #cccdd4;
}
.hero-opener__image {
  background-size: cover;
  height: 450px;
}
@media (min-width: 768px) {
  .hero-opener__image {
    height: 576px;
  }
}
.hero-opener__blur {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.hero-opener__wrap {
  margin: 0 auto;
  max-width: 1680px;
  width: 100%;
}
.hero-opener__breakingnews {
  position: absolute;
  top: 106px;
  left: 0;
  right: 0;
}
@media (min-width: 768px) {
  .hero-opener__breakingnews {
    top: 122px;
  }
}
.hero-opener__shadow-radial {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: radial-gradient(
    circle at 65% 50%,
    hsla(0, 0%, 100%, 0) 0,
    rgba(0, 0, 0, 0.7) 60%,
    #000 100%
  );
}
.hero-opener__shadow-top {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 75%;
  top: 0;
  background: linear-gradient(
    -180deg,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.45) 28%,
    rgba(0, 0, 0, 0.35) 44%,
    rgba(0, 0, 0, 0.19) 75%,
    rgba(0, 0, 0, 0.05) 93%,
    transparent
  );
}
.hero-opener__shadow-right {
  position: absolute;
  left: 75%;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.1) 18%,
    rgba(0, 0, 0, 0.35) 59%,
    rgba(0, 0, 0, 0.58) 76%,
    rgba(0, 0, 0, 0.55) 91%,
    rgba(0, 0, 0, 0.6)
  );
}
.hero-opener__link {
  display: flex;
  background-position: 50%;
  background-size: cover;
  max-width: 100%;
}
@media (min-width: 1400px) {
  .hero-opener__link {
    aspect-ratio: 1680/576;
  }
}
.hero-opener__info {
  max-width: 1248px;
  width: 100%;
  margin: 205px auto 0;
  padding: 1rem 1rem 1.5rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: scale(1);
  font-family: sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}
@media (min-width: 992px) {
  .hero-opener__info {
    padding-bottom: 48px;
  }
}
.hero-opener__info-inner {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  transition: color 0.25s ease-in-out;
}
.hero-opener__info-inner:hover {
  text-decoration: none;
  color: #e1e8fb;
}
.hero-opener__title {
  font-size: 1.3125rem;
  line-height: 1.625rem;
  font-family: sans-serif;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .hero-opener__title {
    max-width: 60%;
    font-size: 2.25rem;
    line-height: 2.625rem;
    letter-spacing: -0.4px;
  }
}
.hero-opener__shortText {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-family: sans-serif;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.2px;
}
@media (min-width: 992px) {
  .hero-opener__shortText {
    max-width: 60%;
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.hero-opener__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  gap: 0.5rem;
  height: 40px;
  font-size: 1rem;
  line-height: 1.125rem;
  font-family: sans-serif;
  font-weight: 600;
  border-radius: 4px;
  background-color: #043cdc;
  color: #fff;
  border: 0;
  overflow: visible;
  letter-spacing: 0.2px;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  transition: all 0.25s ease-in-out;
}
.hero-opener__btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.hero-opener__btn .icon {
  display: flex;
  width: 16px;
  height: 16px;
  color: #fff;
}
.hero-opener__btn:focus,
.hero-opener__btn:hover {
  background-color: #00288c;
}
.hero-opener__btn:active {
  background-color: #000a50;
}
.hero-opener__btn.disabled,
.hero-opener__btn:disabled,
.hero-opener__btn[disabled] {
  pointer-events: none;
  background-color: #8690a7;
  color: #cccdd4;
}
.hero-opener__btn.disabled .icon,
.hero-opener__btn:disabled .icon,
.hero-opener__btn[disabled] .icon {
  color: #cccdd4;
}
.hero-opener__btn .icon {
  transform: rotate(90deg);
}
.simple-opener {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .simple-opener {
    flex-direction: row;
    gap: 2rem;
    margin-top: 2rem;
  }
}
.simple-opener--reverse {
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .simple-opener--reverse {
    flex-direction: row;
  }
}
.simple-opener__image {
  margin: 0 -16px 0.5rem;
}
@media (max-width: 991.98px) {
  .simple-opener__image img {
    width: 100%;
  }
}
@media (min-width: 576px) {
  .simple-opener__image {
    margin: 0 -16px 1rem;
  }
}
@media (min-width: 992px) {
  .simple-opener__image {
    margin: 0;
  }
}
.simple-opener__image-detail {
  background: #e1e8fb;
}
@media (max-width: 767.98px) {
  .simple-opener__image-detail {
    width: 100%;
  }
}
.simple-opener__image-play {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 48px;
  height: 32px;
}
@media (min-width: 768px) {
  .simple-opener__image-play {
    width: 64px;
    height: 40px;
  }
}
.simple-opener__image-play rect:first-child {
  transition: all 0.25s ease-in-out;
}
.simple-opener__text-wrap {
  width: 100%;
}
@media (min-width: 992px) {
  .simple-opener__text-wrap {
    max-width: 50%;
  }
}
.simple-opener__above-title {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 0.875rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-family: sans-serif;
  color: #043cdc;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .simple-opener__above-title {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 992px) {
  .simple-opener__above-title {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1400px) {
  .simple-opener__above-title {
    margin-bottom: 1rem;
  }
}
.simple-opener__title {
  font-size: 1.3125rem;
  line-height: 1.625rem;
  font-family: sans-serif;
  font-weight: 500;
  color: #000528;
  transition: color 0.25s ease-in-out;
}
@media (min-width: 576px) {
  .simple-opener__title {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}
@media (min-width: 768px) {
  .simple-opener__title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 992px) {
  .simple-opener__title {
    letter-spacing: -0.4px;
  }
}
@media (min-width: 1400px) {
  .simple-opener__title {
    font-size: 2.625rem;
    line-height: 3.125rem;
  }
}
.simple-opener__perex {
  display: none;
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .simple-opener__perex {
    font-size: 1rem;
    line-height: 1.375rem;
    color: #52556d;
    margin-top: 0.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
@media (min-width: 992px) {
  .simple-opener__perex {
    margin-top: 0.75rem;
  }
}
@media (min-width: 1400px) {
  .simple-opener__perex {
    margin-top: 1rem;
  }
}
.simple-opener__meta {
  margin-top: 0.25rem;
  line-height: 16px;
}
@media (min-width: 576px) {
  .simple-opener__meta {
    padding-top: 0;
    margin-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .simple-opener__meta {
    margin-top: 0.75rem;
  }
}
@media (min-width: 1400px) {
  .simple-opener__meta {
    margin-top: 1rem;
  }
}
.simple-opener__meta-authors,
.simple-opener__meta-date {
  font-size: 0.75rem;
  letter-spacing: 0.2px;
  font-family: sans-serif;
  color: #52556d;
}
@media (min-width: 768px) {
  .simple-opener__meta-authors,
  .simple-opener__meta-date {
    font-size: 0.875rem;
  }
}
.simple-opener__meta-date {
  font-weight: 600;
}
.simple-opener__meta-authors {
  font-weight: 400;
}
.simple-opener__meta-separator {
  display: inline-block;
  margin: 0 0.5rem;
  color: #cccdd4;
}
.simple-opener:hover {
  text-decoration: none;
}
.simple-opener:hover .simple-opener__title {
  color: #043cdc;
}
.simple-opener:hover .simple-opener__image-play rect:first-child {
  opacity: 1 !important;
  fill: #043cdc !important;
}
.wide-opener {
  position: relative;
  display: block;
}
@media (min-width: 1200px) {
  .wide-opener {
    margin-top: 1.5rem;
  }
}
.wide-opener:before {
  background: linear-gradient(180deg, transparent 49.89%, rgba(0, 0, 0, 0.33));
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.wide-opener__text {
  position: absolute;
  margin-left: 1rem;
  margin-right: 1rem;
  bottom: 2rem;
  left: 0;
  z-index: 2;
}
@media (min-width: 768px) {
  .wide-opener__text {
    max-width: 430px;
    bottom: 2rem;
    margin-left: 2rem;
  }
}
@media (min-width: 992px) {
  .wide-opener__text {
    max-width: 480px;
    bottom: 3rem;
    margin-left: 3rem;
  }
}
@media (min-width: 1200px) {
  .wide-opener__text {
    bottom: 4rem;
    margin-left: 4rem;
  }
}
.wide-opener__text--blue {
  padding: 0.75rem 1rem 1rem;
}
@media (min-width: 480px) {
  .wide-opener__text--blue {
    padding: 1rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .wide-opener__text--blue {
    padding: 1.5rem 2rem 2rem;
  }
}
.wide-opener__text--blue:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, #019ce1, #00288c);
  opacity: 0.85;
  transition: opacity 0.3s linear;
}
.wide-opener__text--blue:hover:before {
  opacity: 1;
}
.wide-opener__text:hover {
  text-decoration: none;
}
.wide-opener__text h3 {
  font-family: sans-serif;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  font-size: 1.3125rem;
  line-height: 1.625rem;
}
@media (min-width: 480px) {
  .wide-opener__text h3 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 768px) {
  .wide-opener__text h3 {
    font-size: 1.75rem;
    line-height: 2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
}
@media (min-width: 992px) {
  .wide-opener__text h3 {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
.wide-opener__text--transparent h3 {
  text-shadow: 0 2px 4px rgba(0, 5, 40, 0.16);
  font-size: 1.5rem;
  line-height: 1.75rem;
}
@media (min-width: 480px) {
  .wide-opener__text--transparent h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}
@media (min-width: 768px) {
  .wide-opener__text--transparent h3 {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (min-width: 1200px) {
  .wide-opener__text--transparent h3 {
    font-size: 2.25rem;
    line-height: 2.625rem;
  }
}
.wide-opener:after {
  content: "";
  background: #000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.3s linear;
}
.wide-opener:hover:after {
  opacity: 0.17;
}
.wide-opener:hover .wide-opener__text--blue:before {
  opacity: 1;
}
.multilinks {
  container-type: inline-size;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.multilinks--1 .multilink {
  width: 100%;
  flex-basis: 100%;
}
@container (min-width: 768px) {
  .multilinks--1 .multilink {
    aspect-ratio: 4/1;
  }
  .multilinks--1 .multilink .multilink__title {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
  .multilinks--1 .multilink .multilink__description {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .multilinks--1 .multilink .multilink__header {
    padding: 1rem 1rem 1rem 1.5rem;
  }
  .multilinks--2 .multilink {
    flex-basis: calc(50% - 0.5rem);
    aspect-ratio: 5/2;
  }
  .multilinks--2 .multilink .multilink__header {
    padding: 1rem 1rem 1rem 1.5rem;
  }
}
@container (min-width: 992px) {
  .multilinks--2 .multilink .multilink__title {
    font-size: 1.3125rem;
    line-height: 1.5rem;
  }
  .multilinks--2 .multilink .multilink__description {
    font-size: 0.875rem;
    line-height: 1.0625rem;
  }
}
@container (min-width: 576px) {
  .multilinks--3 .multilink {
    flex-basis: calc(50% - 0.5rem);
  }
  .multilinks--3 .multilink .multilink__description {
    font-size: 0;
  }
}
@container (min-width: 768px) {
  .multilinks--3 .multilink .multilink__header {
    padding: 0.75rem 0.75rem 0.75rem 1rem;
  }
  .multilinks--3 .multilink .multilink__description {
    font-size: 0.75rem;
    line-height: 0.9375rem;
  }
}
@container (min-width: 992px) {
  .multilinks--3 .multilink {
    flex-basis: calc(33.3333333333% - 0.6666666667rem);
  }
  .multilinks--3 .multilink .multilink__title {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
  .multilinks--3 .multilink .multilink__description {
    font-size: 0.75rem;
    line-height: 0.9375rem;
  }
  .multilinks--3 .multilink .multilink__icon {
    margin-top: -1px;
  }
}
@container (min-width: 576px) {
  .multilinks--4 .multilink {
    flex-basis: calc(50% - 0.5rem);
  }
}
@container (min-width: 768px) {
  .multilinks--4 .multilink .multilink__icon {
    margin-top: 0;
  }
  .multilinks--4 .multilink .multilink__header {
    padding: 0.5rem 0.5rem 0.5rem 0.75rem;
  }
}
@container (min-width: 992px) {
  .multilinks--4 .multilink {
    flex-basis: calc(33.3333333333% - 0.7575757576rem);
  }
}
@container (min-width: 1200px) {
  .multilinks--4 .multilink {
    flex-basis: calc(25% - 0.8rem);
  }
}
.multilinks--4 .multilink .multilink__description {
  font-size: 0;
}
.multilink {
  display: flex;
  align-items: flex-end;
  width: 100%;
  aspect-ratio: 3/2;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  overflow: hidden;
}
.multilink--big {
  display: none;
}
@container (min-width: 768px) {
  .multilink--big {
    display: flex;
  }
  .multilink--small {
    display: none;
  }
}
.multilink a {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 1rem;
  text-decoration: none;
}
.multilink a:hover {
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.2s linear;
}
.multilink a:hover .multilink__header {
  background: linear-gradient(270deg, #019ce1 0, #00288c);
}
.multilink__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  color: #fff;
  background: linear-gradient(
    270deg,
    rgba(1, 156, 225, 0.85) 0,
    rgba(0, 40, 140, 0.85)
  );
  border-radius: 2px;
}
.multilink__title {
  font-size: 1rem;
  line-height: 1.25rem;
  font-family: sans-serif;
  letter-spacing: 0.2px;
}
.multilink__description {
  font-size: 0;
  display: inline-flex;
  font-family: sans-serif;
  font-weight: 600;
}
@container (min-width: 576px) {
  .multilink__description {
    font-size: inherit;
  }
}
.multilink__icon {
  padding: 0 0 0 0.25rem;
  margin-top: -2px;
}
.multilink__tag {
  display: inline-flex;
  padding: 0.25rem 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 2px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: auto;
}
.panel {
  container-type: inline-size;
  background: #fff;
  border: 1px solid #e1e8fb;
  border-radius: 2px;
  padding: 1.5rem 0;
}
.panel__body {
  margin-top: 1rem;
  padding: 0 1rem;
}
@container (min-width: 576px) {
  .panel__body {
    padding: 0 1.5rem;
  }
}
.panel__flag {
  color: #043cdc;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@container (min-width: 576px) {
  .panel__flag {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
.panel__body h2,
.panel__title {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #000528;
}
@container (min-width: 576px) {
  .panel__body h2,
  .panel__title {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
.panel__body h2 {
  margin-top: 24px;
}
.panel__button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border: none;
  background: none;
  padding: 0 1rem;
}
@container (min-width: 576px) {
  .panel__button {
    padding: 0 1.5rem;
  }
}
.panel__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #043cdc;
  transition: all 0.25s ease-in-out;
}
.panel__icon svg {
  width: 100%;
}
.panel__icon--open {
  transform: rotateX(180deg);
}
.panel__header:hover .icon {
  color: #000528;
}
.panel__image-title {
  font-size: 0.9rem;
  font-weight: 400;
  color: #52556d;
  margin-top: 0.25rem;
}
.panel p {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
@container (min-width: 576px) {
  .panel p {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
.panel ul:last-child {
  margin-bottom: 0;
}
.panel li {
  font-size: 1rem;
  line-height: 1.5rem;
  position: relative;
  padding-left: 1.125rem;
  margin-bottom: 0.5rem;
}
.panel li:not(.slide):before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  background-color: #cccdd4;
  top: calc(0.8125rem - 3.5px);
}
@container (min-width: 576px) {
  .panel li {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
.photo {
  line-height: 1;
}
.photo__description {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  line-height: 1.125rem;
  letter-spacing: 0.2px;
}
@media (min-width: 480px) {
  .photo__description {
    margin-top: 0.5rem;
  }
}
.photo__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #52556d;
  line-height: 1rem;
}
.modal-photo .modal {
  background-color: #101622;
  height: 100vh;
}
.modal-photo .modal__content {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .modal-photo .modal__content {
    display: flex;
    flex-direction: column;
    padding: 0 4rem;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 64px);
  }
}
.modal-photo__image {
  text-align: center;
}
@media (min-width: 768px) {
  .modal-photo__image {
    flex-grow: 1;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    max-height: calc(100vh - 144px);
  }
}
.modal-photo__image img {
  width: auto;
}
@media (min-width: 768px) {
  .modal-photo__image img {
    top: auto;
    bottom: auto;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
  }
}
.modal-photo__title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #fff;
}
@media (min-width: 768px) {
  .modal-photo__title {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.modal-photo__description {
  width: 100%;
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) {
  .modal-photo__description {
    padding: 1rem 0;
  }
}
.modal-photo__meta {
  font-size: 0.6875rem;
  line-height: 1rem;
  color: #cccdd4;
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .modal-photo__meta {
    font-size: 0.75rem;
    line-height: 1rem;
    margin-top: 0.5rem;
  }
}
.modal-photo__author a {
  color: #cccdd4;
  text-decoration: underline;
}
.modal-photo__author a:hover {
  color: #fff;
}
.QRPanel {
  position: fixed;
  bottom: 0;
  right: 30px;
  z-index: 2;
  width: 400px;
}
.QRPanel__icon,
.QRPanel__image,
.QRPanel__imageToggle,
.QRPanel__text,
.QRPanel__title {
  transition: opacity 0.3s ease;
}
.QRPanel__icon svg {
  display: inline-block;
  width: 12px;
  height: 12px;
}
.QRPanel__minimize .QRPanel__icon--min {
  opacity: 1;
}
.QRPanel--minimized .QRPanel__image,
.QRPanel--minimized .QRPanel__imageToggle,
.QRPanel--minimized .QRPanel__title,
.QRPanel__minimize .QRPanel__icon--max {
  opacity: 0;
}
.QRPanel--minimized .QRPanel__minimize {
  border-radius: 10px 10px 0 0;
}
.QRPanel--minimized .QRPanel__minimize .QRPanel__icon--min {
  opacity: 0;
}
.QRPanel--minimized .QRPanel__minimize .QRPanel__icon--max {
  opacity: 1;
}
.QRPanel__image {
  width: 145px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.161);
  margin-left: 205px;
}
.QRPanel__image--show {
  opacity: 1;
}
.QRPanel__image--hide {
  opacity: 0;
}
.QRPanel__toolbar {
  height: 50px;
  line-height: 50px;
  display: flex;
  color: #fff;
}
.QRPanel__title {
  height: 50px;
  width: 205px;
  background: #707070;
  padding: 0 20px;
  border-radius: 10px 0 0 0;
}
.QRPanel__imageToggle {
  width: 145px;
  background: #434343;
  color: #fff;
  text-align: center;
  position: relative;
}
.QRPanel__imageToggle--show .QRPanel__text--hide {
  opacity: 0;
}
.QRPanel__imageToggle--hide .QRPanel__text--hide,
.QRPanel__imageToggle--show .QRPanel__text--show {
  opacity: 1;
}
.QRPanel__imageToggle--hide .QRPanel__text--show {
  opacity: 0;
}
.QRPanel__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 50px;
}
.QRPanel__minimize {
  width: 50px;
  height: 50px;
  background: #707070;
  color: #fff;
  border-radius: 0 10px 0 0;
  text-align: center;
  position: relative;
}
.QRPanel__minimize .QRPanel__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.QRPanel__minimize .QRPanel__icon svg {
  fill: #fff;
}
.quote {
  container-type: inline-size;
  position: relative;
  font-family: sans-serif;
}
.quote--default {
  max-width: 100%;
  color: #00288c;
}
.quote--default .quote__content {
  border-style: solid;
  border-width: 0 0 0 3px;
  border-image: linear-gradient(0deg, #019ce1, #00288c) 1;
  padding: 0.25rem 0 0.25rem 1rem;
}
@container (min-width: 576px) {
  .quote--default .quote__content {
    padding: 0.25rem 0 0.25rem 1.5rem;
  }
}
.quote--default .quote__text {
  font-size: 1.125rem;
  line-height: 1.625rem;
}
@container (min-width: 576px) {
  .quote--default .quote__text {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.quote--default .quote__author {
  font-size: 1.125rem;
}
@container (min-width: 576px) {
  .quote--default .quote__author {
    font-size: 1.25rem;
  }
}
.quote--default .quote__additional-text {
  margin-top: 4px;
  margin-bottom: 8px;
  line-height: 1.2;
}
@container (min-width: 576px) {
  .quote--default .quote__additional-text {
    line-height: 1.3;
  }
}
.quote--photo {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: flex-end;
  width: 100%;
  aspect-ratio: 16/9;
  color: #fff;
}
.quote--photo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(1, 156, 225, 0.6) 0,
    rgba(0, 40, 140, 0.95)
  );
}
.quote--photo .quote__content {
  position: relative;
  z-index: 1;
  padding: 1rem;
}
@container (min-width: 576px) {
  .quote--photo .quote__content {
    padding: 2rem 2rem 1.5rem;
  }
}
.quote--photo .quote__text {
  font-size: 0.875rem;
  line-height: 1.125rem;
}
@container (min-width: 576px) {
  .quote--photo .quote__text {
    font-size: 1.25rem;
    line-height: 1.625rem;
  }
}
.quote--photo .quote__author {
  font-size: 0.875rem;
}
@container (min-width: 576px) {
  .quote--photo .quote__author {
    font-size: 1.25rem;
  }
}
.quote--photo .quote__additional-text {
  margin-top: 4px;
  margin-bottom: 8px;
  line-height: 1.2;
}
@container (min-width: 576px) {
  .quote--photo .quote__additional-text {
    line-height: 1.3;
  }
}
.quote--photo .quote__meta {
  flex-direction: row;
  align-items: flex-end;
  color: #e1e8fb;
}
.quote--photo .quote__author {
  color: #fff;
}
.quote .quote__background-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: -1;
  filter: grayscale(100%);
}
@container (min-width: 576px) {
  .quote__text {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
.quote__text:after,
.quote__text:before {
  font-size: inherit;
  font-weight: 400;
}
.quote__text:before {
  content: "„";
}
.quote__text:after {
  content: "“";
}
.quote__author {
  font-weight: 600;
  color: #00288c;
}
.quote__meta {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  font-family: sans-serif;
  line-height: 1.3;
  color: #52556d;
}
@container (min-width: 576px) {
  .quote__meta,
  .quote__photo--author {
    font-size: 0.875rem;
  }
}
.recommended-watch-wrapper {
  background-color: #f0f3fd;
  border-color: #e1e8fb;
  border-style: solid;
  border-width: 1px 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .recommended-watch-wrapper {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .recommended-watch {
    max-width: 1248px;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
  }
}
.recommended-watch__title {
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.03125rem;
  font-weight: 700;
  color: #00288c;
  margin-bottom: 1.5rem;
  font-family: sans-serif;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .recommended-watch__title {
    font-size: 2.25rem;
    line-height: 2.625rem;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 2rem;
  }
}
.recommended-watch__carousel-wrap {
  position: relative;
}
.recommended-watch__carousel-navigation {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #e1e8fb;
  z-index: 1;
  align-items: center;
  justify-content: center;
  top: 101.25px;
  display: none;
  transition: background-color 0.25s ease-in-out;
}
.recommended-watch__carousel-navigation:hover {
  background-color: #e1e8fb;
}
.recommended-watch__carousel-navigation:hover .icon {
  color: #043cdc;
}
@media (min-width: 768px) {
  .recommended-watch__carousel-navigation {
    display: flex;
  }
}
.recommended-watch__carousel-navigation .icon {
  width: 1rem;
  line-height: 0;
  color: #000528;
}
.recommended-watch__carousel-navigation--prev {
  rotate: 90deg;
  left: -12px;
  transform: translateX(-50%);
}
@media (min-width: 1400px) {
  .recommended-watch__carousel-navigation--prev {
    left: -20px;
  }
}
.recommended-watch__carousel-navigation--next {
  rotate: -90deg;
  right: -12px;
  transform: translateX(50%);
}
@media (min-width: 1400px) {
  .recommended-watch__carousel-navigation--next {
    right: -20px;
  }
}
.recommended-watch__carousel-navigation--disabled {
  cursor: not-allowed;
}
.recommended-watch__carousel-navigation--disabled .icon {
  color: #cccdd4;
}
.recommended-watch__carousel-navigation--disabled:hover {
  background-color: #fff;
}
.recommended-watch__carousel-navigation--disabled:hover .icon {
  color: #cccdd4;
}
.recommended-watch__video {
  width: 242px;
}
@media (min-width: 768px) {
  .recommended-watch__video {
    width: 360px;
  }
}
.recommended-watch__video:hover .recommended-watch__play svg rect:first-child {
  opacity: 1 !important;
  fill: #043cdc !important;
}
.recommended-watch__video:hover .recommended-watch__video-title {
  color: #043cdc;
  transition: color 0.25s ease-in-out;
}
.recommended-watch__preview {
  margin-bottom: 0.5rem;
  position: relative;
}
.recommended-watch__play {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
}
.recommended-watch__play svg {
  width: 3rem;
}
.recommended-watch__play svg rect:first-child {
  transition: all 0.25s ease-in-out;
}
.recommended-watch__video-duration {
  font-size: 0.75rem;
  line-height: 1rem;
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.025rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  border-radius: 2px;
}
.recommended-watch__video-duration--live {
  padding-left: 1rem;
}
.recommended-watch__video-duration--live:before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #ed1c24;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.25rem;
}
.recommended-watch__video-title {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-family: sans-serif;
  font-weight: 500;
  color: #000528;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: color 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .recommended-watch__video-title {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.recommended-watch__program-title {
  color: #043cdc;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 0.875rem;
  letter-spacing: 0.0375rem;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (min-width: 768px) {
  .recommended-watch__program-title {
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0.03125rem;
  }
}
.recommended-watch .swiper {
  z-index: 0;
}
.recommended-watch .swiper-slide {
  margin-left: 1rem;
  margin-right: 0;
}
@media (min-width: 768px) {
  .recommended-watch .swiper-slide {
    margin-right: 1rem;
    margin-left: 0;
  }
}
.recommended-watch .swiper-slide:last-child {
  margin-right: 1rem;
}
@media (min-width: 768px) {
  .recommended-watch .swiper-slide:last-child {
    margin-right: 0;
  }
}
.media .modal {
  background-color: #101622;
}
.media__wrap {
  padding-top: 0 !important;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .media__wrap {
    display: flex;
    flex-direction: column;
    padding: 0 5rem;
    justify-content: center;
    align-items: center;
    height: calc(100svh - 64px);
  }
}
.media__carousel-wrap {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
}
.media__carousel-wrap li {
  padding-left: 0;
}
@media (min-width: 768px) {
  .media__carousel-wrap {
    height: calc(100svh - 96px - 24px - 64px);
  }
}
.media__carousel {
  width: 100%;
  margin-top: 0;
}
.media__image {
  text-align: center;
}
@media (min-width: 768px) {
  .media__image {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
    margin: 0 auto;
  }
}
.media__image img {
  width: auto !important;
}
@media (min-width: 768px) {
  .media__image img {
    max-height: 100%;
  }
}
.media__image--video {
  margin: 0 auto;
  aspect-ratio: 16/9;
  max-width: 100%;
}
.media__image--video iframe {
  width: 100% !important;
  margin: 0 !important;
}
.media__image--video button {
  position: relative;
}
.media__image--video button:hover .icon svg rect:first-child {
  opacity: 1 !important;
  fill: #043cdc !important;
}
.media__title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #fff;
}
@media (min-width: 768px) {
  .media__title {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.media__description {
  width: 100%;
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) {
  .media__description {
    padding: 1rem 0;
    height: 96px;
  }
}
.media__meta {
  font-size: 0.6875rem;
  line-height: 1rem;
  color: #cccdd4;
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .media__meta {
    font-size: 0.75rem;
    line-height: 1rem;
    margin-top: 0.5rem;
  }
}
.media__author a {
  color: #cccdd4;
  text-decoration: underline;
}
.media__author a:hover {
  color: #fff;
}
.media__mobile-preview {
  position: relative;
  width: 100%;
}
.media__mobile-play {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.media__mobile-play svg {
  width: 4rem;
}
.media__mobile-video {
  aspect-ratio: 16/9;
}
.media__mobile__player {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: unset;
}
.media__gallery-thumbnail-play {
  position: absolute;
  width: 48px;
  height: 32px;
  top: calc(50% - 16px);
  left: calc(50% - 24px);
}
.media__slide-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
}
@media (min-width: 768px) {
  .media__slide-play {
    width: 120px;
  }
}
.media__slide-video-duration {
  font-size: 1rem;
  line-height: 1.5rem;
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.media__slide-video-duration--live {
  padding-left: 1rem;
}
.media__slide-video-duration--live:before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #ed1c24;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.25rem;
}
.media__slide-bottom-scrim {
  left: 0;
  height: 160px;
  background: linear-gradient(
    -180deg,
    transparent,
    rgba(0, 0, 0, 0.05) 14%,
    rgba(0, 0, 0, 0.15) 33%,
    rgba(0, 0, 0, 0.35) 62%,
    rgba(0, 0, 0, 0.7)
  );
}
.media__slide-bottom-scrim,
.media__slide-right-scrim {
  right: 0;
  bottom: 0;
  display: flex;
  outline: none;
  overflow: hidden;
  position: absolute;
  transition: opacity 0.1s linear 0s;
}
.media__slide-right-scrim {
  top: 0;
  width: 120px;
  background: linear-gradient(
    -90deg,
    rgba(0, 0, 0, 0.24),
    rgba(0, 0, 0, 0.13) 38%,
    rgba(0, 0, 0, 0.06) 67%,
    rgba(0, 0, 0, 0.03) 86%,
    transparent
  );
}
.nice-select {
  line-height: 1.375rem;
  font-weight: 400;
  border: 1px solid #e1e8fb;
  border-radius: 4px;
  background-color: #fff;
  height: 40px;
  padding: 0.5rem 28px 0.5rem 0.75rem;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.nice-select,
.nice-select option {
  font-size: 1rem;
  color: #000528;
}
.nice-select-wrap {
  height: 40px;
}
.nice-select-arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  pointer-events: none;
  fill: #000528;
}
.nice-select[disabled] {
  cursor: not-allowed;
  background-color: #f4f4f4;
  color: #c3c6cc;
}
.nice-select[disabled] + .nice-select-arrow {
  fill: #c3c6cc;
}
.related-video__item {
  position: relative;
}
.related-video__item:after {
  content: " ";
  position: absolute;
  right: 8px;
  bottom: 0;
  left: 8px;
  height: 2px;
  background-color: #00b4ff;
  background-image: linear-gradient(90deg, #1250cc 0, #00beff 75%, #00beff);
}
.subsection-list-container {
  container-type: inline-size;
  position: relative;
}
.subsection-list {
  display: flex;
  gap: 0.5rem 1rem;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
}
@container (min-width: 736px) {
  .subsection-list {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.subsection-list__heading {
  font-size: 1.3125rem;
  line-height: 1.625rem;
  margin-bottom: 0;
}
@container (min-width: 736px) {
  .subsection-list__heading {
    font-size: 2.25rem;
    line-height: 2.625rem;
    letter-spacing: -0.025rem;
  }
}
.tag-list {
  border-top: 1px solid #e1e8fb;
}
.text-stream {
  container-type: inline-size;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.text-stream--modal {
  max-width: 696px;
  margin: 0 auto 11rem;
}
.text-stream__content-item > .h2,
.text-stream__content-item > h2 {
  font-size: 1.3125rem;
  line-height: 1.625rem;
  margin-bottom: 0.5rem;
}
.text-stream__content-item > .h3,
.text-stream__content-item > h3 {
  font-size: 1.125rem;
  line-height: 1.5rem;
  margin-bottom: 0.25rem;
}
.text-stream__content-item > p {
  font-size: 1rem;
  line-height: 1.5rem;
}
@container (min-width: 480px) {
  .text-stream__content-item > p {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
.text-stream__content-item > ol,
.text-stream__content-item > p,
.text-stream__content-item > ul {
  margin-bottom: 0.5rem;
}
.text-stream__content-item > ol li,
.text-stream__content-item > ul li {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
@container (min-width: 480px) {
  .text-stream__content-item > ol li,
  .text-stream__content-item > ul li {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
.text-stream__content-item > ol {
  padding-left: 1rem;
}
@container (min-width: 480px) {
  .text-stream__content-item > ol {
    padding-left: 1.125rem;
  }
}
.text-stream__content-item > ul li {
  position: relative;
  padding-left: 1rem;
}
.text-stream__content-item > ul li:not(.slide):before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  background-color: #cccdd4;
  top: calc(0.75rem - 3px);
}
@container (min-width: 480px) {
  .text-stream__content-item > ul li {
    position: relative;
    padding-left: 1.125rem;
  }
  .text-stream__content-item > ul li:not(.slide):before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    position: absolute;
    left: 0;
    background-color: #cccdd4;
    top: calc(0.8125rem - 3.5px);
  }
}
.text-stream__header {
  flex-shrink: 0;
  position: relative;
}
.text-stream__footer {
  text-align: center;
}
.text-stream__show-more {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  color: #043cdc;
  font-size: 1rem;
  line-height: 1.375rem;
  transition: all 0.25s ease-in-out;
}
.text-stream__show-more:hover {
  color: #00288c;
}
.text-stream__fullscreen-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.text-stream__load-more {
  position: -webkit-sticky;
  position: sticky;
  align-self: center;
  top: 0.5rem;
  height: 48px;
  margin-top: -24px;
  margin-bottom: -24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 170px;
  background: #043cdc;
  border-radius: 2rem;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  z-index: 1;
}
.text-stream__load-more-icon svg {
  width: 20px;
  height: 20px;
  display: inline-block;
}
.text-stream__load-more--modal {
  position: fixed;
  top: 5rem;
  margin-top: 0;
  margin-bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.text-stream__load-more:hover {
  background: #00288c;
}
.text-stream__load-more:before {
  content: "";
  display: block;
  height: 1px;
  margin: 1.5rem 0;
}
.text-stream__messages {
  flex-grow: 1;
}
.text-stream__messages--scrollable {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0,
    #fff var(--top-mask-size, 0),
    #fff calc(100% - var(--bottom-mask-size, 0px)),
    hsla(0, 0%, 100%, 0.2)
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0,
    #fff var(--top-mask-size, 0),
    #fff calc(100% - var(--bottom-mask-size, 0px)),
    hsla(0, 0%, 100%, 0.2)
  );
  transition: -webkit-mask-image 0.3s ease;
  transition: mask-image 0.3s ease;
  transition: mask-image 0.3s ease, -webkit-mask-image 0.3s ease;
}
@media (min-width: 768px) {
  .text-stream__messages--scrollable {
    overflow-y: auto;
  }
}
.text-stream__messages--is-top-overflowing {
  --top-mask-size: 72px;
}
.text-stream__messages--is-bottom-overflowing {
  --bottom-mask-size: 72px;
}
@container (min-width: 480px) {
  .text-stream__message {
    display: flex;
    gap: 1rem;
  }
}
.text-stream__message-wrap {
  border-top: 1px solid #e1e8fb;
  padding: 1rem;
}
.text-stream__message-wrap:first-child {
  border-top: none;
}
.text-stream__message-wrap--red {
  background: #fee8e8;
}
.text-stream__message-wrap--blue {
  background: #f0f3fd;
}
.text-stream__message-wrap--gold {
  background: linear-gradient(90deg, #ffa300, #ffeb00);
}
.text-stream__message-wrap--gold .text-stream__left {
  color: #000528;
}
.text-stream__message-wrap--gold ul li:before {
  background-color: #000528;
}
.text-stream__dates + .text-stream__message-wrap {
  border-top: none;
}
.text-stream__pin {
  font-size: 0.75rem;
  line-height: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #52556d;
  letter-spacing: 0.0125rem;
  margin-bottom: 0.25rem;
}
.text-stream__pin-icon {
  width: 12px;
}
.text-stream__left {
  margin-bottom: 0.25rem;
  color: #52556d;
  font-size: 1rem;
  line-height: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  column-gap: 0.5rem;
}
@container (min-width: 480px) {
  .text-stream__left {
    font-size: 1.125rem;
    line-height: 1.625rem;
    display: unset;
    margin-bottom: 0;
    max-width: 6rem;
    width: 100%;
    word-wrap: break-word;
    flex-shrink: 0;
  }
  .text-stream__left--small {
    max-width: 3.5rem;
  }
  .text-stream__left-time {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .text-stream__right {
    flex-grow: 1;
  }
}
.text-stream__content-item {
  margin-bottom: 1rem;
}
.text-stream__content-item ul:last-child,
.text-stream__content-item:last-child,
.text-stream__content-item:last-child > p:last-child {
  margin-bottom: 0;
}
.text-stream__arrow-icon {
  width: 12px;
  height: 12px;
  display: flex;
}
.text-stream__dates-padding {
  padding: 0.5rem 1rem;
}
.text-stream__dates-divider {
  height: 1px;
  background: linear-gradient(90deg, #019ce1, #00288c);
}
.text-stream__icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: auto;
  gap: 0.5rem;
}
@container (min-width: 480px) {
  .text-stream__icons {
    flex-direction: column;
    margin-top: 0.5rem;
    gap: unset;
  }
}
.text-stream__icon {
  height: 20px;
  max-width: 80px;
  width: auto;
  object-fit: contain;
}
@container (min-width: 480px) {
  .text-stream__icon {
    max-width: 32px;
    width: 100%;
    max-height: 90px;
    height: auto;
    object-fit: contain;
    object-position: left;
    margin-bottom: 0.5rem;
  }
}
.text-stream__controls {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #e1e8fb;
  border-radius: 2px;
  padding: 0 1rem;
  background-color: #fff;
  height: 2.75rem;
  bottom: 3rem;
  box-shadow: 0 6px 12px rgba(0, 40, 140, 0.08);
}
@media (min-width: 480px) {
  .text-stream__controls {
    height: 3rem;
  }
}
.text-stream__controls button {
  color: #043cdc;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-stream__controls button:hover {
  color: #00288c;
}
.text-stream__controls button:hover svg * {
  fill: #00288c !important;
}
@media (min-width: 480px) {
  .text-stream__controls button {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
.text-stream__controls svg {
  width: 12px;
  height: 12px;
}
.text-stream__controls-direction {
  border: 1px solid #e1e8fb;
  border-radius: 2px;
  padding: 0.5rem;
}
@media (min-width: 576px) {
  .text-stream__controls-direction {
    padding: 0;
    border: none;
  }
}
.text-stream__controls-load-more:disabled {
  color: #c5cced;
  cursor: not-allowed;
}
.text-stream__controls-load-more:disabled:hover {
  color: #c5cced;
}
.text-stream__controls-load-more:disabled:hover svg * {
  fill: #c5cced !important;
}
.text-stream__error {
  text-align: center;
  padding: 1rem;
}
.text-stream__in-opener-title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: #fff;
}
.text-stream--in-opener {
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  background-color: rgba(16, 22, 34, 0.5);
  border-radius: 4px;
  min-height: 0;
}
.text-stream--in-opener .gallery__title,
.text-stream--in-opener .link__title,
.text-stream--in-opener .panel__title,
.text-stream--in-opener .quote__text {
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 0.0125rem;
  font-weight: 500;
}
.text-stream--in-opener .media-caption,
.text-stream--in-opener .mediaCaption,
.text-stream--in-opener .panel__text p,
.text-stream--in-opener .photo__title,
.text-stream--in-opener .quote__content,
.text-stream--in-opener .text-stream__content-item p,
.text-stream--in-opener .text-stream__dates,
.text-stream--in-opener .text-stream__left--small,
.text-stream--in-opener .text-stream__show-more {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.0125rem;
  font-weight: 400;
}
.text-stream--in-opener .quote__author,
.text-stream--in-opener .quote__photo--author {
  font-size: 0.75rem;
}
.text-stream--in-opener .quote__author {
  line-height: 1.25rem;
  letter-spacing: 0.0125rem;
  font-weight: 400;
}
.text-stream--in-opener .gallery__flag,
.text-stream--in-opener .photo__meta,
.text-stream--in-opener .quote__author,
.text-stream--in-opener .quote__meta,
.text-stream--in-opener .text-stream__pin {
  color: hsla(0, 0%, 100%, 0.698);
}
.text-stream--in-opener .gallery__title,
.text-stream--in-opener .text-stream__content-item p {
  color: #fff;
}
.text-stream--in-opener .text-stream__left {
  font-weight: 500;
}
.text-stream--in-opener .text-stream__dates + .text-stream__message-wrap {
  border-top: none;
}
.text-stream--in-opener .text-stream__message-wrap {
  padding: 1rem 0 0.5rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
}
.text-stream--in-opener .text-stream__message-wrap:first-child {
  border-top: none;
}
.text-stream--in-opener .text-stream__header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}
.text-stream--in-opener .text-stream__header h2 {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.text-stream--in-opener .text-stream__messages {
  padding: 0 1rem;
}
.text-stream--in-opener .text-stream__dates-divider {
  background: hsla(0, 0%, 100%, 0.2);
}
.text-stream--in-opener .text-stream__show-more {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.0125rem;
}
.text-stream--in-opener .text-stream__show-more:hover {
  color: hsla(0, 0%, 100%, 0.698);
}
.text-stream--in-opener .text-stream__fullscreen-icon {
  height: 0.875rem;
  width: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.text-stream--in-opener .text-stream__footer {
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
}
.text-stream--in-opener .quote__content {
  border-image: none;
}
.text-stream--in-opener .text-stream__dates-padding {
  padding-left: 0;
  padding-right: 0;
  padding-top: 1rem;
}
.text-stream--in-opener .text-stream__message-wrap--blue,
.text-stream--in-opener .text-stream__message-wrap--gold,
.text-stream--in-opener .text-stream__message-wrap--red {
  background: transparent;
}
.text-stream--in-opener .text-stream__message-wrap--blue .text-stream__left,
.text-stream--in-opener .text-stream__message-wrap--gold .text-stream__left,
.text-stream--in-opener .text-stream__message-wrap--red .text-stream__left {
  color: #fff;
}
.text-stream--in-opener .flourish-embed {
  background: #fff;
}
.text-stream--in-opener .text-content a {
  color: #8faefa;
}
.text-stream--in-opener .text-content a:hover {
  text-decoration: underline;
}
.text-stream--in-opener .panel .panel__text p,
.text-stream--in-opener .panel .photo .photo__title {
  color: #000528;
}
.text-stream--in-opener .panel .photo .photo__meta {
  color: #52556d;
}
.text-stream .apwidget-container {
  background: #fff;
}
.modal-textstream .modal__content {
  padding-top: 1rem;
}
.btn--icon-only .text-stream__fullscreen-icon {
  transition: color 0.25s ease-in-out;
}
.btn--icon-only:hover .text-stream__fullscreen-icon {
  color: #00288c;
}
.top-articles-text__title {
  font-size: 24px;
  font-weight: 400;
}
.tooltip {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #fff;
  max-width: 100%;
  background-color: #000a50;
  padding: 0.5rem;
  font-weight: 400;
  font-family: sans-serif;
  border-radius: 4px;
  opacity: 1 !important;
  width: max-content;
}
@media (min-width: 576px) {
  .tooltip {
    max-width: 500px;
  }
}
.tooltip__arrow {
  background-color: #de2248;
  width: 10px;
  height: 10px;
  transform: rotate(135deg);
}
.tooltip-anchor svg {
  margin-top: -3px;
}
.video-link__title {
  color: inherit;
}
.video {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
}
.video__player {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: unset;
}
.weather-container {
  container-type: inline-size;
  margin-bottom: 1.5rem;
}
.weather {
  background: linear-gradient(90deg, #000a50, #00288c);
  color: #fff;
  padding: 2rem 0;
  overflow: hidden;
}
.weather--hero {
  padding-top: 106px;
}
@container (min-width: 768px) {
  .weather--hero {
    padding-top: 122px;
  }
}
.weather__region-switcher {
  font-family: sans-serif;
  font-size: 1.3125rem;
  line-height: 1.625rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
@container (min-width: 768px) {
  .weather__region-switcher {
    font-size: 2.25rem;
    line-height: 2.625rem;
    letter-spacing: -0.4px;
  }
}
.weather__icon svg {
  width: auto !important;
  height: 100% !important;
}
.weather__icon--small {
  width: 32px !important;
  height: 32px !important;
}
@container (min-width: 768px) {
  .weather__icon--small {
    height: 40px;
  }
}
.weather__icon--panel {
  max-width: 160px;
  width: 160px;
  height: 160px;
  margin-right: 8px;
}
.weather__icon--panel svg {
  width: 100% !important;
  height: 100% !important;
}
.weather__icon--night-panel .icon {
  height: 72px !important;
}
.weather__icon--pin {
  height: 21px;
  display: flex;
}
@container (min-width: 992px) {
  .weather__icon--pin {
    height: 32px;
  }
}
.weather__icon--central-pin .icon {
  height: 48px;
}
.weather__day-switcher .swiper-slide {
  margin-right: 0.25rem;
}
.weather__day-switcher .swiper-slide:last-child {
  margin-right: 0;
}
.weather__day-switcher-item {
  position: relative;
  width: 145px;
  background: #e1e8fb;
  border-radius: 4px;
  color: #000528;
  padding: 0.5rem 0.75rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  transition: all 0.25s ease-in-out;
}
@container (min-width: 768px) {
  .weather__day-switcher-item {
    width: 170px;
    margin-bottom: 1.5rem;
  }
}
.weather__day-switcher-item--active,
.weather__day-switcher-item:hover {
  background: #fff;
}
.weather__day-switcher-item--active:after {
  content: "";
  width: 16px;
  height: 16px;
  bottom: -10px;
  position: absolute;
  z-index: 1;
  left: 50%;
  background: #fff;
  border-radius: 2px;
  transform: rotate(45deg) translateX(-50%);
}
.weather__date {
  font-family: sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.weather__temperature {
  font-family: sans-serif;
  font-size: 1.125rem;
  color: #52556d;
}
@container (min-width: 768px) {
  .weather__temperature {
    font-size: 1.3125rem;
  }
}
.weather__temperature--day {
  color: #000528;
}
@container (min-width: 768px) {
  .weather__panel-map {
    display: flex;
    align-items: flex-start;
  }
}
.weather__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 0.5rem 0 0.5rem 0.5rem;
  color: #000528;
  width: 100%;
  margin-bottom: 3rem;
}
@container (min-width: 768px) {
  .weather__panel {
    width: 345px;
    margin-right: 72px;
    padding: 1rem 0 1rem 1rem;
    margin-bottom: 0;
  }
}
.weather__panel-day {
  height: min-content;
  font-weight: 600;
}
.weather__panel-night {
  padding: 1rem;
  background: #e1e8fb;
  color: #000528;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-right: 0.5rem;
}
@container (min-width: 768px) {
  .weather__panel-night {
    margin-right: 1rem;
  }
}
.weather__panel-temperature {
  font-family: sans-serif;
  font-size: 4rem;
  font-weight: 500;
}
@container (min-width: 768px) {
  .weather__panel-temperature {
    font-size: 5rem;
    line-height: 1;
    letter-spacing: -0.05rem;
  }
}
.weather__panel-temperature--night {
  font-size: 1.75rem;
}
@container (min-width: 768px) {
  .weather__panel-temperature--night {
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: -0.025rem;
    line-height: normal;
  }
}
.weather__panel-cloudiness {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}
.weather__central-pin {
  position: absolute;
  width: 108px;
  height: 108px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
  background: hsla(0, 0%, 100%, 0.9);
  color: #000528;
  border-radius: 4px;
  font-size: 1.3125rem;
  font-family: sans-serif;
  font-weight: 500;
  line-height: 1;
}
.weather__central-pin-secondary-text {
  color: #52556d;
}
.weather__text-forecast {
  max-width: 800px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
@container (min-width: 768px) {
  .weather__text-forecast {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin-bottom: 3rem;
  }
}
.weather__text-forecast__title {
  font-weight: 500;
  font-family: sans-serif;
  font-size: 1.3125rem;
  line-height: 1.625rem;
  margin-bottom: 0.5rem;
}
@container (min-width: 768px) {
  .weather__text-forecast__title {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
  }
}
.weather__map-wrapper {
  margin-left: -12px;
  margin-right: -12px;
}
.weather__map-pin {
  width: 50px;
  padding: 2px 0.25rem 0.25rem;
  background: hsla(0, 0%, 100%, 0.9);
  border-radius: 4px;
  position: absolute;
  transform: translate(-50%, -100%);
}
@container (min-width: 992px) {
  .weather__map-pin {
    padding: 0.25rem 0.5rem;
    width: 90px;
  }
}
.weather__map-pin-chevron {
  position: absolute;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 8px;
}
@container (min-width: 992px) {
  .weather__map-pin-chevron {
    width: 12px;
  }
}
.weather__map-pin-chevron svg {
  width: 100%;
  height: auto;
}
.weather__map-pin-temperature {
  font-size: 0.75rem;
  line-height: 0.75rem;
  color: #000528;
  font-family: sans-serif;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
@container (min-width: 992px) {
  .weather__map-pin-temperature {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
.weather__map-pin-bio {
  font-size: 10px;
  line-height: 8px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
@container (min-width: 992px) {
  .weather__map-pin-bio {
    font-size: 1rem;
    line-height: 1rem;
  }
}
.weather__map-pin-bio--1 {
  color: #00a050;
}
.weather__map-pin-bio--2 {
  color: #ff6400;
}
.weather__map-pin-bio--3 {
  color: #b41819;
}
.weather__map-pin-bio .icon--weather-bio-solid {
  margin-right: 2px;
  width: 10px;
  height: 10px;
}
@container (min-width: 992px) {
  .weather__map-pin-bio .icon--weather-bio-solid {
    width: 12px;
    height: 12px;
    margin-right: 4px;
  }
}
.attachment {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e1e8fb;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .attachment {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }
}
.attachment__title {
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #000528;
  font-weight: 600;
}
@media (min-width: 768px) {
  .attachment__title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 70%;
  }
}
.attachment__meta-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .attachment__meta-wrapper {
    margin-top: 0;
  }
}
.attachment__meta {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #52556d;
}
@media (min-width: 768px) {
  .attachment__meta {
    margin-right: 1rem;
  }
}
.attachment__button {
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}
.attachment__button .icon {
  width: 18px;
  height: 18px;
  margin-left: 0.25rem;
  display: inline-flex;
}
@media (min-width: 768px) {
  .attachment__button .icon {
    margin-left: 0.5rem;
  }
}
.attachment:hover {
  text-decoration: none;
  background: hsla(0, 0%, 100%, 0.2);
}
.attachment:hover .download__button {
  color: #00288c;
}
.attachment:hover .download__button .icon svg path {
  fill: #00288c;
}
.opener-title {
  max-width: 100%;
}
@container (min-width: 576px) {
  .opener-title {
    min-width: 384px;
  }
}
@container (min-width: 768px) {
  .opener-title {
    max-width: 488px;
  }
}
.opener-title__title {
  padding: 0.75rem 1rem;
  position: relative;
}
@container (min-width: 768px) {
  .opener-title__title {
    padding: 1.5rem;
  }
}
.opener-title__title h2 {
  font-family: sans-serif;
  font-size: 1.3125rem;
  line-height: 1.625rem;
  letter-spacing: 0.5px;
  margin-bottom: 0 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  position: relative;
  z-index: 1;
}
@container (min-width: 768px) {
  .opener-title__title h2 {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
.opener-title__title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.opener-title__subtitle {
  padding: 0.75rem 1rem;
  position: relative;
}
@container (min-width: 768px) {
  .opener-title__subtitle {
    padding: 0.75rem 1.5rem;
  }
}
.opener-title__subtitle p {
  font-family: sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
@container (min-width: 768px) {
  .opener-title__subtitle p {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
.opener-title__subtitle p + .opener-btn {
  margin-top: 12px;
}
.opener-title__subtitle:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
a .opener-title__subtitle:before,
a .opener-title__title:before {
  opacity: 0.85;
  transition: opacity 0.25s ease-in-out;
}
a .opener-title .opener-btn .icon svg {
  width: 100%;
  height: 100%;
}
a .opener-title:hover .opener-title__subtitle:before,
a .opener-title:hover .opener-title__title:after,
a .opener-title:hover .opener-title__title:before {
  opacity: 1;
}
a .opener-title:hover .opener-btn {
  text-decoration: none;
}
.opener-title--blue {
  color: #fff;
}
.opener-title--blue .opener-title__title:before {
  background: linear-gradient(270deg, #019ce1, #00288c);
}
.opener-title--blue .opener-title__subtitle:before {
  background-color: #00288c;
}
.opener-title--gold {
  color: #000528;
}
.opener-title--gold .opener-title__title:before {
  background-color: #ffeb00;
}
.opener-title--gold .opener-title__subtitle:before {
  background: linear-gradient(270deg, #ffeb00, #ffa300);
}
.opener-title--transparent {
  color: #fff;
}
.opener-title--transparent .opener-title__subtitle,
.opener-title--transparent .opener-title__title {
  background-color: transparent;
  padding-left: 0;
}
.opener-title--transparent .opener-title__title {
  padding-bottom: 4px !important;
  text-shadow: 0 2px 2px rgba(16, 22, 34, 0.4);
}
@container (min-width: 768px) {
  .opener-title--transparent .opener-title__title {
    text-shadow: 0 3px 3px rgba(16, 22, 34, 0.4);
  }
}
.opener-title--transparent .opener-title__title h2 {
  font-size: 1.5rem;
  line-height: 1.75rem;
}
@container (min-width: 480px) {
  .opener-title--transparent .opener-title__title h2 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}
@container (min-width: 768px) {
  .opener-title--transparent .opener-title__title h2 {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@container (min-width: 1200px) {
  .opener-title--transparent .opener-title__title h2 {
    font-size: 2.25rem;
    line-height: 2.625rem;
  }
}
.opener-title--transparent .opener-title__subtitle {
  padding: 0.25rem 1.5rem 0.25rem 0;
  text-shadow: 0 1px 2px rgba(16, 22, 34, 0.4);
}
@container (min-width: 992px) {
  .opener-title--transparent .opener-title__subtitle {
    padding: 0.5rem 1.5rem 0.25rem 0;
  }
}
.opener-title--transparent .opener-title__subtitle p + .opener-btn {
  margin-top: 1rem;
}
@container (min-width: 992px) {
  .opener-title--transparent .opener-title__subtitle p + .opener-btn {
    margin-top: 1.5rem;
  }
}
.opener-title--transparent .opener-btn {
  text-decoration: none;
}
.opener-title:not(:has(.opener-title__subtitle)) .opener-title__title {
  position: relative;
  margin-bottom: 4px;
}
.opener-title:not(:has(.opener-title__subtitle)) .opener-title__title:after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 1;
  opacity: 0.85;
  transition: opacity 0.25s ease-in-out;
}
.opener-title--blue .opener-title__title:after {
  background-color: #00288c;
}
.opener-title--gold .opener-title__title:after {
  background: linear-gradient(270deg, #ffeb00, #ffa300);
}
.super-opener-container {
  container-type: inline-size;
}
.super-opener {
  position: relative;
  margin-bottom: 2rem;
}
@container (min-width: 992px) {
  .super-opener {
    overflow: hidden;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .super-opener:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-backdrop-filter: grayscale(100%);
    backdrop-filter: grayscale(100%);
    background: linear-gradient(
        180deg,
        rgba(16, 22, 34, 0.6),
        rgba(16, 22, 34, 0.09) 20%,
        rgba(16, 22, 34, 0) 45%
      ),
      linear-gradient(
        0deg,
        rgba(16, 22, 34, 0.6),
        rgba(16, 22, 34, 0.09) 35%,
        rgba(16, 22, 34, 0) 50%
      );
    background-color: rgba(0, 24, 48, 0.92);
  }
}
.super-opener__background {
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  aspect-ratio: 4/5;
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
@container (min-width: 768px) {
  .super-opener__background {
    aspect-ratio: 3/2;
  }
}
@container (min-width: 992px) {
  .super-opener__background {
    aspect-ratio: unset;
    bottom: 0;
    top: 0;
    background-size: cover;
  }
}
.super-opener__background:after {
  background: linear-gradient(
      1turn,
      rgba(0, 24, 48, 0) 50%,
      rgba(0, 24, 48, 0.003) 54.03%,
      rgba(0, 24, 48, 0.011) 57.77%,
      rgba(0, 24, 48, 0.024) 61.25%,
      rgba(0, 24, 48, 0.042) 64.52%,
      rgba(0, 24, 48, 0.065) 67.63%,
      rgba(0, 24, 48, 0.092) 70.62%,
      rgba(0, 24, 48, 0.124) 73.55%,
      rgba(0, 24, 48, 0.159) 76.45%,
      rgba(0, 24, 48, 0.199) 79.38%,
      rgba(0, 24, 48, 0.241) 82.37%,
      rgba(0, 24, 48, 0.288) 85.48%,
      rgba(0, 24, 48, 0.337) 88.75%,
      rgba(0, 24, 48, 0.389) 92.23%,
      rgba(0, 24, 48, 0.443) 95.97%,
      rgba(0, 24, 48, 0.5)
    ),
    linear-gradient(
      180deg,
      rgba(0, 24, 48, 0) 18.33%,
      rgba(0, 24, 48, 0.007) 26.83%,
      rgba(0, 24, 48, 0.028) 34.12%,
      rgba(0, 24, 48, 0.062) 40.4%,
      rgba(0, 24, 48, 0.107) 45.82%,
      rgba(0, 24, 48, 0.162) 50.57%,
      rgba(0, 24, 48, 0.225) 54.83%,
      rgba(0, 24, 48, 0.297) 58.77%,
      rgba(0, 24, 48, 0.375) 62.57%,
      rgba(0, 24, 48, 0.458) 66.41%,
      rgba(0, 24, 48, 0.545) 70.45%,
      rgba(0, 24, 48, 0.635) 74.88%,
      rgba(0, 24, 48, 0.727) 79.88%,
      rgba(0, 24, 48, 0.819) 85.61%,
      rgba(0, 24, 48, 0.911) 92.26%,
      #001830
    );
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@container (min-width: 992px) {
  .super-opener__background:after {
    background: linear-gradient(
        0deg,
        rgba(0, 24, 48, 0) 50%,
        rgba(0, 24, 48, 0) 50.38%,
        rgba(0, 24, 48, 0.001) 51.46%,
        rgba(0, 24, 48, 0.005) 53.18%,
        rgba(0, 24, 48, 0.011) 55.49%,
        rgba(0, 24, 48, 0.022) 58.3%,
        rgba(0, 24, 48, 0.038) 61.55%,
        rgba(0, 24, 48, 0.061) 65.19%,
        rgba(0, 24, 48, 0.091) 69.13%,
        rgba(0, 24, 48, 0.13) 73.33%,
        rgba(0, 24, 48, 0.178) 77.7%,
        rgba(0, 24, 48, 0.237) 82.19%,
        rgba(0, 24, 48, 0.307) 86.74%,
        rgba(0, 24, 48, 0.391) 91.26%,
        rgba(0, 24, 48, 0.488) 95.7%,
        rgba(0, 24, 48, 0.6)
      ),
      linear-gradient(
        180deg,
        rgba(0, 24, 48, 0) 50%,
        rgba(0, 24, 48, 0.012) 52.35%,
        rgba(0, 24, 48, 0.026) 54.45%,
        rgba(0, 24, 48, 0.042) 56.4%,
        rgba(0, 24, 48, 0.061) 58.28%,
        rgba(0, 24, 48, 0.082) 60.19%,
        rgba(0, 24, 48, 0.108) 62.2%,
        rgba(0, 24, 48, 0.137) 64.41%,
        rgba(0, 24, 48, 0.172) 66.92%,
        rgba(0, 24, 48, 0.212) 69.8%,
        rgba(0, 24, 48, 0.258) 73.15%,
        rgba(0, 24, 48, 0.311) 77.05%,
        rgba(0, 24, 48, 0.371) 81.6%,
        rgba(0, 24, 48, 0.438) 86.88%,
        rgba(0, 24, 48, 0.515) 92.99%,
        rgba(0, 24, 48, 0.6)
      );
  }
}
.super-opener__background:before {
  background: linear-gradient(
    180deg,
    #001830,
    rgba(0, 24, 48, 0.5) 70%,
    rgba(0, 24, 48, 0)
  );
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -90px;
  height: 90px;
}
@container (min-width: 992px) {
  .super-opener__background:before {
    content: none;
  }
}
.super-opener__photo-source {
  position: absolute;
  bottom: 0.25rem;
  right: 0.25rem;
  color: hsla(0, 0%, 100%, 0.4);
  font-size: 0.6875rem;
  z-index: 1;
}
@container (min-width: 992px) {
  .super-opener__photo-source {
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.75rem;
  }
}
.super-opener__wrapper {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  height: 100%;
  max-height: 100%;
  background-position: 50%;
  background-size: cover;
}
.super-opener__wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-backdrop-filter: grayscale(100%);
  backdrop-filter: grayscale(100%);
  background-color: rgba(0, 24, 48, 0.92);
}
.super-opener .breaking-news {
  position: absolute;
  z-index: 3;
  top: 105px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 163, 0, 0.85),
    rgba(255, 235, 0, 0.85)
  );
}
@container (min-width: 768px) {
  .super-opener .breaking-news {
    top: 122px;
  }
}
.super-opener__grid-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
@container (min-width: 992px) {
  .super-opener__grid-wrapper {
    padding-top: 1.5rem;
    display: grid;
    grid-column-gap: 1.5rem;
    column-gap: 1.5rem;
    grid-row-gap: 1rem;
    row-gap: 1rem;
    max-width: 1248px;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
  }
}
@container (min-width: 768px) {
  .super-opener__grid-wrapper--is-hero {
    padding-top: 122px;
  }
}
.super-opener__area-bottom,
.super-opener__area-bottom-left,
.super-opener__area-bottom-right,
.super-opener__area-left,
.super-opener__area-right {
  color: #fff;
  font-weight: 600;
}
.super-opener__area-left {
  display: flex;
  align-items: flex-end;
  aspect-ratio: 4/5;
  padding: 0 1rem 2rem;
}
@container (min-width: 768px) {
  .super-opener__area-left {
    aspect-ratio: 16/9;
  }
}
@container (min-width: 992px) {
  .super-opener__area-left {
    aspect-ratio: unset;
    padding: 0;
  }
}
.super-opener__area-left a,
.super-opener__area-left a:hover {
  text-decoration: none;
}
.super-opener__area-right {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
}
@container (min-width: 992px) {
  .super-opener__area-right {
    padding: 1rem 0 0;
  }
}
.super-opener__area-right + .super-opener__area-bottom,
.super-opener__area-right + .super-opener__area-bottom-left {
  margin-top: 2rem;
}
@container (min-width: 992px) {
  .super-opener__area-right + .super-opener__area-bottom,
  .super-opener__area-right + .super-opener__area-bottom-left {
    margin-top: 0;
  }
}
.super-opener__area-bottom,
.super-opener__area-bottom-left {
  padding: 0 1rem;
}
@container (min-width: 992px) {
  .super-opener__area-bottom,
  .super-opener__area-bottom-left {
    padding: 0;
  }
}
.super-opener__area-bottom {
  padding-bottom: 0;
  min-height: 98px;
}
.super-opener__area-bottom,
.super-opener__area-right {
  margin-top: 1rem;
}
@container (min-width: 992px) {
  .super-opener__area-bottom,
  .super-opener__area-right {
    margin-top: 0;
  }
}
.super-opener__articles-title {
  color: #043cdc;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 0.875rem;
  letter-spacing: 0.0375rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 16px #101622;
}
.super-opener__video .super-opener__video-title {
  font-family: sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  text-shadow: 0 1px 16px #101622;
}
.super-opener__video .animation-wrapper {
  padding-left: 16px;
}
.super-opener__video + .super-opener__text-stream {
  margin-top: 0.5rem;
}
@container (min-width: 992px) {
  .super-opener__text-stream {
    flex-grow: 1;
    position: relative;
  }
  .super-opener__text-stream .text-stream {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 100% !important;
  }
  .super-opener--layout-extra-small,
  .super-opener--layout-small {
    height: 576px !important;
  }
}
.super-opener--layout-extra-small {
  overflow: hidden;
}
.super-opener--layout-full .super-opener__wrapper,
.super-opener--layout-only-articles .super-opener__wrapper,
.super-opener--layout-video-articles .super-opener__wrapper {
  padding-bottom: 2rem;
}
@container (min-width: 992px) {
  .super-opener--layout-full,
  .super-opener--layout-only-articles,
  .super-opener--layout-video-articles {
    height: 768px !important;
  }
  .super-opener--layout-full .super-opener__area-left,
  .super-opener--layout-only-articles .super-opener__area-left,
  .super-opener--layout-video-articles .super-opener__area-left {
    align-items: center;
  }
}
.super-opener--layout-extra-small .super-opener__grid-wrapper,
.super-opener--layout-extra-small .super-opener__wrapper,
.super-opener--layout-full .super-opener__grid-wrapper,
.super-opener--layout-full .super-opener__wrapper,
.super-opener--layout-only-articles .super-opener__grid-wrapper,
.super-opener--layout-only-articles .super-opener__wrapper,
.super-opener--layout-small .super-opener__grid-wrapper,
.super-opener--layout-small .super-opener__wrapper,
.super-opener--layout-video-articles .super-opener__grid-wrapper,
.super-opener--layout-video-articles .super-opener__wrapper {
  min-height: 100%;
  height: 100%;
}
.super-opener--layout-extra-small
  .super-opener__grid-wrapper
  .super-opener__area-left,
.super-opener--layout-small
  .super-opener__grid-wrapper
  .super-opener__area-left {
  display: flex;
  align-items: flex-end;
}
.super-opener--layout-small .super-opener__grid-wrapper {
  padding-bottom: 2rem;
}
.super-opener--layout-extra-small .super-opener__area-left {
  padding-bottom: 1.5rem;
}
.super-opener--layout-extra-small .super-opener__grid-wrapper,
.super-opener--layout-small .super-opener__grid-wrapper {
  grid-template-columns: 2fr 1fr;
}
@container (min-width: 992px) {
  .super-opener--layout-extra-small .super-opener__grid-wrapper,
  .super-opener--layout-small .super-opener__grid-wrapper {
    padding-bottom: 3rem;
  }
}
.super-opener--layout-extra-small
  .super-opener__grid-wrapper
  .super-opener__area-right,
.super-opener--layout-small
  .super-opener__grid-wrapper
  .super-opener__area-right {
  justify-content: flex-end;
}
.super-opener--layout-only-articles .super-opener__grid-wrapper {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
}
.super-opener--layout-full .super-opener__grid-wrapper {
  grid-template-columns: auto 392px;
  grid-template-rows: 1fr auto;
}
.super-opener--layout-full
  .super-opener__grid-wrapper
  .super-opener__area-left {
  grid-column: 1;
  grid-row: 1;
}
.super-opener--layout-full
  .super-opener__grid-wrapper
  .super-opener__area-right {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.super-opener--layout-full
  .super-opener__grid-wrapper
  .super-opener__area-bottom-left {
  grid-column: 1;
  grid-row: 2;
}
.super-opener--layout-video-articles .super-opener__grid-wrapper {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto max-content;
}
.super-opener--layout-video-articles
  .super-opener__grid-wrapper
  .super-opener__area-left {
  grid-column: 1;
  grid-row: 1;
}
.super-opener--layout-video-articles
  .super-opener__grid-wrapper
  .super-opener__area-right {
  grid-column: 2;
  grid-row: 1;
}
.super-opener--layout-video-articles
  .super-opener__grid-wrapper
  .super-opener__area-bottom {
  grid-column: 1 / span 2;
  grid-row: 2;
}
.super-opener__articles .article-link__title {
  text-shadow: 0 1px 3px rgba(16, 22, 34, 0.25);
}
.super-opener__articles .article-link {
  overflow: hidden;
}
@container (min-width: 576px) {
  .super-opener__articles .article-link {
    max-width: 356px;
  }
}
@container (min-width: 768px) {
  .super-opener__articles .article-link {
    max-width: unset;
  }
}
@container (min-width: 992px) {
  .super-opener__articles .article-link {
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    background-color: rgba(16, 22, 34, 0.2);
    border-radius: 4px;
  }
}
.super-opener__articles .article-link__title {
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.super-opener__articles .article-link__link {
  margin-bottom: 0;
  padding-bottom: 0;
  padding-right: 8px;
  color: hsla(0, 0%, 100%, 0.698);
  align-items: center;
}
.super-opener__articles .article-link__link:hover .article-link__title {
  color: hsla(0, 0%, 100%, 0.698);
}
.opener-btn {
  position: relative;
  z-index: 1;
  text-decoration: underline;
}
.opener-btn,
.opener-btn .icon {
  display: flex;
  align-items: center;
}
.opener-btn .icon {
  justify-content: center;
  width: 24px;
  height: 24px;
}
.opener-btn .icon svg {
  width: 100%;
  height: 100%;
}
.opener-btn:hover {
  text-decoration: none;
}
.live-dot {
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  box-sizing: content-box;
  background-color: #ed1c24;
  background-clip: padding-box;
  border-radius: 50%;
  position: relative;
  margin-right: 8px;
}
.live-dot--pulse:before {
  width: 100%;
  height: 100%;
  background-color: rgba(237, 28, 36, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  content: "";
  display: block;
  transform-origin: 50% 50%;
}
@keyframes live-dot-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50%,
  to {
    transform: scale(3);
    opacity: 0;
  }
}
.super-opener__articles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@container (min-width: 768px) {
  .super-opener__articles {
    display: grid;
    grid-gap: 8px;
    gap: 8px;
  }
  .super-opener__articles,
  .super-opener__articles--1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (min-width: 992px) {
  .super-opener__articles--1 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.super-opener__articles--2 {
  grid-template-columns: 1fr;
}
@container (min-width: 768px) {
  .super-opener__articles--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (min-width: 992px) {
  .super-opener__articles--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.super-opener__articles--3 {
  grid-template-columns: 1fr;
}
@container (min-width: 768px) {
  .super-opener__articles--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (min-width: 992px) {
  .super-opener__articles--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (min-width: 1200px) {
  .super-opener__articles--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.super-opener__articles--4 {
  grid-template-columns: 1fr;
}
@container (min-width: 768px) {
  .super-opener__articles--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (min-width: 992px) {
  .super-opener__articles--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .super-opener--layout-video-articles {
    max-height: 576px;
  }
}
.super-opener--layout-video-articles .super-opener__articles--1 {
  grid-template-columns: 1fr;
}
@container (min-width: 768px) {
  .super-opener--layout-video-articles .super-opener__articles--1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (min-width: 992px) {
  .super-opener--layout-video-articles .super-opener__articles--1 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.super-opener--layout-video-articles .super-opener__articles--2 {
  grid-template-columns: 1fr;
}
@container (min-width: 768px) {
  .super-opener--layout-video-articles .super-opener__articles--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (min-width: 992px) {
  .super-opener--layout-video-articles .super-opener__articles--2 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.super-opener--layout-video-articles .super-opener__articles--3 {
  grid-template-columns: 1fr;
}
@container (min-width: 768px) {
  .super-opener--layout-video-articles .super-opener__articles--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (min-width: 992px) {
  .super-opener--layout-video-articles .super-opener__articles--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.super-opener--layout-video-articles .super-opener__articles--4 {
  grid-template-columns: 1fr;
}
@container (min-width: 768px) {
  .super-opener--layout-video-articles .super-opener__articles--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (min-width: 992px) {
  .super-opener--layout-video-articles .super-opener__articles--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.el-container {
  container-type: inline-size;
  position: relative;
}
.el-container--z-index-hover:hover {
  z-index: 3 !important;
}
.el-title {
  font-family: sans-serif;
  font-size: 1.125rem;
  line-height: 1.375rem;
  font-weight: 700;
  color: #000528;
}
@container (min-width: 576px) {
  .el-title {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
.el-ballot-title {
  font-family: sans-serif;
  font-size: 1.125rem;
  line-height: 1.375rem;
  font-weight: 700;
  color: #000528;
  padding: 0.75rem 1rem;
}
@container (min-width: 768px) {
  .el-ballot-title {
    padding: 0.75rem 1.5rem;
  }
}
@container (min-width: 992px) {
  .el-ballot-title {
    padding: 1rem 2rem;
  }
}
.el-ballot-subtitle {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  display: block;
  color: #52556d;
}
.el-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  margin: 24px auto 0;
  font-size: 0.75rem;
}
@container (min-width: 768px) {
  .el-map-legend {
    gap: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}
.el-map-legend__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
}
@container (min-width: 768px) {
  .el-map-legend__item {
    gap: 0.5rem;
  }
}
.el-map-legend__item--no-data {
  font-weight: 400;
  text-transform: none;
}
.el-map-legend__item--small-map .el-map-legend__color {
  background: repeating-linear-gradient(
    -45deg,
    #dee0e4,
    #dee0e4 7%,
    hsla(0, 0%, 100%, 0) 0,
    hsla(0, 0%, 100%, 0) 15%
  );
}
.el-map-legend__color {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 4px;
}
@container (min-width: 768px) {
  .el-map-legend__color {
    width: 1rem;
    height: 1rem;
  }
}
.el-map-legend--line-chart {
  margin-left: 66px;
}
.el-toggle__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25rem;
  border: 1px solid #e1e8fb;
  border-radius: 8px;
  width: 100%;
}
@container (min-width: 768px) {
  .el-toggle__wrapper {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.el-toggle__item {
  flex: auto;
  color: #52556d;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid transparent;
  text-align: center;
  transition: background-color 0.25s ease-in-out;
}
.el-toggle__item span {
  display: block;
  width: 100%;
  white-space: nowrap;
}
.el-toggle__item:hover {
  background-color: #f2f4f8;
}
.el-toggle__item:disabled {
  cursor: not-allowed !important;
  background-color: #f4f4f4 !important;
  color: #c3c6cc !important;
  border-color: transparent !important;
}
.el-toggle__item--active {
  color: #043cdc;
  background-color: #e1e8fb;
  border: 1px solid rgba(4, 60, 220, 0.06);
}
.el-toggle__item--active:hover {
  background-color: #e1e8fb;
}
.el-tooltip {
  margin-left: 2px;
  margin-right: 2px;
}
.el-tooltip svg path {
  fill: rgba(0, 40, 140, 0.35);
}
.el-radio {
  display: flex;
  position: relative;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.el-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.el-radio__checkmark {
  display: block;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: 1px solid #e1e8fb;
  position: relative;
  transition: border-color 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .el-radio__checkmark {
    height: 20px;
    width: 20px;
  }
}
.el-radio__checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}
@media (min-width: 768px) {
  .el-radio__checkmark:after {
    width: 8px;
    height: 8px;
  }
}
.el-radio:hover input ~ .el-radio__checkmark {
  border-color: #043cdc;
  background-color: #fff;
}
.el-radio:hover input ~ .el-radio__checkmark:after {
  display: block;
}
.el-radio input:checked ~ .el-radio__checkmark {
  background-color: #043cdc;
  border-color: #043cdc;
}
.el-radio input:checked ~ .el-radio__checkmark:after {
  display: block;
}
.el-radio--disabled {
  color: #8690a7;
  cursor: not-allowed;
}
.el-radio--disabled .el-radio__checkmark {
  border-color: #dee0e4 !important;
  background: #f2f4f8 !important;
}
.el-radio--disabled .el-radio__checkmark:after {
  background: #f2f4f8;
}
.el-radio--disabled:hover .el-radio__checkmark {
  border-color: #dee0e4 !important;
}
.el-radio--disabled input:checked ~ .el-radio__checkmark:after,
.el-radio--disabled:hover input ~ .el-radio__checkmark:after {
  display: none;
}
.el-button {
  display: inline-flex;
  gap: 6px;
  padding: 0.5rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.25s ease-in-out;
}
.el-button,
.el-button .icon {
  justify-content: center;
  align-items: center;
}
.el-button .icon {
  display: flex;
  width: 13px;
  height: 7px;
}
.el-button .icon svg {
  width: 13px !important;
  height: 7px !important;
}
.el-button--primary {
  background-color: #043cdc;
  border-color: #e1e8fb;
  color: #fff;
}
.el-button--primary .el-button__icon svg path {
  fill: #fff !important;
}
.el-button--primary-active:not(.el-button--disabled),
.el-button--primary:hover:not(.el-button--disabled) {
  background-color: #00288c;
}
.el-button--primary:active:not(.el-button--disabled) {
  background-color: #e1e8fb !important;
}
.el-button--secondary {
  color: #000528;
  border-color: #e1e8fb;
  background-color: #fff;
}
.el-button--secondary .el-button__icon svg path {
  fill: #000528 !important;
}
.el-button--secondary:hover:not(.el-button--disabled) {
  background-color: #f0f3fd;
}
.el-button--secondary-active:not(.el-button--disabled),
.el-button--secondary:active:not(.el-button--disabled) {
  background-color: #e1e8fb !important;
}
.el-button--disabled {
  cursor: not-allowed !important;
  background-color: #f4f4f4;
  color: #c3c6cc;
  transition: none;
}
.el-button--disabled .el-button__icon svg path {
  fill: #c3c6cc !important;
}
.el-button--disabled:active {
  background-color: #f4f4f4 !important;
}
.el-button--icon-left {
  flex-direction: row-reverse;
}
.el-button + .el-button {
  margin-left: 8px;
}
.el-label {
  padding: 0.125rem 0.25rem;
  border-radius: 4px;
  font-size: 0.6875rem;
  line-height: 0.875rem;
  letter-spacing: 0.01875rem;
  font-weight: 600;
}
@container (min-width: 768px) {
  .el-label {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0.0125rem;
  }
}
.el-label--blue {
  background: #e1e8fb;
  color: #00288c;
}
.el-label--red {
  background: #fee8e8;
  color: #bf141b;
}
.el-ballot-candidate {
  padding: 0.75rem 1rem;
  width: 100%;
  border-radius: 4px;
  color: #000528;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@container (min-width: 576px) {
  .el-ballot-candidate {
    display: grid;
    grid-gap: 0.25rem 0;
    gap: 0.25rem 0;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto;
    grid-template-areas: "el-ballot-candidate__names el-ballot-candidate__region" "el-ballot-candidate__description el-ballot-candidate__labels";
  }
}
@container (min-width: 768px) {
  .el-ballot-candidate {
    padding: 0.75rem 1.5rem;
    gap: 0;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "el-ballot-candidate__names el-ballot-candidate__description el-ballot-candidate__region" "el-ballot-candidate__names el-ballot-candidate__description el-ballot-candidate__labels";
  }
}
@container (min-width: 992px) {
  .el-ballot-candidate {
    display: flex;
    font-size: 1rem;
    line-height: 1.375rem;
    padding: 0.75rem 2rem;
  }
}
.el-ballot-candidate__names {
  grid-area: el-ballot-candidate__names;
}
.el-ballot-candidate__description {
  grid-area: el-ballot-candidate__description;
}
.el-ballot-candidate__labels {
  grid-area: el-ballot-candidate__labels;
}
.el-ballot-candidate__region {
  grid-area: el-ballot-candidate__region;
}
.el-ballot-candidate:nth-child(2n) {
  background: #f2f4f8;
}
.el-ballot-candidate--resign {
  color: #8690a7;
}
.el-ballot-candidate__names {
  display: flex;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.375rem;
}
@container (min-width: 576px) {
  .el-ballot-candidate__names {
    margin-bottom: 0;
  }
}
.el-ballot-candidate__name {
  display: inline-block;
}
@container (min-width: 768px) {
  .el-ballot-candidate__name {
    width: 200px;
  }
}
@container (min-width: 992px) {
  .el-ballot-candidate__name {
    width: 256px;
  }
}
.el-ballot-candidate__number {
  margin-right: 0.5rem;
  display: inline-block;
}
@container (min-width: 768px) {
  .el-ballot-candidate__number {
    width: 20px;
  }
}
.el-ballot-candidate__description {
  margin-bottom: 0.25rem;
}
@container (min-width: 576px) {
  .el-ballot-candidate__description {
    margin-bottom: 0;
  }
}
@container (min-width: 992px) {
  .el-ballot-candidate__description {
    flex-grow: 1;
  }
}
.el-ballot-candidate__info {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}
@container (min-width: 768px) {
  .el-ballot-candidate__info {
    flex-direction: row;
    align-items: center;
  }
}
.el-ballot-candidate__region {
  display: flex;
  justify-content: space-between;
}
@container (min-width: 992px) {
  .el-ballot-candidate__region {
    flex-shrink: 0;
  }
}
.el-ballot-candidate__region-name {
  flex-shrink: 0;
  font-weight: 600;
}
@container (min-width: 576px) {
  .el-ballot-candidate__region-name {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
@container (min-width: 768px) {
  .el-ballot-candidate__region-name {
    margin-left: 1rem;
  }
}
.el-ballot-candidate__link {
  color: #043cdc;
}
@container (min-width: 576px) {
  .el-ballot-candidate__link {
    display: none;
  }
}
.el-ballot-candidate__labels {
  margin-bottom: 0.25rem;
}
@container (min-width: 576px) {
  .el-ballot-candidate__labels {
    align-self: center;
    justify-self: end;
    margin-bottom: 0;
  }
  .el-ballot-candidate__labels + .el-ballot-candidate__region {
    margin-bottom: 0.5rem;
  }
}
@container (min-width: 992px) {
  .el-ballot-candidate__labels {
    flex-shrink: 0;
    align-self: flex-start;
    margin-left: 1rem;
  }
  .el-ballot-candidate__labels + .el-ballot-candidate__region {
    margin-bottom: 0;
  }
}
.el-tag {
  font-family: sans-serif;
  border-radius: 4px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.el-tag--small {
  padding: 1px 6px;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.3px;
  font-weight: 600;
}
.el-tag--large {
  padding: 4px 12px 5px;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 400;
}
.el-tag--green {
  background-color: #d9fceb;
  color: #00704e;
}
.el-tag--red {
  background-color: #feecec;
  color: #ed1c24;
}
.el-tag--blue {
  background-color: #f0f3fd;
  color: #00288c;
}
.el-tag--blue-light {
  background-color: #e0f2fa;
  color: #003478;
}
.el-tag--yellow {
  background: linear-gradient(90deg, #ffa300 0, #ffeb00);
  color: #282d4d;
}
.el-tag--gray {
  background-color: #dee0e4;
  color: #282d4d;
}
.el-tag--gray-light {
  background-color: #f2f4f8;
  color: #52556d;
}
.el-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s;
}
.el-collapse > div {
  overflow: hidden;
}
.el-collapse--showing {
  grid-template-rows: 1fr;
}
.el-collapse--hidding .el-party__button--sticky,
.el-collapse--showing .el-party__button--sticky {
  position: relative;
  top: auto !important;
}
.el-collapse--shown {
  grid-template-rows: 1fr;
}
.el-collapse--shown > div {
  overflow: unset;
}
.el-collapse-simple {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s;
}
.el-collapse-simple > div {
  overflow: hidden;
}
.el-collapse-simple--shown {
  grid-template-rows: 1fr;
}
@media (max-width: 767.98px) {
  .el-banner-2024-container {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
.el-banner-2024 {
  margin-top: 1rem;
  color: #fff;
  padding: 12px 16px;
  background-color: #000a50;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-height: 150px;
}
.el-banner-2024:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    #000a50 4.62%,
    rgba(0, 10, 80, 0) 37.82%,
    rgba(0, 10, 80, 0) 46.53%,
    #000a50 90.11%
  );
}
@container (min-width: 768px) {
  .el-banner-2024:before {
    background: linear-gradient(
      90deg,
      #000a50 25.92%,
      rgba(0, 10, 80, 0) 50.66%,
      rgba(0, 10, 80, 0.2) 67.46%,
      #000a50 85.75%
    );
  }
}
@container (min-width: 992px) {
  .el-banner-2024:before {
    background: linear-gradient(
      90deg,
      #000a50 20.6%,
      rgba(0, 10, 80, 0) 41.82%,
      rgba(0, 10, 80, 0.2) 71.38%,
      #000a50 85.24%
    );
  }
}
@container (min-width: 768px) {
  .el-banner-2024 {
    padding: 1.5rem 2rem;
    min-height: 170px;
  }
}
@container (min-width: 992px) {
  .el-banner-2024,
  .el-banner-2024--final {
    padding: 2rem 2.5rem;
  }
}
.el-banner-2024__header {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.el-banner-2024__header-title {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.125rem;
  letter-spacing: 0.0125rem;
}
@container (min-width: 768px) {
  .el-banner-2024__header-title {
    font-size: 1.75rem;
    line-height: 1.75rem;
    letter-spacing: 0.03125rem;
  }
}
.el-banner-2024__header-logo {
  line-height: 1;
}
.el-banner-2024__header-logo img {
  width: auto;
  height: 18px;
}
@container (min-width: 768px) {
  .el-banner-2024__header-logo img {
    height: 32px;
  }
}
.el-banner-2024__container {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.el-banner-2024__date {
  font-family: sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
}
@container (min-width: 768px) {
  .el-banner-2024__date {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.el-banner-2024__text {
  font-family: sans-serif;
  font-size: 0.6875rem;
  line-height: 0.8125rem;
}
@container (min-width: 768px) {
  .el-banner-2024__text {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
.el-banner-2024__content {
  border-left: 1px solid hsla(0, 0%, 100%, 0.5);
  padding-left: 0.5rem;
  line-height: 1rem;
}
@container (min-width: 768px) {
  .el-banner-2024__content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.el-banner-2024__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@container (min-width: 768px) {
  .el-banner-2024__wrapper {
    flex-direction: row;
  }
}
.el-banner-2024__containerWrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.el-banner-2024__description {
  display: none;
}
@container (min-width: 768px) {
  .el-banner-2024__description {
    display: block;
    font-family: sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1rem;
    letter-spacing: 0.0125rem;
    min-height: 3lh;
  }
}
.el-banner-2024__source {
  font-family: sans-serif;
  font-size: 0.625rem;
  line-height: 0.625rem;
  letter-spacing: 0.01875rem;
  color: hsla(0, 0%, 100%, 0.75);
}
@container (min-width: 768px) {
  .el-banner-2024__source {
    font-size: 0.6875rem;
  }
}
.el-banner-2024__source--wrapper {
  display: block;
  place-self: end;
}
.el-banner-2024__icon-refresh {
  width: 10px;
  height: 10px;
  display: inline-flex;
  align-items: center;
  padding-right: 2px;
}
@container (min-width: 768px) {
  .el-banner-2024__icon-refresh {
    display: none;
  }
}
.el-banner-2024__icon-refreshText {
  display: none;
}
@container (min-width: 768px) {
  .el-banner-2024__icon-refreshText {
    display: inline;
  }
}
.el-banner-2024__counterContainer {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}
.el-banner-2024__counter {
  display: grid;
  justify-content: right;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
  gap: 8px;
}
@container (min-width: 768px) {
  .el-banner-2024__counter {
    gap: 16px;
  }
}
.el-banner-2024__counter--wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.el-banner-2024__counter--text {
  font-family: sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.2;
}
@container (min-width: 768px) {
  .el-banner-2024__counter--text {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .el-banner-2024__counter--spacing {
    padding-left: 3px;
  }
}
.el-banner-2024__counter--percentWrapper {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: center;
}
.el-banner-2024__counter--percent {
  font-family: sans-serif;
  font-size: 0.875rem;
  line-height: 0.875rem;
  font-weight: 700;
}
@container (min-width: 768px) {
  .el-banner-2024__counter--percent {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.el-banner-2024__progress-container {
  width: 100%;
  height: 6px;
  background-color: hsla(0, 0%, 100%, 0.3);
  border-radius: 8px;
  overflow: hidden;
}
.el-banner-2024__progressBar {
  height: 100%;
  border-radius: 8px;
  transition: width 0.3s ease;
  width: 75px;
}
@container (min-width: 768px) {
  .el-banner-2024__progressBar {
    width: 90px;
  }
}
.el-banner-2024__green-info {
  color: #6dd400;
}
.el-banner-2024__green-info-icon {
  width: 12px;
  height: 12px;
  display: flex;
}
@container (min-width: 768px) {
  .el-banner-2024__green-info-icon {
    width: 16px;
    height: 16px;
  }
}
.el-banner-2024__indentation {
  display: flex;
  flex-direction: column;
  line-height: 1rem;
}
@container (min-width: 768px) {
  .el-banner-2024__indentation {
    flex-direction: row;
    line-height: 0;
  }
}
.el-counters-wrapper {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  width: 100%;
}
@container (min-width: 768px) {
  .el-counters-wrapper {
    width: auto;
  }
}
.el-counter__box {
  background-color: #fff;
  padding: 0.5rem 0.75rem 10px;
  border-radius: 8px;
  border: 1px solid #e1e8fb;
  flex-grow: 1;
  flex: 1 1;
  min-width: 110px;
}
@container (min-width: 768px) {
  .el-counter__box {
    width: 130px;
  }
}
.el-counter__box-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #52556d;
  margin-bottom: 2px;
}
.el-counter__box-number {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 19.2px;
  color: #000528;
  font-weight: 500;
  margin-bottom: 4px;
}
.el-counter__box-icon {
  width: 16px;
  height: 16px;
  color: #6dd400;
}
.el-counter__box-progress {
  width: 100%;
  height: 4px;
  background: #e1e8fb;
  border-radius: 8px;
  position: relative;
}
.el-counter__box-progress-bar {
  height: 100%;
  background: #043cdc;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
}
.el-counter__box-progress--green .el-counter__box-progress-bar {
  background: #6dd400;
}
.el-counter__box--time {
  text-align: right;
}
.el-counter__box--time .el-counter__box-title {
  display: block;
}
.el-counter__box--time .el-counter__box-number {
  font-weight: 400;
  color: #52556d;
  text-align: right;
}
.ep-title {
  font-family: sans-serif;
  font-size: 1.125rem;
  line-height: 1.375rem;
  font-weight: 700;
  color: #000528;
  margin-bottom: 8px;
}
@container (min-width: 576px) {
  .ep-title {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
.ep-title__wrapper {
  display: flex;
  flex-direction: column;
}
.ep-title__wrapper .ep-title {
  width: 100%;
}
@container (min-width: 768px) {
  .ep-title__wrapper .ep-title {
    width: 70%;
  }
  .ep-title__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.ep-title__wrapper .ep-btn-group {
  margin-top: 1rem;
  flex-direction: row;
}
@container (min-width: 768px) {
  .ep-title__wrapper .ep-btn-group {
    margin-top: 0;
  }
}
.ep-description {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .ep-description {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
.ep-blue-info {
  display: inline-flex;
  align-items: center;
  font-family: sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #043cdc;
  letter-spacing: 0.2px;
}
.ep-blue-info__icon {
  display: inline-block;
  width: 16px;
  min-width: 16px;
  height: 16px;
  fill: #043cdc;
}
@container (min-width: 768px) {
  .ep-blue-info + .ep-blue-info {
    margin-left: 1rem;
  }
}
.ep-btn-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  height: -moz-fit-content;
  height: fit-content;
}
.ep-dropdown__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@container (min-width: 768px) {
  .ep-dropdown__group {
    flex-direction: row;
    width: 75%;
  }
}
.ep-dropdown__group .dropdown__icon {
  width: 14px;
  height: 14px;
}
.ep-error {
  background-color: rgba(237, 28, 36, 0.1);
  color: #ed1c24;
}
.ep-container {
  container-type: inline-size;
  position: relative;
}
@container (min-width: 768px) {
  .ep-sm-only {
    display: none !important;
  }
}
.ep-md-up {
  display: none;
}
@container (min-width: 768px) {
  .ep-md-up {
    display: initial;
  }
}
.ep-lg-up {
  display: none;
}
@container (min-width: 992px) {
  .ep-lg-up {
    display: initial;
  }
  .ep-lg-down {
    display: none !important;
  }
}
.ep-xl-up {
  display: none;
}
@container (min-width: 1200px) {
  .ep-xl-up {
    display: initial;
  }
}
.ep-mutted {
  font-family: sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  color: #777c9f;
}
@media (min-width: 768px) {
  .ep-mutted {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.ep-mutted--lg {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 768px) {
  .ep-mutted--lg {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.ep-toggle-arrow {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease-in-out;
}
.ep-toggle-arrow svg {
  width: 100%;
  height: 100%;
}
.ep-toggle-arrow--opened {
  transform: rotateX(180deg);
}
.ep-input {
  padding: 0.5rem 32px 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 400;
  color: #000528;
  border: 1px solid #e1e8fb;
  border-radius: 4px;
  background-color: #fff;
  height: 40px;
}
.ep-input::placeholder {
  color: #8690a7;
  opacity: 1;
}
.ep-input__wrap {
  position: relative;
}
.ep-input__icon {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  fill: #8690a7;
}
.ep-input[disabled] {
  cursor: not-allowed;
  background-color: #f4f4f4;
  color: #c3c6cc;
}
.ep-input[disabled] + .ep-input__icon {
  fill: #c3c6cc;
}
.ep-option {
  background-color: #fff;
  color: #000528;
}
.ep-c-list__inputs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@container (min-width: 768px) {
  .ep-c-list__inputs {
    flex-direction: row;
    justify-content: space-between;
  }
}
.ep-list__wrap {
  margin-top: 0.5rem;
}
@container (min-width: 768px) {
  .ep-list__wrap {
    margin-top: 1rem;
  }
}
@container (min-width: 992px) {
  .ep-list__wrap {
    margin-top: 2rem;
  }
}
.ep-list__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #f2f4f8;
  padding: 16px;
}
@container (min-width: 992px) {
  .ep-list__header {
    padding: 32px;
  }
}
.ep-list__header-subtext {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #8690a7;
}
.ep-list__header-text {
  font-family: sans-serif;
  font-size: 1.125rem;
  line-height: 1.375rem;
  font-weight: 600;
  color: #000528;
}
.ep-list__li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 12px 16px;
  width: 100%;
  color: #000528;
}
@container (min-width: 992px) {
  .ep-list__li {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.75rem 2rem;
  }
}
.ep-list__li--blue,
.ep-list__li--even {
  background-color: #f0f3fd;
}
.ep-list__li--grey {
  background-color: #f4f4f4;
}
.ep-list__li--red {
  background-color: #fee8e8;
}
.ep-list__li--transparent {
  background-color: transparent;
}
.ep-list__li--blue,
.ep-list__li--grey,
.ep-list__li--red,
.ep-list__li--transparent {
  border-bottom: 1px solid #e1e8fb;
  border-top: none;
  margin-top: 0.25rem;
}
.ep-list__li--blue:last-child,
.ep-list__li--grey:last-child,
.ep-list__li--red:last-child,
.ep-list__li--transparent:last-child {
  border-radius: 0 0 4px 4px;
}
.ep-list__li--striped:nth-child(even of .ep-list__li--striped) {
  background-color: #f2f4f8;
}
.ep-list__not-found {
  background-color: #f0f3fd;
  text-align: center;
  padding: 0.5rem;
}
.ep-list__name-wrap {
  display: flex;
}
@container (min-width: 992px) {
  .ep-list__name-wrap {
    display: inline-block;
    width: 280px;
    flex-shrink: 0;
  }
}
.ep-list__info-wrap {
  display: inline-flex;
  flex-direction: column-reverse;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.0125rem;
}
@container (min-width: 992px) {
  .ep-list__info-wrap {
    flex-direction: row;
    justify-content: space-between;
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.ep-list__info-text {
  padding-right: 0.5rem;
  flex-grow: 1;
}
.ep-list__info-votes {
  min-width: 150px;
}
@container (min-width: 992px) {
  .ep-list__info-votes {
    text-align: right;
  }
}
.ep-list__number {
  margin-right: 0.5rem;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000528;
  display: inline-block;
  text-align: left;
}
@container (min-width: 992px) {
  .ep-list__number {
    width: 16px;
    margin-right: 1rem;
  }
}
.ep-sources {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}
@container (min-width: 768px) {
  .ep-sources {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.ep-sources__button {
  display: inline-flex;
  justify-content: center;
  margin: 0 auto;
}
.ep-sources__text {
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@container (min-width: 768px) {
  .ep-sources__text {
    position: absolute;
    align-items: center;
    width: 100%;
    height: 40px;
  }
}
.ep-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 400;
  color: #000528;
  background-color: #fff;
  border: 1px solid #e1e8fb;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
}
.ep-button:hover {
  background-color: #e1e8fb;
}
.ep-button:disabled {
  background-color: #c5cced;
  cursor: not-allowed;
}
.ep-button__arrow {
  width: 14px;
  height: 14px;
  pointer-events: none;
  fill: #000528;
  display: inline-flex;
  transition: transform 0.2s ease-in-out;
}
.ep-button__arrow--up {
  transform: rotate(180deg);
}
.ep-button--active {
  color: #4f77e7;
  border-color: #4f77e7;
  background-color: #f0f3fd;
}
.ep-map-container {
  container-type: inline-size;
}
.ep-map {
  max-width: 920px;
  margin: 0 auto;
}
.ep-map__county {
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}
.ep-map__county:hover {
  opacity: 0.7;
}
.ep-map__county--not-highlighted {
  opacity: 0.25;
}
.ep-map__county--highlighted:hover,
.ep-map__county--not-highlighted:hover {
  opacity: 1;
}
.ep-map__county--disabled {
  cursor: not-allowed;
  opacity: 1;
}
.ep-map__county--disabled:hover {
  opacity: 1;
}
.ep-map-legend--line-chart {
  margin-left: 66px;
}
.ep-hoverBox {
  position: absolute;
  width: 100%;
  padding: 0.5rem;
  background: #fff;
  box-shadow: 5px 5px 15px -5px rgba(0, 0, 0, 0.34);
  display: none;
  z-index: 1001;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.01875rem;
  color: #52556d;
}
.ep-hoverBox--ballot {
  min-height: 0;
}
.ep-hoverBox--shown {
  display: block;
}
.ep-hoverBox--touch {
  margin-left: 0 !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%);
}
.ep-hoverBox__title {
  text-align: left;
  line-height: 15px;
  margin-bottom: 4px;
}
.ep-hoverBox__title-btn {
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  margin: 0;
  text-decoration: underline;
}
.ep-hoverBox__close {
  position: absolute;
  right: 7px;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 24px;
}
.ep-hoverBox__percent {
  font-size: 14px;
  margin-bottom: 8px;
}
.ep-hoverBox__heatmap {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.ep-hoverBox__heatmap .pv23-candidate {
  flex-grow: 1;
}
.ep-hoverBox__position {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ep-hoverBox__position-label {
  font-size: 36px;
  height: 29px;
}
.ep-hoverBox__no-data {
  margin-top: 16px;
  padding: 16px;
  line-height: 1;
}
.ep-hoverBox__results {
  letter-spacing: 0.0125rem;
  width: 100%;
}
.ep-hoverBox__result td {
  line-height: 1rem;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.ep-hoverBox__result:first-child {
  color: #000528;
  font-weight: 600;
}
.ep-hoverBox__result-color {
  width: 4px;
  padding: 0;
}
.ep-hoverBox__result-color div {
  width: 100%;
  height: 12px;
  border-radius: 40px;
}
.ep-hoverBox__result-name {
  padding-left: 0.5rem;
  text-transform: uppercase;
}
.ep-hoverBox__result-value {
  width: 3em;
  text-align: right;
}
.ep-countries {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: dense;
  justify-content: center;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
@container (min-width: 992px) {
  .ep-countries {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ep-country {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  border: 1px solid #e1e8fb;
  background: #fff;
  transition: background-color 0.25s ease-in-out;
}
@container (min-width: 992px) {
  .ep-country {
    display: flex !important;
  }
}
.ep-country__table-title {
  font-family: sans-serif;
  font-weight: 500;
  line-height: 1.375rem;
}
.ep-country:hover {
  background-color: #f0f3fd;
}
.ep-country__table-title {
  padding: 12px 16px;
}
.ep-country__content {
  grid-column: 1/-1;
  background: #f0f3fd;
  border: 1px solid #e1e8fb;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ep-country__content--hidden {
  display: none;
}
.ep-country__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  max-width: 33%;
  width: 100%;
}
.ep-country__flag {
  min-width: 32px;
  min-height: 24px;
  width: 32px;
  height: 24px;
  display: flex;
}
.ep-country__flag svg {
  width: 100%;
  height: 100%;
}
.ep-country__mandates,
.ep-country__name {
  color: #000528;
  font-family: sans-serif;
  font-weight: 600;
  line-height: 1.375rem;
}
.ep-country__mandates {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
}
.ep-country--active {
  background: #f0f3fd;
}
.ep-country--active:after {
  content: "";
  position: absolute;
  width: calc(100% + 2px);
  left: -1px;
  right: 0;
  bottom: -10px;
  height: 10px;
  background: #f0f3fd;
  border-left: 1px solid #e1e8fb;
  border-right: 1px solid #e1e8fb;
}
.ep-country--disabled {
  background: #f2f4f8;
  cursor: not-allowed !important;
}
.ep-country--disabled:hover {
  background: #f2f4f8;
}
.ep-country__view-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  color: #043cdc;
  line-height: 1.375rem;
  font-size: 0;
  margin-left: 24px;
}
@container (min-width: 768px) {
  .ep-country__view-more {
    font-size: 1rem;
    min-width: 80px;
  }
}
.ep-country--active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.ep-button__text {
  color: #043cdc;
}
.ep-button__icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  color: #043cdc;
}
.ep-party__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #f0f3fd;
}
.ep-party__list-li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}
.ep-party__list-li:nth-child(odd) {
  background: #f9fafc;
}
.ep-party__title {
  line-height: 1.375rem;
  display: flex;
  flex-direction: column;
}
@container (min-width: 768px) {
  .ep-party__title {
    display: block;
  }
}
.ep-party__mandates {
  margin-bottom: auto;
}
@container (min-width: 768px) {
  .ep-party__mandates {
    margin-bottom: 0;
  }
}
.ep-banner {
  margin-top: 1rem;
  padding: 1rem;
  background-position: calc(50% - 100px) calc(50% + 15px);
  background-size: auto 115%;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 4px;
  overflow: hidden;
}
@container (min-width: 480px) {
  .ep-banner {
    background-position: calc(50% - 20px) 50%;
    background-size: auto 115%;
  }
}
@container (min-width: 576px) {
  .ep-banner {
    background-size: auto 170%;
  }
}
@media (min-width: 768px) {
  .ep-banner {
    margin-top: 0;
  }
}
@container (min-width: 768px) {
  .ep-banner {
    padding: 2rem;
    background-position: calc(50% - 25px) calc(50% - 5px);
    background-size: auto 200%;
  }
}
@container (min-width: 992px) {
  .ep-banner {
    padding: 2rem 2.5rem;
    background-position: calc(50% - 25px) calc(50% - 10px);
  }
}
@container (min-width: 480px) {
  .ep-banner--final {
    background-position: calc(50% - 20px) 50%;
    background-size: auto 100%;
  }
}
@container (min-width: 576px) {
  .ep-banner--final {
    background-size: auto 120%;
  }
}
@container (min-width: 768px) {
  .ep-banner--final {
    background-position: calc(50% - 25px) calc(50% - 5px);
    background-size: auto 150%;
  }
}
@container (min-width: 992px) {
  .ep-banner--final {
    padding: 2rem 2.5rem;
  }
}
.ep-banner__header {
  display: flex;
  justify-content: space-between;
}
.ep-banner__header-title {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 1.3125rem;
  line-height: 1.625rem;
  max-width: 20ch;
}
@container (min-width: 768px) {
  .ep-banner__header-title {
    font-size: 1.5rem;
    line-height: 1.75rem;
    max-width: unset;
    gap: 1rem;
  }
}
@container (min-width: 992px) {
  .ep-banner__header-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    letter-spacing: -0.4px;
    max-width: 20ch;
  }
}
.ep-banner__header-logo {
  display: none;
}
@container (min-width: 375px) {
  .ep-banner__header-logo {
    display: block !important;
  }
}
.ep-banner__header-logo img {
  width: auto;
  height: 32px;
}
@container (min-width: 768px) {
  .ep-banner__header-logo img {
    height: 38px;
  }
}
@container (min-width: 992px) {
  .ep-banner__header-logo img {
    height: 48px;
  }
}
.ep-banner__content {
  margin-top: 1.5rem;
}
@container (min-width: 480px) {
  .ep-banner__content {
    margin-top: -8px;
  }
}
@container (min-width: 576px) {
  .ep-banner__content {
    margin-top: -24px;
  }
}
@container (min-width: 768px) {
  .ep-banner__content {
    margin-top: 0;
  }
}
@container (min-width: 992px) {
  .ep-banner__content {
    margin-top: -24px;
  }
}
@container (min-width: 480px) {
  .ep-banner__content--after {
    margin-top: -16px;
  }
}
@container (min-width: 576px) {
  .ep-banner__content--after {
    margin-top: -8px;
  }
}
@container (min-width: 768px) {
  .ep-banner__content--after {
    margin-top: 0;
  }
}
@container (min-width: 992px) {
  .ep-banner__content--after {
    margin-top: -24px;
  }
}
.ep-banner__date {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #e1e8fb;
  width: 100%;
  display: block;
}
@container (min-width: 768px) {
  .ep-banner__date {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}
@container (min-width: 992px) {
  .ep-banner__date {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
.ep-banner__text {
  color: #e1e8fb;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.2px;
  text-align: center;
}
@container (min-width: 480px) {
  .ep-banner__text {
    max-width: 59ch;
  }
}
@container (min-width: 768px) {
  .ep-banner__text {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
@container (min-width: 992px) {
  .ep-banner__text {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
.ep-banner__text--mutted {
  color: #8690a7;
}
.ep-banner__text--bold {
  font-weight: 600;
}
.ep-banner__participations {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-left: auto;
}
@container (min-width: 480px) {
  .ep-banner__participations {
    align-items: flex-end;
    text-align: right;
  }
}
.ep-banner__percent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e1e8fb;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  color: #000528;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  min-width: max-content;
  max-width: 90px;
  width: 100%;
}
@container (min-width: 768px) {
  .ep-banner__percent {
    font-size: 1.3125rem;
    line-height: 1.75rem;
    max-width: none;
  }
}
.ep-banner__percent .icon {
  width: 21px;
  height: 16px;
}
.ep-banner__source {
  font-size: 0.6875rem;
  line-height: 1rem;
  letter-spacing: 0.3px;
}
@container (min-width: 480px) {
  .ep-banner__source span {
    display: block;
    font-size: 0;
    height: 0;
    margin-bottom: 2px;
  }
}
.ep-green-info {
  display: inline-flex;
  align-items: center;
  font-family: sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  color: #6dd400;
  letter-spacing: 0.2px;
  margin-bottom: 0.5rem;
}
@container (min-width: 768px) {
  .ep-green-info {
    font-size: 1rem;
    line-height: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.ep-green-info__icon {
  display: inline-block;
  width: 16px;
  height: 16px;
}
@container (min-width: 768px) {
  .ep-green-info__icon {
    width: 22px;
    height: 22px;
  }
}
@container (min-width: 480px) {
  .text-xs-left {
    text-align: left !important;
  }
  .text-xs-right {
    text-align: right !important;
  }
}
.text-center {
  text-align: center;
}
.ep-area-search__main-title {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.375rem;
}
@container (min-width: 768px) {
  .ep-area-search__main-title {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
.ep-area-search__title {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 1.3125rem;
  line-height: 1.625rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@container (min-width: 768px) {
  .ep-area-search__title {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}
.ep-area-search__inputs {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
@container (min-width: 768px) {
  .ep-area-search__inputs {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}
@container (min-width: 992px) {
  .ep-area-search__inputs {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.ep-area-search__parties {
  margin-top: 0.5rem;
}
@container (min-width: 992px) {
  .ep-area-search__parties {
    margin-top: 0;
    padding-top: 1rem;
  }
}
.ep-area-search__search {
  margin-bottom: 0.5rem;
}
.ep-area-search__search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 51;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.ep-area-search__search-results--no-results {
  padding: 8px;
}
.ep-area-search__search-result {
  padding: 8px 16px;
  background-color: transparent;
  border: none;
  text-align: left;
  font-size: 18px;
  transition: none;
  color: #000528;
}
.ep-area-search__search-result-text {
  text-decoration: underline;
}
.ep-area-search__search-result--active {
  background-color: #f0f3fd;
}
.ep-area-search__search-result-heading {
  padding: 5px 5px 0 8px;
  font-size: 16px;
  margin-top: 3px;
  font-weight: 700;
}
.ep-party {
  position: relative;
  display: flex;
  padding: 12px 16px;
  border: 1px solid #e1e8fb;
  border-radius: 4px;
  background-color: #fff;
  align-items: center;
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #000528;
  font-weight: 400;
}
.ep-party__wrapper {
  margin-bottom: 0.5rem;
}
.ep-party:hover {
  background-color: #fbfbfd;
}
.ep-party__color-tab {
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 8px;
  border-radius: 4px 0 0 4px;
}
.ep-party__info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 0;
}
@container (min-width: 992px) {
  .ep-party__info {
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
.ep-party__votes-wrap {
  flex-grow: 1;
}
.ep-party__votes-inner,
.ep-party__votes-wrap {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
@container (min-width: 992px) {
  .ep-party__votes-inner,
  .ep-party__votes-wrap {
    justify-content: flex-end;
  }
}
.ep-party__mandates,
.ep-party__short {
  font-weight: 600;
}
.ep-party__avatars,
.ep-party__short,
.ep-party__votes {
  white-space: nowrap;
}
.ep-party__short {
  margin-right: 1rem;
}
@container (min-width: 992px) {
  .ep-party__short {
    flex-shrink: 0;
    width: 100px;
  }
}
.ep-party__avatars {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  align-items: center;
}
@container (min-width: 992px) {
  .ep-party__avatars {
    flex-wrap: nowrap;
    text-align: right;
  }
  .ep-party__mandates {
    width: 85px;
    text-align: right;
  }
  .ep-party__gains {
    width: 42px;
  }
}
.ep-party__votes {
  color: #777c9f;
}
@container (min-width: 992px) {
  .ep-party__votes {
    display: inline-block;
    width: 100px;
    text-align: right;
  }
}
.ep-party__percents {
  font-weight: 600;
}
@container (min-width: 992px) {
  .ep-party__percents {
    margin-right: 1rem;
    width: 55px;
    text-align: right;
  }
}
.ep-party__title {
  width: 100%;
}
@container (min-width: 992px) {
  .ep-party__title {
    min-width: 240px;
  }
}
.ep-party__avatar {
  display: inline-block;
  width: 14px;
  height: 16px;
}
.ep-party__mandates {
  white-space: nowrap;
  line-height: 1.375rem;
}
.ep-party__toggle {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  color: #043cdc;
  flex-shrink: 0;
  margin-left: 1rem;
}
@container (min-width: 992px) {
  .ep-party__toggle .ep-toggle-arrow {
    margin-left: 0.5rem;
  }
  .ep-party__toggle {
    width: 144px;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: 0;
  }
}
.ep-party__gains {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 600;
  font-family: sans-serif;
  white-space: nowrap;
}
.ep-party__gains--positive {
  color: #00a050;
}
.ep-party__gains--positive svg {
  transform: rotate(-90deg);
  fill: #00a050;
}
.ep-party__gains--negative {
  color: #b41819;
}
.ep-party__gains--negative svg {
  transform: rotate(90deg);
  fill: #b41819;
}
.ep-party__gains--neutral {
  color: #8690a7;
}
.ep-party__gains--neutral svg {
  fill: #8690a7;
}
.ep-party__content {
  display: none;
}
.ep-party__content--open {
  display: block;
}
.ep-chart {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  margin-top: 48px;
}
@container (min-width: 576px) {
  .ep-chart {
    margin-top: 16px;
    margin-bottom: 44px;
  }
}
.ep-chart__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 16px;
}
@container (min-width: 768px) {
  .ep-chart__wrapper {
    padding-left: 0;
  }
}
.ep-chart__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 20%;
  font-weight: 600;
}
.ep-chart__bars {
  display: flex;
  flex-direction: row;
  gap: 4px;
  height: 300px;
}
@container (min-width: 576px) {
  .ep-chart__bars {
    gap: 24px;
  }
}
.ep-chart__flag {
  width: 16px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
}
@container (min-width: 576px) {
  .ep-chart__flag {
    width: 24px;
    height: 18px;
  }
}
@container (min-width: 768px) {
  .ep-chart__flag {
    width: 32px;
    height: 24px;
  }
}
.ep-chart__flag svg {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
}
.ep-chart__bar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 16px;
  gap: 8px;
}
@container (min-width: 576px) {
  .ep-chart__bar-wrapper {
    width: 24px;
    width: 32px;
  }
}
.ep-chart__bar-color {
  background-color: #043cdc;
}
.ep-chart__bar-color1 {
  background-color: #c3c6cc;
}
.ep-chart__bar-color2 {
  background-color: #b9cafc;
}
.ep-chart__bar {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 16px;
  height: 100%;
  border-radius: 4px;
}
@container (min-width: 576px) {
  .ep-chart__bar {
    width: 24px;
  }
}
@container (min-width: 768px) {
  .ep-chart__bar {
    width: 32px;
  }
}
.ep-chart__bar-percents {
  position: relative;
  transform: rotate(-90deg);
  top: -16px;
  font-weight: 600;
}
@container (min-width: 576px) {
  .ep-chart__bar-percents {
    transform: none;
    top: 0;
  }
}
.ep-chart__line {
  position: relative;
  margin-top: -56px;
  font-weight: 600;
}
@container (min-width: 576px) {
  .ep-chart__line {
    margin-top: -62px;
  }
}
@container (min-width: 768px) {
  .ep-chart__line {
    margin-top: -68px;
  }
}
.ep-chart__line:after {
  content: "";
  display: block;
  width: calc(100% - 32px);
  height: 1px;
  background-color: #e1e8fb;
  position: absolute;
  right: 0;
  top: 50%;
}
.ep-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@container (min-width: 480px) {
  .ep-countdown {
    align-items: flex-end;
  }
}
.ep-countdown__title {
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.2px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-left: auto;
  text-align: center;
  width: 100%;
}
@container (min-width: 480px) {
  .ep-countdown__title {
    max-width: 100%;
  }
}
@container (min-width: 768px) {
  .ep-countdown__title {
    font-size: 1rem;
    line-height: 1.375rem;
    margin-bottom: 0.5rem;
  }
}
.ep-countdown__time-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.25rem;
}
@container (min-width: 768px) {
  .ep-countdown__time-wrapper {
    gap: 0.5rem;
  }
}
.ep-countdown__time {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #f0f3fd;
  color: #000528;
  border-radius: 4px;
  padding: 2px 0;
}
@container (min-width: 768px) {
  .ep-countdown__time {
    width: 56px;
    height: 48px;
    padding: 4px 6px;
  }
}
.ep-countdown__number {
  font-family: sans-serif;
  font-size: 1.125rem;
  line-height: 1.375rem;
  font-weight: 600;
}
@container (min-width: 768px) {
  .ep-countdown__number {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
.ep-countdown__text {
  font-family: sans-serif;
  font-size: 0.6875rem;
  line-height: 1rem;
  position: relative;
  top: -4px;
}
@container (min-width: 768px) {
  .ep-countdown__text {
    font-size: 0.75rem;
    line-height: 1rem;
    top: -2px;
  }
}
.kv-subtitle {
  font-family: sans-serif;
  font-size: 1.125rem;
  line-height: 1.375rem;
  font-weight: 700;
}
.kv-subtitle--small {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  display: block;
  color: #52556d;
}
.kv-c-list__inputs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@container (min-width: 768px) {
  .kv-c-list__inputs {
    flex-direction: row;
    justify-content: space-between;
  }
}
.kv-map-toggle {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25rem;
  border: 1px solid #e1e8fb;
  border-radius: 8px;
}
.kv-map-toggle__item {
  color: #52556d;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.25s ease-in-out;
}
.kv-map-toggle__item:hover {
  background-color: #f2f4f8;
}
.kv-map-toggle__item--active {
  color: #043cdc;
  background-color: #e1e8fb;
  border: 1px solid rgba(4, 60, 220, 0.06);
}
.kv-map-toggle__item--active:hover {
  background-color: #e1e8fb;
}
.kv-results-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.kv-results-list__item--mob-hidden {
  display: none;
}
@container (min-width: 768px) {
  .kv-results-list__item--mob-hidden {
    display: initial;
  }
}
.kv-results-list__item-abb {
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.kv-results-list__item-long-name {
  color: #52556d;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.kv-results-list__item-party {
  min-width: 80px;
}
.kv-results-list__item-progress {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  height: 16px;
  border-radius: 4px;
  position: relative;
}
.kv-results-list__item-progress-bar {
  height: 100%;
  border-radius: 4px;
  min-width: 2px;
  transition: width 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.kv-results-list__item-progress-number {
  color: #000528;
  font-weight: 600;
  width: 60px;
  position: absolute;
  margin-right: -68px;
}
.kv-results-list__item-mandates {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  color: #52556d;
  line-height: 20px;
  width: 45px;
  flex-shrink: 0;
  justify-content: flex-end;
}
.kv-region__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@container (min-width: 768px) {
  .kv-region__title {
    gap: 1.5rem;
  }
}
.kv-region__icon {
  min-width: 64px;
  width: 64px;
  min-height: 44px;
  height: 44px;
}
@container (min-width: 992px) {
  .kv-region__icon {
    min-width: 68px;
    width: 68px;
    min-height: 48px;
    height: 48px;
  }
}
.kv-region__icon svg {
  width: 100%;
  height: 100%;
}
body.global-header-fixed .kv-coalition-messages {
  top: 106px;
}
.kv-coalition-messages {
  text-align: center;
}
.kv-coalition-messages--sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 3;
  transition: top 0.36s ease-in-out;
}
@container (min-width: 992px) {
  .kv-coalition-messages--sticky {
    position: unset;
    top: unset;
  }
}
.kv-coalition-messages--sticky .kv-coalition-messages__message {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@container (min-width: 992px) {
  .kv-coalition-messages--sticky .kv-coalition-messages__message {
    box-shadow: none;
  }
}
.kv-coalition-messages__message {
  padding: 0.5rem 0.75rem;
  margin-top: 1.5rem;
  display: inline-block;
  border-radius: 4px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.kv-coalition-messages__message--info {
  color: #00288c;
  background-color: #e1e8fb;
}
.kv-coalition-messages__message--danger {
  color: #bf141b;
  background-color: #fee8e8;
}
.kv-coalition-messages__message--success {
  color: #00704e;
  background-color: #d9fceb;
}
.kv-waiting-message {
  color: #8690a7;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.kv-waiting-message svg {
  width: 24px;
}
@container (min-width: 768px) {
  .kv-waiting-message {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.kv-parties-wrapper {
  border-radius: 8px;
  padding: 0 8px;
  position: relative;
}
@container (min-width: 768px) {
  .kv-parties-wrapper {
    padding: 0 16px;
  }
}
@container (min-width: 992px) {
  .kv-parties-wrapper {
    padding: 0 24px;
  }
}
.kv-parties-wrapper--bordered {
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 0 8px 8px !important;
  border: 1px dashed rgba(0, 40, 140, 0.5);
}
@container (min-width: 768px) {
  .kv-parties-wrapper--bordered {
    padding: 0 16px 16px !important;
    margin-bottom: 16px;
  }
}
@container (min-width: 992px) {
  .kv-parties-wrapper--bordered {
    padding: 0 24px 24px !important;
    margin-bottom: 24px;
  }
}
.kv-parties-wrapper--bordered .kv-party:last-child {
  margin-bottom: 0;
}
.kv-parties-wrapper .kv-parties-coalition-space {
  margin-bottom: 8px;
}
@container (min-width: 768px) {
  .kv-parties-wrapper .kv-parties-coalition-space {
    margin-bottom: 16px;
  }
}
.kv-parties-wrapper .kv-coalition-message {
  max-width: calc(100% - 16px);
  width: max-content;
  position: absolute;
  top: 0;
  left: 50%;
  background: #e1e8fb;
  color: #00288c;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.2px;
  transform: translateX(-50%) translateY(-50%);
}
@container (min-width: 768px) {
  .kv-parties-wrapper .kv-coalition-message {
    max-width: calc(100% - 32px);
  }
}
@container (min-width: 992px) {
  .kv-parties-wrapper .kv-coalition-message {
    max-width: calc(100% - 48px);
  }
}
.kv-parties-not-elected {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s;
}
.kv-parties-not-elected > div {
  overflow: hidden;
}
.kv-parties-not-elected--showing {
  grid-template-rows: 1fr;
}
.kv-parties-not-elected--hidding .kv-party__button--sticky,
.kv-parties-not-elected--showing .kv-party__button--sticky {
  position: relative;
  top: auto !important;
}
.kv-parties-not-elected--shown {
  grid-template-rows: 1fr;
}
.kv-parties-not-elected--shown > div {
  overflow: unset;
}
.kv-parties-coalition-separator {
  height: 1px;
  border-bottom: 1px dashed #cccdd4;
  margin: 1rem 0;
}
body.global-header-fixed .kv-party__button--sticky {
  top: calc(106px + 1.5rem);
}
@media (min-width: 768px) {
  body.global-header-fixed .kv-party__button--sticky {
    top: calc(122px + 1.5rem);
  }
}
.kv-party {
  margin-bottom: 0.5rem;
}
.kv-party__button {
  position: relative;
  display: flex;
  padding: 12px 16px;
  border: 1px solid #e1e8fb;
  border-radius: 4px;
  background-color: #fff;
  align-items: center;
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #000528;
  font-weight: 400;
}
.kv-party__button--sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 1.5rem;
  z-index: 2;
}
.kv-party__button--pinned {
  box-shadow: 5px 5px 15px -5px rgba(0, 0, 0, 0.34);
}
.kv-party__color-tab {
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 8px;
  border-radius: 4px 0 0 4px;
}
.kv-party__number {
  margin-right: 0.25rem;
}
@container (min-width: 576px) {
  .kv-party__number {
    width: 20px;
    margin-right: 1rem;
  }
  .kv-party__short {
    width: 140px;
  }
}
.kv-party__long {
  flex-grow: 1;
}
.kv-party__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@container (min-width: 576px) {
  .kv-party__info {
    flex-direction: row;
    align-items: center;
  }
}
.kv-party__toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  color: #043cdc;
  margin-left: 0.5rem;
}
@container (min-width: 768px) {
  .kv-party__toggle {
    width: 80px;
    margin-left: 2rem;
    text-align: right;
  }
}
.kv-party__toggle-text {
  flex-grow: 1;
}
.kv-party__mandates {
  font-weight: 600;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 35px;
}
@container (min-width: 576px) {
  .kv-party__mandates {
    width: auto;
    margin-left: auto;
  }
}
.kv-party__mandates-wrapper {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  flex-shrink: 0;
}
@container (min-width: 576px) {
  .kv-party__mandates-wrapper {
    margin-left: auto;
  }
}
.kv-party__gains {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 600;
  font-family: sans-serif;
  white-space: nowrap;
}
.kv-party__gains--positive {
  color: #00a050;
}
.kv-party__gains--positive svg {
  transform: rotate(-90deg);
  fill: #00a050;
}
.kv-party__gains--negative {
  color: #b41819;
}
.kv-party__gains--negative svg {
  transform: rotate(90deg);
  fill: #b41819;
}
.kv-party__gains--neutral {
  color: #8690a7;
}
.kv-party__gains--neutral svg {
  fill: #8690a7;
}
.kv-party__votes {
  font-weight: 600;
  flex-shrink: 0;
}
@container (min-width: 576px) {
  .kv-party__votes {
    width: 80px;
    text-align: right;
  }
}
.kv-party__progress-wrapper {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: flex-start;
  flex-grow: 1;
  position: relative;
  height: 16px;
}
@container (min-width: 576px) {
  .kv-party__progress-wrapper {
    width: 200px;
    gap: 0.5rem;
  }
}
.kv-party__progress-bar {
  border-radius: 4px;
  min-width: 2px;
  transition: width 0.3s ease;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.kv-party__progress-text {
  font-weight: 600;
  width: 60px;
  position: absolute;
  margin-right: -68px;
}
.kv-party__results {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
  gap: 1rem;
  width: 100%;
}
@container (min-width: 576px) {
  .kv-party__results {
    gap: 1.5rem;
    width: auto;
  }
}
.kv-party__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s;
}
.kv-party__content > div {
  overflow: hidden;
}
.kv-party__content--shown {
  grid-template-rows: 1fr;
}
.kv-checkbox {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #52556d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.kv-checkbox--disabled {
  color: #8690a7;
  cursor: not-allowed;
}
.kv-checkbox__input {
  width: 16px;
  height: 16px;
  background: #fff;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 3px;
  border: 1px solid #e1e8fb;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .kv-checkbox__input {
    width: 20px;
    height: 20px;
  }
}
.kv-checkbox__input:hover {
  border-color: #043cdc;
}
.kv-checkbox__input:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='9' fill='none' viewBox='0 0 12 9'%3e%3cpath fill='white' fill-rule='evenodd' d='M10.293.293a1 1 0 0 1 1.487 1.333l-.073.081L5.04 8.374a1 1 0 0 1-1.333.073l-.08-.073L.292 5.04a1 1 0 0 1 1.333-1.487l.081.073 2.626 2.627 5.96-5.96Z' clip-rule='evenodd'/%3e%3c/svg%3e");
  transform: scale(0);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
.kv-checkbox__input:checked {
  background-color: #043cdc;
  border-color: #043cdc;
}
.kv-checkbox__input:checked:before {
  transform: scale(1);
}
.kv-checkbox__input:disabled {
  cursor: not-allowed;
  background: #f2f4f8;
  border-color: #dee0e4;
}
.kv-checkbox__input:disabled:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDEyIDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTAuMjkyOSAwLjI5Mjg5M0MxMC42ODM0IC0wLjA5NzYzMTEgMTEuMzE2NiAtMC4wOTc2MzExIDExLjcwNzEgMC4yOTI4OTNDMTIuMDcxNiAwLjY1NzM4MyAxMi4wOTU5IDEuMjMzMjQgMTEuNzggMS42MjU5MUwxMS43MDcxIDEuNzA3MTFMNS4wNDA0NCA4LjM3Mzc3QzQuNjc1OTUgOC43MzgyNiA0LjEwMDA5IDguNzYyNTYgMy43MDc0MiA4LjQ0NjY3TDMuNjI2MjMgOC4zNzM3N0wwLjI5Mjg5MyA1LjA0MDQ0Qy0wLjA5NzYzMTEgNC42NDk5MiAtMC4wOTc2MzExIDQuMDE2NzUgMC4yOTI4OTMgMy42MjYyM0MwLjY1NzM4MyAzLjI2MTc0IDEuMjMzMjQgMy4yMzc0NCAxLjYyNTkxIDMuNTUzMzNMMS43MDcxMSAzLjYyNjIzTDQuMzMzMzMgNi4yNTI1TDEwLjI5MjkgMC4yOTI4OTNaIiBmaWxsPSIjREVFMEU0Ii8+Cjwvc3ZnPgo=");
  transform: scale(0);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
.kv-map-results {
  display: grid;
  grid-gap: 0 0;
  gap: 0 0;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto auto auto;
  grid-template-areas: "title" "counters" "map" "areas" "area-title" "results";
}
.kv-map-results--with-remaining {
  grid-template-areas: "title" "remaining" "counters" "map" "areas" "area-title" "results";
}
@container (min-width: 768px) {
  .kv-map-results {
    column-gap: 2rem;
    grid-template-columns: auto 420px;
    grid-template-rows: auto auto 1fr auto;
    grid-template-areas: "title area-title" "map counters" "map results" "areas results";
  }
  .kv-map-results--with-remaining {
    grid-template-rows: auto auto auto 1fr auto;
    grid-template-areas: "remaining remaining" "map area-title" "map counters" "map results" "areas results";
  }
}
.kv-map-results__title {
  grid-area: title;
}
.kv-map-results__map {
  grid-area: map;
}
.kv-map-results__counters {
  grid-area: counters;
}
.kv-map-results__results {
  grid-area: results;
}
.kv-map-results__areas {
  grid-area: areas;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@container (min-width: 768px) {
  .kv-map-results__areas {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.kv-map-results__area-title {
  grid-area: area-title;
}
.kv-map-results__remaining-districts {
  grid-area: remaining;
}
@container (min-width: 768px) {
  .kv-map-results__results {
    position: relative;
  }
  .kv-map-results__results-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
  }
}
.kv-map-results__area-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@container (min-width: 768px) {
  .kv-map-results__area-title {
    margin-bottom: 1rem;
  }
}
.kv-map-results__area-title-icon {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.2px;
  color: #52556d;
}
@container (min-width: 768px) {
  .kv-map-results__area-title-icon {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
.kv-map-results__area-title-icon svg {
  width: 14.5px;
  height: 16px;
}
.kv-map-toggle {
  margin: 1rem auto 1.5rem;
}
@container (min-width: 768px) {
  .kv-map-toggle {
    margin-top: 0;
    margin-left: unset;
    margin-right: unset;
  }
  .kv-map {
    max-width: 640px;
    margin-bottom: 1.5rem;
  }
}
.kv-message {
  background-color: rgba(255, 235, 0, 0.3);
  padding: 1rem 1rem 0;
  border-radius: 4px;
  border-left: 4px solid #ffeb00;
  margin-bottom: 1rem;
}
@container (min-width: 768px) {
  .kv-message {
    display: flex;
    flex-direction: row;
    margin-bottom: 2rem;
  }
}
.kv-message__title {
  font-family: sans-serif;
  font-weight: 700;
  color: #000528;
  max-width: 21ch;
}
.kv-message__title-text {
  font-size: 1rem;
  line-height: 1.25rem;
}
.kv-message__title-number {
  display: block;
  font-size: 2.25rem;
  letter-spacing: -1.5px;
}
@container (min-width: 768px) {
  .kv-message__title-number {
    font-size: 3rem;
    letter-spacing: -1px;
  }
}
.kv-message__districts {
  width: 100%;
  padding-bottom: 1rem;
}
@container (min-width: 768px) {
  .kv-message__districts {
    width: calc(100% - 21ch);
  }
}
.kv-message__district {
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.0125rem;
}
@container (min-width: 768px) {
  .kv-message__district {
    display: inline;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .kv-message__district:not(:last-child):after {
    content: ", ";
  }
}
.kv-message__button {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.0125rem;
  margin-top: -1rem;
}
@container (min-width: 768px) {
  .kv-message__button {
    display: none;
  }
}
.kv-message__other {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s;
}
.kv-message__other > div {
  overflow: hidden;
}
.kv-message__other--shown {
  grid-template-rows: 1fr;
}
@container (min-width: 768px) {
  .kv-message__other {
    display: inline;
  }
  .kv-message__other > div {
    display: inline;
    overflow: initial;
  }
}
.kv-source {
  justify-content: space-between;
  margin-top: 1rem;
  color: #8690a7;
  font-size: 0.75rem;
  line-height: 1rem;
}
.kv-percent-tag,
.kv-source {
  display: flex;
  align-items: center;
}
.kv-percent-tag {
  padding: 0.25rem 0.25rem 0.25rem 0.5rem;
  background: #fff;
  border: 1px solid #e1e8fb;
  border-radius: 4px;
  font-family: sans-serif;
  gap: 0.25rem;
}
.kv-percent-tag--skeleton {
  padding: 0.25rem 0.5rem;
}
.kv-percent-tag--disabled {
  background-color: #f2f4f8;
  cursor: not-allowed;
}
.kv-percent-tag:hover {
  background-color: #f2f4f8;
}
.kv-percent-tag__title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.2px;
  color: #52556d;
}
.kv-percent-tag__number {
  padding: 0 4px;
  background: #f2f4f8;
  border-radius: 2px;
  font-size: 0.6875rem;
  line-height: 1rem;
  letter-spacing: 0.3px;
  font-weight: 600;
  color: #52556d;
  text-align: right;
  width: 32px;
}
.kv-percent-tag__number--transparent {
  background: transparent;
  color: #6dd400;
}
.kv-percent-tag__icon {
  display: flex;
  margin: 0 auto;
}
.kv-percent-tag__icon,
.kv-percent-tag__icon svg {
  width: 12px;
  height: 12px;
}
.kv-percent-tag--active {
  background: #e1e8fb;
  border-color: rgba(4, 60, 220, 0.06);
}
.kv-percent-tag--active .kv-percent-tag__title {
  color: #043cdc;
}
.kv-percent-tag--active .kv-percent-tag__number {
  color: #043cdc;
  background: #fff;
}
.kv-percent-tag--active .kv-percent-tag__number--transparent {
  background: transparent;
  color: #6dd400;
}
.kv-percent-tag--active
  .kv-percent-tag__number--transparent
  .kv-percent-tag__icon {
  background: #fff;
  border-radius: 100%;
}
.kv-percent-tag--active:hover {
  background: #e1e8fb;
}
.kv-counter-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
.kv-counter__box {
  background-color: #fff;
  padding: 0.5rem 0.75rem 10px;
  border-radius: 8px;
  border: 1px solid #e1e8fb;
  flex: 1 1;
}
@container (min-width: 768px) {
  .kv-counter__box {
    width: 130px;
  }
}
.kv-counter__box-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #52556d;
  margin-bottom: 2px;
}
.kv-counter__box-number {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 19.2px;
  color: #000528;
  font-weight: 500;
  margin-bottom: 4px;
}
.kv-counter__box-icon {
  width: 16px;
  height: 16px;
  color: #6dd400;
}
.kv-counter__box-progress {
  width: 100%;
  height: 4px;
  background: #e1e8fb;
  border-radius: 8px;
  position: relative;
}
.kv-counter__box-progress-bar {
  height: 100%;
  background: #043cdc;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
}
.kv-counter__box-progress--green .kv-counter__box-progress-bar {
  background: #6dd400;
}
.kv-counter__box--time {
  text-align: right;
}
.kv-counter__box--time .kv-counter__box-title {
  display: block;
}
.kv-counter__box--time .kv-counter__box-number {
  font-weight: 400;
  color: #52556d;
  text-align: right;
}
.kv-seats-chart {
  text-align: center;
}
.kv-seats-chart__image {
  max-height: 200px;
}
.kv-seats-chart__mandates-count {
  font-family: sans-serif;
}
.kv-candidate {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e1e8fb;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.kv-candidate--not-elected {
  background-color: #fee8e8;
}
@container (min-width: 768px) {
  .kv-candidate__name-results {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }
}
.kv-candidate__name-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5rem;
}
@container (min-width: 768px) {
  .kv-candidate__name-wrapper {
    gap: 1rem;
  }
}
.kv-candidate__number {
  color: #52556d;
}
.kv-candidate__results {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0;
}
@container (min-width: 768px) {
  .kv-candidate__results {
    font-size: 1rem;
    line-height: 1.5rem;
    margin: 0;
  }
  .kv-candidate__votes {
    width: 130px;
    text-align: right;
  }
}
.kv-candidate__info {
  color: #52556d;
}
.kv-candidates-separator {
  padding: 0.75rem;
  border-bottom: 1px solid #e1e8fb;
  margin: 0.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.kv-candidates-separator--not-elected {
  margin-top: 0.25rem;
  background-color: #fee8e8;
  position: relative;
  color: #bf141b;
}
.kv-candidates-separator--not-elected-border:before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #bf141b;
  left: 0;
  right: 0;
  top: -0.25rem;
}
.kv-area-search__inputs {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
@container (min-width: 768px) {
  .kv-area-search__inputs {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}
@container (min-width: 992px) {
  .kv-area-search__inputs {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .kv-area-search__inputs--coalition {
    grid-template-columns: 1fr auto 1fr 1fr 1fr;
  }
}
.kv-area-search__parties {
  margin-top: 0.5rem;
}
@container (min-width: 992px) {
  .kv-area-search__parties {
    margin-top: 0;
    padding-top: 1rem;
  }
}
.kv-area-search__search {
  margin-bottom: 0.5rem;
}
.kv-area-search__search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 51;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.kv-area-search__search-results--no-results {
  padding: 8px;
}
.kv-area-search__search-result {
  padding: 8px 16px;
  background-color: transparent;
  border: none;
  text-align: left;
  font-size: 18px;
  transition: none;
}
.kv-area-search__search-result-text {
  text-decoration: underline;
}
.kv-area-search__search-result--active {
  background-color: #f0f3fd;
}
.kv-area-search__search-result-heading {
  padding: 5px 5px 0 8px;
  font-size: 16px;
  margin-top: 3px;
  font-weight: 700;
}
.kv-breadcrumb {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.kv-breadcrumb__item {
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.2px;
  color: #52556d;
}
.kv-breadcrumb__item:hover {
  text-decoration: underline;
}
.kv-breadcrumb__item:last-child {
  color: #000528;
  font-weight: 600;
  pointer-events: none;
}
.kv-breadcrumb__item:last-child:hover {
  text-decoration: none;
}
.kv-breadcrumb__separator {
  display: inline-flex;
}
.sv-candidate {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}
@container (min-width: 576px) {
  .sv-candidate {
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@container (min-width: 992px) {
  .sv-candidate {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.sv-candidate__avatar {
  display: flex;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 100%;
}
@container (min-width: 576px) {
  .sv-candidate__avatar {
    width: 72px;
    height: 72px;
  }
}
.sv-candidate__avatar-placeholder {
  width: 100%;
  height: 100%;
  border: 3px solid;
  border-radius: 100%;
  overflow: hidden;
}
.sv-candidate__avatar-placeholder svg {
  width: 100%;
  height: 100%;
  transform: scale(1.12);
}
.sv-candidate__avatar-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 100%;
  position: relative;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.sv-candidate__avatar-image-line {
  display: inline-flex;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 100%;
  overflow: hidden;
}
.sv-candidate__info {
  width: 100%;
}
.sv-candidate__info-name {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.125rem;
  font-weight: 700;
  color: #000528;
}
@container (min-width: 576px) {
  .sv-candidate__info-name {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
.sv-candidate__info-party {
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.2px;
  color: #52556d;
}
@container (min-width: 576px) {
  .sv-candidate__info-party {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.sv-candidate__info-party--tooltip {
  text-decoration: underline;
  font-weight: 600;
}
.sv-candidate__info-party--not-voting {
  text-decoration: none;
}
.sv-candidate__info-description {
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.2px;
  color: #52556d;
}
@container (min-width: 576px) {
  .sv-candidate__info-description {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.sv-candidate__info-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.2px;
  color: #52556d;
  border-radius: 100%;
  background-color: #f2f4f8;
}
.sv-candidate__stats {
  text-align: right;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
@container (min-width: 576px) {
  .sv-candidate__stats {
    margin-top: 3px;
  }
}
.sv-candidate__stats--single {
  margin-right: 0 !important;
}
.sv-candidate__stats-votes {
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.2px;
  font-weight: 600;
  color: #52556d !important;
}
@container (min-width: 576px) {
  .sv-candidate__stats-votes {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
.sv-candidate__stats-percent {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #000528 !important;
}
@container (min-width: 576px) {
  .sv-candidate__stats-percent {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
.sv-candidate__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.25rem;
}
@container (min-width: 576px) {
  .sv-candidate__tags {
    gap: 0.5rem;
  }
}
.sv-candidate--loser .sv-candidate__info-description,
.sv-candidate--loser .sv-candidate__info-name,
.sv-candidate--loser .sv-candidate__info-party,
.sv-candidate--loser .sv-candidate__stats-percent,
.sv-candidate--loser .sv-candidate__stats-votes {
  color: #888d94;
}
.sv-candidate--loser .sv-candidate__avatar-image img,
.sv-duel__candidate--loser .sv-candidate__avatar-image img {
  opacity: 0.6;
  background: #fff;
}
.sv-candidate--loser .sv-candidate__stats-percent,
.sv-candidate--loser .sv-candidate__stats-votes,
.sv-duel__candidate--loser .sv-candidate__stats-percent,
.sv-duel__candidate--loser .sv-candidate__stats-votes {
  color: #888d94 !important;
}
.sv-search {
  margin-top: 16px;
}
@container (min-width: 992px) {
  .sv-search {
    margin-top: 32px;
  }
}
.sv-area-results__wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #fff;
  border: 1px solid #e1e8fb;
  border-radius: 8px;
  position: relative;
  margin-bottom: 24px;
}
@container (min-width: 768px) {
  .sv-area-results__wrapper {
    margin-bottom: 32px;
  }
}
@container (min-width: 992px) {
  .sv-area-results__wrapper {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
}
.sv-area-results__wrapper-inner {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  position: relative;
}
@container (min-width: 992px) {
  .sv-area-results__wrapper-inner {
    padding-left: 96px;
    padding-right: 96px;
  }
}
.sv-area-results__wrapper .ep-sources {
  padding-bottom: 0;
}
.sv-area-results__title {
  font-family: sans-serif;
  font-size: 1.125rem;
  line-height: 1.375rem;
  color: #000528;
  text-align: center;
  font-weight: 700;
  width: calc(100% - 32px);
  margin: 0 auto;
}
@container (min-width: 992px) {
  .sv-area-results__title {
    width: 100%;
    font-size: 2.25rem;
    line-height: 2.5rem;
    letter-spacing: -0.2px;
  }
}
.sv-area-results__separator {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
@container (min-width: 992px) {
  .sv-area-results__separator {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.sv-area-results__separator-label {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  z-index: 1;
  border-left: 6px solid #fff;
  border-right: 6px solid #fff;
}
.sv-area-results__separator-label span {
  padding: 0 28px;
  border-radius: 4px;
  background-color: #fee8e8;
  color: #bf141b;
  font-weight: 600;
  font-size: 0.6875rem;
  line-height: 1rem;
  letter-spacing: 0.3px;
}
@container (min-width: 992px) {
  .sv-area-results__separator-label span {
    font-size: 0.875rem;
    line-height: 1.25rem;
    letter-spacing: 0.2px;
    padding: 2px 64px;
  }
}
.sv-area-results__separator-line {
  width: 100%;
  height: 1px;
  background: transparent;
  border: 1px dashed #e1e8fb;
  position: absolute;
  z-index: 0;
  top: 7px;
}
@container (min-width: 992px) {
  .sv-area-results__separator-line {
    top: 11px;
  }
}
.sv-area-results__separator--line-only .sv-area-results__separator-line {
  display: block;
  position: relative;
  top: 0;
}
.sv-area-results__counters {
  display: flex;
  flex-direction: row;
  width: -moz-fit-content;
  width: fit-content;
  gap: 2rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5rem;
}
@container (min-width: 768px) {
  .sv-area-results__counters--with-rounds {
    margin-right: 0;
  }
}
.sv-area-results__counters .kv-counter-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-items: end;
}
.sv-area-results__counters .kv-counter__box {
  border: none;
  text-align: center;
  width: 110px;
}
@container (min-width: 480px) {
  .sv-area-results__counters .kv-counter__box {
    width: 140px;
  }
}
.sv-area-results__counters .kv-counter__box-title {
  font-size: 1rem;
  line-height: 1rem;
  color: #52556d;
  margin-bottom: 2px;
  gap: 4px;
}
.sv-area-results__counters .kv-counter__box-title span {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  flex-shrink: 0;
}
@container (min-width: 768px) {
  .sv-area-results__counters .kv-counter__box-title {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-bottom: 6px;
  }
}
.sv-area-results__counters .kv-counter__box-title .icon {
  display: flex;
  width: 16px;
  height: 16px;
}
.sv-area-results__counters .kv-counter__box-number {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
}
@container (min-width: 768px) {
  .sv-area-results__counters .kv-counter__box-number {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
.sv-area-results__close-icon {
  width: 16px;
  height: 16px;
  position: absolute;
  display: flex;
  color: #52556d;
  top: 2px;
  right: 16px;
}
@container (min-width: 992px) {
  .sv-area-results__close-icon {
    top: -24px;
    right: 24px;
  }
}
.sv-area-results__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
@container (min-width: 768px) {
  .sv-area-results__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@container (min-width: 992px) {
  .sv-area-results__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sv-area-results__grid-item {
  background: #fff;
  border: 1px solid #e1e8fb;
  padding: 1rem;
  border-radius: 8px;
}
.sv-area-results__grid-item__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.sv-area-results__grid-item--transparent {
  background: transparent;
}
.sv-search__inputs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
}
@container (min-width: 768px) {
  .sv-search__inputs {
    flex-direction: row;
    width: 100%;
  }
}
.sv-header-region {
  font-size: 0.75rem;
  line-height: 0.875rem;
  letter-spacing: 0.6px;
  font-weight: 600;
  color: #52556d;
  text-transform: uppercase;
}
@container (min-width: 768px) {
  .sv-header-region {
    font-size: 1rem;
    line-height: 1.125rem;
    letter-spacing: 0.5px;
  }
}
.sv-title-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@container (min-width: 768px) {
  .sv-title-wrap {
    display: unset;
    width: max-content;
  }
}
.sv-map-toggle {
  margin-bottom: 8px;
  width: 100%;
}
@container (min-width: 768px) {
  .sv-map-toggle {
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 0;
  }
}
.sv-map-toggle .el-toggle__item {
  flex: 1 1;
  text-align: center;
}
.sv-composition__graph {
  margin-bottom: 32px;
}
@container (min-width: 768px) {
  .sv-composition__graph {
    margin-bottom: 48px;
  }
}
.sv-composition__graph .el-toggle__wrapper {
  margin: 32px auto 0;
}
.sv-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
@container (min-width: 768px) {
  .sv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (min-width: 992px) {
  .sv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sv-grid__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e1e8fb;
  border-radius: 8px;
}
.sv-grid__item-header {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.sv-grid__item--transparent {
  background: transparent !important;
}
.sv-grid__item .sv-candidate {
  margin-top: 0;
  margin-bottom: 0;
}
.sv-grid--elected .sv-grid__item {
  background: #fff;
}
.sv-grid--elected .sv-grid__item--transparent {
  background: transparent;
}
.sv-grid--composition .sv-grid__item {
  background: #fff;
  flex-direction: row;
}
.sv-grid--composition .sv-grid__item--transparent {
  background: transparent;
}
@container (min-width: 576px) {
  .sv-grid--composition .sv-grid__item .sv-candidate__info-name {
    font-size: 1.125rem;
  }
}
.sv-grid--senators {
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem;
}
@container (min-width: 480px) {
  .sv-grid--senators {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container (min-width: 576px) {
  .sv-grid--senators {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sv-grid--senators .sv-grid__item {
  background: #fff;
  padding: 12px;
  gap: 2px;
}
.sv-grid--senators .sv-grid__item--transparent {
  background: transparent;
}
.sv-grid--senators .sv-candidate__avatar {
  width: 49px;
  height: 49px;
}
.sv-grid--senators .sv-header-region {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.sv-grid--senators .sv-candidate__info-name {
  font-size: 0.875rem;
  line-height: 1rem;
}
@container (min-width: 992px) {
  .sv-grid--senators .sv-candidate__info-name {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
.sv-grid--senators .sv-grid__item-header {
  margin-bottom: 0.75rem;
}
@container (min-width: 768px) {
  .sv-grid--senators .sv-grid__item-header {
    margin-bottom: 1rem;
  }
}
.sv__show-more-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  color: #043cdc;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375rem;
  margin: 8px auto 0;
}
.sv__show-more-btn .icon {
  width: 14px;
  height: 8px;
  color: #043cdc;
  display: flex;
}
.sv__show-more-btn .icon svg {
  width: 100%;
  height: 100%;
}
.sv-gradient {
  display: block;
  width: 100%;
  height: 80px;
  position: relative;
  margin-top: -80px;
  background: linear-gradient(0deg, #fbfbfd 0, rgba(251, 251, 253, 0));
  opacity: 0;
  z-index: -1;
}
.sv-gradient--show {
  opacity: 1;
  z-index: 1;
}
.ep-hoverBox--senate {
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e1e8fb;
}
.ep-hoverBox--senate .sv-hoverbox-button {
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.2px;
  color: #043cdc;
  font-weight: 600;
  display: none;
}
.ep-hoverBox--senate.ep-hoverBox--touch {
  padding: 1rem;
}
.ep-hoverBox--senate.ep-hoverBox--touch .sv-hoverbox-button {
  display: block;
}
.ep-hoverBox--senate.ep-hoverBox--touch .ep-hoverBox__close {
  color: #8690a7;
  margin-top: 2px;
  width: 12px;
  height: 12px;
  z-index: 1;
}
@media (min-width: 768px) {
  .ep-hoverBox--senate .ep-hoverBox__title .sv-header-region {
    font-size: 1rem;
    line-height: 1.125rem;
    letter-spacing: 0.5px;
    font-weight: 600;
  }
}
.ep-hoverBox--senate .ep-hoverBox__title-btn {
  width: 100%;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 0;
}
.ep-hoverBox--senate .ep-hoverBox__close {
  right: 16px;
}
.ep-hoverBox--senate .sv-duel .sv-candidate__info-name {
  font-size: 1rem;
  line-height: 1.25rem;
}
@media (min-width: 768px) {
  .ep-hoverBox--senate .sv-duel .sv-candidate__info-name {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.ep-hoverBox--senate .sv-duel .sv-candidate__stats-percent {
  font-size: 1rem;
  line-height: 1.25rem;
}
@media (min-width: 768px) {
  .ep-hoverBox--senate .sv-duel .sv-candidate__stats-percent {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
.ep-hoverBox--senate .sv-candidate {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.sv-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s;
}
.sv-collapse > div {
  overflow: hidden;
}
.sv-collapse--shown {
  grid-template-rows: 1fr;
}
.sv-space-2 {
  margin-bottom: 0.5rem;
}
@container (min-width: 992px) {
  .sv-space-2 {
    margin-bottom: 0;
  }
}
.sv__progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 10px;
  background: #dee0e4;
  margin-top: 0.25rem;
  overflow: hidden;
}
@container (min-width: 576px) {
  .sv__progress-bar {
    height: 16px;
  }
}
.sv__progress-bar__inner {
  height: 8px;
  border-radius: 12px;
}
@container (min-width: 576px) {
  .sv__progress-bar__inner {
    height: 16px;
  }
}
body.global-header-fixed .sv-party__button--sticky {
  top: calc(106px + 1.5rem);
}
@media (min-width: 768px) {
  body.global-header-fixed .sv-party__button--sticky {
    top: calc(122px + 1.5rem);
  }
}
.sv-party {
  margin-bottom: 0.5rem;
}
.sv-party__button {
  cursor: pointer;
  position: relative;
  display: flex;
  padding: 12px 16px;
  border: 1px solid #e1e8fb;
  border-radius: 4px;
  background-color: #fff;
  align-items: center;
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #000528;
  font-weight: 400;
}
.sv-party__button--sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 1.5rem;
  z-index: 2;
}
.sv-party__button--pinned {
  box-shadow: 5px 5px 15px -5px rgba(0, 0, 0, 0.34);
}
.sv-party__color-tab {
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 8px;
  border-radius: 4px 0 0 4px;
}
.sv-party__info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.5rem;
}
@container (min-width: 768px) {
  .sv-party__info {
    flex-direction: row;
    align-items: center;
  }
}
.sv-party__info-name {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 600;
}
@container (min-width: 992px) {
  .sv-party__info-name {
    width: 350px;
  }
}
.sv-party__info-mandates {
  font-size: 0.875rem;
  letter-spacing: 0.2px;
  color: #000528;
}
@container (min-width: 768px) {
  .sv-party__info-mandates {
    font-size: 1rem;
    line-height: 1.375rem;
    margin: 0 auto;
  }
}
.sv-party__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-right: 1rem;
}
.sv-party__icons svg {
  min-width: 14.5px;
  min-height: 16px;
  width: 14.5px;
  height: 16px;
}
@container (min-width: 992px) {
  .sv-party__icons svg {
    min-width: 17.37px;
    min-height: 20px;
    width: 17.37px;
    height: 20px;
  }
}
.sv-party__toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  color: #043cdc;
}
@container (min-width: 768px) {
  .sv-party__toggle {
    width: 80px;
    margin-left: 32px;
    text-align: right;
  }
}
.sv-party__toggle-text {
  flex-grow: 1;
}
.sv-party__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s;
}
.sv-party__content > div {
  overflow: hidden;
}
.sv-party__content--shown {
  grid-template-rows: 1fr;
}
.sv-party__content-inner {
  width: 100%;
}
@container (min-width: 768px) {
  .sv-party__content-inner {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .sv-party__content-inner--composition {
    max-width: 100%;
  }
}
.sv-duel__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@container (min-width: 768px) {
  .sv-duel__list {
    gap: 16px;
  }
}
@media (min-width: 768px) {
  .sv-duel__list--visible {
    margin-top: 0.5rem;
  }
}
.sv-duel__wrapper {
  padding: 12px 16px;
  border: 1px solid #e1e8fb;
  border-radius: 4px;
}
@container (min-width: 768px) {
  .sv-duel__wrapper {
    border-radius: 16px;
    padding: 16px 24px;
  }
}
@container (min-width: 992px) {
  .sv-duel__wrapper {
    padding: 24px 32px;
  }
}
.sv-duel__wrapper--white {
  background: #fff;
}
.sv-duel__wrapper--no-border {
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.sv-duel__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
@container (min-width: 992px) {
  .sv-duel__header {
    margin-bottom: 1rem;
  }
}
.sv-duel__candidates {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.sv-duel__candidates-description {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1.125rem;
  letter-spacing: 0.2px;
  color: #52556d;
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}
@container (min-width: 768px) {
  .sv-duel__candidates-description {
    width: calc(100% - 144px - 32px);
  }
}
@container (min-width: 992px) {
  .sv-duel__candidates-description {
    line-height: 1.25rem;
  }
}
.sv-duel__candidate {
  display: flex;
  gap: 2px;
  width: 100%;
}
@container (min-width: 768px) {
  .sv-duel__candidate {
    gap: 16px;
  }
}
.sv-duel__candidate-info {
  display: flex;
  width: 100%;
}
.sv-duel__candidate-info .sv-candidate__stats {
  margin-left: auto;
  margin-right: 8px;
}
@container (min-width: 768px) {
  .sv-duel__candidate-info .sv-candidate__stats {
    margin-right: 24px;
    margin-top: 0 !important;
  }
}
.sv-duel__candidate-info .sv-candidate__stats-votes {
  font-weight: 600;
}
@container (min-width: 768px) {
  .sv-duel__candidate-info .sv-candidate__stats-votes {
    font-size: 0.875rem;
  }
}
.sv-duel__candidate:nth-child(2),
.sv-duel__candidate:nth-child(2) .sv-duel__candidate-info {
  flex-direction: row-reverse;
  text-align: right;
}
.sv-duel__candidate:nth-child(2) .sv-candidate__stats {
  margin-left: 8px;
  margin-right: auto;
  text-align: left;
}
@container (min-width: 768px) {
  .sv-duel__candidate:nth-child(2) .sv-candidate__stats {
    margin-left: 24px;
  }
}
.sv-duel__candidate--loser {
  color: #888d94;
}
.sv-duel__candidate--loser .sv-candidate__info-name,
.sv-duel__candidate--loser .sv-candidate__stats-votes {
  color: #888d94 !important;
}
.sv-duel__progress {
  height: 12px;
  background: #dee0e4;
  position: relative;
  border-radius: 10px;
  z-index: 10;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;
}
@container (min-width: 768px) {
  .sv-duel__progress {
    width: calc(100% - 144px - 32px);
    height: 16px;
    margin-top: -16px;
  }
}
.sv-duel__progress-bar {
  display: flex;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.sv-duel__progress-center {
  display: block;
  width: 1.1px;
  height: 32px;
  background: #000528;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  left: calc(50% - 0.55px);
  transform: translateY(-50%);
  z-index: -1;
}
@container (min-width: 768px) {
  .sv-duel__progress--single {
    width: calc(100% - 72px - 170px);
    left: -32px;
  }
}
.sv-duel__progress--single .sv-duel__progress-bar-fill {
  border-radius: 10px;
}
.sv-duel .sv-candidate__avatar {
  min-width: 48px;
  min-height: 48px;
}
.sv-duel .sv-candidate__info-description {
  max-width: 50%;
  width: 100%;
}
.sv-duel .sv-candidate__info-description:nth-child(2) {
  text-align: right;
}
.sv-duel .sv-candidate__info-name {
  width: 100% !important;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 700;
}
@container (min-width: 768px) {
  .sv-duel .sv-candidate__info-name {
    font-size: 1.3125rem;
    line-height: 1.625rem;
  }
}
.sv-duel .sv-candidate__info-description--loser {
  color: #888d94;
}
.sv-duel .sv-candidate__info-description--loser .sv-candidate__info-party {
  color: #888d94 !important;
}
.sv-duel .sv-candidate__stats-percent {
  font-size: 1.3125rem;
  line-height: 1.625rem;
}
@container (min-width: 768px) {
  .sv-duel .sv-candidate__stats-percent {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}
.sv-duel .sv-candidate__stats--single {
  flex-direction: column-reverse;
}
.sv-candidate__info-name--loser {
  color: #888d94;
}
@container (min-width: 768px) {
  .sv-duel-progress-wrapper--single .el-tag {
    margin-left: 90px;
  }
}
.sv-related-articles {
  margin-top: 2.5rem;
}
.sv-related-articles__title {
  font-size: 0.75rem;
  line-height: 0.875rem;
  letter-spacing: 0.6px;
  font-weight: 600;
  text-transform: uppercase;
  color: #043cdc;
}
@container (min-width: 768px) {
  .sv-related-articles__title {
    font-size: 0.875rem;
    line-height: 1rem;
    letter-spacing: 0.5px;
  }
}
.sv-related-articles__list {
  display: flex;
  flex-direction: column;
}
.sv-related-articles__article {
  position: relative;
  font-family: sans-serif;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 500;
  color: #000528;
  margin-bottom: 24px;
}
@container (min-width: 768px) {
  .sv-related-articles__article {
    font-size: 1.125rem;
    line-height: 1.375rem;
    margin-bottom: 32px;
  }
}
.sv-related-articles__article:hover {
  text-decoration: none;
  color: #043cdc;
}
.sv-related-articles__article:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e1e8fb;
  position: absolute;
  top: -12px;
}
@container (min-width: 768px) {
  .sv-related-articles__article:before {
    top: -16px;
  }
}
.sv-related-articles__article:first-child {
  margin-top: 16px;
}
@container (min-width: 768px) {
  .sv-related-articles__article:first-child {
    margin-top: 24px;
  }
}
.sv-related-articles__article:first-child:before {
  display: none;
}
.sv-maps {
  display: grid;
  grid-template-columns: calc(43% - 1rem) auto auto;
  grid-template-rows: auto auto;
  grid-gap: 1rem 1.5rem;
  gap: 1rem 1.5rem;
  align-items: end;
  grid-template-areas: "sv-maps__country sv-maps__country sv-maps__country" "sv-maps__city--prague sv-maps__city--ostrava sv-maps__city--brno";
}
@container (min-width: 768px) {
  .sv-maps {
    grid-template-columns: 70% 1fr 1fr;
    grid-template-rows: 50% 50%;
    gap: 0;
    grid-template-areas: "sv-maps__country sv-maps__city--prague sv-maps__city--prague" "sv-maps__country sv-maps__city--ostrava sv-maps__city--brno";
  }
}
.sv-maps__country {
  grid-area: sv-maps__country;
}
@container (min-width: 768px) {
  .sv-maps__country {
    margin-right: 1.5rem;
  }
}
.sv-maps__city {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.sv-maps__city--prague {
  grid-area: sv-maps__city--prague;
}
@container (min-width: 768px) {
  .sv-maps__city--prague {
    width: 75%;
    justify-self: center;
  }
}
.sv-maps__city--ostrava {
  grid-area: sv-maps__city--ostrava;
}
.sv-maps__city--brno {
  grid-area: sv-maps__city--brno;
}
.sv-maps__city-label {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.0625rem;
  color: #52556d;
  font-weight: 600;
}
@container (min-width: 576px) {
  .sv-maps__city-label {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}
.sv-info-note {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  padding: 8px 16px;
  background: #f2f4f8;
  border-radius: 8px;
}
.sv-info-note .icon {
  display: flex;
  color: rgba(0, 40, 140, 0.35);
}
.sv-info-note .icon,
.sv-info-note .icon svg {
  width: 12px;
  height: 12px;
}
.sv-info-note__text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.2px;
  color: #000528;
}
.nested-content--scroll {
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 767.98px) {
  .nested-content--scroll {
    max-height: none !important;
    overflow: hidden;
  }
}
.responsive-embed {
  max-width: 100%;
  width: 100%;
}
.responsive-embed iframe {
  max-width: 100% !important;
  height: 100% !important;
}
.instagram-media-rendered {
  min-width: 250px !important;
  margin-bottom: 0 !important;
}
.mt-n3 {
  margin-top: -1rem !important;
}
.ml-auto {
  margin-left: auto !important;
}
.text-right {
  text-align: right !important;
}
.cd-none {
  display: none !important;
}
.cursor-help {
  cursor: help !important;
}
.cd-xxs-none {
  display: none !important;
}
.cd-xxs-block {
  display: block !important;
}
.cd-xxs-inline {
  display: inline !important;
}
.cd-xxs-inline-block {
  display: inline-block !important;
}
.cd-xxs-flex,
.cd-xxs-flex-reverse {
  display: flex !important;
}
.cd-xxs-flex-reverse {
  flex-direction: row-reverse;
}
.cd-xxs-inline-flex {
  display: inline-flex !important;
}
.cd-xxs-column {
  flex-direction: column !important;
}
.cd-xxs-column-reverse {
  flex-direction: column-reverse !important;
}
.cd-xxs-row {
  flex-direction: row !important;
}
.cd-xxs-row-reverse {
  flex-direction: row-reverse !important;
}
@container (min-width: 480px) {
  .cd-xs-none {
    display: none !important;
  }
  .cd-xs-block {
    display: block !important;
  }
  .cd-xs-inline {
    display: inline !important;
  }
  .cd-xs-inline-block {
    display: inline-block !important;
  }
  .cd-xs-flex,
  .cd-xs-flex-reverse {
    display: flex !important;
  }
  .cd-xs-flex-reverse {
    flex-direction: row-reverse;
  }
  .cd-xs-inline-flex {
    display: inline-flex !important;
  }
  .cd-xs-column {
    flex-direction: column !important;
  }
  .cd-xs-column-reverse {
    flex-direction: column-reverse !important;
  }
  .cd-xs-row {
    flex-direction: row !important;
  }
  .cd-xs-row-reverse {
    flex-direction: row-reverse !important;
  }
}
@container (min-width: 576px) {
  .cd-sm-none {
    display: none !important;
  }
  .cd-sm-block {
    display: block !important;
  }
  .cd-sm-inline {
    display: inline !important;
  }
  .cd-sm-inline-block {
    display: inline-block !important;
  }
  .cd-sm-flex,
  .cd-sm-flex-reverse {
    display: flex !important;
  }
  .cd-sm-flex-reverse {
    flex-direction: row-reverse;
  }
  .cd-sm-inline-flex {
    display: inline-flex !important;
  }
  .cd-sm-column {
    flex-direction: column !important;
  }
  .cd-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .cd-sm-row {
    flex-direction: row !important;
  }
  .cd-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
}
@container (min-width: 768px) {
  .cd-md-none {
    display: none !important;
  }
  .cd-md-block {
    display: block !important;
  }
  .cd-md-inline {
    display: inline !important;
  }
  .cd-md-inline-block {
    display: inline-block !important;
  }
  .cd-md-flex,
  .cd-md-flex-reverse {
    display: flex !important;
  }
  .cd-md-flex-reverse {
    flex-direction: row-reverse;
  }
  .cd-md-inline-flex {
    display: inline-flex !important;
  }
  .cd-md-column {
    flex-direction: column !important;
  }
  .cd-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .cd-md-row {
    flex-direction: row !important;
  }
  .cd-md-row-reverse {
    flex-direction: row-reverse !important;
  }
}
@container (min-width: 992px) {
  .cd-lg-none {
    display: none !important;
  }
  .cd-lg-block {
    display: block !important;
  }
  .cd-lg-inline {
    display: inline !important;
  }
  .cd-lg-inline-block {
    display: inline-block !important;
  }
  .cd-lg-flex,
  .cd-lg-flex-reverse {
    display: flex !important;
  }
  .cd-lg-flex-reverse {
    flex-direction: row-reverse;
  }
  .cd-lg-inline-flex {
    display: inline-flex !important;
  }
  .cd-lg-column {
    flex-direction: column !important;
  }
  .cd-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .cd-lg-row {
    flex-direction: row !important;
  }
  .cd-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
}
@container (min-width: 1200px) {
  .cd-xl-none {
    display: none !important;
  }
  .cd-xl-block {
    display: block !important;
  }
  .cd-xl-inline {
    display: inline !important;
  }
  .cd-xl-inline-block {
    display: inline-block !important;
  }
  .cd-xl-flex,
  .cd-xl-flex-reverse {
    display: flex !important;
  }
  .cd-xl-flex-reverse {
    flex-direction: row-reverse;
  }
  .cd-xl-inline-flex {
    display: inline-flex !important;
  }
  .cd-xl-column {
    flex-direction: column !important;
  }
  .cd-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .cd-xl-row {
    flex-direction: row !important;
  }
  .cd-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
}
@container (min-width: 1400px) {
  .cd-xxl-none {
    display: none !important;
  }
  .cd-xxl-block {
    display: block !important;
  }
  .cd-xxl-inline {
    display: inline !important;
  }
  .cd-xxl-inline-block {
    display: inline-block !important;
  }
  .cd-xxl-flex,
  .cd-xxl-flex-reverse {
    display: flex !important;
  }
  .cd-xxl-flex-reverse {
    flex-direction: row-reverse;
  }
  .cd-xxl-inline-flex {
    display: inline-flex !important;
  }
  .cd-xxl-column {
    flex-direction: column !important;
  }
  .cd-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .cd-xxl-row {
    flex-direction: row !important;
  }
  .cd-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
}
