@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Inherit fonts for inputs and buttons 
/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

html,
body {
  min-height: 100%;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*!
 * Bootstrap Grid v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

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

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.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;
}

.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-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

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

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

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

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

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

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

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

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !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-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !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-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !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-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !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-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !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-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !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;
  }
}
::selection {
  background-color: #222;
  color: #fff;
}
::selection:first-letter {
  background-color: #222;
  color: #fff;
}

a {
  text-decoration: none;
  color: white;
}

html, body {
  font-family: "LCD Solid", sans-serif;
  color: white;
  font-weight: 500;
  font-size: 16px;
  background-color: #222;
}

.page-wrapper {
  width: 100%;
  height: 100vh;
}
.page-wrapper.isLoaded .main-wrapper {
  height: auto;
}

.main-wrapper {
  background-color: white;
  width: 100%;
  height: 100vh;
}

.breadcrumbs {
  color: #9A9A9A;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}
.breadcrumbs ul {
  list-style-type: none;
  display: flex;
  padding-left: 0;
  flex-wrap: wrap;
  row-gap: 10px;
}
.breadcrumbs ul li {
  flex: 0 0 auto;
  max-width: 100%;
}
.breadcrumbs ul li:not(:first-child):before {
  content: " / ";
  margin-left: 5px;
}

iframe,
video {
  border-radius: 20px;
}

strong {
  font-weight: 700;
}

a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0px;
  text-decoration-thickness: 4px;
  text-decoration-color: #b1b1b1;
  text-decoration-skip-ink: none !important;
  transition: text-underline-offset 0.2s ease-in-out, background-color 0.2s ease-in-out 0.12s;
}
a:hover {
  text-underline-offset: -14px;
  text-decoration-skip-ink: none !important;
  background-color: #b1b1b1;
}
a:has(img), a:has(svg) {
  text-decoration: none;
}
a:has(img):hover, a:has(svg):hover {
  background-color: transparent;
}

ul {
  padding-left: 30px;
}

.content-wrapper {
  min-height: calc(70vh - 130px);
}
@media (min-width: 992px) {
  .content-wrapper {
    padding-left: 20px;
  }
}

s {
  text-decoration-thickness: 2px;
}

ol {
  padding-left: 20px;
}

.swiper .swiper-button-prev:after,
.swiper .swiper-rtl .swiper-button-next:after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="37" height="37" viewBox="0 0 37 37" fill="none"><path d="M25.3837 25.3566L17.2337 17.2066C16.2712 16.2441 16.2712 14.6691 17.2337 13.7066L25.3837 5.55664" stroke="%23181935" stroke-width="3.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.swiper .swiper-button-next:after,
.swiper .swiper-rtl .swiper-button-prev:after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="24" viewBox="0 0 14 24" fill="none"><path d="M2.41309 21.6652L10.5631 13.5152C11.5256 12.5527 11.5256 10.9777 10.5631 10.0152L2.41309 1.86523" stroke="%23181935" stroke-width="3.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

@font-face {
  font-family: scoreboard;
  src: url(/assets/scoreboard.ttf);
}
@font-face {
  font-family: Cursed Timer;
  src: url(/assets/CursedTimerUlil-Aznm.ttf);
}
@font-face {
  font-family: LCD Solid;
  src: url(/assets/LcdSolid-VPzB.ttf);
}
@font-face {
  font-family: Arcade In;
  src: url("/assets/8-bit%20Arcade%20In.ttf");
}
@font-face {
  font-family: Arcade Out;
  src: url("/assets/8-bit%20Arcade%20Out.ttf");
}
@font-face {
  font-family: Big Pixel;
  src: url("/assets/Big%20Pixel%20demo.otf");
}
@font-face {
  font-family: Big Pixel Light;
  src: url("/assets/Big%20Pixel%20Light%20demo.otf");
}
@font-face {
  font-family: Big Pixel Shadow;
  src: url("/assets/Big%20Pixel%20Shadow%20demo.otf");
}
.header {
  color: #222;
  font-family: "Anton", sans-serif, sans-serif;
  font-weight: 700;
  font-weight: 400;
  font-size: 45px;
}
.header--join {
  font-size: 48px;
}
.header--small {
  font-size: 24px;
}

.subheader {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 500;
}
.subheader small {
  font-size: 11px;
  font-weight: 500;
  display: block;
  line-height: 1;
}

h1 {
  color: #222;
  font-family: "Anton", sans-serif;
  font-size: 40px;
  font-weight: 700;
}

h2 {
  font-size: 16px;
  font-weight: 600;
}

h3 {
  color: #222;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.img-shadow {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2), 0px 9px 9px 0px rgba(0, 0, 0, 0.17), 0px 20px 12px 0px rgba(0, 0, 0, 0.1), 0px 36px 14px 0px rgba(0, 0, 0, 0.03), 0px 56px 16px 0px rgba(0, 0, 0, 0);
}
.img-responsive {
  width: 100%;
  height: auto;
}
.img-round {
  border-radius: 20px;
}

.text-grey-100 {
  color: #f8f8f8;
}
.text-grey-200 {
  color: #e9e9e9;
}
.text-grey-400 {
  color: #b1b1b1;
}
.text-grey-700 {
  color: #767676;
}
.text-red {
  color: #AC0000;
}
.text-green {
  color: #43B696;
}
.text-green svg, .text-green svg * {
  fill: #43B696;
}

.alert {
  background-color: #AC0000;
  color: white;
}

.h-100 {
  height: 100%;
}

.gap-0 {
  gap: 0;
}
.gap-5 {
  gap: 5px;
}
.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}

.line-height-0 {
  line-height: 0;
}

.label-green {
  background-color: #43B696;
  padding: 5px 15px;
  color: white;
  border-radius: 42px;
  font-size: 12px;
  font-weight: 400;
}

.crm-content p {
  margin-bottom: 10px;
}

.price-old {
  color: #b1b1b1;
  text-decoration: line-through;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #141414;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 4px;
  bottom: 2.5px;
  background-color: #e9e9e9;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #FAF352;
}
input:checked + .slider:before {
  background-color: #141414;
}

input:focus + .slider {
  box-shadow: 0 0 1px #FAF352;
}

input:checked + .slider:before {
  -webkit-transform: translateX(32px);
  -ms-transform: translateX(32px);
  transform: translateX(32px);
}

.black-inverse {
  filter: contrast(0) brightness(3);
}

.spacer {
  width: 100%;
  height: 30px;
}

.col-0 {
  flex: 0 0 auto;
  width: 0;
  padding: 0;
  overflow: hidden;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.overflow-hidden {
  overflow: hidden;
}

.w-100 {
  width: 100%;
}
.w-50 {
  width: 50%;
}

.sticky {
  position: sticky;
  top: 0;
}
.sticky--headerTop {
  top: 140px;
}

.bg-yellow {
  background-color: #FAF352;
}

.text-center {
  text-align: center;
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left;
  }
}
.text-right {
  text-align: right;
}
.text-uppercase {
  text-transform: uppercase;
}

.first-letter:first-letter {
  text-transform: uppercase;
}

.bg-yellow {
  background-color: #FAF352;
}

.promo-header {
  font-family: "Anton", sans-serif;
  font-weight: 700;
  font-size: 47px;
}
@media (max-width: 767px) {
  .promo-header {
    font-size: 20px;
  }
}

.isInvalid {
  border: 1px solid;
  border-radius: 5px;
  padding: 5px;
  border-color: #AC0000;
  color: #AC0000;
}
.isInvalid * {
  color: #AC0000;
}

main.isLoading:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  backdrop-filter: blur(4px);
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><style>.spinner_mHwL{animation:spinner_OeFQ .75s cubic-bezier(0.56,.52,.17,.98) infinite}.spinner_ote2{animation:spinner_ZEPt .75s cubic-bezier(0.56,.52,.17,.98) infinite}@keyframes spinner_OeFQ{0%{cx:4px;r:3px}50%{cx:9px;r:8px}}@keyframes spinner_ZEPt{0%{cx:15px;r:8px}50%{cx:20px;r:3px}}</style><defs><filter id="spinner-gF00"><feGaussianBlur in="SourceGraphic" stdDeviation="1.5" result="y"/><feColorMatrix in="y" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="z"/><feBlend in="SourceGraphic" in2="z"/></filter></defs><g filter="url(%23spinner-gF00)"><circle fill="%23222222" class="spinner_mHwL" cx="4" cy="12" r="3"/><circle fill="%23222222" class="spinner_ote2" cx="15" cy="12" r="8"/></g></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

.bg-loader {
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><style>.spinner_mHwL{animation:spinner_OeFQ .75s cubic-bezier(0.56,.52,.17,.98) infinite}.spinner_ote2{animation:spinner_ZEPt .75s cubic-bezier(0.56,.52,.17,.98) infinite}@keyframes spinner_OeFQ{0%{cx:4px;r:3px}50%{cx:9px;r:8px}}@keyframes spinner_ZEPt{0%{cx:15px;r:8px}50%{cx:20px;r:3px}}</style><defs><filter id="spinner-gF00"><feGaussianBlur in="SourceGraphic" stdDeviation="1.5" result="y"/><feColorMatrix in="y" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="z"/><feBlend in="SourceGraphic" in2="z"/></filter></defs><g filter="url(%23spinner-gF00)"><circle fill="%23222222" class="spinner_mHwL" cx="4" cy="12" r="3"/><circle fill="%23222222" class="spinner_ote2" cx="15" cy="12" r="8"/></g></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

.bg-loader--inverted {
  filter: invert(1);
}

.bg-cover {
  background-size: cover;
}

.loading-info {
  font-size: 12px;
  color: #4E4A4A;
  animation: isFading 1s infinite;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 50px;
}

.container--minHeight {
  min-height: 100vh;
}

.opacity-0 {
  opacity: 0;
}

.swiper-free-mode .swiper-slide *:hover {
  cursor: grab;
}

.isFading {
  animation: isFading 1s infinite;
}

iframe.embed-responsive-item {
  aspect-ratio: 16/9;
  width: 90%;
  height: auto;
  border: none;
  margin: 10px auto;
}

.cursor-pointer {
  cursor: pointer;
}

.error {
  color: #AC0000;
  font-size: 12px;
}

.success {
  background-color: #43B696;
  padding: 10px 20px;
  border-radius: 10px;
  color: white;
  margin-top: 20px;
  text-align: center;
  width: 95%;
  margin: 10px auto 0;
}

.fade-out-after-3s {
  animation: fadeOutZoomIn 0.5s 1 3s;
}

small {
  font-size: 12px;
}

.b-r-10 {
  border-radius: 10px;
}

@keyframes isFading {
  0% {
    opacity: 1;
    filter: blur(0px);
  }
  50% {
    opacity: 0;
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
@keyframes maskRearranging {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutZoomIn {
  0% {
    border-radius: 0;
    opacity: 1;
    transform: scale(1);
  }
  99% {
    border-radius: 0;
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(0);
    display: none;
  }
}
.btn {
  border-radius: 10px;
  border: 1px solid #222;
  padding: 10px 15px;
  font-size: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  flex: 1 0 auto;
  position: relative;
  z-index: 0;
  color: #222;
  background-color: #fff;
}
.btn:after {
  content: "";
  background-color: #222;
  display: block;
  border-radius: 10px;
  width: 0;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
}
.btn:hover, .btn.isActive {
  color: #fff;
  border-color: transparent;
  transition: all 0.25s ease-in-out;
}
.btn:hover:after, .btn.isActive:after {
  animation: buttonHover 0.25s ease-in-out 0s 1 normal forwards;
}
.btn-primary {
  background-color: #141414;
  color: #fff;
  border-color: transparent;
  transition: all 0.25s ease-in-out;
}
.btn-primary:after {
  content: "";
  background-color: #fff;
  border-color: #222;
  display: block;
  border-radius: 10px;
  width: 0;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
}
.btn-primary:hover, .btn-primary.isActive {
  color: #222;
  border-color: transparent;
  transition: all 0.25s ease-in-out;
}
.btn-primary:hover:after, .btn-primary.isActive:after {
  animation: buttonHover 0.25s ease-in-out 0s 1 normal forwards;
}
.btn-primary--inverse {
  background-color: #fff;
  color: #222;
}
.btn-primary--inverse:after {
  content: "";
  background-color: #222;
  border-color: #fff;
  display: block;
  border-radius: 10px;
  width: 0;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
}
.btn-primary--inverse:hover, .btn-primary--inverse.isActive {
  color: #fff;
  background-color: #222;
  border-color: #fff;
  transition: all 0.25s ease-in-out;
}
.btn-primary[disabled=true]:hover {
  color: #fff;
}
.btn-secondary {
  background-color: #FAF352;
  color: #141414;
}
.btn-secondary:hover > * {
  filter: contrast(0) brightness(3);
}
.btn-grey {
  background-color: #e9e9e9;
  color: #141414;
}
.btn-blur {
  backdrop-filter: blur(13px);
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
}
.btn-red {
  background-color: #AC0000;
  color: white;
  border-color: transparent;
}
.btn-red:after {
  content: "";
  background-color: white;
  display: block;
  border-radius: 10px;
  width: 0;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
}
.btn-red:hover, .btn-red.isActive {
  color: #AC0000;
  border-color: #AC0000;
  transition: all 0.25s ease-in-out;
}
.btn-red:hover:after, .btn-red.isActive:after {
  animation: buttonHover 0.25s ease-in-out 0s 1 normal forwards;
}
.btn-red--inverse {
  background-color: white;
  color: #AC0000;
  border-color: #AC0000;
}
.btn-red--inverse:after {
  content: "";
  background-color: #AC0000;
  display: block;
  border-radius: 10px;
  width: 0;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
}
.btn-red--inverse:hover, .btn-red--inverse.isActive {
  color: white;
  border-color: #AC0000;
  transition: all 0.25s ease-in-out;
}
.btn-red--inverse:hover:after, .btn-red--inverse.isActive:after {
  animation: buttonHover 0.25s ease-in-out 0s 1 normal forwards;
}
.btn--inverse {
  border-color: #fff;
}
.btn--inverse:hover, .btn--inverse.isActive {
  background-color: #fff;
  color: #141414;
  border-color: transparent;
  transition: all 0.25s ease-in-out;
}
.btn--inverse:hover:after, .btn--inverse.isActive:after {
  background-color: #fff;
  animation: buttonHover 0.25s ease-in-out 0s 1 normal forwards;
}
.btn--label {
  padding: 6px 11px;
}
.btn--label.filters-list-item.isActive {
  background-color: #141414;
  color: #fff;
  border-color: transparent;
  transition: all 0.25s ease-in-out;
  font-weight: 500;
}
.btn-border {
  border: 1px solid #222;
}
.btn-border.btn {
  border: 1px solid #222;
}
.btn-border.btn:hover {
  color: #222;
}
.btn--short {
  max-width: 150px;
}
.btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn-wrapper--left {
  justify-content: flex-start;
}
.btn-wrapper--center {
  justify-content: center;
}
.btn-wrapper--right {
  justify-content: flex-end;
}
.btn-wrapper .btn {
  flex: 0 0 auto;
}
.btn[disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn[disabled=true]:hover:after {
  animation: none !important;
}
.btn--icon:hover svg {
  filter: invert(1);
}
@media (max-width: 767px) {
  .btn {
    font-size: 13px;
  }
}

a.btn {
  text-decoration: none;
}

@keyframes buttonHover {
  0% {
    width: 10px;
    height: 10px;
    opacity: 0.5;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 1;
    top: 0;
    left: 0;
  }
}
input:not([type=radio]),
textarea,
select {
  border-radius: 12px;
  background: #f8f8f8;
  box-shadow: 0px 44px 12px 0px rgba(191, 191, 191, 0);
  border: 0;
  padding: 10px;
  width: 100%;
}
input:not([type=radio])[type=submit],
textarea[type=submit],
select[type=submit] {
  background-color: #fff;
}
input:not([type=radio])[type=radio],
textarea[type=radio],
select[type=radio] {
  width: auto;
}

label {
  display: block;
}

.label-text {
  font-size: 16px;
  font-weight: 500;
  color: #767676;
  margin-bottom: 5px;
}

.input-radio-container {
  --s: 1em;
  /* control the size */
  --g: 10px;
  /* the gap */
  --c: #222;
  /* the active color */
  display: grid;
  grid-auto-rows: 1fr;
  gap: var(--g);
  position: relative;
  /* and so on ..*/
}
.input-radio-container s {
  font-size: 12px;
}
.input-radio-container:before {
  content: "";
  position: absolute;
  height: calc(var(--s) / 2);
  left: calc(var(--s) / 4 + var(--_x, 0px));
  top: calc(var(--s) / 4);
  background: var(--c);
  border-radius: 50%;
  aspect-ratio: 1;
  transition: 0.4s, left cubic-bezier(0.1, -2000, 0.7, -2000) 0s;
}
.input-radio-container label {
  display: inline-flex;
  line-height: var(--s);
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.input-radio-container input {
  height: var(--s);
  aspect-ratio: 1;
  border: calc(var(--s) / 8) solid var(--_c, #939393);
  border-radius: 50%;
  outline-offset: calc(var(--s) / 10);
  padding: calc(var(--s) / 8);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-size: inherit;
  margin: 0;
  transition: 0.3s;
}
.input-radio-container input:checked {
  --_c: var(--c);
}
.input-radio-container:not(:has(input:checked)):before {
  --_i: -1;
  opacity: 0;
}
.input-radio-container:has(input:checked):before {
  opacity: 1;
  transform: translateY(calc(var(--_i) * (var(--s) + var(--g))));
}
.input-radio-container:has(label:nth-child(1) input:checked):before {
  --_i: 0;
  --_x: 0.02px;
}
.input-radio-container:has(label:nth-child(2) input:checked):before {
  --_i: 1;
  --_x: 0.04px;
}
.input-radio-container:has(label:nth-child(3) input:checked):before {
  --_i: 2;
  --_x: 0.06px;
}
.input-radio-container:has(label:nth-child(4) input:checked):before {
  --_i: 3;
  --_x: 0.08px;
}
.input-radio-container:has(label:nth-child(5) input:checked):before {
  --_i: 4;
  --_x: 0.1px;
}
.input-radio-container:has(label:nth-child(6) input:checked):before {
  --_i: 5;
  --_x: 0.12px;
}
.input-radio-container:has(label:nth-child(7) input:checked):before {
  --_i: 6;
  --_x: 0.14px;
}
.input-radio-container:has(label:nth-child(8) input:checked):before {
  --_i: 7;
  --_x: 0.16px;
}
.input-radio-container:has(label:nth-child(9) input:checked):before {
  --_i: 8;
  --_x: 0.18px;
}
.input-radio-container:has(label:nth-child(10) input:checked):before {
  --_i: 9;
  --_x: 0.2px;
}
.input-radio-container:has(label:nth-child(11) input:checked):before {
  --_i: 10;
  --_x: 0.22px;
}
.input-radio-container:has(label:nth-child(12) input:checked):before {
  --_i: 11;
  --_x: 0.24px;
}
.input-radio-container:has(label:nth-child(13) input:checked):before {
  --_i: 12;
  --_x: 0.26px;
}
.input-radio-container:has(label:nth-child(14) input:checked):before {
  --_i: 13;
  --_x: 0.28px;
}
.input-radio-container:has(label:nth-child(15) input:checked):before {
  --_i: 14;
  --_x: 0.3px;
}
.input-radio-container:has(label:nth-child(16) input:checked):before {
  --_i: 15;
  --_x: 0.32px;
}
.input-radio-container:has(label:nth-child(17) input:checked):before {
  --_i: 16;
  --_x: 0.34px;
}
.input-radio-container:has(label:nth-child(18) input:checked):before {
  --_i: 17;
  --_x: 0.36px;
}
.input-radio-container:has(label:nth-child(19) input:checked):before {
  --_i: 18;
  --_x: 0.38px;
}
.input-radio-container:has(label:nth-child(20) input:checked):before {
  --_i: 19;
  --_x: 0.4px;
}
.input-radio-container:has(label:nth-child(21) input:checked):before {
  --_i: 20;
  --_x: 0.42px;
}
.input-radio-container:has(label:nth-child(22) input:checked):before {
  --_i: 21;
  --_x: 0.44px;
}
.input-radio-container:has(label:nth-child(23) input:checked):before {
  --_i: 22;
  --_x: 0.46px;
}
.input-radio-container:has(label:nth-child(24) input:checked):before {
  --_i: 23;
  --_x: 0.48px;
}
.input-radio-container:has(label:nth-child(25) input:checked):before {
  --_i: 24;
  --_x: 0.5px;
}
.input-radio-container:has(label:nth-child(26) input:checked):before {
  --_i: 25;
  --_x: 0.52px;
}
.input-radio-container:has(label:nth-child(27) input:checked):before {
  --_i: 26;
  --_x: 0.54px;
}
.input-radio-container:has(label:nth-child(28) input:checked):before {
  --_i: 27;
  --_x: 0.56px;
}
.input-radio-container:has(label:nth-child(29) input:checked):before {
  --_i: 28;
  --_x: 0.58px;
}
.input-radio-container:has(label:nth-child(30) input:checked):before {
  --_i: 29;
  --_x: 0.6px;
}
.input-radio-container:has(label:nth-child(31) input:checked):before {
  --_i: 30;
  --_x: 0.62px;
}
.input-radio-container:has(label:nth-child(32) input:checked):before {
  --_i: 31;
  --_x: 0.64px;
}
.input-radio-container:has(label:nth-child(33) input:checked):before {
  --_i: 32;
  --_x: 0.66px;
}
.input-radio-container:has(label:nth-child(34) input:checked):before {
  --_i: 33;
  --_x: 0.68px;
}
.input-radio-container:has(label:nth-child(35) input:checked):before {
  --_i: 34;
  --_x: 0.7px;
}
.input-radio-container:has(label:nth-child(36) input:checked):before {
  --_i: 35;
  --_x: 0.72px;
}
.input-radio-container:has(label:nth-child(37) input:checked):before {
  --_i: 36;
  --_x: 0.74px;
}
.input-radio-container:has(label:nth-child(38) input:checked):before {
  --_i: 37;
  --_x: 0.76px;
}
.input-radio-container:has(label:nth-child(39) input:checked):before {
  --_i: 38;
  --_x: 0.78px;
}
.input-radio-container:has(label:nth-child(40) input:checked):before {
  --_i: 39;
  --_x: 0.8px;
}
.input-radio-container:has(label:nth-child(41) input:checked):before {
  --_i: 40;
  --_x: 0.82px;
}
.input-radio-container:has(label:nth-child(42) input:checked):before {
  --_i: 41;
  --_x: 0.84px;
}
.input-radio-container:has(label:nth-child(43) input:checked):before {
  --_i: 42;
  --_x: 0.86px;
}
.input-radio-container:has(label:nth-child(44) input:checked):before {
  --_i: 43;
  --_x: 0.88px;
}
.input-radio-container:has(label:nth-child(45) input:checked):before {
  --_i: 44;
  --_x: 0.9px;
}
.input-radio-container:has(label:nth-child(46) input:checked):before {
  --_i: 45;
  --_x: 0.92px;
}
.input-radio-container:has(label:nth-child(47) input:checked):before {
  --_i: 46;
  --_x: 0.94px;
}
.input-radio-container:has(label:nth-child(48) input:checked):before {
  --_i: 47;
  --_x: 0.96px;
}
.input-radio-container:has(label:nth-child(49) input:checked):before {
  --_i: 48;
  --_x: 0.98px;
}
.input-radio-container:has(label:nth-child(50) input:checked):before {
  --_i: 49;
  --_x: 1px;
}
.input-radio-container:has(label:nth-child(51) input:checked):before {
  --_i: 50;
  --_x: 1.02px;
}
.input-radio-container:has(label:nth-child(52) input:checked):before {
  --_i: 51;
  --_x: 1.04px;
}
.input-radio-container:has(label:nth-child(53) input:checked):before {
  --_i: 52;
  --_x: 1.06px;
}
.input-radio-container:has(label:nth-child(54) input:checked):before {
  --_i: 53;
  --_x: 1.08px;
}
.input-radio-container:has(label:nth-child(55) input:checked):before {
  --_i: 54;
  --_x: 1.1px;
}
.input-radio-container:has(label:nth-child(56) input:checked):before {
  --_i: 55;
  --_x: 1.12px;
}
.input-radio-container:has(label:nth-child(57) input:checked):before {
  --_i: 56;
  --_x: 1.14px;
}
.input-radio-container:has(label:nth-child(58) input:checked):before {
  --_i: 57;
  --_x: 1.16px;
}
.input-radio-container:has(label:nth-child(59) input:checked):before {
  --_i: 58;
  --_x: 1.18px;
}
.input-radio-container:has(label:nth-child(60) input:checked):before {
  --_i: 59;
  --_x: 1.2px;
}
.input-radio-container:has(label:nth-child(61) input:checked):before {
  --_i: 60;
  --_x: 1.22px;
}
.input-radio-container:has(label:nth-child(62) input:checked):before {
  --_i: 61;
  --_x: 1.24px;
}
.input-radio-container:has(label:nth-child(63) input:checked):before {
  --_i: 62;
  --_x: 1.26px;
}
.input-radio-container:has(label:nth-child(64) input:checked):before {
  --_i: 63;
  --_x: 1.28px;
}
.input-radio-container:has(label:nth-child(65) input:checked):before {
  --_i: 64;
  --_x: 1.3px;
}
.input-radio-container:has(label:nth-child(66) input:checked):before {
  --_i: 65;
  --_x: 1.32px;
}
.input-radio-container:has(label:nth-child(67) input:checked):before {
  --_i: 66;
  --_x: 1.34px;
}
.input-radio-container:has(label:nth-child(68) input:checked):before {
  --_i: 67;
  --_x: 1.36px;
}
.input-radio-container:has(label:nth-child(69) input:checked):before {
  --_i: 68;
  --_x: 1.38px;
}
.input-radio-container:has(label:nth-child(70) input:checked):before {
  --_i: 69;
  --_x: 1.4px;
}
.input-radio-container:has(label:nth-child(71) input:checked):before {
  --_i: 70;
  --_x: 1.42px;
}
.input-radio-container:has(label:nth-child(72) input:checked):before {
  --_i: 71;
  --_x: 1.44px;
}
.input-radio-container:has(label:nth-child(73) input:checked):before {
  --_i: 72;
  --_x: 1.46px;
}
.input-radio-container:has(label:nth-child(74) input:checked):before {
  --_i: 73;
  --_x: 1.48px;
}
.input-radio-container:has(label:nth-child(75) input:checked):before {
  --_i: 74;
  --_x: 1.5px;
}
.input-radio-container:has(label:nth-child(76) input:checked):before {
  --_i: 75;
  --_x: 1.52px;
}
.input-radio-container:has(label:nth-child(77) input:checked):before {
  --_i: 76;
  --_x: 1.54px;
}
.input-radio-container:has(label:nth-child(78) input:checked):before {
  --_i: 77;
  --_x: 1.56px;
}
.input-radio-container:has(label:nth-child(79) input:checked):before {
  --_i: 78;
  --_x: 1.58px;
}
.input-radio-container:has(label:nth-child(80) input:checked):before {
  --_i: 79;
  --_x: 1.6px;
}
.input-radio-container:has(label:nth-child(81) input:checked):before {
  --_i: 80;
  --_x: 1.62px;
}
.input-radio-container:has(label:nth-child(82) input:checked):before {
  --_i: 81;
  --_x: 1.64px;
}
.input-radio-container:has(label:nth-child(83) input:checked):before {
  --_i: 82;
  --_x: 1.66px;
}
.input-radio-container:has(label:nth-child(84) input:checked):before {
  --_i: 83;
  --_x: 1.68px;
}
.input-radio-container:has(label:nth-child(85) input:checked):before {
  --_i: 84;
  --_x: 1.7px;
}
.input-radio-container:has(label:nth-child(86) input:checked):before {
  --_i: 85;
  --_x: 1.72px;
}
.input-radio-container:has(label:nth-child(87) input:checked):before {
  --_i: 86;
  --_x: 1.74px;
}
.input-radio-container:has(label:nth-child(88) input:checked):before {
  --_i: 87;
  --_x: 1.76px;
}
.input-radio-container:has(label:nth-child(89) input:checked):before {
  --_i: 88;
  --_x: 1.78px;
}
.input-radio-container:has(label:nth-child(90) input:checked):before {
  --_i: 89;
  --_x: 1.8px;
}
.input-radio-container:has(label:nth-child(91) input:checked):before {
  --_i: 90;
  --_x: 1.82px;
}
.input-radio-container:has(label:nth-child(92) input:checked):before {
  --_i: 91;
  --_x: 1.84px;
}
.input-radio-container:has(label:nth-child(93) input:checked):before {
  --_i: 92;
  --_x: 1.86px;
}
.input-radio-container:has(label:nth-child(94) input:checked):before {
  --_i: 93;
  --_x: 1.88px;
}
.input-radio-container:has(label:nth-child(95) input:checked):before {
  --_i: 94;
  --_x: 1.9px;
}
.input-radio-container:has(label:nth-child(96) input:checked):before {
  --_i: 95;
  --_x: 1.92px;
}
.input-radio-container:has(label:nth-child(97) input:checked):before {
  --_i: 96;
  --_x: 1.94px;
}
.input-radio-container:has(label:nth-child(98) input:checked):before {
  --_i: 97;
  --_x: 1.96px;
}
.input-radio-container:has(label:nth-child(99) input:checked):before {
  --_i: 98;
  --_x: 1.98px;
}
.input-radio-container:has(label:nth-child(100) input:checked):before {
  --_i: 99;
  --_x: 2px;
}
.input-radio-container:has(label:nth-child(101) input:checked):before {
  --_i: 100;
  --_x: 2.02px;
}
.input-radio-container:has(label:nth-child(102) input:checked):before {
  --_i: 101;
  --_x: 2.04px;
}
.input-radio-container:has(label:nth-child(103) input:checked):before {
  --_i: 102;
  --_x: 2.06px;
}
.input-radio-container:has(label:nth-child(104) input:checked):before {
  --_i: 103;
  --_x: 2.08px;
}
.input-radio-container:has(label:nth-child(105) input:checked):before {
  --_i: 104;
  --_x: 2.1px;
}
.input-radio-container:has(label:nth-child(106) input:checked):before {
  --_i: 105;
  --_x: 2.12px;
}
.input-radio-container:has(label:nth-child(107) input:checked):before {
  --_i: 106;
  --_x: 2.14px;
}
.input-radio-container:has(label:nth-child(108) input:checked):before {
  --_i: 107;
  --_x: 2.16px;
}
.input-radio-container:has(label:nth-child(109) input:checked):before {
  --_i: 108;
  --_x: 2.18px;
}
.input-radio-container:has(label:nth-child(110) input:checked):before {
  --_i: 109;
  --_x: 2.2px;
}
.input-radio-container:has(label:nth-child(111) input:checked):before {
  --_i: 110;
  --_x: 2.22px;
}
.input-radio-container:has(label:nth-child(112) input:checked):before {
  --_i: 111;
  --_x: 2.24px;
}
.input-radio-container:has(label:nth-child(113) input:checked):before {
  --_i: 112;
  --_x: 2.26px;
}
.input-radio-container:has(label:nth-child(114) input:checked):before {
  --_i: 113;
  --_x: 2.28px;
}
.input-radio-container:has(label:nth-child(115) input:checked):before {
  --_i: 114;
  --_x: 2.3px;
}
.input-radio-container:has(label:nth-child(116) input:checked):before {
  --_i: 115;
  --_x: 2.32px;
}
.input-radio-container:has(label:nth-child(117) input:checked):before {
  --_i: 116;
  --_x: 2.34px;
}
.input-radio-container:has(label:nth-child(118) input:checked):before {
  --_i: 117;
  --_x: 2.36px;
}
.input-radio-container:has(label:nth-child(119) input:checked):before {
  --_i: 118;
  --_x: 2.38px;
}
.input-radio-container:has(label:nth-child(120) input:checked):before {
  --_i: 119;
  --_x: 2.4px;
}
.input-radio-container:has(label:nth-child(121) input:checked):before {
  --_i: 120;
  --_x: 2.42px;
}
.input-radio-container:has(label:nth-child(122) input:checked):before {
  --_i: 121;
  --_x: 2.44px;
}
.input-radio-container:has(label:nth-child(123) input:checked):before {
  --_i: 122;
  --_x: 2.46px;
}
.input-radio-container:has(label:nth-child(124) input:checked):before {
  --_i: 123;
  --_x: 2.48px;
}
.input-radio-container:has(label:nth-child(125) input:checked):before {
  --_i: 124;
  --_x: 2.5px;
}
.input-radio-container:has(label:nth-child(126) input:checked):before {
  --_i: 125;
  --_x: 2.52px;
}
.input-radio-container:has(label:nth-child(127) input:checked):before {
  --_i: 126;
  --_x: 2.54px;
}
.input-radio-container:has(label:nth-child(128) input:checked):before {
  --_i: 127;
  --_x: 2.56px;
}
.input-radio-container:has(label:nth-child(129) input:checked):before {
  --_i: 128;
  --_x: 2.58px;
}
.input-radio-container:has(label:nth-child(130) input:checked):before {
  --_i: 129;
  --_x: 2.6px;
}
.input-radio-container:has(label:nth-child(131) input:checked):before {
  --_i: 130;
  --_x: 2.62px;
}
.input-radio-container:has(label:nth-child(132) input:checked):before {
  --_i: 131;
  --_x: 2.64px;
}
.input-radio-container:has(label:nth-child(133) input:checked):before {
  --_i: 132;
  --_x: 2.66px;
}
.input-radio-container:has(label:nth-child(134) input:checked):before {
  --_i: 133;
  --_x: 2.68px;
}
.input-radio-container:has(label:nth-child(135) input:checked):before {
  --_i: 134;
  --_x: 2.7px;
}
.input-radio-container:has(label:nth-child(136) input:checked):before {
  --_i: 135;
  --_x: 2.72px;
}
.input-radio-container:has(label:nth-child(137) input:checked):before {
  --_i: 136;
  --_x: 2.74px;
}
.input-radio-container:has(label:nth-child(138) input:checked):before {
  --_i: 137;
  --_x: 2.76px;
}
.input-radio-container:has(label:nth-child(139) input:checked):before {
  --_i: 138;
  --_x: 2.78px;
}
.input-radio-container:has(label:nth-child(140) input:checked):before {
  --_i: 139;
  --_x: 2.8px;
}
.input-radio-container:has(label:nth-child(141) input:checked):before {
  --_i: 140;
  --_x: 2.82px;
}
.input-radio-container:has(label:nth-child(142) input:checked):before {
  --_i: 141;
  --_x: 2.84px;
}
.input-radio-container:has(label:nth-child(143) input:checked):before {
  --_i: 142;
  --_x: 2.86px;
}
.input-radio-container:has(label:nth-child(144) input:checked):before {
  --_i: 143;
  --_x: 2.88px;
}
.input-radio-container:has(label:nth-child(145) input:checked):before {
  --_i: 144;
  --_x: 2.9px;
}
.input-radio-container:has(label:nth-child(146) input:checked):before {
  --_i: 145;
  --_x: 2.92px;
}
.input-radio-container:has(label:nth-child(147) input:checked):before {
  --_i: 146;
  --_x: 2.94px;
}
.input-radio-container:has(label:nth-child(148) input:checked):before {
  --_i: 147;
  --_x: 2.96px;
}
.input-radio-container:has(label:nth-child(149) input:checked):before {
  --_i: 148;
  --_x: 2.98px;
}
.input-radio-container:has(label:nth-child(150) input:checked):before {
  --_i: 149;
  --_x: 3px;
}
.input-radio-container:has(label:nth-child(151) input:checked):before {
  --_i: 150;
  --_x: 3.02px;
}
.input-radio-container:has(label:nth-child(152) input:checked):before {
  --_i: 151;
  --_x: 3.04px;
}
.input-radio-container:has(label:nth-child(153) input:checked):before {
  --_i: 152;
  --_x: 3.06px;
}
.input-radio-container:has(label:nth-child(154) input:checked):before {
  --_i: 153;
  --_x: 3.08px;
}
.input-radio-container:has(label:nth-child(155) input:checked):before {
  --_i: 154;
  --_x: 3.1px;
}
.input-radio-container:has(label:nth-child(156) input:checked):before {
  --_i: 155;
  --_x: 3.12px;
}
.input-radio-container:has(label:nth-child(157) input:checked):before {
  --_i: 156;
  --_x: 3.14px;
}
.input-radio-container:has(label:nth-child(158) input:checked):before {
  --_i: 157;
  --_x: 3.16px;
}
.input-radio-container:has(label:nth-child(159) input:checked):before {
  --_i: 158;
  --_x: 3.18px;
}
.input-radio-container:has(label:nth-child(160) input:checked):before {
  --_i: 159;
  --_x: 3.2px;
}
.input-radio-container:has(label:nth-child(161) input:checked):before {
  --_i: 160;
  --_x: 3.22px;
}
.input-radio-container:has(label:nth-child(162) input:checked):before {
  --_i: 161;
  --_x: 3.24px;
}
.input-radio-container:has(label:nth-child(163) input:checked):before {
  --_i: 162;
  --_x: 3.26px;
}
.input-radio-container:has(label:nth-child(164) input:checked):before {
  --_i: 163;
  --_x: 3.28px;
}
.input-radio-container:has(label:nth-child(165) input:checked):before {
  --_i: 164;
  --_x: 3.3px;
}
.input-radio-container:has(label:nth-child(166) input:checked):before {
  --_i: 165;
  --_x: 3.32px;
}
.input-radio-container:has(label:nth-child(167) input:checked):before {
  --_i: 166;
  --_x: 3.34px;
}
.input-radio-container:has(label:nth-child(168) input:checked):before {
  --_i: 167;
  --_x: 3.36px;
}
.input-radio-container:has(label:nth-child(169) input:checked):before {
  --_i: 168;
  --_x: 3.38px;
}
.input-radio-container:has(label:nth-child(170) input:checked):before {
  --_i: 169;
  --_x: 3.4px;
}
.input-radio-container:has(label:nth-child(171) input:checked):before {
  --_i: 170;
  --_x: 3.42px;
}
.input-radio-container:has(label:nth-child(172) input:checked):before {
  --_i: 171;
  --_x: 3.44px;
}
.input-radio-container:has(label:nth-child(173) input:checked):before {
  --_i: 172;
  --_x: 3.46px;
}
.input-radio-container:has(label:nth-child(174) input:checked):before {
  --_i: 173;
  --_x: 3.48px;
}
.input-radio-container:has(label:nth-child(175) input:checked):before {
  --_i: 174;
  --_x: 3.5px;
}
.input-radio-container:has(label:nth-child(176) input:checked):before {
  --_i: 175;
  --_x: 3.52px;
}
.input-radio-container:has(label:nth-child(177) input:checked):before {
  --_i: 176;
  --_x: 3.54px;
}
.input-radio-container:has(label:nth-child(178) input:checked):before {
  --_i: 177;
  --_x: 3.56px;
}
.input-radio-container:has(label:nth-child(179) input:checked):before {
  --_i: 178;
  --_x: 3.58px;
}
.input-radio-container:has(label:nth-child(180) input:checked):before {
  --_i: 179;
  --_x: 3.6px;
}
.input-radio-container:has(label:nth-child(181) input:checked):before {
  --_i: 180;
  --_x: 3.62px;
}
.input-radio-container:has(label:nth-child(182) input:checked):before {
  --_i: 181;
  --_x: 3.64px;
}
.input-radio-container:has(label:nth-child(183) input:checked):before {
  --_i: 182;
  --_x: 3.66px;
}
.input-radio-container:has(label:nth-child(184) input:checked):before {
  --_i: 183;
  --_x: 3.68px;
}
.input-radio-container:has(label:nth-child(185) input:checked):before {
  --_i: 184;
  --_x: 3.7px;
}
.input-radio-container:has(label:nth-child(186) input:checked):before {
  --_i: 185;
  --_x: 3.72px;
}
.input-radio-container:has(label:nth-child(187) input:checked):before {
  --_i: 186;
  --_x: 3.74px;
}
.input-radio-container:has(label:nth-child(188) input:checked):before {
  --_i: 187;
  --_x: 3.76px;
}
.input-radio-container:has(label:nth-child(189) input:checked):before {
  --_i: 188;
  --_x: 3.78px;
}
.input-radio-container:has(label:nth-child(190) input:checked):before {
  --_i: 189;
  --_x: 3.8px;
}
.input-radio-container:has(label:nth-child(191) input:checked):before {
  --_i: 190;
  --_x: 3.82px;
}
.input-radio-container:has(label:nth-child(192) input:checked):before {
  --_i: 191;
  --_x: 3.84px;
}
.input-radio-container:has(label:nth-child(193) input:checked):before {
  --_i: 192;
  --_x: 3.86px;
}
.input-radio-container:has(label:nth-child(194) input:checked):before {
  --_i: 193;
  --_x: 3.88px;
}
.input-radio-container:has(label:nth-child(195) input:checked):before {
  --_i: 194;
  --_x: 3.9px;
}
.input-radio-container:has(label:nth-child(196) input:checked):before {
  --_i: 195;
  --_x: 3.92px;
}
.input-radio-container:has(label:nth-child(197) input:checked):before {
  --_i: 196;
  --_x: 3.94px;
}
.input-radio-container:has(label:nth-child(198) input:checked):before {
  --_i: 197;
  --_x: 3.96px;
}
.input-radio-container:has(label:nth-child(199) input:checked):before {
  --_i: 198;
  --_x: 3.98px;
}
.input-radio-container:has(label:nth-child(200) input:checked):before {
  --_i: 199;
  --_x: 4px;
}
.input-radio-container:has(label:nth-child(201) input:checked):before {
  --_i: 200;
  --_x: 4.02px;
}
.input-radio-container:has(label:nth-child(202) input:checked):before {
  --_i: 201;
  --_x: 4.04px;
}
.input-radio-container:has(label:nth-child(203) input:checked):before {
  --_i: 202;
  --_x: 4.06px;
}
.input-radio-container:has(label:nth-child(204) input:checked):before {
  --_i: 203;
  --_x: 4.08px;
}
.input-radio-container:has(label:nth-child(205) input:checked):before {
  --_i: 204;
  --_x: 4.1px;
}
.input-radio-container:has(label:nth-child(206) input:checked):before {
  --_i: 205;
  --_x: 4.12px;
}
.input-radio-container:has(label:nth-child(207) input:checked):before {
  --_i: 206;
  --_x: 4.14px;
}
.input-radio-container:has(label:nth-child(208) input:checked):before {
  --_i: 207;
  --_x: 4.16px;
}
.input-radio-container:has(label:nth-child(209) input:checked):before {
  --_i: 208;
  --_x: 4.18px;
}
.input-radio-container:has(label:nth-child(210) input:checked):before {
  --_i: 209;
  --_x: 4.2px;
}
.input-radio-container:has(label:nth-child(211) input:checked):before {
  --_i: 210;
  --_x: 4.22px;
}
.input-radio-container:has(label:nth-child(212) input:checked):before {
  --_i: 211;
  --_x: 4.24px;
}
.input-radio-container:has(label:nth-child(213) input:checked):before {
  --_i: 212;
  --_x: 4.26px;
}
.input-radio-container:has(label:nth-child(214) input:checked):before {
  --_i: 213;
  --_x: 4.28px;
}
.input-radio-container:has(label:nth-child(215) input:checked):before {
  --_i: 214;
  --_x: 4.3px;
}
.input-radio-container:has(label:nth-child(216) input:checked):before {
  --_i: 215;
  --_x: 4.32px;
}
.input-radio-container:has(label:nth-child(217) input:checked):before {
  --_i: 216;
  --_x: 4.34px;
}
.input-radio-container:has(label:nth-child(218) input:checked):before {
  --_i: 217;
  --_x: 4.36px;
}
.input-radio-container:has(label:nth-child(219) input:checked):before {
  --_i: 218;
  --_x: 4.38px;
}
.input-radio-container:has(label:nth-child(220) input:checked):before {
  --_i: 219;
  --_x: 4.4px;
}
.input-radio-container:has(label:nth-child(221) input:checked):before {
  --_i: 220;
  --_x: 4.42px;
}
.input-radio-container:has(label:nth-child(222) input:checked):before {
  --_i: 221;
  --_x: 4.44px;
}
.input-radio-container:has(label:nth-child(223) input:checked):before {
  --_i: 222;
  --_x: 4.46px;
}
.input-radio-container:has(label:nth-child(224) input:checked):before {
  --_i: 223;
  --_x: 4.48px;
}
.input-radio-container:has(label:nth-child(225) input:checked):before {
  --_i: 224;
  --_x: 4.5px;
}
.input-radio-container:has(label:nth-child(226) input:checked):before {
  --_i: 225;
  --_x: 4.52px;
}
.input-radio-container:has(label:nth-child(227) input:checked):before {
  --_i: 226;
  --_x: 4.54px;
}
.input-radio-container:has(label:nth-child(228) input:checked):before {
  --_i: 227;
  --_x: 4.56px;
}
.input-radio-container:has(label:nth-child(229) input:checked):before {
  --_i: 228;
  --_x: 4.58px;
}
.input-radio-container:has(label:nth-child(230) input:checked):before {
  --_i: 229;
  --_x: 4.6px;
}
.input-radio-container:has(label:nth-child(231) input:checked):before {
  --_i: 230;
  --_x: 4.62px;
}
.input-radio-container:has(label:nth-child(232) input:checked):before {
  --_i: 231;
  --_x: 4.64px;
}
.input-radio-container:has(label:nth-child(233) input:checked):before {
  --_i: 232;
  --_x: 4.66px;
}
.input-radio-container:has(label:nth-child(234) input:checked):before {
  --_i: 233;
  --_x: 4.68px;
}
.input-radio-container:has(label:nth-child(235) input:checked):before {
  --_i: 234;
  --_x: 4.7px;
}
.input-radio-container:has(label:nth-child(236) input:checked):before {
  --_i: 235;
  --_x: 4.72px;
}
.input-radio-container:has(label:nth-child(237) input:checked):before {
  --_i: 236;
  --_x: 4.74px;
}
.input-radio-container:has(label:nth-child(238) input:checked):before {
  --_i: 237;
  --_x: 4.76px;
}
.input-radio-container:has(label:nth-child(239) input:checked):before {
  --_i: 238;
  --_x: 4.78px;
}
.input-radio-container:has(label:nth-child(240) input:checked):before {
  --_i: 239;
  --_x: 4.8px;
}
.input-radio-container:has(label:nth-child(241) input:checked):before {
  --_i: 240;
  --_x: 4.82px;
}
.input-radio-container:has(label:nth-child(242) input:checked):before {
  --_i: 241;
  --_x: 4.84px;
}
.input-radio-container:has(label:nth-child(243) input:checked):before {
  --_i: 242;
  --_x: 4.86px;
}
.input-radio-container:has(label:nth-child(244) input:checked):before {
  --_i: 243;
  --_x: 4.88px;
}
.input-radio-container:has(label:nth-child(245) input:checked):before {
  --_i: 244;
  --_x: 4.9px;
}
.input-radio-container:has(label:nth-child(246) input:checked):before {
  --_i: 245;
  --_x: 4.92px;
}
.input-radio-container:has(label:nth-child(247) input:checked):before {
  --_i: 246;
  --_x: 4.94px;
}
.input-radio-container:has(label:nth-child(248) input:checked):before {
  --_i: 247;
  --_x: 4.96px;
}
.input-radio-container:has(label:nth-child(249) input:checked):before {
  --_i: 248;
  --_x: 4.98px;
}
.input-radio-container:has(label:nth-child(250) input:checked):before {
  --_i: 249;
  --_x: 5px;
}
.input-radio-container:has(label:nth-child(251) input:checked):before {
  --_i: 250;
  --_x: 5.02px;
}
.input-radio-container:has(label:nth-child(252) input:checked):before {
  --_i: 251;
  --_x: 5.04px;
}
.input-radio-container:has(label:nth-child(253) input:checked):before {
  --_i: 252;
  --_x: 5.06px;
}
.input-radio-container:has(label:nth-child(254) input:checked):before {
  --_i: 253;
  --_x: 5.08px;
}
.input-radio-container:has(label:nth-child(255) input:checked):before {
  --_i: 254;
  --_x: 5.1px;
}
.input-radio-container:has(label:nth-child(256) input:checked):before {
  --_i: 255;
  --_x: 5.12px;
}
.input-radio-container:has(label:nth-child(257) input:checked):before {
  --_i: 256;
  --_x: 5.14px;
}
.input-radio-container:has(label:nth-child(258) input:checked):before {
  --_i: 257;
  --_x: 5.16px;
}
.input-radio-container:has(label:nth-child(259) input:checked):before {
  --_i: 258;
  --_x: 5.18px;
}
.input-radio-container:has(label:nth-child(260) input:checked):before {
  --_i: 259;
  --_x: 5.2px;
}
.input-radio-container:has(label:nth-child(261) input:checked):before {
  --_i: 260;
  --_x: 5.22px;
}
.input-radio-container:has(label:nth-child(262) input:checked):before {
  --_i: 261;
  --_x: 5.24px;
}
.input-radio-container:has(label:nth-child(263) input:checked):before {
  --_i: 262;
  --_x: 5.26px;
}
.input-radio-container:has(label:nth-child(264) input:checked):before {
  --_i: 263;
  --_x: 5.28px;
}
.input-radio-container:has(label:nth-child(265) input:checked):before {
  --_i: 264;
  --_x: 5.3px;
}
.input-radio-container:has(label:nth-child(266) input:checked):before {
  --_i: 265;
  --_x: 5.32px;
}
.input-radio-container:has(label:nth-child(267) input:checked):before {
  --_i: 266;
  --_x: 5.34px;
}
.input-radio-container:has(label:nth-child(268) input:checked):before {
  --_i: 267;
  --_x: 5.36px;
}
.input-radio-container:has(label:nth-child(269) input:checked):before {
  --_i: 268;
  --_x: 5.38px;
}
.input-radio-container:has(label:nth-child(270) input:checked):before {
  --_i: 269;
  --_x: 5.4px;
}
.input-radio-container:has(label:nth-child(271) input:checked):before {
  --_i: 270;
  --_x: 5.42px;
}
.input-radio-container:has(label:nth-child(272) input:checked):before {
  --_i: 271;
  --_x: 5.44px;
}
.input-radio-container:has(label:nth-child(273) input:checked):before {
  --_i: 272;
  --_x: 5.46px;
}
.input-radio-container:has(label:nth-child(274) input:checked):before {
  --_i: 273;
  --_x: 5.48px;
}
.input-radio-container:has(label:nth-child(275) input:checked):before {
  --_i: 274;
  --_x: 5.5px;
}
.input-radio-container:has(label:nth-child(276) input:checked):before {
  --_i: 275;
  --_x: 5.52px;
}
.input-radio-container:has(label:nth-child(277) input:checked):before {
  --_i: 276;
  --_x: 5.54px;
}
.input-radio-container:has(label:nth-child(278) input:checked):before {
  --_i: 277;
  --_x: 5.56px;
}
.input-radio-container:has(label:nth-child(279) input:checked):before {
  --_i: 278;
  --_x: 5.58px;
}
.input-radio-container:has(label:nth-child(280) input:checked):before {
  --_i: 279;
  --_x: 5.6px;
}
.input-radio-container:has(label:nth-child(281) input:checked):before {
  --_i: 280;
  --_x: 5.62px;
}
.input-radio-container:has(label:nth-child(282) input:checked):before {
  --_i: 281;
  --_x: 5.64px;
}
.input-radio-container:has(label:nth-child(283) input:checked):before {
  --_i: 282;
  --_x: 5.66px;
}
.input-radio-container:has(label:nth-child(284) input:checked):before {
  --_i: 283;
  --_x: 5.68px;
}
.input-radio-container:has(label:nth-child(285) input:checked):before {
  --_i: 284;
  --_x: 5.7px;
}
.input-radio-container:has(label:nth-child(286) input:checked):before {
  --_i: 285;
  --_x: 5.72px;
}
.input-radio-container:has(label:nth-child(287) input:checked):before {
  --_i: 286;
  --_x: 5.74px;
}
.input-radio-container:has(label:nth-child(288) input:checked):before {
  --_i: 287;
  --_x: 5.76px;
}
.input-radio-container:has(label:nth-child(289) input:checked):before {
  --_i: 288;
  --_x: 5.78px;
}
.input-radio-container:has(label:nth-child(290) input:checked):before {
  --_i: 289;
  --_x: 5.8px;
}
.input-radio-container:has(label:nth-child(291) input:checked):before {
  --_i: 290;
  --_x: 5.82px;
}
.input-radio-container:has(label:nth-child(292) input:checked):before {
  --_i: 291;
  --_x: 5.84px;
}
.input-radio-container:has(label:nth-child(293) input:checked):before {
  --_i: 292;
  --_x: 5.86px;
}
.input-radio-container:has(label:nth-child(294) input:checked):before {
  --_i: 293;
  --_x: 5.88px;
}
.input-radio-container:has(label:nth-child(295) input:checked):before {
  --_i: 294;
  --_x: 5.9px;
}
.input-radio-container:has(label:nth-child(296) input:checked):before {
  --_i: 295;
  --_x: 5.92px;
}
.input-radio-container:has(label:nth-child(297) input:checked):before {
  --_i: 296;
  --_x: 5.94px;
}
.input-radio-container:has(label:nth-child(298) input:checked):before {
  --_i: 297;
  --_x: 5.96px;
}
.input-radio-container:has(label:nth-child(299) input:checked):before {
  --_i: 298;
  --_x: 5.98px;
}
.input-radio-container:has(label:nth-child(300) input:checked):before {
  --_i: 299;
  --_x: 6px;
}
.input-radio-container input:disabled {
  background: linear-gradient(#939393 0 0) 50%/100% 20% no-repeat content-box;
  opacity: 0.5;
  cursor: not-allowed;
}
@media print {
  .input-radio-container input[type=radio] {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    background: none;
  }
}
@supports not selector(:has(*)) {
  .input-radio-container:before {
    display: none;
  }
  .input-radio-container input:checked {
    --_c: var(--c);
    background: var(--c) content-box;
  }
}

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

/* Inherit fonts for inputs and buttons 
/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

html,
body {
  min-height: 100%;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.timer {
  padding: 0 15px;
  transition: all 0.25s ease-in-out;
}
.timer-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.25s ease-in-out;
  padding: 20px 0;
}
.timer-container--referee {
  background-color: rgb(0, 0, 34);
  font-family: "scoreboard", cursive;
}
.timer-container--referee .timer-time {
  color: orange;
}
@media (max-width: 767px) {
  .timer-container {
    height: auto;
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.timer-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .timer-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .timer-controls .time-edit {
    grid-column: 1/-1;
  }
  .timer-controls .time-edit .btn {
    width: 80%;
    margin: auto;
  }
}
.timer-time {
  font-size: 8rem;
  font-family: "Cursed Timer", cursive;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.timer-time small {
  font-size: 4rem;
  display: block;
  height: auto;
}
@media (max-width: 767px) {
  .timer-time {
    font-size: 5rem;
  }
  .timer-time small {
    font-size: 2rem;
  }
}

.time-edit {
  position: relative;
}
.time-edit .btn {
  font-weight: 700;
}
.time-edit-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  width: 100%;
  margin-top: 20px;
  user-select: none;
}
.time-edit-controls > div {
  padding: 5px 10px;
  border: 1px solid rgb(107, 107, 107);
  border-radius: 10px;
}
.time-edit-controls span {
  cursor: pointer;
}
@media (max-width: 767px) {
  .time-edit-controls {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
  }
}
@media (max-width: 767px) {
  .time-settings {
    padding: 0 15px;
  }
}

.team-data {
  border-radius: 10px;
  backdrop-filter: brightness(1.2);
}
@media (max-width: 767px) {
  .team-data {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    backdrop-filter: none;
  }
  .team-data-container {
    backdrop-filter: brightness(1.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 0 15px;
  }
  .team-data:first-child {
    border-right: 1px solid #4E4A4A;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .team-data:first-child .team-data-container {
    backdrop-filter: brightness(1.5);
  }
}
.team-name {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-top: 30px;
  font-family: "Big Pixel Light", cursive;
  white-space: pre-wrap;
  word-break: break-all;
  appearance: none;
  background: none;
  border: none;
  text-align: center;
  height: 70px;
}
@media (max-width: 767px) {
  .team-name {
    font-size: 1rem;
  }
}
.team-score {
  font-size: 7rem;
  font-weight: 900;
  color: orangered;
  font-family: "Big Pixel", cursive;
  text-align: center;
}
.team-score-edit {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .team-score {
    font-size: 3rem;
  }
}

input:not([type=radio]).team-name,
textarea.team-name,
select.team-name {
  appearance: none;
  background: none;
  border: none;
  height: auto;
  word-wrap: break-word;
  word-break: break-all;
  resize: none;
}
input:not([type=radio]).team-name:hover,
textarea.team-name:hover,
select.team-name:hover {
  resize: vertical;
}

.game-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
}
.game-part-edit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 150px;
}
.game-part-edit .btn {
  line-height: 0.7;
}

.mobile-controls {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  margin-top: 20px;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: #333;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
  height: 150px;
  z-index: 999;
}
@media (max-width: 767px) {
  .mobile-controls {
    display: flex;
  }
  .mobile-controls svg {
    width: 100px !important;
    height: 100px !important;
  }
}

.team-penalties {
  margin-top: 10px;
}
.team-penalties .penalty-item {
  background: rgba(255, 0, 0, 0.1);
  padding: 5px 10px;
  border-radius: 4px;
}
.team-penalties .penalty-item .penalty-time {
  font-weight: bold;
  font-size: 1.2rem;
}

.team-penalties-display {
  margin-top: 10px;
}
.team-penalties-display .penalty-display {
  font-size: 1.2rem;
  font-weight: bold;
  animation: blink 1s infinite;
  padding: 5px;
  background: rgba(255, 0, 0, 0.2);
  border-radius: 4px;
  margin-top: 5px;
}

@keyframes blink {
  50% {
    opacity: 0.7;
  }
}.nav[data-v-4ce29812] {
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: "Big Pixel Light", sans-serif;
}
.nav-bar[data-v-4ce29812] {
  background-color: #222;
  padding: 10px 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.nav-burger[data-v-4ce29812],
.nav-close[data-v-4ce29812] {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.nav-title[data-v-4ce29812] {
  color: #fff;
  font-weight: 600;
}
.nav-actions[data-v-4ce29812] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link[data-v-4ce29812] {
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.nav-backdrop[data-v-4ce29812] {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.nav-drawer[data-v-4ce29812] {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 85vw);
  background-color: #222;
  transform: translateX(100%);
  transition: transform 200ms ease-in-out;
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.nav-drawer.open[data-v-4ce29812] {
  transform: translateX(0);
}
.nav-drawer-header[data-v-4ce29812] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.nav-drawer-title[data-v-4ce29812] {
  color: #fff;
  font-weight: 600;
}
.nav-links[data-v-4ce29812] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-item[data-v-4ce29812] {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: #fff;
  text-decoration: none;
  padding: 10px 8px;
  border-radius: 6px;
  cursor: pointer;
}
.nav-item.router-link-active[data-v-4ce29812] {
  text-decoration: underline;
}
.nav-locale[data-v-4ce29812] {
  margin-top: 8px;
  padding: 10px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.nav-locale-label[data-v-4ce29812] {
  color: #fff;
  font-size: 14px;
}
.nav-locale-select[data-v-4ce29812] {
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 6px 10px;
}.fade-enter-active, .fade-leave-active {
  transition: all 200ms ease-in-out;
}
.fade-enter-from {
  filter: blur(30px);
  opacity: 0;
  overflow: hidden;
}
.fade-enter-to {
  filter: blur(0);
  opacity: 1;
  overflow: hidden;
}
.fade-leave-from {
  filter: blur(0);
  opacity: 1;
  overflow: hidden;
}
.fade-leave-to {
  filter: blur(30px);
  opacity: 0;
  overflow: hidden;
}