: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-black: #000;
  --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", "Noto Sans", "Liberation Sans", Arial, 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;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-heading-color: #ffffff;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
  --bs-gutter-x: 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;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

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

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

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

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

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

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

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

.float-none {
  float: none !important;
}

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

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

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

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

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

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

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

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

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

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

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

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

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

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

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

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-1 {
  --bs-border-width: 1px;
}

.border-2 {
  --bs-border-width: 2px;
}

.border-3 {
  --bs-border-width: 3px;
}

.border-4 {
  --bs-border-width: 4px;
}

.border-5 {
  --bs-border-width: 5px;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

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

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

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

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

.w-auto {
  width: auto !important;
}

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

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

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

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

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

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

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

.h-auto {
  height: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), 0.75) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

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

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-2xl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

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

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

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

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

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

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

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

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

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

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

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

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

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

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

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

  .d-md-grid {
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

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

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

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

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

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

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

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

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

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

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

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

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

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

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

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

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

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

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

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

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

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

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

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

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

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

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

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

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

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

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

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

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

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

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

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

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

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

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

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

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

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

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

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

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !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;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

@font-face {
  font-family: "Cervo Neue";
  src: url("../fonts/CervoNeue-RegularNeue.eot");
  src: url("../fonts/CervoNeue-RegularNeue.eot?#iefix") format("embedded-opentype"), url("../fonts/CervoNeue-RegularNeue.woff2") format("woff2"), url("../fonts/CervoNeue-RegularNeue.woff") format("woff"), url("../fonts/CervoNeue-RegularNeue.ttf") format("truetype"), url("../fonts/CervoNeue-RegularNeue.svg#CervoNeue-RegularNeue") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Cervo Neue";
  src: url("../fonts/CervoNeue-SemiBoldNeue.eot");
  src: url("../fonts/CervoNeue-SemiBoldNeue.eot?#iefix") format("embedded-opentype"), url("../fonts/CervoNeue-SemiBoldNeue.woff2") format("woff2"), url("../fonts/CervoNeue-SemiBoldNeue.woff") format("woff"), url("../fonts/CervoNeue-SemiBoldNeue.ttf") format("truetype"), url("../fonts/CervoNeue-SemiBoldNeue.svg#CervoNeue-SemiBoldNeue") format("svg");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Cervo Neue";
  src: url("../fonts/CervoNeue-BoldNeue.eot");
  src: url("../fonts/CervoNeue-BoldNeue.eot?#iefix") format("embedded-opentype"), url("../fonts/CervoNeue-BoldNeue.woff2") format("woff2"), url("../fonts/CervoNeue-BoldNeue.woff") format("woff"), url("../fonts/CervoNeue-BoldNeue.ttf") format("truetype"), url("../fonts/CervoNeue-BoldNeue.svg#CervoNeue-BoldNeue") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Cervo Neue";
  src: url("../fonts/CervoNeue-MediumNeue.eot");
  src: url("../fonts/CervoNeue-MediumNeue.eot?#iefix") format("embedded-opentype"), url("../fonts/CervoNeue-MediumNeue.woff2") format("woff2"), url("../fonts/CervoNeue-MediumNeue.woff") format("woff"), url("../fonts/CervoNeue-MediumNeue.ttf") format("truetype"), url("../fonts/CervoNeue-MediumNeue.svg#CervoNeue-MediumNeue") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Cervo Neue Medium";
  src: url("../fonts/CervoNeue-MediumNeueItalic.woff2") format("woff2"), url("../fonts/CervoNeue-MediumNeueItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueRegular.eot");
  src: url("../fonts/HelveticaNeueRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeueRegular.woff2") format("woff2"), url("../fonts/HelveticaNeueRegular.woff") format("woff"), url("../fonts/HelveticaNeueRegular.ttf") format("truetype"), url("../fonts/HelveticaNeueRegular.svg#HelveticaNeue") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Light.eot");
  src: url("../fonts/HelveticaNeue-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeue-Light.woff2") format("woff2"), url("../fonts/HelveticaNeue-Light.woff") format("woff"), url("../fonts/HelveticaNeue-Light.ttf") format("truetype"), url("../fonts/HelveticaNeue-Light.svg#HelveticaNeue-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Medium.eot");
  src: url("../fonts/HelveticaNeue-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeue-Medium.woff2") format("woff2"), url("../fonts/HelveticaNeue-Medium.woff") format("woff"), url("../fonts/HelveticaNeue-Medium.ttf") format("truetype"), url("../fonts/HelveticaNeue-Medium.svg#HelveticaNeue-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Italic.eot");
  src: url("../fonts/HelveticaNeue-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeue-Italic.woff2") format("woff2"), url("../fonts/HelveticaNeue-Italic.woff") format("woff"), url("../fonts/HelveticaNeue-Italic.ttf") format("truetype"), url("../fonts/HelveticaNeue-Italic.svg#HelveticaNeue-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Bold.eot");
  src: url("../fonts/HelveticaNeue-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeue-Bold.woff2") format("woff2"), url("../fonts/HelveticaNeue-Bold.woff") format("woff"), url("../fonts/HelveticaNeue-Bold.ttf") format("truetype"), url("../fonts/HelveticaNeue-Bold.svg#HelveticaNeue-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue Consended";
  src: url("../fonts/HelveticaNeue-BoldCond.eot");
  src: url("../fonts/HelveticaNeue-BoldCond.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeue-BoldCond.woff2") format("woff2"), url("../fonts/HelveticaNeue-BoldCond.woff") format("woff"), url("../fonts/HelveticaNeue-BoldCond.ttf") format("truetype"), url("../fonts/HelveticaNeue-BoldCond.svg#HelveticaNeue-BoldCond") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue Consended";
  src: url("../fonts/HelveticaNeue-CondensedBlack.eot");
  src: url("../fonts/HelveticaNeue-CondensedBlack.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeue-CondensedBlack.woff2") format("woff2"), url("../fonts/HelveticaNeue-CondensedBlack.woff") format("woff"), url("../fonts/HelveticaNeue-CondensedBlack.ttf") format("truetype"), url("../fonts/HelveticaNeue-CondensedBlack.svg#HelveticaNeue-CondensedBlack") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.bordered-blocks, .bordered-blocks.layout > .layout__region {
  --bordered-blocks-width: 276px;
  --bordered-blocks-width-260: 260px;
  --bordered-blocks-margin: 16px;
  --bordered-blocks-margin-half: calc(16px / 2);
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--bordered-blocks-margin-half));
  margin-right: calc(-1 * var(--bordered-blocks-margin-half));
}
@media only screen and (max-width: 480px) {
  .bordered-blocks, .bordered-blocks.layout > .layout__region {
    margin-left: 0;
    margin-right: 0;
  }
}
.bordered-blocks.layout > .layout__region, .bordered-blocks.layout > .layout.layout__region > .layout__region {
  flex: auto;
}

.bordered-blocks-limited .bordered-blocks, .bordered-blocks-limited .bordered-blocks.layout > .layout__region, .bordered-blocks_centered {
  justify-content: center;
}
.bordered-blocks__item {
  position: relative;
  min-width: var(--bordered-blocks-width);
  max-width: var(--bordered-blocks-width);
  min-height: 258px;
  border: 1px solid #BBBBBB;
  border-radius: 21px;
  padding: 30.4px;
  margin-left: var(--bordered-blocks-margin-half);
  margin-right: var(--bordered-blocks-margin-half);
  margin-bottom: 16px;
}
@media only screen and (max-width: 598px) {
  .bordered-blocks__item {
    --bordered-blocks-width: calc(50% - 16px);
  }
}
@media only screen and (max-width: 510px) {
  .bordered-blocks__item {
    padding: 28.8px;
  }
}
@media only screen and (max-width: 480px) {
  .bordered-blocks__item {
    --bordered-blocks-width: 100%;
    margin-left: 0;
    margin-right: 0;
    min-height: 0;
  }
  .bordered-blocks-limited .bordered-blocks__item {
    min-width: 0;
    width: auto;
    max-width: 360px;
    min-height: 258px;
  }
}
.bordered-blocks__item.js-hidden {
  display: none;
}
.bordered-blocks__item_logo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-decoration: none;
  align-items: flex-end;
  min-height: 276px;
  cursor: pointer;
}
.bordered-blocks__item_logo .paragraph--type--bordered-blocks {
  height: 100%;
}
.bordered-blocks__item_logo .paragraph--type--bordered-blocks .field--name-field-bblock-logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 100%;
  align-items: center;
  margin-top: auto;
}
.bordered-blocks__item_logo .paragraph--type--bordered-blocks .field--name-field-bblock-logo img {
  max-width: 178px;
  margin-top: auto;
}
.bordered-blocks__item_logo-eps.bordered-blocks__item_logo .paragraph--type--bordered-blocks .field--name-field-bblock-logo {
  max-height: 192px;
}
.bordered-blocks__item_long {
  min-width: calc(var(--bordered-blocks-width) * 2 + var(--bordered-blocks-margin));
  max-width: calc(var(--bordered-blocks-width) * 2 + var(--bordered-blocks-margin));
}
@media only screen and (max-width: 598px) {
  .bordered-blocks__item_long {
    min-width: calc(100% - 16px);
    max-width: calc(100% - 16px);
  }
}
@media only screen and (max-width: 480px) {
  .bordered-blocks__item_long {
    min-width: 100%;
    max-width: 100%;
  }
}
.bordered-blocks__item_tall {
  min-height: 258px;
}
.bordered-blocks__item_region .icon-text {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.bordered-blocks__item_260 {
  min-width: var(--bordered-blocks-width-260);
  max-width: var(--bordered-blocks-width-260);
}
.bordered-blocks__item .field--name-field-bblock-pdf .pdfpreview .file--application-pdf a {
  color: transparent;
  background: url(/../media/inline-images/file@2x.png) no-repeat;
  width: 77px;
  height: 103px;
  display: block;
  background-size: 100%;
}
.bordered-blocks__item--colored-blue {
  box-shadow: 0 4px 0 #065596;
}
.bordered-blocks__item--colored-red {
  box-shadow: 0 4px 0 #B5132C;
}
.bordered-blocks__item--colored-green {
  box-shadow: 0 4px 0 #16911E;
}
.bordered-blocks__item--colored-black {
  box-shadow: 0 4px 0 #000000;
}
.bordered-blocks__item_line-shadow_blue {
  box-shadow: 0 4px 0 #065596;
}
.bordered-blocks__item .readmore {
  position: absolute;
  bottom: 16px;
  right: 20px;
  text-decoration: none;
  padding-right: 30px;
}
.bordered-blocks__item .readmore::after {
  font-style: normal;
  font-size: 24px;
  position: absolute;
  top: 0;
  margin-top: 0;
  right: 0;
  content: "";
  background: url(../img/icon_chevron-right.svg);
  background-repeat: no-repeat;
  width: 13px;
  height: 22px;
}
.bordered-blocks__item .readmore_red {
  color: #B5132C;
}
.bordered-blocks__item .readmore_red::after {
  background-image: url(../img/icon_chevron-right_red.svg);
}
.bordered-blocks__item .readmore_blue {
  color: #065596;
}
.bordered-blocks__item .readmore_blue::after {
  background-image: url(../img/icon_chevron-right.svg);
}
.bordered-blocks__item .readmore_green {
  color: #16911E;
}
.bordered-blocks__item .readmore_green::after {
  background-image: url(../img/icon_chevron-right_green.svg);
}
.bordered-blocks__item .readmore_black {
  color: #000;
}
.bordered-blocks__item .readmore_black::after {
  background-image: url(../img/icon_chevron-right_black.svg);
}
.bordered-blocks__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  font-family: "Cervo Neue";
}
.bordered-blocks__title_big {
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
}
.bordered-blocks__title p {
  margin: 0;
}
.bordered-blocks__date {
  font-weight: 400;
  font-size: 12px;
  line-height: 19px;
  color: #888888;
}
.bordered-blocks__date p {
  margin: 0;
  padding: 0;
}
.bordered-blocks__body {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #777777;
  margin-top: calc(16px - 3px);
}
.bordered-blocks__body p {
  margin: 0;
}
.bordered-blocks__body a {
  text-decoration: underline;
}
.bordered-blocks__body a:hover {
  text-decoration: none;
}
.bordered-blocks__body .fa-newspaper {
  font-size: 96px;
  display: block;
  text-align: center;
}
.bordered-blocks__logo {
  max-width: 178px;
}
.bordered-blocks__file, .bordered-blocks .field--name-field-bblock-eps a, .bordered-blocks.layout > .layout__region .field--name-field-bblock-eps a {
  width: 100%;
  text-decoration: none;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #777777;
  margin-top: auto;
}
.bordered-blocks__item_logo-eps .bordered-blocks__file, .bordered-blocks__item_logo-eps .bordered-blocks .field--name-field-bblock-eps a, .bordered-blocks .field--name-field-bblock-eps .bordered-blocks__item_logo-eps a {
  display: none;
}
.bordered-blocks__file .fa-download::before, .bordered-blocks .field--name-field-bblock-eps a .fa-download::before {
  width: 12px;
  height: 12px;
  display: inline-block;
  filter: invert(46%) sepia(0%) saturate(1%) hue-rotate(185deg) brightness(100%) contrast(77%);
}
.bordered-blocks .field--name-field-bblock-eps a, .bordered-blocks.layout > .layout__region .field--name-field-bblock-eps a {
  text-align: center;
  display: block;
}
.bordered-blocks .field--name-field-bblock-eps a::before, .bordered-blocks.layout > .layout__region .field--name-field-bblock-eps a::before {
  margin-right: 4px;
  content: "";
  background-image: url("/css/img/download.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  min-height: 4px;
  min-width: 4px;
  width: 12px;
  height: 12px;
  display: inline-block;
  filter: invert(46%) sepia(0%) saturate(1%) hue-rotate(185deg) brightness(100%) contrast(77%);
}
.bordered-blocks__sign {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #777777;
}
.bordered-blocks__link {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  position: absolute;
  right: 32px;
  bottom: 18px;
  text-decoration: none;
  padding-right: 30px;
}
@media only screen and (max-width: 480px) {
  .bordered-blocks__link {
    position: relative;
    display: block;
    margin-left: auto;
    right: 0;
    bottom: 0;
    text-align: right;
  }
}
.bordered-blocks__link:hover {
  text-decoration: underline;
}
.bordered-blocks__link a {
  text-decoration: none;
}
.bordered-blocks__link a:hover {
  text-decoration: underline;
}
.bordered-blocks__link i {
  font-style: normal;
  font-size: 24px;
  position: absolute;
  top: 0;
  margin-top: 0px;
  right: 0;
}
.bordered-blocks__line,
.bordered-blocks .field--name-field-bblock-color,
.bordered-blocks.layout > .layout__region .field--name-field-bblock-color {
  position: absolute;
  width: calc(100% - 64px);
  height: 2px;
  left: 32px;
  bottom: 54px;
}
@media only screen and (max-width: 550px) {
  .bordered-blocks__line,
.bordered-blocks .field--name-field-bblock-color,
.bordered-blocks.layout > .layout__region .field--name-field-bblock-color {
    bottom: 44px;
  }
}
@media only screen and (max-width: 480px) {
  .bordered-blocks__line,
.bordered-blocks .field--name-field-bblock-color,
.bordered-blocks.layout > .layout__region .field--name-field-bblock-color {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.bordered-blocks__item.bordered-blocks__item_line-blue .bordered-blocks__line,
.bordered-blocks__item.bordered-blocks__item_line-blue .field--name-field-bblock-color {
  background: #065596;
}
.bordered-blocks__item.bordered-blocks__item_line-blue .bordered-blocks__link,
.bordered-blocks__item.bordered-blocks__item_line-blue .bordered-blocks__link a {
  color: #065596;
}

.bordered-blocks__item.bordered-blocks__item_line-red .bordered-blocks__line,
.bordered-blocks__item.bordered-blocks__item_line-red .field--name-field-bblock-color {
  background: #B5132C;
}
.bordered-blocks__item.bordered-blocks__item_line-red .bordered-blocks__link,
.bordered-blocks__item.bordered-blocks__item_line-red .bordered-blocks__link a {
  color: #B5132C;
}

.bordered-blocks__item.bordered-blocks__item_line-orange .bordered-blocks__line,
.bordered-blocks__item.bordered-blocks__item_line-orange .field--name-field-bblock-color {
  background: #DE7A28;
}
.bordered-blocks__item.bordered-blocks__item_line-orange .bordered-blocks__link,
.bordered-blocks__item.bordered-blocks__item_line-orange .bordered-blocks__link a {
  color: #DE7A28;
}

.bordered-blocks__item.bordered-blocks__item_line-green .bordered-blocks__line,
.bordered-blocks__item.bordered-blocks__item_line-green .field--name-field-bblock-color {
  background: #16911E;
}
.bordered-blocks__item.bordered-blocks__item_line-green .bordered-blocks__link,
.bordered-blocks__item.bordered-blocks__item_line-green .bordered-blocks__link a {
  color: #16911E;
}

.page-node-32 .bordered-blocks__item:not(.bordered-blocks__item_download) .bordered-blocks__link a::after,
.bordered-blocks_w-links .bordered-blocks__item:not(.bordered-blocks__item_download) .bordered-blocks__link a::after {
  font-style: normal;
  font-size: 24px;
  position: absolute;
  top: 0;
  margin-top: 0;
  right: 0;
  content: "";
  background: url(../img/icon_chevron-right.svg);
  background-repeat: no-repeat;
  width: 13px;
  height: 22px;
}
.page-node-32 .bordered-blocks__item:not(.bordered-blocks__item_download).bordered-blocks__item_line-orange .bordered-blocks__link::after,
.bordered-blocks_w-links .bordered-blocks__item:not(.bordered-blocks__item_download).bordered-blocks__item_line-orange .bordered-blocks__link::after {
  background-image: url(../img/icon_chevron-right_orange.svg);
}
.page-node-32 .bordered-blocks__item:not(.bordered-blocks__item_download).bordered-blocks__item_line-green .bordered-blocks__link::after,
.bordered-blocks_w-links .bordered-blocks__item:not(.bordered-blocks__item_download).bordered-blocks__item_line-green .bordered-blocks__link::after {
  background-image: url(../img/icon_chevron-right_green.svg);
}
.page-node-32 .bordered-blocks__item:not(.bordered-blocks__item_download).bordered-blocks__item_line-red .bordered-blocks__link::after,
.bordered-blocks_w-links .bordered-blocks__item:not(.bordered-blocks__item_download).bordered-blocks__item_line-red .bordered-blocks__link::after {
  background-image: url(../img/icon_chevron-right_red.svg);
}
.page-node-32 .bordered-blocks__item.bordered-blocks__item_download .bordered-blocks__link a,
.bordered-blocks_w-links .bordered-blocks__item.bordered-blocks__item_download .bordered-blocks__link a {
  margin-right: 10px;
}
.page-node-32 .bordered-blocks__item.bordered-blocks__item_download .bordered-blocks__link::after,
.bordered-blocks_w-links .bordered-blocks__item.bordered-blocks__item_download .bordered-blocks__link::after {
  font-style: normal;
  font-size: 24px;
  position: absolute;
  top: 0;
  margin-top: 0px;
  right: 0;
  content: "";
  background: url(../css/img/icon_download.svg);
  background-repeat: no-repeat;
  width: 27px;
  height: 24px;
}

.layout--twocol-section--50-50 .layout__region .bordered-blocks__item {
  min-width: 100%;
  max-width: 100%;
}

:root {
  --margin: 16px;
}

html {
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue";
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #777777;
}

p.nomargin {
  margin: 0;
}

#content {
  font-size: 0.875em;
}

.font-medium {
  font-family: "Cervo Neue";
  font-weight: 500;
}

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

.fa-regular, .fa-solid {
  font-family: "Font Awesome 5 Pro";
}

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

iframe {
  max-width: 100%;
}

.font-red {
  color: #B5132C;
}

.title-cervo,
.cervo-bold-24 {
  font-weight: 700;
  font-size: 1.5rem;
  font-family: "Cervo Neue";
  color: #000;
}

.title-helv,
.helv-bold-24 {
  font-weight: 700;
  font-size: 1.5rem;
  font-family: "Helvetica Neue Consended";
  color: #000;
}

.subtitle-helv {
  font-weight: 700;
  font-size: 1.125rem;
  font-family: "Helvetica Neue Consended";
  color: #000;
}

.text-light-14 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 19px;
  color: #777777;
}

.helv900 {
  font-family: "Helvetica Neue Consended";
  font-weight: 900;
  font-size: 1.5rem;
}

.heading-1, .faq__name {
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: #000000;
}

a {
  text-decoration: underline;
  color: #065596;
  /*-webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -o-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);*/
}
a:hover {
  text-decoration: none;
}

.phone::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_phone.svg);
  width: 14px;
  height: 15px;
  vertical-align: middle;
  margin-right: 5px;
}

.email::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_email.svg);
  width: 14px;
  height: 11px;
  vertical-align: middle;
  margin-right: 5px;
}

b, strong {
  font-weight: 700;
}

.container {
  max-width: 1182px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.container_narrow {
  max-width: 1182px;
}
.container_wide {
  max-width: 1280px;
}
@media only screen and (max-width: 1167px) {
  .container_scrolled {
    padding-right: 0;
  }
}

.columns .col-1 {
  width: calc(1152px / 1);
  margin-left: auto;
  margin-right: auto;
}
.columns .col-2 {
  width: calc(1152px / 2);
  margin-left: auto;
  margin-right: auto;
}
.columns .col-3 {
  width: calc(1152px / 3);
  margin-left: auto;
  margin-right: auto;
}
.columns .col-4 {
  width: calc(1152px / 4);
  margin-left: auto;
  margin-right: auto;
}
.columns .col-5 {
  width: calc(1152px / 5);
  margin-left: auto;
  margin-right: auto;
}
.columns .col-6 {
  width: calc(1152px / 6);
  margin-left: auto;
  margin-right: auto;
}
.columns .col-7 {
  width: calc(1152px / 7);
  margin-left: auto;
  margin-right: auto;
}
.columns .col-8 {
  width: calc(1152px / 8);
  margin-left: auto;
  margin-right: auto;
}
.columns .col-9 {
  width: calc(1152px / 9);
  margin-left: auto;
  margin-right: auto;
}
.columns .col-10 {
  width: calc(1152px / 10);
  margin-left: auto;
  margin-right: auto;
}
.columns .col-11 {
  width: calc(1152px / 11);
  margin-left: auto;
  margin-right: auto;
}
.columns .col-12 {
  width: calc(1152px / 12);
  margin-left: auto;
  margin-right: auto;
}
.columns.columns_percent .col-1 {
  width: calc(100% / 1);
}
.columns.columns_percent .col-2 {
  width: calc(100% / 2);
}
.columns.columns_percent .col-3 {
  width: calc(100% / 3);
}
.columns.columns_percent .col-4 {
  width: calc(100% / 4);
}
.columns.columns_percent .col-5 {
  width: calc(100% / 5);
}
.columns.columns_percent .col-6 {
  width: calc(100% / 6);
}
.columns.columns_percent .col-7 {
  width: calc(100% / 7);
}
.columns.columns_percent .col-8 {
  width: calc(100% / 8);
}
.columns.columns_percent .col-9 {
  width: calc(100% / 9);
}
.columns.columns_percent .col-10 {
  width: calc(100% / 10);
}
.columns.columns_percent .col-11 {
  width: calc(100% / 11);
}
.columns.columns_percent .col-12 {
  width: calc(100% / 12);
}

ul, ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: disc;
  padding-left: 20px;
}

ol {
  padding-left: 20px;
}

/* Not sure if needed but we'll find out
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transition: all 0.45s ease-out;
  overflow-y: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}
.modal_shown {
  opacity: 1;
  visibility: visible;
}
.modal__body {
  background-color: #ffffff;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
}
*/

.fa-icon_newspapper {
  text-align: center;
}
.fa-icon_newspapper::before {
  content: "";
  display: block;
  background: url(../img/icon_newspaper.svg) center center;
  width: 108px;
  height: 72px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.fa-download::before {
  content: "";
  background-image: url("/css/img/download.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  min-height: 4px;
  min-width: 4px;
  width: 12px;
  height: 12px;
  display: inline-block;
}

.fa-file-pdf::before {
  content: "";
  background-image: url("/css/img/file-pdf.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  min-height: 4px;
  min-width: 4px;
  width: 14px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.fa-file-spreadsheet::before {
  content: "";
  background: url(../img/icon_file-spreadsheet.svg) center center;
  width: 14px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.icon {
  display: inline-block;
  vertical-align: top;
}
.icon::before {
  content: "";
  display: block;
}
.icon_address {
  height: 15px;
}
.icon_address::before {
  background: url(../img/icon_address.svg);
  width: 16px;
  height: 15px;
}
.icon_youtube {
  height: 14px;
}
.icon_youtube::before {
  background: url(../img/icon_youtube.svg);
  width: 20px;
  height: 14px;
}
.icon_video {
  height: 19px;
}
.icon_video::before {
  background: url(../img/icon_video.svg);
  width: 16px;
  height: 19px;
}
.icon_calendar {
  height: 15px;
}
.icon_calendar::before {
  background: url(../img/icon_calendar.svg);
  width: 13px;
  height: 15px;
}
.icon_clock {
  height: 15px;
}
.icon_clock::before {
  background: url(../img/icon_clock.svg);
  width: 14px;
  height: 15px;
}
.icon_phone-blue {
  height: 15px;
}
.icon_phone-blue::before {
  background: url(../img/icon_phone-blue.svg);
  width: 14px;
  height: 15px;
}
.icon_chevron-right {
  background: url(../img/icon_chevron-right.svg);
  width: 12px;
  height: 21px;
}
.icon_zoom2 {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
.icon_zoom2::before {
  background: url(../img/icon_zoom-2.svg);
  width: 44px;
  height: 38px;
  background-size: 100%;
  background-repeat: no-repeat;
}
.icon_download {
  display: inline-block;
  vertical-align: middle;
}
.icon_download::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_download.svg) no-repeat;
  width: 21px;
  height: 20px;
  -webkit-background-size: 100%;
  background-size: 100%;
  margin-right: 4px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(5757%) hue-rotate(184deg) brightness(95%) contrast(101%);
}

@media only screen and (max-width: 639px) {
  .layout-right-mobile-top .layout__region--second {
    order: -2;
  }
}

.layout--2-w-padding .layout__region--first {
  padding-right: 8px;
}
.layout--2-w-padding .layout__region--second {
  padding-left: 8px;
}

@media only screen and (min-width: 40em) {
  .layout--twocol-section.layout--twocol-section--67-33 .layout__region--first {
    padding-right: 0.5em;
  }
  .layout--twocol-section.layout--twocol-section--67-33 .layout__region--second {
    padding-left: 0.5em;
  }
}

.text-w-icon_right::after {
  content: "";
  width: 12px;
  height: 13px;
  background: url(../img/icon_search.svg);
  margin-left: 3px;
}

.text-w-image {
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .text-w-image.text-w-image_half {
    flex-wrap: wrap;
  }
}
.text-w-image.text-w-image_half > * {
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .text-w-image.text-w-image_half > * {
    flex: 100%;
  }
}
.text-w-image.text-w-image_half .text-w-image__image {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .text-w-image.text-w-image_half .text-w-image__image {
    order: -2;
  }
}

.header-main__burger {
  position: relative;
  width: 56px;
  height: 40px;
  margin-top: 4px;
  display: none;
  -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -o-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  /*
  span {
    height: 3px;
    width: 100%;
    position: absolute;
    background: #003270;
    margin: 0 auto;
    top: 12px;
  }

  &::before,
  &::after {
    height: 3px;
    width: 100%;
    position: absolute;
    background: #003270;
    margin: 0 auto;
    content: '';
    @include trn();
  }

  &:after {
    bottom: 5px;
  }

  &:before {
    top: 5px;
  }

  &.js-active {
    span {
      opacity: 0;
      transition: 0.5s;
    }

    &:before {
      transform: rotate(38deg);
      top: 9px;
      transition: 0.4s;
    }

    &:after {
      transform: rotate(-38deg);
      bottom: 15px;
      transition: 0.4s;
    }
  }
  */
}
@media only screen and (max-width: 900px) {
  .header-main__burger {
    display: block;
  }
}

.top-line {
  height: 29px;
  background: #085596;
  font-family: Arial;
}
.top-line .container {
  position: relative;
}
.top-line .search-form {
  z-index: 500;
  position: absolute;
  background: #fff;
  width: 250px;
  right: 169px;
  padding: 5px;
  opacity: 0;
  visibility: hidden;
}
.top-line .search-form.js-active {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 420px) {
  .top-line .search-form {
    width: unset;
  }
}
@media only screen and (max-width: 350px) {
  .top-line .search-form {
    margin-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
.top-line_auth {
  background: #B5132C;
}
.top-line ul:not(.contextual-links) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin-left: -8px;
  margin-right: -8px;
  height: 29px;
}
@media only screen and (max-width: 490px) {
  .top-line ul:not(.contextual-links) {
    justify-content: center;
  }
}
@media only screen and (max-width: 428px) {
  .top-line ul:not(.contextual-links) {
    padding-left: 0;
    margin-left: -4px;
    margin-right: -4px;
  }
}
.top-line ul:not(.contextual-links) li a {
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  display: inline-flex;
  align-items: center;
  text-align: center;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-left: 8px;
  margin-right: 8px;
  text-decoration: none;
  white-space: nowrap;
}
@media only screen and (max-width: 428px) {
  .top-line ul:not(.contextual-links) li a {
    margin-left: 4px;
    margin-right: 4px;
  }
}
.top-line ul:not(.contextual-links) li a:hover {
  text-decoration: none;
}
.top-line ul:not(.contextual-links) li a.search::after {
  content: "";
  display: inline-block;
  background: url(../img/icon_search.svg);
  width: 12px;
  height: 12px;
  -webkit-background-size: 100%;
  background-size: 100%;
  margin-left: 3px;
}
.top-line ul:not(.contextual-links) li a.play {
  color: transparent;
  text-indent: -99999px;
  position: relative;
  min-width: 160px;
  margin-right: 0;
  margin-top: -10px;
}
@media only screen and (max-width: 428px) {
  .top-line ul:not(.contextual-links) li a.play {
    min-width: 140px;
  }
}
@media only screen and (max-width: 370px) {
  .top-line ul:not(.contextual-links) li a.play {
    min-width: 130px;
  }
}
@media only screen and (max-width: 350px) {
  .top-line ul:not(.contextual-links) li a.play {
    min-width: 87px;
    margin-top: -45px;
    border-radius: 0;
  }
}
.top-line ul:not(.contextual-links) li a.play::after {
  content: "";
  display: block;
  background-image: url(../img/betsoff_main.png);
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  height: 39px;
  width: 100%;
  top: 0;
  margin-top: 7px;
  border: 4px solid #085596;
  border-top: none;
  border-radius: 0 0 18px 18px;
}
@media only screen and (max-width: 350px) {
  .top-line ul:not(.contextual-links) li a.play::after {
    height: 28px;
    margin-top: 0;
    border-radius: 0;
  }
}
.top-line ul:not(.contextual-links) li a.play-image {
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  display: inline-flex;
  align-items: center;
  text-align: center;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-left: 8px;
  margin-right: 8px;
  text-decoration: none;
  white-space: nowrap;
  color: transparent;
  text-indent: -99999px;
  position: relative;
  min-width: 160px;
  margin-right: 0;
  max-width: 160px;
  border-color: #B5132C;
  margin-top: 7px;
  border: 4px solid #085596;
  border-top: none;
  border-radius: 0 0 18px 18px;
  background: #fff;
}
.top-line ul:not(.contextual-links) li a.play-image img {
  max-width: 100%;
  border-radius: 0 0 18px 18px;
}
.top-line_auth ul:not(.contextual-links) li a.play::after {
  border-color: #B5132C;
}

.header-main {
  border-bottom: 1px solid #dee2e6;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.not-front .header-main {
  margin-bottom: 16px;
}
.header-main .container {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 15px;
}
@media only screen and (max-width: 900px) {
  .header-main .container {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 430px) {
  .header-main__logo {
    max-width: calc(100% - 50px);
  }
}
@media only screen and (max-width: 376px) {
  .header-main__logo img {
    max-width: 210px;
  }
}
@media only screen and (max-width: 900px) {
  .header-main__menu {
    display: none;
  }
}
.header-main__menu.js-active {
  display: block;
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) {
  list-style: none;
  font-family: "Cervo Neue";
  position: relative;
  z-index: 999;
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li {
  display: inline-flex;
  align-items: center;
  margin-left: 14px;
  margin-right: 14px;
  padding: 0;
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li:first-child {
  margin-left: 0;
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 1125px) {
  .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li {
    margin-left: 10px;
    margin-right: 10px;
  }
  .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li:first-child {
    margin-left: 0;
  }
  .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1020px) {
  .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li {
    margin-left: 7px;
    margin-right: 7px;
  }
  .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li:first-child {
    margin-left: 0;
  }
  .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 900px) {
  .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    padding-left: 15px;
  }
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li span,
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li a {
  cursor: pointer;
  padding: 0;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.58px;
  text-transform: capitalize;
  color: #043965;
  text-decoration: none;
}
@media only screen and (max-width: 1160px) {
  .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li span,
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1045px) {
  .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li span,
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li a {
    font-size: 17px;
  }
}
@media only screen and (max-width: 990px) {
  .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li span,
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 940px) {
  .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li span,
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) {
  .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li span,
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li a {
    font-size: 20px;
  }
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li span.my-lottery,
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li a.my-lottery {
  font-style: italic;
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li span:hover,
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li a:hover {
  text-decoration: underline;
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li span.sf-depth-1 > ul,
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li a.sf-depth-1 > ul {
  transform: translateX(-25%);
  background: #fff;
  padding: 6px 32px 10px;
  text-align: left;
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li span.sf-depth-1 > .sf-sub-indicator,
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li a.sf-depth-1 > .sf-sub-indicator {
  position: absolute;
  right: 0;
  margin-right: -15px;
  margin-top: 3px;
}
/*@media only screen and (max-width: 900px) {
  .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li span.sf-depth-1 > .sf-sub-indicator,
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li a.sf-depth-1 > .sf-sub-indicator {
    display: none;
  }
}*/
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li span.sf-depth-1 > .sf-sub-indicator::after,
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li a.sf-depth-1 > .sf-sub-indicator::after {
  display: inline-block;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li.sf-depth-1.menuparent > ul {
  z-index: 1000;
  display: none;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 0.25rem;
  position: absolute;
  min-width: 160px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #212529;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.35);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  overflow: hidden;
  padding-top: 7px !important;
  padding-bottom: 9px !important;
  width: auto !important;
  top: 40px;
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li.sf-depth-1.menuparent > ul > li > a {
  padding: 7px 18px;
  font-family: "Cervo Neue" !important;
  font-weight: 400;
  font-size: 20px;
  white-space: nowrap;
  min-height: 20px;
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li .sf-depth-2.menuparent > ul {
  top: 0;
  background: #fff;
  padding: 5px 32px 15px;
  box-shadow: none;
  border: 2px solid #C4C4C4;
  border-left-color: #fff;
  margin-left: 32px;
  border-top-color: #fff;
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li .sf-depth-2.menuparent > .sf-sub-indicator {
  position: absolute;
  background: url(../img/arrow_down.svg) no-repeat;
  width: 14px;
  height: 9px;
  right: 0;
  left: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(270deg);
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li.active-trail > a {
  font-weight: 700;
  text-decoration: underline;
}
.header-main__menu .sf-accordion-toggle {
  display: none;
}
.header-main__menu #superfish-main-accordion {
  display: block;
  clip: unset;
  position: relative !important;
  height: auto !important;
  overflow: auto !important;
  padding: 0 !important;
  width: auto !important;
}
.header-main__menu #superfish-main-accordion > li .menu-logout,
.header-main__menu #superfish-main-accordion > li a {
  text-decoration: none;
  text-align: center;
  color: #043965;
  font-size: 1.2rem;
  padding: 0.6rem 1.2rem 1.125rem;
  font-weight: 400;
  font-family: "Cervo Neue";
  display: block;
}
.header-main__menu #superfish-main-accordion > li .menu-logout.is-active,
.header-main__menu #superfish-main-accordion > li a.is-active {
  text-decoration: underline;
}
.header-main__menu #superfish-main-accordion > li .menu-logout .sf-sub-indicator,
.header-main__menu #superfish-main-accordion > li a .sf-sub-indicator {
  position: relative;
  display: inline-block;
  top: 3px;
  vertical-align: middle;
  right: 0;
  opacity: 1;
  height: 6px;
  width: 11px;
  margin-left: 3px;
}
.header-main__menu #superfish-main-accordion > li .menu-logout .sf-sub-indicator::after,
.header-main__menu #superfish-main-accordion > li a .sf-sub-indicator::after {
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.header-main__menu #superfish-main-accordion > li > ul {
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.35);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  position: static;
  float: none;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.header-main__menu #superfish-main-accordion > li > ul > li {
  float: none;
}
/*#superfish-main:not(.sf-js-enabled) li.sf-depth-1.menuparent > ul {
  opacity: 0 !important;
}*/

.footer-main {
  min-height: 317px;
  background: #D9E8FA;
  padding-top: 50px;
  margin-top: 80px;
}
.page-node-214 .footer-main, .page-node-216 .footer-main {
  margin-top: 0;
}
.footer-main .container {
  height: 100%;
}
.footer-main__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width: 800px) {
  .footer-main__inner {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 800px) {
  .footer-main__logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 800px) {
  .footer-main__text {
    text-align: center;
    width: 100%;
  }
}
.footer-main__socials {
  margin-left: -7px;
  margin-right: -7px;
  text-align: right;
  margin-bottom: 25px;
}
@media only screen and (max-width: 800px) {
  .footer-main__socials {
    text-align: center;
  }
}
.footer-main__socials a {
  margin-left: 7px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-main__socials a:hover {
  opacity: 0.8;
}
.footer-main__menu {
  margin-bottom: 30px;
  text-align: right;
  color: #023674;
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  font-family: "Cervo Neue Medium";
}
@media only screen and (max-width: 800px) {
  .footer-main__menu {
    text-align: center;
  }
}
@media only screen and (max-width: 590px) {
  .footer-main__menu {
    margin-bottom: 15px;
  }
}
.footer-main__menu span {
  display: inline-block;
}
@media only screen and (max-width: 800px) {
  .footer-main__menu span {
    display: block;
    margin-bottom: 0.5em;
  }
}
.footer-main__menu span::after {
  content: "|";
  margin: 0 1px 0 4px;
  display: inline-block;
  vertical-align: baseline;
}
@media only screen and (max-width: 800px) {
  .footer-main__menu span::after {
    display: none;
  }
}
.footer-main__menu ul:not(.contextual-links) {
  display: inline-block;
  list-style: none;
  text-align: right;
  padding-left: 0;
}
.footer-main__menu ul:not(.contextual-links) li {
  display: inline-block;
}
@media only screen and (max-width: 590px) {
  .footer-main__menu ul:not(.contextual-links) li {
    display: block;
    text-align: center;
    margin-bottom: 7px;
  }
  .footer-main__menu ul:not(.contextual-links) li:last-child {
    margin-bottom: 0;
  }
}
.footer-main__menu ul:not(.contextual-links) li::after {
  content: "|";
  margin: 0 1px 0 4px;
  display: inline-block;
  vertical-align: baseline;
}
@media only screen and (max-width: 590px) {
  .footer-main__menu ul:not(.contextual-links) li::after {
    display: none;
  }
}
.footer-main__menu ul:not(.contextual-links) li:last-child::after {
  display: none;
}
.footer-main__menu ul:not(.contextual-links) li a {
  color: #023674;
  text-decoration: none;
}
.footer-main__menu ul:not(.contextual-links) li a:hover {
  text-decoration: underline;
}
.footer-main__bottom-menu {
  font-family: Helvetica Neue;
  color: #707070;
  text-align: right;
  margin-bottom: 24px;
}
@media only screen and (max-width: 800px) {
  .footer-main__bottom-menu {
    text-align: center;
  }
}
@media only screen and (max-width: 590px) {
  .footer-main__bottom-menu {
    margin-bottom: 15px;
  }
}
.footer-main__bottom-menu ul:not(.contextual-links) {
  list-style: none;
  text-align: right;
  padding-left: 0;
  margin-left: 0;
}
.footer-main__bottom-menu ul:not(.contextual-links) li {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 590px) {
  .footer-main__bottom-menu ul:not(.contextual-links) li {
    display: block;
    text-align: center;
    margin-bottom: 3px;
  }
  .footer-main__bottom-menu ul:not(.contextual-links) li:last-child {
    margin-bottom: 0;
  }
}
.footer-main__bottom-menu ul:not(.contextual-links) li::after {
  content: "|";
  margin: 0 1px 0 3px;
  display: inline-block;
  vertical-align: baseline;
}
@media only screen and (max-width: 590px) {
  .footer-main__bottom-menu ul:not(.contextual-links) li::after {
    display: none;
  }
}
.footer-main__bottom-menu ul:not(.contextual-links) li:last-child::after {
  display: none;
}
.footer-main__bottom-menu ul:not(.contextual-links) li a {
  font-size: 20px;
  line-height: 24px;
  text-align: right;
  color: #707070;
  font-weight: normal;
  text-decoration: none;
}
.footer-main__bottom-menu ul:not(.contextual-links) li a:hover {
  text-decoration: underline;
}
.footer-main__info {
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: right;
  color: #707070;
  font-family: "Cervo Neue Medium";
}
@media only screen and (max-width: 800px) {
  .footer-main__info {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 590px) {
  .footer-main__info {
    text-align: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer-main__info p {
  margin: 0.2em 0;
  padding: 0;
}

.highlight {
  background: #BBBBBB;
  min-height: 472px;
}

.front-slider {
  max-width: 1500px;
  margin: 0 auto;
}
.front-slider img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.welcome {
  max-width: 823px;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 25px;
  margin-bottom: 30px;
  margin-top: -88px;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .welcome {
    max-width: 576px;
    margin-top: 16px;
  }
}
.container_welcome .welcome {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .container_welcome .welcome {
    margin-top: 0;
  }
}
.welcome_auth {
  max-width: 492px;
}
.welcome_user {
  display: none;
}
.welcome.js-active {
  display: block;
}
.welcome.js-hidden {
  display: none;
}
.welcome__header {
  font-size: 1.5rem;
  line-height: 33px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  text-transform: uppercase;
  color: #FFFFFF;
  height: 47px;
  background: #065596;
  border-radius: 25px 25px 0 0;
  font-family: "Cervo Neue";
  font-weight: 600;
}
@media only screen and (max-width: 430px) {
  .welcome__header {
    font-size: 24px;
  }
}
@media only screen and (max-width: 390px) {
  .welcome__header {
    font-size: 16px;
  }
}
.welcome__header_auth {
  background: #B5132C;
}
.welcome__body {
  display: flex;
  justify-content: center;
  padding-top: 13px;
  padding-bottom: 11px;
  min-height: 95px;
  align-items: center;
}
@media only screen and (max-width: 570px) {
  .welcome__body {
    flex-wrap: wrap;
  }
}
.welcome__columns {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: 823px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1em;
  padding-right: 1em;
}
@media only screen and (max-width: 570px) {
  .welcome__columns {
    order: 2;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .welcome__columns_full {
    flex-wrap: wrap;
  }
}
.welcome.welcome_auth .welcome__columns .welcome__item {
  flex: 1;
  max-width: 193px;
}
.welcome__item {
  margin-left: 15px;
  margin-right: 15px;
}
@media only screen and (max-width: 750px) {
  .welcome__item {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .welcome__item_auth {
    flex: 0 0 50%;
    max-width: 50%;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
}
.welcome__title {
  font-weight: bold;
  font-size: 0.9em;
  line-height: 22px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #000000;
}
@media only screen and (min-width: 491px) and (max-width: 700px) {
  .welcome__title {
    font-size: 15px;
  }
}
.welcome__title a {
  min-width: 13px;
  width: 13px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  background: url(../img/icon_info.svg) no-repeat;
  margin-top: 3px;
  margin-left: 4px;
}
.welcome__num {
  background: #e6e6e6;
  box-shadow: inset 0 2px 2px #adadad;
  border-radius: 23px;
  width: 167px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #212529;
  font-size: 16px;
  line-height: 23px;
  font-family: "Cervo Neue";
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .welcome__num {
    width: 100%;
  }
}
.welcome__date {
  font-size: 12px;
  line-height: 14px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #707070;
  margin-top: 2px;
}
@media only screen and (max-width: 355px) {
  .welcome__date {
    letter-spacing: -0.6px;
  }
}
@media only screen and (max-width: 330px) {
  .welcome__date {
    letter-spacing: -1px;
  }
}
.welcome__account {
  position: relative;
  cursor: pointer;
  min-width: 103px;
}
@media only screen and (min-width: 768px) {
  .welcome__account {
    margin-right: 35px;
    margin-left: auto;
  }
}
@media only screen and (max-width: 570px) {
  .welcome__account {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}
.welcome__account:hover .welcome__menu {
  opacity: 1;
  visibility: visible;
}
.welcome__menu {
  padding: 0;
  font-size: 16px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 2px #adadad;
  border-radius: 25px;
  right: 0;
  margin-top: 0.5em;
  position: absolute;
  width: max-content;
  z-index: 1;
  list-style: none;
  -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -o-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 570px) {
  .welcome__menu {
    right: 50%;
    transform: translateX(50%);
  }
}
@media only screen and (max-width: 414px) {
  .welcome__menu {
    right: 70%;
  }
}
.welcome__menu .menu {
  margin: 0;
}
.welcome__menu li {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  line-height: 1em;
}
.welcome__menu li:first-child {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.welcome__menu li:last-child {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.welcome__menu li:hover {
  background-color: #dbe9f7;
}
.welcome__menu li a {
  text-decoration: none;
  display: block;
  text-align: left;
  color: #065596;
  padding: 1em;
  font-size: 0.9em;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
}
.welcome__avatar {
  text-align: center;
}
.welcome__link {
  min-width: 193px;
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
}
@media only screen and (max-width: 460px) {
  .welcome__link {
    min-width: 100px;
  }
}

.front-games {
  position: relative;
}
.front-games__scrolled {
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
  padding-right: 6px;
  padding-bottom: 5px;
  max-width: 100vw;
}
.front-games__item {
  display: inline-flex;
  flex-direction: column;
  border: 1px solid #707070;
  box-sizing: border-box;
  border-radius: 21px;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0 6px;
  text-align: center;
  width: 295px;
  padding: 11px 0 19px;
  min-height: 445px;
  vertical-align: top;
}
.front-games__item:first-child {
  margin-left: 15px;
}
.front-games__item .btn-keno {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  font-weight: 600;
  font-family: "Helvetica Neue";
  font-style: normal;
  padding-left: 0px;
  padding-right: 0px;
  font-size: 0.9375rem;
}
.front-games__img {
  margin-bottom: 5px;
  text-align: center;
  min-height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 62px;
}
.front-games__img img {
  max-width: 100%;
  height: auto;
  max-height: 93px;
  width: auto;
}
.front-games__line {
  height: 5px;
  width: 100%;
  background-color: #EC2127;
}
.front-games__item_power .front-games__line {
  background-color: #EC2127;
}
.front-games__item_mega .front-games__line, .front-games__item_keno .front-games__line {
  background-color: #FFCC00;
}
.front-games__item_cash4life .front-games__line {
  background-color: #6484C3;
}
.front-games__item_lotto .front-games__line, .front-games__item_cashpop .front-games__line, .front-games__item_pick4 .front-games__line {
  background-color: #01326F;
}
.front-games__item_showmecash .front-games__line {
  background-color: #026A02;
}
.front-games__title {
  font-weight: bold;
  font-size: 22px;
  line-height: 27px;
  color: #000;
  margin-top: 8px;
  margin-bottom: 3px;
}
.front-games__subtitle {
  font-size: 14px;
  line-height: 16px;
  color: #000;
}
.front-games__date {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #000;
  margin-top: 11px;
  margin-bottom: 5px;
}
.front-games__date_second {
  margin-top: 0;
}
.front-games__numbers {
  margin-left: -2px;
  margin-right: -2px;
  margin-bottom: 2px;
}
.front-games__numbers span {
  font-family: "Cervo Neue";
  width: 37px;
  height: 37px;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
  margin: 0 2px;
  border: 1px solid #000;
  border-radius: 50%;
}
.front-games__numbers span.special {
  color: #fff;
  border: none;
}
.front-games__item_power .front-games__numbers span.special {
  background-color: #EC2127;
}
.front-games__item_mega .front-games__numbers span.special {
  background-color: #FFCC00;
  color: #000;
}
.front-games__item_cash4life .front-games__numbers span.special {
  background-color: #2A7F67;
}
.front-games__item_lotto .front-games__numbers span.special {
  background-color: #01326F;
}
.front-games__item_showmecash .front-games__numbers span.special {
  background-color: #026A02;
}
.front-games__numbers_c-red span {
  color: #B5132C;
}
.front-games__wildball {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  font-family: "Cervo Neue";
  margin-top: 2px;
}
.front-games__wildball span {
  display: inline-flex;
  width: 27px;
  height: 27px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #FFC425;
  border: 1px solid #FFC425;
}
.front-games__keno {
  max-width: 200px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.front-games__keno p {
  margin: 0 0 4px;
}
.front-games__info {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  color: #000000;
}
.front-games__check {
  margin-top: auto;
  font-family: "Cervo Neue";
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #043965;
  background: #FDBB30;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.44);
  border-radius: 18px;
  -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -o-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  height: 35px;
  width: 190px;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
}
.front-games__check:hover {
  text-decoration: none;
  background: #f8a902;
}
.front-games__details {
  text-decoration: none;
  width: 176px;
  height: 36px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #003F93;
  border: 1px solid #003F93;
  box-sizing: border-box;
  border-radius: 9px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.front-games__details:hover {
  text-decoration: none;
  color: #002960;
  border: 1px solid #002960;
}

.front-games-cashpop {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.front-games-cashpop_first {
  margin-top: 6px;
}
.front-games-cashpop__text {
  min-width: 150px;
}
.front-games-cashpop__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #000;
}
.front-games-cashpop__type {
  color: #000;
}
.front-games-cashpop__numbers {
  margin-left: 15px;
  margin-top: 10px;
}

.banners {
  margin: 30px 0;
}
.banners .banner-long {
  width: 100%;
}
.banners .banner-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}
.banners .banner-columns .banner-half {
  width: 100%;
  max-width: 602px;
  border-radius: 25px;
}

.breadcrumb {
  color: #7D7D7D;
  font-size: 0.875rem;
  font-family: "Cervo Neue";
  font-weight: 700;
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
}
.breadcrumb ol li {
  display: inline-block;
}
.breadcrumb ol li::before {
  content: "";
  background: url(../img/icon_breadcrumb.svg);
  width: 7px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  margin-right: 9px;
  margin-top: -4px;
}
.breadcrumb ol li:first-child::before {
  display: none;
}
.breadcrumb ol li:first-child a {
  text-transform: none;
}
.breadcrumb ol li a {
  font-family: "Cervo Neue";
  font-weight: 700;
  line-height: 19px;
  color: #7D7D7D;
  text-decoration: none;
  text-transform: capitalize;
}
.breadcrumb ol li a:hover {
  text-decoration: underline;
}

.news {
  --newsMargin: 16px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 130px;
  font-family: "Helvetica Neue";
}
@media only screen and (max-width: 769px) {
  .news {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 479px) {
  .news {
    --newsMargin: 8px;
  }
}
@media only screen and (max-width: 769px) {
  .news__list {
    min-width: 100%;
    order: 2;
  }
}
.news__item {
  border: 1px solid #BBBBBB;
  border-radius: 21px;
  padding: calc(var(--newsMargin) * 2);
  display: flex;
  position: relative;
  -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -o-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  margin-bottom: var(--newsMargin);
}
@media only screen and (max-width: 479px) {
  .news__item {
    flex-wrap: wrap;
  }
}
.news__item:hover {
  border-color: #000;
}
.news__image {
  margin-right: calc(var(--newsMargin) * 2);
  min-width: 100px;
  max-width: 100px;
  text-align: center;
}
@media only screen and (max-width: 479px) {
  .news__image {
    margin-left: auto;
    margin-right: auto;
  }
}
.news__image img {
  max-width: 100%;
  height: auto;
}
.news__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}
.news__date {
  font-weight: 400;
  font-size: 12px;
  line-height: 19px;
  color: #888888;
}
.news__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #777777;
  margin-top: 16px;
}
.news__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news__archives {
  border: 1px solid #BBBBBB;
  box-sizing: border-box;
  border-radius: 21px;
  max-width: 276px;
  min-width: 276px;
  padding: var(--newsMargin);
  margin-left: var(--newsMargin);
}
@media only screen and (max-width: 769px) {
  .news__archives {
    order: 0;
    min-width: 100%;
    margin-left: 0;
    margin-bottom: calc(var(--newsMargin) * 2);
  }
}
.news__archives .news__title {
  margin-left: var(--newsMargin);
  margin-bottom: calc(var(--newsMargin) * 2);
}
.news__archives .form-submit {
  display: none;
}
.news .form-radios .form-item {
  display: inline-block;
  margin-left: var(--newsMargin);
  margin-right: var(--newsMargin);
  min-width: 42px;
  margin-bottom: 8px;
  margin-top: 0;
}
.news .form-radios .form-item input {
  display: none;
}
.news .form-radios .form-item label {
  font-family: "Helvetica Neue";
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-decoration: underline;
  color: #065596;
  cursor: pointer;
}
.news .form-radios .form-item label:hover:not(.current) {
  color: #FDBB30;
}
.news .form-radios .form-item input:checked + label {
  color: #FDBB30;
}
.news__links a {
  font-family: "Helvetica Neue";
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-decoration: underline;
  margin-left: var(--newsMargin);
  margin-right: var(--newsMargin);
  min-width: 42px;
  color: #065596;
  margin-bottom: 8px;
}
.news__links a:hover:not(.current) {
  color: #FDBB30;
}
.news__links a.current {
  color: #FDBB30;
}

h1 {
  color: #043965;
}

.mbottom0 {
  margin-bottom: 0;
}

.mtop0 {
  margin-top: 0;
}

.games-list {
  margin-left: -8px;
  margin-right: -8px;
}
.games-list a {
  margin-bottom: 16px;
  max-width: 373px;
  min-width: 373px;
  height: 280px;
  vertical-align: middle;
  display: inline-flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-left: 6px;
  margin-right: 6px;
  border: 1px solid #BBBBBB;
  border-radius: 22px;
  padding: 32px;
  -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -o-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
}
@media only screen and (max-width: 400px) {
  .games-list a {
    max-width: 100%;
    min-width: calc(100% - 16px);
  }
}
.games-list a:hover {
  border-color: #000;
}
.games-list a img {
  width: 100%;
}

.game-details p, .game-details ul {
  margin-bottom: 2rem;
}

.game-single .breadcrumb {
  padding-top: 17px;
  padding-bottom: 11px;
}
.game-single__columns {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 905px) {
  .game-single__columns {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 580px) {
  .game-single__columns {
    flex-wrap: wrap;
  }
}
.game-single__left {
  max-width: 565px;
  margin-right: 20px;
}
@media only screen and (max-width: 905px) {
  .game-single__left {
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 10px;
  }
}
.game-single__logo img {
  width: 373px;
}
.game-single__logo_273 img {
  width: 273px;
}
.game-single__logo_180 img {
  width: 180px;
}
.game-single__slogan {
  margin-top: 10px;
  font-family: "Cervo Neue";
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: #043965;
}
.game-single__text {
  margin-top: 9px;
  font-style: normal;
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #777777;
}
.game-single__text p {
  margin: 0 0 19px 0;
}
.game-single__text p:last-child {
  margin-bottom: 0;
}
.game-single__buttons {
  display: flex;
  padding-top: 32px;
  padding-bottom: 29px;
  margin-left: -8px;
  margin-right: -8px;
}
@media only screen and (max-width: 905px) {
  .game-single__buttons {
    justify-content: center;
  }
}
@media only screen and (max-width: 500px) {
  .game-single__buttons {
    flex-wrap: wrap;
  }
}
.game-single__buttons a {
  font-weight: 500;
  margin-left: 8px;
  margin-right: 8px;
}
@media only screen and (max-width: 500px) {
  .game-single__buttons a {
    margin-bottom: 1em;
  }
  .game-single__buttons a:last-child {
    margin-bottom: 0;
  }
}
.game-single__right {
  margin-bottom: 2em;
}
@media only screen and (max-width: 580px) {
  .game-single__right {
    text-align: center;
    width: 100%;
  }
}
@media only screen and (max-width: 905px) {
  .game-single__right {
    text-align: center;
    width: 100%;
  }
}
.game-single__right .btn, .game-single__right .heading-w-text .file a, .heading-w-text .file .game-single__right a {
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}
.game-single-calendar {
  width: 374px;
  overflow: hidden;
  margin-bottom: 17px;
  background: #FFFFFF;
  border: 1px solid #BBBBBB;
  box-shadow: 0 3px 0 rgba(56, 125, 217, 0.2);
  border-radius: 25px;
  padding-top: 15px;
}
@media only screen and (max-width: 905px) {
  .game-single-calendar {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 580px) {
  .game-single-calendar {
    margin-left: auto;
    margin-right: auto;
    width: auto;
  }
}
.game-single-calendar__item {
  text-align: center;
  margin-bottom: 10px;
}
.game-single-calendar__item:last-child {
  margin-bottom: 0;
}
.game-single-calendar__item_top-red {
  border-top: 2px solid #D02032;
}
.game-single-calendar__title {
  text-align: center;
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.game-single-calendar__title_small {
  font-weight: 400;
  font-size: 0.875rem;
}
.game-single-calendar__title_mbottom {
  margin-bottom: 8px;
}
.game-single-calendar__title span {
  border: 1px solid #000;
  border-radius: 50%;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
}
.game-single-calendar__body {
  display: flex;
  justify-content: center;
  padding-left: 8px;
  padding-right: 16px;
  padding-top: 3px;
  padding-bottom: 2px;
}
.game-single-calendar__body_top-blue {
  border-top: 2px solid #01326F;
  margin-top: 8px;
  padding-top: 16px;
}
.game-single-calendar__body_columns {
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 8px;
}
.game-single-calendar__wild {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 9px;
  margin-top: 5px;
}
.game-single-calendar__wild span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  background: #FFC425;
  border: 1px solid #FFC425;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.game-single-calendar__keno {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 0.5rem;
}
.game-single-calendar__keno p {
  margin: 0;
  padding: 0;
}
.game-single-calendar__keno .form {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.game-single-calendar__keno .form .btn, .game-single-calendar__keno .form .heading-w-text .file a, .heading-w-text .file .game-single-calendar__keno .form a {
  margin-top: 1rem;
}
.game-single-calendar__column {
  margin-bottom: 1em;
}
.game-single-calendar__subtext {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
.game-single-calendar__time {
  width: 100px;
  text-align: center;
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #707070;
}
.game-single-calendar__num {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  justify-content: center;
  margin-left: 3px;
  margin-right: 3px;
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #000000;
  border: 1px solid #707070;
}
.game-single-calendar__num:first-child {
  margin-left: 0;
}
.game-single-calendar__num:last-child {
  margin-right: 0;
}
.game-single-calendar__num_c-red {
  color: #B5132C;
}
.game-single-calendar__num_special {
  background-color: #E31837;
  color: #fff;
  border-color: #E31837;
}
.game-single-calendar__num_yellow {
  background-color: #FFCC00;
  border-color: #FFCC00;
}
.game-single-calendar__num_green {
  color: #fff;
  background-color: #2A7F67;
  border-color: #2A7F67;
}
.game-single-calendar__bottom {
  border-top: 2px solid #E31837;
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  text-align: center;
  padding-top: 7px;
  padding-bottom: 10px;
}
.game-single-calendar__bottom_yellow {
  border-top-color: #FFCC00;
}
.game-single-calendar__bottom_green {
  border-top-color: #2A7F67;
}
.game-single__links {
  margin-top: 80px;
  margin-bottom: 60px;
  margin-left: -19px;
  margin-right: -19px;
  text-align: center;
}
.game-single__link {
  width: 200px;
  height: 190px;
  margin-bottom: 20px;
  border: 1px solid #707070;
  box-sizing: border-box;
  border-radius: 21px;
  margin-left: 19px;
  margin-right: 19px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  vertical-align: top;
  padding: 20px;
  text-decoration: none;
}
@media only screen and (max-width: 1182px) {
  .game-single__link {
    margin-left: 8px;
    margin-right: 8px;
  }
}
.game-single__link:hover {
  text-decoration: none;
  border-color: #000;
}
.game-single__link:hover .game-single__link-name {
  color: #000;
}
.game-single__link-name {
  font-family: "Helvetica Neue";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #7D7D7D;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -o-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
}
.game-single__link-name:hover {
  text-decoration: none;
}
.game-single__video {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}
.game-single__video video {
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 660px) {
  .game-single__video video {
    width: 600px;
    height: 300px;
  }
}

.text-center,
.text-align-center {
  text-align: center;
}

.text-left,
.text-align-left {
  text-align: left;
}

.text-right,
.text-align-right {
  text-align: right;
}

.text-red {
  color: #B5132C;
}

.text-red-bordered {
  color: #B5132C;
  border: 1px solid #E31837;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.29);
  border-radius: 25px;
  padding: 8px;
}

.text-black {
  color: #000000;
}

.group-buttons {
  text-align: center;
}
.group-buttons a {
  display: inline-flex;
  vertical-align: middle;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.group-buttons_vertical a {
  display: flex;
}
.group-buttons-365, .group-buttons_365 {
  margin-left: calc(var(--margin) * -1);
  margin-right: calc(var(--margin) * -1);
}
@media only screen and (max-width: 450px) {
  .group-buttons-365, .group-buttons_365 {
    margin-right: 0;
    margin-left: 0;
  }
}
.group-buttons-365 p, .group-buttons_365 p {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
}
.group-buttons-365 a, .group-buttons_365 a {
  width: 365px;
  max-width: 100%;
  margin-left: var(--margin);
  margin-right: var(--margin);
}
@media only screen and (max-width: 450px) {
  .group-buttons-365 a, .group-buttons_365 a {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
.btn-wrapper {
  display: flex;
}
.btn-wrapper--center, .btn-wrapper_center {
  justify-content: center;
}
.btn-wrapper_vertical {
  flex-wrap: wrap;
  row-gap: 16px;
}

.form-submit {
  cursor: pointer;
}

.btn, .heading-w-text .file a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #043965;
  border-radius: 18px;
  text-decoration: none;
  -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -o-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  height: 35px;
  border: none;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
  font-family: "Cervo Neue";
  font-weight: 500;
  font-size: 1.125rem;
  cursor: pointer;
}
@media only screen and (max-width: 550px) {
  .btn, .heading-w-text .file a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 420px) {
  .btn, .heading-w-text .file a {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 440px) {
  .btn, .heading-w-text .file a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.btn_plus:before {
  content: "+";
  font-size: 1.125rem;
  color: #043965;
  margin-right: 5px;
}
.btn_right {
  margin-left: auto;
}
.btn_game {
  width: 240px;
}
.btn_game:hover {
  text-decoration: none;
}
.btn_game-medium {
  width: 286px;
}
.btn_game-medium:hover {
  text-decoration: none;
}
.btn_game-small {
  width: 190px;
}
.btn_game-small:hover {
  text-decoration: none;
}
.btn_yellow, .heading-w-text .file a {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.44);
  background: #FDBB30;
}
.btn_yellow:hover, .heading-w-text .file a:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn_red {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.44);
  background: #B5132C;
  color: #fff;
}
.btn_red:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn_blue {
  background: #065596;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.44);
  color: #fff;
}
.btn_blue:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn_bordered {
  color: #065596;
  border: 2px solid #065596;
  background: transparent;
}
.btn_bordered:hover {
  border-color: #021d34;
  color: #021d34;
}
.btn_add {
  width: 200px;
  font-family: "Helvetica Neue";
  font-weight: bold;
}
.btn_add::before {
  content: "+";
  font-weight: bold;
  margin-right: 5px;
}
.btn_inline {
  display: inline-flex;
}
.btn_text-w-500, .heading-w-text .file a {
  font-family: "Cervo Neue";
  font-weight: 500;
}
.btn_text-s-18, .heading-w-text .file a {
  font-size: 1.125rem;
}
@media only screen and (max-width: 550px) {
  .btn_text-s-18, .heading-w-text .file a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 420px) {
  .btn_text-s-18, .heading-w-text .file a {
    font-size: 0.875rem;
  }
}
.btn_wide {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media only screen and (max-width: 450px) {
  .btn_wide {
  padding-left: rem(20);
  padding-right: rem(20);
}
}
.btn_300 {
  min-width: 18.75rem;
}
.btn_245 {
  min-width: 15.3125rem;
}
.btn_190 {
  min-width: 11.875rem;
}
.btn_margin-small {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.btn_margin {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.btn_medium {
  min-width: 230px;
}
.btn_keno {
  content: "";
  display: block;
  background: url(../img/icon_video.svg);
  width: 16px;
  height: 19px;
  margin-top: -2px;
  margin-right: 5px;
}
.btn_top {
  max-width: 11.0625rem;
}
.btn_top::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background: url(../img/icon_arrow-top.svg);
}

.form {
  display: block;
}
.form_contact label {
  display: block;
  color: #000;
  font-weight: 700;
}
.form_contact select,
.form_contact input[type=text],
.form_contact input[type=date],
.form_contact input[type=email],
.form_contact input[type=password],
.form_contact input[type=phone],
.form_contact input[type=tel],
.form_contact textarea {
  width: 100%;
}
.form select:not(.num),
.form input[type=text]:not(.num),
.form input[type=date]:not(.num),
.form input[type=email]:not(.num),
.form input[type=password]:not(.num),
.form input[type=phone]:not(.num),
.form input[type=tel]:not(.num),
.form textarea:not(.num) {
  background: #FFFFFF;
  border: 1px solid #888888;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 25px;
  height: 35px;
  padding-left: 12px;
  padding-right: 12px;
}
.form select:not(.num).error,
.form input[type=text]:not(.num).error,
.form input[type=date]:not(.num).error,
.form input[type=email]:not(.num).error,
.form input[type=password]:not(.num).error,
.form input[type=phone]:not(.num).error,
.form input[type=tel]:not(.num).error,
.form textarea:not(.num).error {
  border-color: red;
}
.form textarea {
  height: auto;
  padding-top: 8px;
}
.form label {
  margin-right: 5px;
}
@media only screen and (max-width: 360px) {
  .form label {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.form__row {
  margin-bottom: 40px;
}
.form__group select {
  margin-right: 16px;
}
@media only screen and (max-width: 335px) {
  .form__group select {
    margin-right: 5px;
  }
}
.form__group_nums {
  margin-bottom: 6px;
}
@media only screen and (max-width: 766px) {
  .form__group_nums {
    margin-bottom: 30px;
  }
}
.form__group_nums label {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  color: #000000;
}
.form__group_nums select {
  width: 250px;
}
@media only screen and (max-width: 766px) {
  .form__group_nums select {
    margin-bottom: 10px;
  }
}
.form__group_nums input[type=text] {
  width: 60px;
  margin-left: 6px;
  margin-right: 6px;
  margin-bottom: 6px;
}
.form__group .form__nums-delimiter {
  display: none;
}
@media only screen and (max-width: 766px) {
  .form__group .form__nums-delimiter {
    display: block;
    width: 100%;
    height: 1px;
  }
}
.form__actions {
  margin-top: 40px;
}

.check-my-ticket {
  color: #777777;
}
.check-my-ticket__slogan {
  color: #808080;
  font-weight: bold;
  margin-top: 3px;
  font-size: 20px;
  font-style: italic;
  margin-bottom: 20px;
}
.check-my-ticket a {
  color: #777777;
  text-decoration: underline;
}
.check-my-ticket a:hover {
  text-decoration: none;
}
.check-my-ticket__result {
  color: #000000;
}
.check-my-ticket__result > p {
  padding-left: 100px;
  margin-bottom: 60px;
}
.check-my-ticket__result table thead th {
  text-align: left;
  padding-bottom: 30px;
}
.check-my-ticket__result table thead th:nth-child(1) {
  width: 200px;
}
.check-my-ticket__result table thead th:nth-child(2) {
  width: 250px;
}
.check-my-ticket__result table tbody tr td {
  padding-bottom: 10px;
}
.check-my-ticket__result table tbody tr td:nth-child(1) {
  vertical-align: top;
  padding-right: 20px;
}

.check-prize {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  display: inline-flex;
  align-items: center;
  text-align: center;
  color: #043965;
  padding: 4px 8px;
  min-height: 27px;
  border: 1px solid #043965;
  border-radius: 8px;
  margin: 2px;
}
@media only screen and (max-width: 450px) {
  .check-prize {
    font-weight: 400;
    font-size: 12px;
    margin: 1px;
    padding: 2px 2px;
  }
}

@media only screen and (max-width: 390px) {
  .table-pick-result .table_game {
    font-size: 12px;
    line-height: normal;
  }
}
@media only screen and (max-width: 400px) {
  .table-pick-result .table_game thead tr th {
    font-size: 15px;
  }
}
@media only screen and (max-width: 450px) {
  .table-pick-result .nums .num-list .num {
    margin-left: 1px;
    margin-right: 1px;
  }
}
@media only screen and (max-width: 450px) {
  .table-pick-result .nums .num-list .num:last-child {
    margin-right: 0;
  }
}

.num-list {
  margin-top: 8px;
  margin-bottom: 8px;
}
.num-list_centered {
  text-align: center;
}
.num-list__group_inline {
  display: inline-block;
}
.num-list__group_flex {
  display: flex;
}
.num-list__group_flex-center {
  display: flex;
  justify-content: center;
}
.num-list__group_nowrap {
  white-space: nowrap;
}
.num-list__pp {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 16px;
  color: #000000;
  margin-top: 3px;
}
.num-list_wild {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #000000;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 10px;
}
.num-list_wild span {
  width: 36px;
  height: 36px;
  font-size: 18px;
  font-weight: 500;
  margin-left: 5px;
}

.num {
  width: 47px;
  height: 47px;
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border: 1px solid #707070;
  color: #707070;
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 6px;
  margin-right: 6px;
}
.num:first-child {
  margin-left: 0;
}
.num:last-child {
  margin-right: 0;
}
.num_active {
  color: #043965;
  border-color: #043965;
  background: #FDBB30;
}
.num_medium {
  width: 36px;
  min-width: 36px;
  height: 36px;
  font-family: "Cervo Neue";
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  display: inline-flex;
  align-items: center;
  text-align: center;
  color: #000000;
  margin-left: 3px;
  margin-right: 3px;
}
.num_small {
  width: 24px;
  height: 24px;
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  border: 1px solid #707070;
  border-radius: 50%;
  margin-left: 3px;
  margin-right: 3px;
}
.num_small:last-child {
  margin-right: 6px;
}
.num_red {
  color: #fff;
  background-color: #E31837;
  border-color: #E31837;
}
.num_yellow {
	width: 36px;
  height: 36px;
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  border: 1px solid #707070;
  border-radius: 50%;
  margin-left: 3px;
  margin-right: 3px;
  background-color: #FFCC00;
  border-color: #FFCC00;
}
.num_yellow-check {
  background-color: #FFCC00;
  width: 24px;
  height: 24px;
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  border: 1px solid #707070;
  border-radius: 50%;
  margin-left: 3px;
  margin-right: 3px;
}
.num_blue-check {
  background-color: rgba(9, 127, 224, 0.5);
  width: 24px;
  height: 24px;
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  border: 1px solid #707070;
  border-radius: 50%;
  margin-left: 3px;
  margin-right: 3px;
  background-color: rgba(9, 127, 224, 0.5);
}
.num_green {
/*width: 24px;
  height: 24px;*/
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  border: 1px solid #707070;
  border-radius: 50%;
  margin-left: 3px;
  margin-right: 3px;
  color: #fff;
  background-color: #2A7F67;
  border-color: #2A7F67;
}
.num_green_two {
  color: #fff;
  background-color: #2A7F67;
  border-color: #2A7F67;
}

.num-pp {
  display: inline-block;
  vertical-align: middle;
}

.new {
  font-family: "Helvetica Neue";
  display: flex;
  justify-content: space-between;
}
.new__body {
  font-family: "Helvetica Neue";
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 675px) {
  .new {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 675px) {
  .new__body {
    order: 2;
  }
}
.new__date {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #888888;
  margin-bottom: 30px;
}
.new__text {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #777777;
}
.new__logo {
  margin-left: 114px;
  min-width: 276px;
  margin-top: 50px;
}
@media only screen and (max-width: 930px) {
  .new__logo {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 675px) {
  .new__logo {
    order: 1;
    min-width: 100%;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: 0;
    text-align: center;
  }
}
.media-center__text {
  max-width: 50%;
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #777777;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1000px) {
  .media-center__text {
    max-width: 100%;
  }
}

.faq__group {
  margin-top: 64px;
}
.faq__name {
  text-align: center;
  margin-bottom: 16px;
}
.faq__item {
  border: 1px solid #EEEEEE;
  border-radius: 20px;
  margin-bottom: 16px;
}
.faq__title {
  cursor: pointer;
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  background: #EEEEEE;
  border-radius: 19px;
  display: flex;
  align-items: center;
  padding-left: calc(16px * 3);
  padding-right: calc(16px * 5);
  min-height: 50px;
  -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -o-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  position: relative;
}
.faq__title p {
  margin: 0;
  padding: 0;
}
.faq__title::after {
  content: "";
  display: block;
  position: absolute;
  right: calc(16px * 3);
  background: url(../img/icon_chevron-down.svg);
  width: 21px;
  height: 14px;
}
.faq__group:nth-child(1) .faq__title {
  background: #065596;
  color: #fff;
}
.faq__group:nth-child(1) .faq__title::after {
  background-image: url(../img/icon_chevron-down_white.svg);
}
.faq__group:nth-child(2) .faq__title {
  background: #B5132C;
  color: #fff;
}
.faq__group:nth-child(2) .faq__title::after {
  background-image: url(../img/icon_chevron-down_white.svg);
}
.faq__group:nth-child(2) .faq__title a {
  color: #FDBB30;
}
.faq__group:nth-child(3) .faq__title {
  background: #FDBB30;
  color: #043965;
}
.faq__title.js-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faq__title.js-active::after {
  transform: rotate(180deg);
}
.faq__title a {
  text-decoration: underline;
}
.faq__title a:hover {
  text-decoration: none;
}
.faq__body {
  padding: calc(16px * 2) calc(16px * 3);
  display: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  box-shadow: 0 2px 5px #adadad;
  border-radius: 0 0 20px 20px;
}
.faq__body p {
  margin: 0 0 1em 0;
  padding: 0;
}
.faq__body p:last-child {
  margin-bottom: 0;
}

.press-contacts {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-16px / 2);
  margin-right: calc(-16px / 2);
  font-family: "Helvetica Neue";
}
.press-contacts__item {
  padding: 32px;
  font-family: "Helvetica Neue";
  width: 276px;
  height: 170px;
  border: 1px solid #BBBBBB;
  border-radius: 21px;
  text-align: center;
  margin-left: calc(16px / 2);
  margin-right: calc(16px / 2);
  margin-bottom: 16px;
}
@media only screen and (max-width: 600px) {
  .press-contacts__item {
    width: 100%;
  }
}
.press-contacts__title {
  font-style: normal;
  font-weight: 300;
  font-size: 1em;
  color: #000000;
  margin-bottom: 4px;
}
.press-contacts__job {
  font-weight: 300;
  font-size: 1em;
  line-height: 19px;
  color: #000000;
  margin-bottom: 16px;
}
.press-contacts__links {
  font-size: 14px;
}
.press-contacts__links a {
  display: block;
  margin-bottom: 5px;
}
.press-contacts__links a:last-child {
  margin-bottom: 0;
}

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

.table-mo {
  border-spacing: 0;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
}
.table-mo thead tr {
  background: #065596;
  border-radius: 13px;
  color: #fff;
  min-height: 50px;
}
.table-mo thead tr th, .table-mo thead tr td {
  min-height: 50px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  padding-left: 10px;
  padding-right: 10px;
}
.table-mo thead tr th:nth-child(1), .table-mo thead tr td:nth-child(1) {
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
}
.table-mo thead tr th:last-child, .table-mo thead tr td:last-child {
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
}
.table-mo tbody tr td {
  text-align: center;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 10px;
  padding-right: 10px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
}
.table-mo tbody tr:nth-child(even) {
  background: #EEEEEE;
  border-radius: 13px;
}

.table_unclaimed {
  border-spacing: 0;
  text-align: center;
  color: #000;
}
.table_unclaimed thead tr th {
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #097FE0;
  min-height: 80px;
  padding: 10px 35px;
  text-align: center;
}
.table_unclaimed thead tr th:first-child {
  border-radius: 13px 0 0 13px;
}
.table_unclaimed thead tr th:last-child {
  border-radius: 0 13px 13px 0;
}
.table_unclaimed tbody tr:nth-child(even) td {
  background: #EEEEEE;
}
.table_unclaimed tbody tr td {
  padding-top: 20px;
  padding-bottom: 20px;
}
.table_unclaimed tbody tr td:first-child {
  border-radius: 13px 0 0 13px;
}
.table_unclaimed tbody tr td:last-child {
  border-radius: 0 13px 13px 0;
}
.table_unclaimed tbody tr td:nth-child(5) {
  font-family: "Helvetica Neue";
  font-weight: 400;
  font-size: 14px;
}
.table_unclaimed tbody tr td:nth-child(5) p {
  display: inline-block;
}

.heading-w-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #777777;
  margin-top: 16px;
  margin-bottom: 16px;
}
.heading-w-text_center {
  text-align: center;
}
.heading-w-text_md {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.heading-w-text .file {
  display: flex;
  justify-content: center;
}
.heading-w-text .file a[type="application/pdf"]::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_download.svg) no-repeat;
  width: 21px;
  height: 20px;
  -webkit-background-size: 100%;
  background-size: 100%;
  margin-right: 4px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(5757%) hue-rotate(184deg) brightness(95%) contrast(101%);
}

h1 {
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: #043965;
  text-transform: uppercase;
}
.page-node-type-game {
  color: #000000;
}

.h1 {
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: #000000;
  margin: 16px 0;
}
.h1_center {
  text-align: center;
}

/* [MSL-UI] Heading 2 */
h2,
.h2 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}

/* [MSL-UI] Heading 3 */
h3,
.h3 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.inline-menu {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #BBBBBB;
  margin-bottom: 2em;
}
@media only screen and (max-width: 570px) {
  .inline-menu {
    flex-wrap: wrap;
  }
}
.inline-menu > a, .inline-menu__item {
  width: 100%;
  height: 50px;
  background: #E0E1E1;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  color: #043965;
  position: relative;
  font-family: "Cervo Neue";
  font-size: 0.9375rem;
}
@media only screen and (max-width: 570px) {
  .inline-menu > a, .inline-menu__item {
    width: 50%;
  }
}
@media only screen and (min-width: 571px) {
  .inline-menu > a:nth-child(odd), .inline-menu__item:nth-child(odd) {
    background-color: #D1D2D4;
  }
  .inline-menu > a:nth-child(odd):hover, .inline-menu__item:nth-child(odd):hover {
    background-color: #E0E1E1;
  }
}
@media only screen and (max-width: 570px) {
  .inline-menu > a:nth-child(1), .inline-menu > a:nth-child(4), .inline-menu__item:nth-child(1), .inline-menu__item:nth-child(4) {
    background-color: #D1D2D4;
  }
  .inline-menu > a:nth-child(1):hover, .inline-menu > a:nth-child(4):hover, .inline-menu__item:nth-child(1):hover, .inline-menu__item:nth-child(4):hover {
    background-color: #E0E1E1;
  }
}
.inline-menu > a::before, .inline-menu__item::before {
  content: "";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  margin-right: 5px;
}
.inline-menu > a:nth-child(1)::before, .inline-menu__item:nth-child(1)::before {
  background-image: url(../img/icon_money-check-edit-alt.svg);
  width: 25px;
  height: 21px;
}
.inline-menu > a:nth-child(2)::before, .inline-menu__item:nth-child(2)::before {
  width: 22px;
  height: 21px;
  background-image: url(../img/icon_sack-dollar_regular.svg);
}
.inline-menu > a:nth-child(3)::before, .inline-menu__item:nth-child(3)::before {
  width: 23px;
  height: 21px;
  background-image: url(../img/icon_piggy-bank.svg);
}
.inline-menu > a:nth-child(4)::before, .inline-menu__item:nth-child(4)::before {
  width: 25px;
  height: 19px;
  background-image: url(../img/icon_users.svg);
}
.inline-menu > a.is-active, .inline-menu > a.active, .inline-menu__item.is-active, .inline-menu__item.active {
  color: #000000;
  background: #fff;
  cursor: default;
}
.inline-menu > a.is-active:hover, .inline-menu > a.active:hover, .inline-menu__item.is-active:hover, .inline-menu__item.active:hover {
  background: #fff;
}
.inline-menu > a.is-active::after, .inline-menu > a.active::after, .inline-menu__item.is-active::after, .inline-menu__item.active::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: #FDBB30;
  position: absolute;
  bottom: 0;
  max-width: 121px;
}
.inline-menu > a:hover, .inline-menu__item:hover {
  background: #D1D2D4;
}

.claiming-menu {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #BBBBBB;
  margin-bottom: 2em;
}
@media only screen and (max-width: 570px) {
  .claiming-menu {
    flex-wrap: wrap;
  }
}
.claiming-menu > a, .claiming-menu__item {
  width: 100%;
  height: 50px;
  background: #E0E1E1;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  color: #043965;
  position: relative;
  font-family: "Cervo Neue";
  font-size: 0.9375rem;
}
@media only screen and (max-width: 570px) {
  .claiming-menu > a, .claiming-menu__item {
    width: 50%;
  }
}
@media only screen and (min-width: 571px) {
  .claiming-menu > a:nth-child(odd), .claiming-menu__item:nth-child(odd) {
    background-color: #D1D2D4;
  }
  .claiming-menu > a:nth-child(odd):hover, .claiming-menu__item:nth-child(odd):hover {
    background-color: #E0E1E1;
  }
}
@media only screen and (max-width: 570px) {
  .claiming-menu > a:nth-child(1), .claiming-menu > a:nth-child(4), .claiming-menu__item:nth-child(1), .claiming-menu__item:nth-child(4) {
    background-color: #D1D2D4;
  }
  .claiming-menu > a:nth-child(1):hover, .claiming-menu > a:nth-child(4):hover, .claiming-menu__item:nth-child(1):hover, .claiming-menu__item:nth-child(4):hover {
    background-color: #E0E1E1;
  }
}
.claiming-menu > a::before, .claiming-menu__item::before {
  content: "";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  margin-right: 5px;
}
.claiming-menu > a:nth-child(1)::before, .claiming-menu__item:nth-child(1)::before {
  background-image: url(../img/icon_money-check-edit-alt.svg);
  width: 25px;
  height: 21px;
}
.claiming-menu > a:nth-child(2)::before, .claiming-menu__item:nth-child(2)::before {
  width: 30px;
  height: 24px;
  background-image: url(../img/icon_money-bags.svg);
}
.claiming-menu > a:nth-child(3)::before, .claiming-menu__item:nth-child(3)::before {
  width: 23px;
  height: 21px;
  background-image: url(../img/icon_sack-dollar_regular.svg);
}
.claiming-menu > a:nth-child(4)::before, .claiming-menu__item:nth-child(4)::before {
  width: 25px;
  height: 19px;
  background-image: url(../img/icon_users.svg);
}
.claiming-menu > a.is-active, .claiming-menu > a.active, .claiming-menu__item.is-active, .claiming-menu__item.active {
  color: #000000;
  background: #fff;
  cursor: default;
}
.claiming-menu > a.is-active:hover, .claiming-menu > a.active:hover, .claiming-menu__item.is-active:hover, .claiming-menu__item.active:hover {
  background: #fff;
}
.claiming-menu > a.is-active::after, .claiming-menu > a.active::after, .claiming-menu__item.is-active::after, .claiming-menu__item.active::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: #FDBB30;
  position: absolute;
  bottom: 0;
  max-width: 121px;
}
.claiming-menu > a:hover, .claiming-menu__item:hover {
  background: #D1D2D4;
}

.timeline {
  list-style: none;
  counter-reset: timeline-counter;
  margin-top: 2em;
  margin-bottom: 1.5em;
}
@media only screen and (min-width: 992px) {
  .timeline.timeline_horizontal {
    display: flex;
    text-align: center;
  }
  .timeline.timeline_horizontal > li {
    flex: 1;
    padding-left: 0;
    padding-top: 2.3125rem;
  }
  .timeline.timeline_horizontal > li::before {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .timeline.timeline_horizontal > li::after {
    height: 3px;
    width: 100%;
    top: 14px;
    left: 51%;
  }
}
.timeline.timeline_claiming li {
  max-width: 373px;
}

.timeline > li {
  min-height: 60px;
  padding-bottom: 1.5rem;
  position: relative;
  padding-left: 71px;
  counter-increment: timeline-counter;
  z-index: 0;
}
.timeline > li:last-child {
  border: 0px;
  padding-bottom: 0;
}
.timeline > li:before {
  content: counter(timeline-counter);
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 19px;
  color: #043965;
  width: 49px;
  height: 49px;
  background: #FFFFFF;
  border: 1px solid #BBBBBB;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.timeline > li::after {
  content: "";
  background: #888888;
  width: 3px;
  height: 100%;
  position: absolute;
  top: 30px;
  left: 12px;
  z-index: 0;
}
.timeline > li:last-child::after {
  display: none;
}
.timeline > li h2 {
  color: #000;
  line-height: normal;
}
.timeline > li ul {
  padding-left: 20px;
  list-style: disc;
}

.collapsible {
  margin-top: 4em;
  margin-bottom: 4em;
}
.collapsible#multiplier {
  margin-top: 0;
}
.collapsible__title {
  cursor: pointer;
  height: 50px;
  /* [MSL-UI] Blue */
  background: #065596;
  border-radius: 20px 20px 0 0;
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.9375em;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 440px) {
  .collapsible__title {
    justify-content: flex-start;
    padding-left: 1rem;
  }
}
@media only screen and (max-width: 350px) {
  .collapsible__title {
    font-size: 1.375em;
  }
}
.collapsible__title.grey {
  background: #EEEEEE;
  color: #000;
}
.collapsible__title.grey::after {
  background: url(../img/icon_chevron-down.svg);
}
.collapsible__title.left {
  justify-content: flex-start;
  padding-left: 3rem;
}
.collapsible__title::after {
  content: "";
  background: url(../img/icon_chevron-down_white.svg);
  width: 21px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 0;
  margin-right: 3rem;
  margin-top: 1.125rem;
  -webkit-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -o-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  -moz-transition: all 200ms cubic-bezier(0.5, 0, 0.3, 1);
  transform: rotate(180deg);
}
@media only screen and (max-width: 440px) {
  .collapsible__title::after {
    margin-right: 1rem;
  }
}
.collapsible__title_static {
  cursor: default;
}
.collapsible__title_static::after {
  display: none;
}
.collapsible__title.js-hidden {
  border-radius: 20px;
}
.collapsible__title.js-hidden::after {
  transform: rotate(0deg);
}
.collapsible__title.title-w-icon--play::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_youtube.svg);
  width: 24px;
  height: 18px;
  filter: invert(100%) sepia(92%) saturate(0%) hue-rotate(30deg) brightness(111%) contrast(101%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left center;
  margin-right: 5px;
}
@media only screen and (max-width: 750px) {
  .collapsible__title--long {
    font-size: 1.25em;
  }
}
@media only screen and (max-width: 590px) {
  .collapsible__title--long {
    justify-content: flex-start;
    padding-left: 1rem;
    font-size: 1em;
  }
}
@media only screen and (max-width: 470px) {
  .collapsible__title--long {
    padding-right: 44px;
    line-height: normal;
    text-align: center;
  }
}
@media only screen and (max-width: 660px) {
  .collapsible__title--long::after {
    margin-right: 1rem;
  }
}
.collapsible__body {
  border-radius: 0 0 20px 20px;
  box-shadow: 0 2px 5px #adadad;
  padding: 2.5em 3.4em;
}
@media only screen and (max-width: 450px) {
  .collapsible__body {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
.collapsible__body.block-nohpadding {
  padding-left: 0;
  padding-right: 0;
}
.collapsible__body_padding {
  padding-left: 3.4em;
  padding-right: 3.4em;
}
@media only screen and (min-width: 1100px) {
  .collapsible__body_padding {
    padding-left: 8.4375rem;
    padding-right: 8.4375rem;
  }
}
@media only screen and (max-width: 450px) {
  .collapsible__body_padding {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
.collapsible__body_p32 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.collapsible__body_p100 {
  padding-left: 6.25rem;
  padding-right: 6.25rem;
}
@media only screen and (max-width: 500px) {
  .collapsible__body_p100 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.collapsible__body .field--name-body > *:not(.education-filter):first-child {
  margin-top: 0;
}

@media only screen and (max-width: 991px) {
  #multiplier.collapsible .block-nohpadding.collapsible__body {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.game-menu,
.powerball-menu {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #BBBBBB;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 980px) {
  .game-menu,
.powerball-menu {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 570px) {
  .game-menu,
.powerball-menu {
    flex-wrap: wrap;
  }
}
.game-menu > a,
.powerball-menu > a {
  width: 100%;
  height: 50px;
  background: #E0E1E1;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  line-height: 20px;
  text-decoration: none;
  color: #043965;
  position: relative;
  font-family: "Cervo Neue";
  font-weight: 500;
  font-size: 1.25rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  white-space: nowrap;
}
@media only screen and (max-width: 980px) {
  .game-menu > a,
.powerball-menu > a {
    width: 33.33%;
  }
}
@media only screen and (max-width: 570px) {
  .game-menu > a,
.powerball-menu > a {
    width: 50%;
  }
}
@media only screen and (max-width: 500px) {
  .game-menu > a,
.powerball-menu > a {
    font-size: 1.0625rem;
  }
}
@media only screen and (max-width: 450px) {
  .game-menu > a,
.powerball-menu > a {
    font-size: 0.875rem;
    padding-left: 0.3125rem;
    padding-right: 0.3125rem;
    white-space: normal;
    line-height: normal;
  }
}
@media only screen and (max-width: 330px) {
  .game-menu > a,
.powerball-menu > a {
    font-size: 0.8125rem;
  }
}
@media only screen and (min-width: 571px) {
  .game-menu > a:nth-child(odd),
.powerball-menu > a:nth-child(odd) {
    background-color: #D1D2D4;
  }
  .game-menu > a:nth-child(odd):hover,
.powerball-menu > a:nth-child(odd):hover {
    background-color: #E0E1E1;
  }
}
@media only screen and (max-width: 570px) {
  .game-menu > a:nth-child(1), .game-menu > a:nth-child(4), .game-menu > a:nth-child(5),
.powerball-menu > a:nth-child(1),
.powerball-menu > a:nth-child(4),
.powerball-menu > a:nth-child(5) {
    background-color: #D1D2D4;
  }
  .game-menu > a:nth-child(1):hover, .game-menu > a:nth-child(4):hover, .game-menu > a:nth-child(5):hover,
.powerball-menu > a:nth-child(1):hover,
.powerball-menu > a:nth-child(4):hover,
.powerball-menu > a:nth-child(5):hover {
    background-color: #E0E1E1;
  }
}
.game-menu > a::before,
.powerball-menu > a::before {
  content: "";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  margin-right: 5px;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 450px) {
  .game-menu > a::before,
.powerball-menu > a::before {
    background-size: contain;
  }
}
.game-menu > a:nth-child(1)::before,
.powerball-menu > a:nth-child(1)::before {
  background-image: url("../img/icon_info-square_dark.svg");
}
.game-menu > a:nth-child(2)::before,
.powerball-menu > a:nth-child(2)::before {
  background-image: url("../img/icon_chart-bar_dark.svg");
}
.game-menu > a:nth-child(3)::before,
.powerball-menu > a:nth-child(3)::before {
  background-image: url("../img/icon_dice_dark.svg");
}
.game-menu > a:nth-child(4)::before,
.powerball-menu > a:nth-child(4)::before {
  background-image: url("../img/icon_magic_dark.svg");
}
.game-menu > a:nth-child(5)::before,
.powerball-menu > a:nth-child(5)::before {
  background-image: url("../img/icon_sack-dollar_dark.svg");
}
.game-menu > a:nth-child(6)::before,
.powerball-menu > a:nth-child(6)::before {
  background-image: url("../img/icon_box-usd_dark.svg");
}
.game-menu.game-menu_cashpop a:nth-child(1)::before {
  background-image: url("../img/icon_info-square_dark.svg");
}
.game-menu.game-menu_cashpop a:nth-child(2)::before {
  background-image: url("../img/icon_chart-bar_dark.svg");
}
.game-menu.game-menu_cashpop a:nth-child(3)::before {
  background-image: url("../img/icon_dice_dark.svg");
}
.game-menu.game-menu_cashpop a:nth-child(4)::before {
  background-image: url("../img/icon_sack-dollar_dark.svg");
}
.game-menu.game-menu_cashpop a:nth-child(5)::before {
  background-image: url("../img/icon_box-usd_dark.svg");
}
.game-menu.game-menu_cashpop a:nth-child(5)::before {
  width: 18px;
  height: 19px;
}

.game-menu > a:nth-child(1)::before,
.powerball-menu > a:nth-child(1)::before {
  width: 18px;
  height: 19px;
}
.game-menu > a:nth-child(2)::before,
.powerball-menu > a:nth-child(2)::before {
  width: 20px;
  height: 15px;
}
.game-menu > a:nth-child(3)::before,
.powerball-menu > a:nth-child(3)::before {
  width: 26px;
  height: 21px;
}
.game-menu > a:nth-child(4)::before,
.powerball-menu > a:nth-child(4)::before {
  width: 22px;
  height: 21px;
}
.game-menu > a:nth-child(5)::before,
.powerball-menu > a:nth-child(5)::before {
  width: 22px;
  height: 21px;
}
.game-menu > a:nth-child(6)::before,
.powerball-menu > a:nth-child(6)::before {
  width: 18px;
  height: 19px;
}
.game-menu > a.is-active,
.powerball-menu > a.is-active {
  color: #000000;
  background: #fff;
  cursor: default;
}
.game-menu > a.is-active:hover,
.powerball-menu > a.is-active:hover {
  background: #fff;
}
.game-menu > a.is-active::after,
.powerball-menu > a.is-active::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: #FDBB30;
  position: absolute;
  bottom: 0;
  max-width: 100px;
}
.game-menu > a:hover,
.powerball-menu > a:hover {
  background: #D1D2D4;
}

.icon-text {
  display: flex;
}
.icon-text strong {
  display: contents;
}
.icon-text img:first-child {
  margin-bottom: auto;
  margin-right: 10px;
  max-width: 18px;
}
.icon-text .icon {
  margin-right: 8px;
}

.powerball-how {
  display: flex;
}
@media only screen and (min-width: 1200px) {
  .powerball-how {
    max-width: 83.33%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 700px) {
  .powerball-how {
    flex-wrap: wrap;
  }
}
.powerball-how__text {
  flex: 1;
  margin-right: 20px;
}
@media only screen and (max-width: 700px) {
  .powerball-how__text {
    order: 2;
    max-width: 100%;
    min-width: 100%;
  }
}
.powerball-how__image {
  text-align: center;
}
@media only screen and (max-width: 700px) {
  .powerball-how__image {
    margin-left: auto;
    margin-right: auto;
  }
}

.game-how {
  display: flex;
}
@media only screen and (max-width: 700px) {
  .game-how {
    flex-wrap: wrap;
  }
}
.game-how__text {
  flex: 1;
  margin-right: 20px;
}
@media only screen and (max-width: 700px) {
  .game-how__text {
    order: 2;
    max-width: 100%;
    min-width: 100%;
    margin-right: 0;
  }
}
.game-how__image {
  text-align: center;
}
@media only screen and (max-width: 700px) {
  .game-how__image {
    margin-left: auto;
    margin-right: auto;
  }
}

.table {
  width: 100%;
}
.table .td-70 {
  height: 70px;
}
.table_game {
  border-spacing: 0;
  text-align: center;
  color: #000;
  font-size: 16px;
  font-family: "Helvetica Neue";
}
@media only screen and (max-width: 390px) {
  .table_game {
    font-size: 14px;
  }
}
@media only screen and (max-width: 350px) {
  .table_game {
    font-size: 14px;
  }
}
.table_game thead tr th {
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #097FE0;
  min-height: 80px;
  padding: 10px 25px;
  text-align: center;
}
@media only screen and (max-width: 455px) {
  .table_game thead tr th {
    font-size: 22px;
    line-height: normal;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 400px) {
  .table_game thead tr th {
    font-size: 21px;
  }
}
@media only screen and (max-width: 360px) {
  .table_game thead tr th {
    font-size: 20px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.table_game thead tr th:first-child {
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
}
.table_game thead tr th:last-child {
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
}
.table_game thead tr:nth-child(1) {
  margin-bottom: 4px;
}
.table_game thead tr:nth-child(1) th {
  background: #065596;
  border-bottom: 4px solid #fff;
}
.table_game thead tr.table-thead-row:first-child {
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
}
.table_game thead tr.table-thead-row:last-child {
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
}
.table_game thead tr.table-thead-row_big th {
  height: 110px;
}
.table_game thead tr.table-thead-row_medium th {
  height: 80px;
}
.table_game thead tr.table-thead-row_blue {
  color: #fff;
  background-color: #065596;
}
.table_game thead tr.table-thead-row_blue-light {
  color: #fff;
  background: #097FE0;
}
.table_game thead tr.table-thead-row_blue-light th {
  color: #fff;
  background: #097FE0;
}
.table_game tbody tr:nth-child(even):not(.table-game__row) {
  background: #EEEEEE;
}
.table_game tbody tr td {
  padding: 5px 15px;
  height: 50px;
}
@media only screen and (max-width: 455px) {
  .table_game tbody tr td {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.table_game tbody tr td:first-child {
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
}
.table_game tbody tr td:last-child {
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
}
.table_game tbody tr td p {
  margin: 0;
}
.table_game tbody .table-game__row_big {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Cervo Neue";
  text-transform: uppercase;
  line-height: normal;
}
.table_game tbody .table-game__row_big td:nth-child(1) {
  font-weight: normal;
}
.table_game tbody .table-game__row_big td {
  border-bottom: 4px solid #fff;
}
.table_game tbody .table-game__row_big-text {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Cervo Neue";
  text-transform: uppercase;
  line-height: normal;
}
.table_game tbody .table-game__row_70 {
  height: 70px;
}
.table_game tbody .table-game__row_80 {
  height: 80px;
}
.table_game tbody .table-game__row_nowrap {
  white-space: nowrap;
}
.table_game tbody .table-game__row_grey {
  color: #fff;
  background-color: #888888;
}
.table_game tbody .table-game__row_grey-light {
  background-color: #EEEEEE;
}
.table_game tbody .table-game__row_white {
  background: #fff;
}
.table_game tbody .table-game__row_blue {
  color: #fff;
  background-color: #065596;
}
.table_game tbody .table-game__row_upper {
  text-transform: uppercase;
}
.table_game tbody .table-game__row_blue-light {
  color: #fff;
  background-color: #097FE0;
}
.table_game tbody .table-game__delimiter {
  height: 4px;
  padding: 0;
}
.table_game_spaces tbody tr td {
  min-height: 70px;
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.table_game_td-70 tbody tr td {
  height: 70px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.table_game_text-14 tbody {
  font-size: 0.875rem;
}
.table_game_nowrap-first tbody tr td:first-child {
  white-space: nowrap;
}
.table_game_1-3 thead tr:nth-child(1) th:nth-child(1) {
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
  border-right: 1px solid #fff;
}
.table_game_1-3 thead tr:nth-child(1) th:nth-child(2) {
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
  border-left: 1px solid #fff;
}
.table_game_1-3 thead tr:nth-child(2) th:nth-child(3) {
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
  border-right: 1px solid #fff;
}
.table_game_1-3 thead tr:nth-child(2) th:nth-child(4) {
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
  border-left: 1px solid #fff;
}
.table_game_1-3_long thead tr:nth-child(1) th:nth-child(1) {
  border-right: 8px solid #fff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.table_game_1-3_long thead tr:nth-child(1) th:nth-child(2) {
  border-left: 8px solid #fff;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.table_game_1-3_long thead tr:nth-child(2) th:nth-child(3) {
  border-right: 8px solid #fff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.table_game_1-3_long thead tr:nth-child(2) th:nth-child(4) {
  border-left: 8px solid #fff;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.table_game_3-0 thead tr:nth-child(1) th:nth-child(3), .table_game_3 thead tr:nth-child(1) th:nth-child(3) {
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
  border-right: 1px solid #fff;
}
.table_game_3-0 thead tr:nth-child(1) th:nth-child(4), .table_game_3 thead tr:nth-child(1) th:nth-child(4) {
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
  border-left: 1px solid #fff;
}
.table_game_second-1-all thead tr:nth-child(2) th:nth-child(1) {
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
  border-right: 1px solid #fff;
}
.table_game_second-1-all thead tr:nth-child(2) th:nth-child(2) {
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
  border-left: 1px solid #fff;
}
.table_highlight-first tr td:first-child {
  font-weight: bold;
}
.table_big-heading thead tr th {
  height: 110px;
}
.table_heading-blue-light thead tr:nth-child(1) th {
  background: #097FE0;
}

.jacktop-pack {
  padding-top: 3em;
  padding-bottom: 3em;
  background: #EEEEEE;
  color: #000;
}
.jacktop-pack .container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 600px) {
  .jacktop-pack .container {
    flex-wrap: wrap;
  }
}
.jacktop-pack__text {
  max-width: 35.5em;
  padding-right: 2em;
}
@media only screen and (max-width: 600px) {
  .jacktop-pack__text {
    padding-right: 0;
    order: 2;
  }
}
.jacktop-pack__text h2, .jacktop-pack__text .h1 {
  margin-top: 0;
  padding-top: 0;
}
@media only screen and (max-width: 600px) {
  .jacktop-pack__image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
  }
}

.lucky-wizard {
  border-radius: 20px;
  max-width: 373px;
  margin-left: auto;
  margin-right: auto;
}
.lucky-wizard__title {
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 31px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #065596;
  border-radius: 20px 20px 0 0;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lucky-wizard__body {
  border: 1px solid #707070;
  text-align: center;
  padding: 2em 0;
  border-radius: 0 0 20px 20px;
  margin-bottom: 2em;
}
.lucky-wizard__row {
  margin-bottom: 1em;
}
.lucky-wizard__row:last-child {
  margin-bottom: 0;
}
.lucky-wizard__btn {
  max-width: 301px;
  margin-left: auto;
  margin-right: auto;
}

.block-popup-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 499;
  opacity: 0;
  visibility: hidden;
}
.block-popup-wrapper.js-active {
  opacity: 1;
  visibility: visible;
}
.block-popup-wrapper__overlay {
  background: #fff;
  opacity: 0.9;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.block-popup-wrapper .block {
  z-index: 2;
  background: #fff;
  border-radius: 20px;
}

.block-blue-heading_wtmg {
  max-width: 761px;
}
.block-blue-heading_fav-number {
  max-width: 761px;
  width: 100%;
}
.block-blue-heading .block__title {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  background: #065596;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 31px;
  text-align: center;
  text-transform: uppercase;
}
.block-blue-heading .block__title_big {
  min-height: 80px;
}
.block-blue-heading .block__close {
  background: url(../img/icon_close.svg) no-repeat;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 15px;
  right: 15px;
}
.block-blue-heading .block__close:hover {
  opacity: 0.8;
}
.block-blue-heading .block__body {
  border: 1px solid #707070;
  border-radius: 0px 0px 20px 20px;
}

.wtmg-block .block__body {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-family: "Helvetica Neue";
}
.wtmg-block__columns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.wtmg-block__column {
  text-align: center;
  font-family: "Helvetica Neue Consended";
}
.wtmg-block__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #7D7D7D;
}
.wtmg-block__value {
  font-weight: 900;
  font-size: 24px;
  line-height: 29px;
}
.wtmg-block__text {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 1.5625rem;
}
.wtmg-block__text:last-child {
  margin-bottom: 0;
}
.wtmg-block__text_red {
  color: #B5132C;
}
@media only screen and (min-width: 761px) {
  .wtmg-block__text_red {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }
}

.block-past-numbers {
  font-family: "Cervo Neue";
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  margin-bottom: 2em;
}
@media only screen and (max-width: 1050px) {
  .block-past-numbers {
    width: 66%;
  }
}
@media only screen and (max-width: 780px) {
  .block-past-numbers {
    width: 83%;
  }
}
@media only screen and (max-width: 620px) {
  .block-past-numbers {
    width: 100%;
  }
}
.block-past-numbers_inline {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.block-past-numbers .block__body {
  padding: 2em;
}
@media only screen and (max-width: 430px) {
  .block-past-numbers .block__body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.block-past-numbers form {
  display: flex;
}
@media only screen and (max-width: 429px) {
  .block-past-numbers form {
    flex-wrap: wrap;
  }
}
.block-past-numbers__left {
  max-width: 212px;
  flex: 1;
}
@media only screen and (max-width: 520px) {
  .block-past-numbers__left {
    flex-wrap: wrap;
  }
}
.block-past-numbers__left_inline {
  display: flex;
  max-width: 100%;
  align-items: center;
  gap: 20px;
}
.block-past-numbers__left p {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin: 0 0 0.5em;
  padding: 0;
}
@media only screen and (max-width: 430px) {
  .block-past-numbers__left p {
    font-size: 1rem;
  }
}
.block-past-numbers .form-row {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 18px;
  display: flex;
  align-items: center;
  color: #000000;
  margin-bottom: 0.5em;
}
.block-past-numbers .form-row label {
  margin-left: 3px;
}
.block-past-numbers__right {
  text-align: center;
}
@media only screen and (max-width: 429px) {
  .block-past-numbers__right {
    margin-top: 2em;
    width: 100%;
    margin-left: 0.625rem;
  }
}
@media only screen and (max-width: 360px) {
  .block-past-numbers__right {
    margin-top: 2em;
    width: 100%;
    margin-left: 0.625rem;
  }
}
.block-past-numbers__right .btn, .block-past-numbers__right .heading-w-text .file a, .heading-w-text .file .block-past-numbers__right a {
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 45px;
  padding-right: 45px;
}
@media only screen and (max-width: 520px) {
  .block-past-numbers__right .btn, .block-past-numbers__right .heading-w-text .file a, .heading-w-text .file .block-past-numbers__right a {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 460px) {
  .block-past-numbers__right .btn, .block-past-numbers__right .heading-w-text .file a, .heading-w-text .file .block-past-numbers__right a {
    font-size: 0.875rem;
    line-height: normal;
  }
}
@media only screen and (max-width: 360px) {
  .block-past-numbers__right .btn, .block-past-numbers__right .heading-w-text .file a, .heading-w-text .file .block-past-numbers__right a {
    font-size: 0.8125rem;
    line-height: 13px;
  }
}
.block-past-numbers__right .btn.btn_blue, .block-past-numbers__right .heading-w-text .file a.btn_blue, .heading-w-text .file .block-past-numbers__right a.btn_blue {
  max-width: 215px;
}
.games-winning-numbers-filter-form,
.powerball-winning-numbers-filter-form {
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 550px) {
  .games-winning-numbers-filter-form,
.powerball-winning-numbers-filter-form {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2em;
  }
}
.games-winning-numbers-filter-form .form-item,
.powerball-winning-numbers-filter-form .form-item {
  margin-right: 1em;
}
.games-winning-numbers-filter-form .form-item select,
.powerball-winning-numbers-filter-form .form-item select {
  min-width: 177px;
  background: #FFFFFF;
  border: 1px solid #888888;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 25px;
  height: 35px;
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 24px;
  color: #043965;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 550px) {
  .games-winning-numbers-filter-form .form-item select,
.powerball-winning-numbers-filter-form .form-item select {
    min-width: 140px;
  }
}
@media only screen and (max-width: 350px) {
  .games-winning-numbers-filter-form .form-item select,
.powerball-winning-numbers-filter-form .form-item select {
    min-width: 0;
  }
}
.games-winning-numbers-filter-form .form-item .selectize-input,
.powerball-winning-numbers-filter-form .form-item .selectize-input {
  min-width: 177px;
  background: #FFFFFF;
  border: 1px solid #888888;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 25px;
  height: 35px;
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  color: #043965;
  padding-left: 20px;
  padding-right: 20px;
}
.games-winning-numbers-filter-form .form-item .selectize-input.dropdown-active,
.powerball-winning-numbers-filter-form .form-item .selectize-input.dropdown-active {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.games-winning-numbers-filter-form .form-item .selectize-dropdown,
.powerball-winning-numbers-filter-form .form-item .selectize-dropdown {
  border: 1px solid #888888;
  border-top: 0 none;
}
.games-winning-numbers-filter-form .btn, .games-winning-numbers-filter-form .heading-w-text .file a, .heading-w-text .file .games-winning-numbers-filter-form a,
.powerball-winning-numbers-filter-form .btn,
.powerball-winning-numbers-filter-form .heading-w-text .file a,
.heading-w-text .file .powerball-winning-numbers-filter-form a {
  cursor: pointer;
  margin-left: 0;
  min-width: 177px;
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
}
.scratchers-single h1 {
  margin-bottom: 0;
  padding-bottom: 0;
}
.scratchers-single__id {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #043965;
  margin-top: -0.1875em;
  margin-bottom: 1em;
}
.scratchers-single__columns {
  display: flex;
  gap: 7em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 930px) {
  .scratchers-single__columns {
    gap: 1em;
  }
}
@media only screen and (max-width: 500px) {
  .scratchers-single__columns {
    flex-wrap: wrap;
  }
}
.scratchers-single__right {
  max-width: 277px;
}
@media only screen and (max-width: 500px) {
  .scratchers-single__right {
    order: -1;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}
.scratchers-single__right .colorbox-image {
  text-align: right;
  position: relative;
  display: block;
}
@media only screen and (max-width: 500px) {
  .scratchers-single__right .colorbox-image {
    text-align: center;
    display: inline-block;
  }
}
.scratchers-single__right .colorbox-image::after {
  content: "";
  border-radius: 21px;
  width: 2em;
  height: 2em;
  background: #FDBB30 center center url(../img/icon_zoom.svg) no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
.scratchers-single__left {
  flex: 1;
}
.scratchers-single__text {
  font-size: 0.875rem;
}
@media only screen and (max-width: 768px) {
  .scratchers-single #scratchers-single-info-standard {
    display: none;
  }
}
@media only screen and (max-width: 500px) {
  .scratchers-single #scratchers-single-info-standard {
    display: block;
  }
}
@media only screen and (min-width: 769px) {
  .scratchers-single #scratchers-single-info-mobile {
    display: none;
  }
}
@media only screen and (max-width: 500px) {
  .scratchers-single #scratchers-single-info-mobile {
    display: none;
  }
}
.scratchers-single #scratchers-single-info-mobile .scratchers-single-info {
  max-width: 100%;
  justify-content: center;
  margin-bottom: 2em;
}
.scratchers-single .scratchers-single-info {
  color: #7D7D7D;
  display: flex;
  max-width: 35.625em;
  flex-wrap: wrap;
  text-align: center;
  gap: 1em;
  margin-top: 2em;
  font-family: "Helvetica Neue Consended";
}
.scratchers-single .scratchers-single-info__block {
  width: calc(33.3333333333% - 16px);
}
@media only screen and (max-width: 500px) {
  .scratchers-single .scratchers-single-info__block {
    width: calc(50% - 8px);
  }
}
.scratchers-single .scratchers-single-info__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
}
.scratchers-single .scratchers-single-info__body {
  font-weight: 900;
  font-size: 24px;
  line-height: 29px;
}
.scratchers-single .scratchers-single-info__bottom {
  font-weight: 900;
  font-size: 14px;
  line-height: 17px;
}
.scratchers-single__footnote {
  font-style: italic;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 19px;
}

.scratchers-single-promo-wrapper {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.scratchers-single-promo {
  background: #065596;
  padding: 3em 0;
  color: #fff;
  font-weight: 500;
  margin-top: 1em;
  margin-bottom: 1em;
}
.scratchers-single-promo_blue {
  background: #065596;
}
.scratchers-single-promo.scratchers-single-promo_yellow {
  background: #FDBB30;
  color: #043965;
}
.scratchers-single-promo.scratchers-single-promo_yellow .h1 {
  color: #043965;
}
.scratchers-single-promo_green {
  background: #16911E;
}
.scratchers-single-promo_right .scratchers-single-promo__banner {
  order: 19;
  padding-left: 20px;
  padding-right: 0;
}
@media only screen and (max-width: 840px) {
  .scratchers-single-promo_right .scratchers-single-promo__banner {
    padding-left: 0;
    padding-right: 0;
  }
}
.scratchers-single-promo .container {
  max-width: 1182px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 840px) {
  .scratchers-single-promo .container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.scratchers-single-promo__banner {
  max-width: 665px;
  padding-right: 20px;
  padding-left: 0;
}
@media only screen and (max-width: 840px) {
  .scratchers-single-promo__banner {
    order: -10 !important;
    max-width: 100%;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
}
.scratchers-single-promo .h1 {
  color: #fff;
  font-family: "Helvetica Neue Consended";
  font-style: normal;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 33px;
  text-transform: uppercase;
}
.scratchers-single-promo_yellow .scratchers-single-promo .h1 {
  color: #043965;
}
.scratchers-single-promo__text {
  text-align: center;
  font-size: 1.125rem;
  max-width: 373px;
  line-height: normal;
}
.scratchers-single-promo__subtitle {
  margin-bottom: 1.25rem;
}

.tags {
  margin-left: -0.5em;
  margin-right: -0.5em;
}
.tags .tag {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  color: #043965;
  border: 1px solid #043965;
  border-radius: 9px;
  min-height: 1.3125em;
  padding-left: 0.75em;
  padding-right: 0.75em;
  text-decoration: none;
  margin: 0.5em;
  margin-top: 0;
}
.tags .tag[href="#"] {
  cursor: default;
}
.tags .tag_green {
  color: #16911E;
  border-color: #16911E;
}
.tags .tag_yellow {
  background-color: #FDBB30;
  border-color: #FDBB30;
}
.tags .tag_orange {
  border-color: #DE7A28;
  color: #DE7A28;
}
.tags .tag_red {
  border-color: #EE3E33;
  background-color: #EE3E33;
  color: #fff;
}
.tags .tag_burgundy {
  border-color: #B5132C;
  color: #B5132C;
}
.tags .tag_2 {
  max-width: 160px;
}

@media only screen and (min-width: 650px) {
  .scratchers__top {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 374px;
    grid-template-rows: 50px 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
@media only screen and (min-width: 1005px) {
  .scratchers__top {
    grid-template-columns: 1fr 436px;
  }
}
@media only screen and (max-width: 649px) {
  .scratchers__top {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 650px) {
  .scratchers h1 {
    grid-area: 1/1/2/2;
    margin: 0;
    padding: 0;
  }
}
@media only screen and (max-width: 649px) {
  .scratchers h1 {
    order: 1;
  }
}
.scratchers__text {
  max-width: 35.625rem;
}
@media only screen and (min-width: 650px) {
  .scratchers__text {
    padding-top: 4px;
    grid-area: 2/1/3/2;
  }
}
@media only screen and (max-width: 649px) {
  .scratchers__text {
    order: 3;
  }
}
.scratchers__image {
  margin-left: auto;
  min-width: 344px;
  text-align: left;
}
@media only screen and (min-width: 650px) {
  .scratchers__image {
    grid-area: 1/2/3/3;
  }
}
@media only screen and (min-width: 1005px) {
  .scratchers__image {
    margin-top: -50px;
    padding-right: 6.0625rem;
  }
}
@media only screen and (max-width: 649px) {
  .scratchers__image {
    order: 2;
    width: 100%;
    min-width: 100%;
    text-align: center;
  }
  .scratchers__image img {
    width: 100%;
  }
}
.scratchers__image p {
  margin: 0;
  padding: 0;
}

.scratchers-list-slider-wrapper {
  position: relative;
}
.scratchers-list-slider-wrapper:hover .scratchers-list-slider-wrapper__arrow {
  opacity: 1;
}
.scratchers-list-slider-wrapper__arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  background-size: 25px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
@media only screen and (max-width: 750px) {
  .scratchers-list-slider-wrapper__arrow {
    opacity: 1;
  }
}
.scratchers-list-slider-wrapper__arrow_prev {
  background-image: url(../img/i-arrow-left.png);
  left: 5px;
}
@media only screen and (min-width: 1350px) {
  .scratchers-list-slider-wrapper__arrow_prev {
    left: -60px;
  }
}
.scratchers-list-slider-wrapper__arrow_next {
  background-image: url(../img/i-arrow-right.png);
  right: 5px;
}
@media only screen and (min-width: 1350px) {
  .scratchers-list-slider-wrapper__arrow_next {
    right: -60px;
  }
}

.scratchers-list-slider {
  text-align: center;
}
.scratchers-list-slider .slick-track {
  display: flex !important;
}
.scratchers-list-slider .slick-track .slick-slide {
  height: inherit !important;
}

@media only screen and (max-width: 651px) {
  .scratchers-list:not(.scratchers-list_inline) {
    text-align: center;
    justify-content: center;
  }
}
.scratchers-list_inline {
  white-space: nowrap;
  overflow: auto;
}
.scratchers-list__item {
  margin-right: 0.875rem;
  margin-bottom: 1rem;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  width: 295px;
  min-height: 452px;
  background: #FFFFFF;
  border: 1px solid #707070;
  border-radius: 1.3125em;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.scratchers-list_big-list {
  display: flex;
  flex-wrap: wrap;
}
.scratchers-list_big-list .scratchers-list__item {
  flex: 1;
  min-width: 295px;
  max-width: 295px;
}
.scratchers-list_feat-list .scratchers-list__item {
  flex: 1;
  min-width: 295px;
  max-width: 295px;
  text-align: center;
}
.scratchers-list__change {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  display: block;
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 0 0 0 22px;
  background: #FDBB30 url(../img/icon_change.svg) center center no-repeat;
}
.scratchers-list__front {
  min-height: 406px;
}
.scratchers-list__item.js-active .scratchers-list__front {
  display: none;
}
.scratchers-list__image {
  max-height: 312px;
  overflow: hidden;
}
.scratchers-list__image p {
  padding: 0;
  margin: 0;
}
.scratchers-list__image img {
  width: 100%;
}
.scratchers-list__top {
  font-family: "Helvetica Neue Consended";
  font-style: normal;
  font-weight: 900;
  font-size: 1rem;
  color: #043965;
  margin-top: 0.625rem;
  margin-bottom: 0.1875rem;
}
.scratchers-list__expire-wrapper {
  min-height: 1.1875rem;
  margin-bottom: 0.625rem;
}
.scratchers-list__expire {
  font-family: "Helvetica Neue Consended";
  font-weight: 700;
  font-size: 0.875rem;
  color: #B5132C;
}
.scratchers-list__expire::before {
  content: "";
  display: inline-flex;
  width: 14px;
  height: 15px;
  background: url(../img/icon_expire.svg) no-repeat;
  align-items: center;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 3px;
}
.scratchers-list__tags {
  margin-bottom: 0.4375rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  position: relative;
  z-index: 2;
}
.scratchers-list__tags.tags {
  margin-left: -4px;
  margin-right: -4px;
}
.scratchers-list__tags.tags a {
  position: relative;
  z-index: 2;
  margin-left: 4px;
  margin-right: 4px;
}
.scratchers-list__back {
  min-height: 406px;
  display: none;
}
.scratchers-list__item.js-active .scratchers-list__back {
  display: block;
}
.scratchers-list__num {
  position: absolute;
  font-family: "Helvetica Neue Consended";
  font-size: 0.875em;
  font-weight: 900;
  top: 4px;
  left: 11px;
  color: #fff;
}
.scratchers-list__title {
  width: 100%;
  height: 100px;
  background: #065596;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Helvetica Neue Consended";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}
.scratchers-list__title span {
  max-height: 60px;
  overflow: hidden;
}
.scratchers-list__features {
  font-family: "Helvetica Neue Consended";
  display: flex;
  align-items: center;
  text-align: center;
  color: #7D7D7D;
  display: flex;
  flex-wrap: wrap;
  padding-left: 1rem;
  padding-right: 1rem;
}
.scratchers-list__feature {
  width: 50%;
  margin-bottom: 0.625rem;
}
.scratchers-list__subtitle {
  font-size: 0.875rem;
  font-weight: 700;
}
.scratchers-list__value {
  font-size: 1.125rem;
  font-weight: 900;
}
.scratchers-list__table {
  border-spacing: 0;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #000;
}
.scratchers-list__table thead {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}
.scratchers-list__table thead tr th {
  background: #065596;
  height: 24px;
}
.scratchers-list__table thead tr th:nth-child(1) {
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
}
.scratchers-list__table thead tr th:last-child {
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
}
.scratchers-list__table tbody {
  font-family: "Helvetica Neue";
  font-weight: 400;
  font-size: 0.875rem;
}
.scratchers-list__table tbody tr:nth-child(even) td {
  background: #EEEEEE;
}
.scratchers-list__table tbody tr td {
  padding-top: 3px;
  padding-bottom: 3px;
}
.scratchers-list__table tbody tr td:nth-child(1) {
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
  font-weight: 700;
}
.scratchers-list__table tbody tr td:last-child {
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
}
.scratchers-list__button {
  max-width: 190px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.scratchers-list__action {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  position: absolute;
  cursor: pointer;
}

.scratchers-filter {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  background: #065596;
  min-height: 147px;
  padding-top: 2.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1rem;
}
.scratchers-filter__links {
  margin-bottom: 0.9375rem;
}
.scratchers-filter__links a {
  display: inline-block;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.9375rem;
  margin-right: 2rem;
}
.scratchers-filter__links a:last-child {
  margin-right: 0;
}
.scratchers-filter__links a.active {
  text-decoration: underline;
  color: #FDBB30;
}
.scratchers-filter__links a:hover {
  color: #FDBB30;
}
@media only screen and (max-width: 480px) {
  .scratchers-filter__links a {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
    margin-right: 1.25rem;
  }
  .scratchers-filter__links a:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 390px) {
  .scratchers-filter__links a {
    font-size: 1.125rem;
    margin-right: 1.125rem;
  }
  .scratchers-filter__links a:last-child {
    margin-right: 0;
  }
}
.scratchers-filter form {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .scratchers-filter form {
    flex-wrap: wrap;
  }
}
.scratchers-filter__field {
  background: #FFFFFF;
  border: 1px solid #888888;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 25px;
  height: 35px;
  padding: 0 1.25rem;
  margin-right: 1.0625rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .scratchers-filter__field {
    width: calc(33.3333333333% - 0.75rem);
  }
}
@media only screen and (max-width: 576px) {
  .scratchers-filter__field {
    width: 100%;
    margin-right: 0;
  }
}
.scratchers-filter__field_sorting {
  margin-left: auto;
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  .scratchers-filter__field_sorting {
    margin-left: 0;
  }
}
.scratchers-filter__btn {
  cursor: pointer;
  width: 176px;
  margin-right: 1.0625rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .scratchers-filter__btn {
    order: 10;
  }
}
@media only screen and (max-width: 576px) {
  .scratchers-filter__btn {
    width: 256px;
    margin-left: auto;
    margin-right: auto;
  }
}
.scratchers-filter__btn::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_search_dark.svg) no-repeat;
  width: 17px;
  height: 17px;
  margin-right: 2px;
  -webkit-background-size: 100%;
  background-size: 100%;
}
.page-404 #block-molottery-content > .content {
  max-width: 1182px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.inner-menu {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #BBBBBB;
  margin-top: 2em;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 980px) {
  .inner-menu {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 570px) {
  .inner-menu {
    flex-wrap: wrap;
  }
}
.inner-menu > a {
  width: 100%;
  height: 50px;
  background: #E0E1E1;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  color: #043965;
  position: relative;
  font-family: "Cervo Neue";
  font-size: 1.25rem;
}
@media only screen and (max-width: 980px) {
  .inner-menu > a {
    width: 33.33%;
  }
}
@media only screen and (max-width: 570px) {
  .inner-menu > a {
    width: 50%;
  }
}
@media only screen and (max-width: 370px) {
  .inner-menu > a {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 330px) {
  .inner-menu > a {
    font-size: 0.8125rem;
  }
}
@media only screen and (min-width: 571px) {
  .inner-menu > a:nth-child(odd) {
    background-color: #D1D2D4;
  }
  .inner-menu > a:nth-child(odd):hover {
    background-color: #E0E1E1;
  }
}
@media only screen and (max-width: 570px) {
  .inner-menu > a:nth-child(1), .inner-menu > a:nth-child(4), .inner-menu > a:nth-child(5) {
    background-color: #D1D2D4;
  }
  .inner-menu > a:nth-child(1):hover, .inner-menu > a:nth-child(4):hover, .inner-menu > a:nth-child(5):hover {
    background-color: #E0E1E1;
  }
}
.inner-menu > a::before {
  content: "";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  margin-right: 5px;
}
.inner-menu > a.is-active {
  color: #000000;
  background: #fff;
  cursor: default;
}
.inner-menu > a.is-active:hover {
  background: #fff;
}
.inner-menu > a.is-active::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: #FDBB30;
  position: absolute;
  bottom: 0;
  max-width: 215px;
}
.inner-menu > a:hover {
  background: #D1D2D4;
}

.education-block {
  border: 1px solid #BBBBBB;
  border-radius: 22px;
  overflow: auto;
}
.education-block .field--type-image img {
  max-width: 100%;
  height: auto;
}
.education-block .field--name-body {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #000000;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.education-text {
  max-width: 665px;
}

.education-filter {
  display: flex;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 530px) {
  .education-filter {
    flex-wrap: wrap;
  }
}
.education-filter input {
  background: #FFFFFF;
  border: 1px solid #888888;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 25px;
  height: 2.1875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  flex: 1;
}
@media only screen and (max-width: 530px) {
  .education-filter input {
    min-width: 100%;
  }
}
.education-filter select {
  background: #FFFFFF;
  border: 1px solid #888888;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 25px;
  height: 2.1875rem;
  width: 168px;
  margin-left: 16px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media only screen and (max-width: 530px) {
  .education-filter select {
    min-width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}

.education-pif {
  border: 1px solid #BBBBBB;
  border-radius: 22px;
  max-width: 100%;
  margin-right: 0.9375rem;
  text-align: center;
  padding: 2.3125rem 2rem;
}
@media only screen and (max-width: 639px) {
  .education-pif {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.education-pif__logo {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 501px) {
  .education-pif__logo img {
    max-width: 299px;
  }
}
.education-pif__title {
  color: #043965;
  font-weight: 700;
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  margin-bottom: 0.5rem;
}
.education-pif__subtitle {
  font-family: "Helvetica Neue";
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #000000;
}
.education-pif__body {
  margin-top: 1.25rem;
  text-align: left;
}

.education-top-text {
  max-width: 660px;
}

.bordered-group {
  margin-top: 1em;
  margin-bottom: 1em;
}
.bordered-group_2 {
  display: flex;
  gap: 1em;
}
@media only screen and (max-width: 768px) {
  .bordered-group_2 {
    flex-wrap: wrap;
  }
}
.bordered-group_2 .bordered-group__item {
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .bordered-group_2 .bordered-group__item {
    flex: 100%;
  }
}
.bordered-group__item {
  border: 1px solid #BBBBBB;
  border-radius: 21px;
  padding: 2em;
}
.bordered-group__item > *:nth-child(1) {
  margin-top: 0;
  padding-top: 0;
}
.bordered-group__item > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-node-1500 .game_club-keno,
.page-node-1519 .game_club-keno,
.page-node-1529 .game_club-keno,
.page-node-1565 .game_club-keno {
  display: none;
}

.message-error {
  font-size: 16px;
  line-height: normal;
  color: red;
}

.image-popup-wrapper_center {
  text-align: center;
}

.image-popup {
  position: relative;
}
.image-popup_center {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}
.image-popup .image-popup__zoom {
  display: block;
  border-radius: 21px;
  width: 2em;
  height: 2em;
  background: #FDBB30 center center url(../img/icon_zoom.svg) no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
.image-popup_icon::after {
  content: "";
  display: block;
  border-radius: 21px;
  width: 2em;
  height: 2em;
  background: #FDBB30 center center url(../img/icon_zoom.svg) no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}

.toolbar-fixed .ui-dialog.ui-corner-all.ui-widget.ui-widget-content.ui-front {
  top: 79px !important;
}

.group-images {
  margin-left: -8px;
  margin-right: -8px;
}
.group-images .image-popup {
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
}
.group-images_center {
  text-align: center;
}

.tables-group {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media only screen and (max-width: 890px) {
  .tables-group {
    flex-wrap: wrap;
  }
}
.tables-group .table-responsive {
  width: 100%;
}
@media only screen and (max-width: 890px) {
  .tables-group .table-responsive {
    margin-bottom: 16px;
  }
}

.msl-wtm-map {
  width: 100%;
  min-width: 750px;
  max-width: 750px;
  text-align: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.msl-wtm-map::before {
  display: block;
  content: "";
  padding-top: 87.73%;
}

.msl-wtm-map__wrapper {
  overflow: hidden;
}

@media (max-width: 768px) {
  .msl-wtm-map__wrapper {
    max-height: 530px;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.18);
  }
}
@media (max-width: 576px) {
  .msl-wtm-map__wrapper {
    max-height: 500px;
  }
}
.msl-wtm-map__backdrop {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.msl-wtm-map__overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.msl-wtm-map__overlay polygon {
  opacity: 0;
}

.table_keno {
  border-spacing: 0 4px;
}
.table_keno tbody tr td {
  background: #fff;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.table_keno tbody tr td:first-child {
  border-left: 1px solid #eeeeee;
}
.table_keno tbody tr td:last-child {
  border-right: 1px solid #eeeeee;
}

.keno-columns {
  display: flex;
  gap: 4px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.keno-columns__item {
  flex: 1;
  background: #EEEEEE;
  border-radius: 13px;
  padding: 15px 19px;
}
.keno-columns__item:nth-child(1) {
  max-width: 258px;
}

.keno-list {
  color: #000;
}
.keno-list__item {
  display: flex;
  justify-content: space-between;
  margin: 3px 0;
}
.keno-list__value {
  font-weight: bold;
}
.keno-list__value_green {
  color: #16911E;
}
.keno-list__value_red {
  color: #B5132C;
}

@media only screen and (max-width: 715px) {
  .favorite .collapsible__body {
    padding-left: 1em;
    padding-right: 1em;
  }
}
@media only screen and (max-width: 751px) {
  .favorite .table_game thead tr th {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (max-width: 540px) {
  .favorite .table_game thead tr th {
    font-size: 18px;
  }
}
@media only screen and (max-width: 400px) {
  .favorite .table_game thead tr th {
    font-size: 16px;
  }
}
@media only screen and (max-width: 380px) {
  .favorite .table_game thead tr th {
    font-size: 13px;
  }
}
@media only screen and (max-width: 550px) {
  .favorite .table_game tbody tr td {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (max-width: 475px) {
  .favorite .icon-circle {
    width: 25px;
    height: 25px;
  }
}
.favorite .num-list__group_inline {
  white-space: nowrap;
}
@media only screen and (max-width: 475px) {
  .favorite .num-list__group_inline .num_medium {
    margin-left: 1px;
    margin-right: 1px;
    font-size: 16px;
    width: 25px;
    min-width: 25px;
    height: 25px;
  }
}

.fav-numbers-popup {
  max-width: 410px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  padding-bottom: 32px;
  padding-left: 2em;
  padding-right: 2em;
}
.fav-numbers-popup__image {
  text-align: center;
  margin-bottom: 10px;
}
.fav-numbers-popup__title {
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  margin-bottom: 8px;
  margin-top: 10px;
}
.fav-numbers-popup__text > div {
  display: none;
}
.fav-numbers-popup .you-number-wrapper {
  display: none;
}

#popup-edit[data-game=powerball] .you-number-wrapper[data-game=powerball] {
  display: block;
}
#popup-edit[data-game=powerball] .fav-numbers-popup__text > div[data-game=powerball] {
  display: block;
}

#popup-edit[data-game=megamillions] .you-number-wrapper[data-game=megamillions] {
  display: block;
}
#popup-edit[data-game=megamillions] .fav-numbers-popup__text > div[data-game=megamillions] {
  display: block;
}

#popup-edit[data-game=cash4life] .you-number-wrapper[data-game=cash4life] {
  display: block;
}
#popup-edit[data-game=cash4life] .fav-numbers-popup__text > div[data-game=cash4life] {
  display: block;
}

#popup-edit[data-game=lotto] .you-number-wrapper[data-game=lotto] {
  display: block;
}
#popup-edit[data-game=lotto] .fav-numbers-popup__text > div[data-game=lotto] {
  display: block;
}

#popup-edit[data-game=showmecash] .you-number-wrapper[data-game=showmecash] {
  display: block;
}
#popup-edit[data-game=showmecash] .fav-numbers-popup__text > div[data-game=showmecash] {
  display: block;
}

#popup-edit[data-game=pick4] .you-number-wrapper[data-game=pick4] {
  display: block;
}
#popup-edit[data-game=pick4] .fav-numbers-popup__text > div[data-game=pick4] {
  display: block;
}

#popup-edit[data-game=pick3] .you-number-wrapper[data-game=pick3] {
  display: block;
}
#popup-edit[data-game=pick3] .fav-numbers-popup__text > div[data-game=pick3] {
  display: block;
}

#popup-edit[data-game=cashpop] .you-number-wrapper[data-game=cashpop] {
  display: block;
}
#popup-edit[data-game=cashpop] .fav-numbers-popup__text > div[data-game=cashpop] {
  display: block;
}

body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
  margin-left: 0 !important;
}

#terms-1 {
  color: #043965;
}

#terms-1,
#terms-2 {
  display: none;
}

.container-small {
  max-width: 760px;
  margin: 0 auto;
}

.grid-4-2-1 {
  display: flex;
  margin: 0 -8px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .grid-4-2-1 {
    flex-wrap: wrap;
  }
}
.grid-4-2-1__item {
  width: 25%;
  flex: 1 1 auto;
  margin: 0 8px;
}
@media (max-width: 992px) {
  .grid-4-2-1__item {
    width: 45%;
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .grid-4-2-1__item {
    width: 100%;
  }
}
.grid-4-2-1--big, .grid-4-2-1_big {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 16px;
}
@media (max-width: 992px) {
  .grid-4-2-1--big, .grid-4-2-1_big {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .grid-4-2-1--big, .grid-4-2-1_big {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .grid-4-2-1--big, .grid-4-2-1_big {
    grid-template-columns: 1fr;
  }
}
.grid-4-2-1--big .grid-4-2-1__item, .grid-4-2-1_big .grid-4-2-1__item {
  width: 100%;
  margin: 0;
}
@media (max-width: 576px) {
  .grid-4-2-1--big .grid-4-2-1__item, .grid-4-2-1_big .grid-4-2-1__item {
    margin: 0 auto;
  }
}

.grid-3-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 16px;
}
@media (max-width: 992px) {
  .grid-3-1 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .grid-3-1 {
    grid-template-columns: 1fr;
  }
}

.base-text p {
  font-size: 14px;
  line-height: 19px;
}
.base-text_center {
  text-align: center;
}

.base-list ul li {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 5px;
}
.base-list ul li:last-child {
  margin-bottom: 0;
}

.gap {
  height: 65px;
}

/***** Blocks *****/
.banner_small {
  max-width: 957px;
  margin: 0 auto;
}
.banner p {
  margin: 0;
}
.banner img {
  display: block;
  width: 100%;
}

.icon-circle {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: black;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.5);
  border: 2px solid transparent;
  box-sizing: border-box;
}
.icon-circle_yellow {
  background-color: #FDBB30;
}
.icon-circle_red {
  background-color: #B5132C;
}
.icon-circle_border {
  box-shadow: none;
  border: 2px solid #0E5596;
  background-color: transparent;
}
.icon-circle img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 15px;
}

.title-small {
  font-family: "Cervo Neue";
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 10px;
  color: #000;
}

.title-center {
  text-align: center;
  margin-bottom: 24px;
  margin-top: -16px;
}
.title-center p {
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  max-width: 824px;
  margin: 0 auto;
}

.btn-increase {
  position: relative;
  width: 32px;
  height: 32px;
  background-color: #FDBB30;
  border-radius: 50%;
  color: #065596;
  cursor: pointer;
}
.btn-increase img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 18px;
}

.banner-card {
  border: 1px solid #BBBBBB;
  border-radius: 20px;
  overflow: hidden;
}
.banner-card__main {
  padding: 16px 32px 32px 32px;
  box-sizing: border-box;
  margin-top: -4px;
}
.banner-card__main_red {
  border-top: 8px solid #B5132C;
}
.banner-card__main_yellow {
  border-top: 8px solid #FDBB30;
}
.banner-card__main_blue {
  border-top: 8px solid #065596;
}
.banner-card__main h2 {
  font-weight: 900;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 16px;
  text-align: center;
  margin-top: 0;
}
.banner-card__main p {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #777777;
}
.banner-card__main ul li {
  font-size: 14px;
  margin-bottom: 5px;
}
.banner-card__main ul li:last-child {
  margin-bottom: 0;
}
.banner-card__img p {
  margin: 0;
}

.banner-increasing h2 {
  margin-top: 0;
  text-align: center;
}
.banner-increasing__main {
  position: relative;
}
.banner-increasing p {
  margin: 0;
}
.banner-increasing p img {
  display: block;
  width: 100%;
}
.banner-increasing .btn-increase {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.preview-link {
  border: 1px solid #BBBBBB;
  border-radius: 20px;
  padding: 32px;
  box-sizing: border-box;
  overflow: hidden;
}
.preview-link__img p {
  margin: 0;
}
.preview-link img {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 32px;
}
.preview-link p {
  text-align: center;
  font-size: 14px;
  line-height: 19px;
}
.preview-link a {
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
  text-decoration: none;
  color: #065596;
}
.preview-link a::after {
  content: "";
  font-style: normal;
  font-size: 24px;
  margin-top: 0;
  background: url(../img/icon_chevron-right.svg);
  background-repeat: no-repeat;
  width: 13px;
  height: 22px;
  margin-left: 10px;
}
.preview-link a i {
  margin-left: 10px;
  font-size: 24px;
}

.logo-card-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}
.logo-card-grid .logo-card {
  flex: 1 1 auto;
  margin: 8px 8px 8px 8px;
  width: 30%;
}
@media (max-width: 992px) {
  .logo-card-grid .logo-card {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .logo-card-grid .logo-card {
    width: 100%;
    margin: 0 0 8px 0;
  }
}

.paper {
  display: flex;
  align-items: flex-start;
  padding: 48px;
  box-sizing: border-box;
  border: 1px solid #BBBBBB;
  border-radius: 22px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .paper {
    flex-flow: column-reverse;
    padding-top: 0;
  }
}
.paper h2 {
  font-family: "Cervo Neue";
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 0;
}
.paper__main p {
  font-size: 14px;
  line-height: 19px;
}
.paper__main p:last-child {
  margin-bottom: 0;
}
.paper img {
  display: block;
  width: 100%;
  border-radius: 22px;
}
@media (max-width: 768px) {
  .paper img {
    border-radius: 0;
    max-width: none;
  }
}
.paper__main {
  margin-right: 64px;
}
@media (max-width: 768px) {
  .paper__main {
    margin-right: 0;
  }
}
.paper--mirror, .paper_mirror {
  flex-flow: row-reverse;
}
@media (max-width: 768px) {
  .paper--mirror, .paper_mirror {
    flex-flow: column-reverse;
  }
}
.paper--mirror .paper__main, .paper_mirror .paper__main {
  margin-right: 0;
}
.paper--mirror img, .paper_mirror img {
  margin-right: 64px;
}
.paper__img {
  margin: 0;
  width: 100%;
  max-width: 360px;
  min-width: 200px;
}
@media (max-width: 768px) {
  .paper__img {
    max-width: none;
    min-width: auto;
    margin-bottom: 32px;
    width: calc(100% + 96px);
    margin-left: -48px;
  }
}
.paper__img p {
  margin: 0;
}

.add-favorite-numbers-info__logo {
  display: block;
  width: 100%;
  max-width: 255px;
  margin: 0 auto 15px;
}
.add-favorite-numbers-info__text {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 15px;
}
.add-favorite-numbers-info__text_center {
  text-align: center;
}
.add-favorite-numbers-info__footnote {
  font-family: "Cervo Neue";
  font-size: 16px;
  text-align: center;
}
.add-favorite-numbers-info__footnote a {
  color: #777;
  margin-left: 2px;
}

.you-number {
  margin-bottom: 25px;
  overflow: auto;
}
.you-number__title {
  font-family: "Cervo Neue";
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}
.you-number__list {
  padding: 0;
}
.you-number__list-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.you-number__list-item:last-child {
  margin-bottom: 0;
}
.you-number__letter, .you-number__letter2, .you-number__letter3, .you-number__letter4, .you-number__letter5 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-right: 15px;
}
/*added 04/01/2025*/
 input.num {
  color: #043965;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding-right: 5px;
  padding-left: 5px;
  min-width: 36px;
}
.num_multiplier {
  color: #065596;
  border: 2px solid #065596;
  background: transparent;
}
@media only screen and (max-width: 460px) {
  .you-number__letter {
    margin-right: 5px;
    font-size: 14px;
  }
}
/* number this class 1-5 */
.you-number__numerals1, .you-number__numerals2, .you-number__numerals3, .you-number__numerals4, .you-number__numerals5 {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
@media only screen and (max-width: 350px) {
  .you-number__numerals1, .you-number__numerals2, .you-number__numerals3, .you-number__numerals4, .you-number__numerals5 {
    margin-right: 4px;
  }
}
.you-number__numerals1, .you-number__numerals2, .you-number__numerals3, .you-number__numerals4, .you-number__numerals5, select {
  margin-right: 5px;
}
@media only screen and (max-width: 460px) {
  .you-number__numerals1, .you-number__numerals2, .you-number__numerals3, .you-number__numerals4, .you-number__numerals5, select:not(.num) {
    font-size: 12px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.you-number__numerals1, .you-number__numerals2, .you-number__numerals3, .you-number__numerals4, .you-number__numerals5, .num-separator {
  margin: 0 5px;
}
@media only screen and (max-width: 460px) {
  .you-number__numerals1, .you-number__numerals2, .you-number__numerals3, .you-number__numerals4, .you-number__numerals5, .num-separator {
    margin-left: 2px;
    margin-right: 2px;
  }
}
@media only screen and (max-width: 380px) {
  .you-number__numerals1, .you-number__numerals2, .you-number__numerals3, .you-number__numerals4, .you-number__numerals5, .num-separator {
    display: none;
  }
}
/****************************/
.you-number__checkbox {
  margin-left: 4px;
  margin-right: 2px;
  white-space: nowrap;
  white-space: nowrap;
}
@media only screen and (max-width: 550px) {
  .you-number__checkbox {
    font-size: 12px;
    margin-left: 1px;
    margin-right: 1px;
  }
}
.you-number__checkbox input {
  display: inline-block;
  vertical-align: middle;
}
.you-number__checkbox label {
  display: inline-block;
  font-weight: 500;
  color: #777777;
  margin-bottom: 0;
}
.you-number__letters {
  font-size: 18px;
  font-weight: 500;
  margin-right: 10px;
}
@media only screen and (max-width: 350px) {
  .you-number__letters {
    margin-right: 1px;
    font-size: 13px;
  }
}
.you-number__remove {
  border: none;
  background: none;
  outline: none;
  margin-left: 10px;
  background-image: url("../img/icon_trash-alt.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 460px) {
  .you-number__remove {
    margin-left: 2px;
  }
}
.you-number input.num {
  /*color: #043965;*/
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding-right: 5px;
  padding-left: 5px;
  min-width: 36px;
}
@media only screen and (max-width: 460px) {
  .you-number input.num {
    min-width: 29px;
    width: 29px;
    height: 29px;
  }
}
.you-number input.num.error {
  border: 2px solid red;
  text-decoration: underline;
}
.you-number input.num[readonly] {
  color: #fff;
}
.you-number input.num_red {
  color: #fff;
  background-color: #E31837;
  border-color: #B5132C;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.16);
}
.you-number input.num_red.error {
  border: 2px solid #000;
  text-decoration: underline;
}
.you-number input.num_green {
  color: #fff;
}
.you-number input.num_green.error {
  border: 2px solid #000;
  text-decoration: underline;
}

.cell__title {
  font-family: "Cervo Neue";
  font-weight: 500;
  font-size: 26px;
  line-height: normal;
  color: #fff;
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
  background-color: #065596;
  border-radius: 20px 20px 0 0;
  text-transform: uppercase;
}
.cell__main {
  background-color: #fff;
  border: 1px solid #666666;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
}
@media only screen and (max-width: 500px) {
  .cell__main {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cell__main-wrap {
  max-width: 410px;
  margin: 0 auto;
}

.help-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .help-info {
    flex-flow: column;
  }
}
.help-info__main {
  max-width: 390px;
  margin-right: 30px;
}
@media only screen and (max-width: 768px) {
  .help-info__main {
    margin-right: 0;
    margin: 0 auto 20px;
    max-width: none;
    width: 100%;
  }
}
.help-info p {
  font-size: 14px;
  line-height: 19px;
  color: #777;
  margin-bottom: 20px;
}
.help-info p:last-child {
  margin-bottom: 0;
}
.help-info__img {
  max-width: 225px;
}
@media only screen and (max-width: 768px) {
  .help-info__img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}
.help-info .field--name-field-media-image img {
  max-width: 273px;
  max-height: 120px;
  width: auto;
}
@media only screen and (max-width: 380px) {
  .help-info .field--name-field-media-image img {
    max-width: 100%;
  }
}

.title-text-block {
  padding: 32px;
  box-sizing: border-box;
  border: 1px solid #BBBBBB;
  border-radius: 20px;
  text-align: center;
}
.title-text-block h2 {
  font-family: "Helvetica Neue Consended";
  font-size: 18px;
  font-weight: 900;
  color: #043965;
  margin-bottom: 12px;
  margin-top: 0;
}
.title-text-block p:last-child {
  margin-bottom: 0;
}

.logo-card {
  border: 1px solid #BBBBBB;
  border-radius: 20px;
  padding: 32px;
  box-sizing: border-box;
}
@media only screen and (min-width: 900px) {
  .logo-card {
    max-width: 373px;
  }
}
.logo-card img {
  display: block;
  width: 100%;
  max-width: 310px;
  margin: 0 auto 32px;
}
.logo-card p {
  font-size: 14px;
  line-height: 19px;
}
.logo-card p:first-child {
  margin: 0;
}
.logo-card--img a.btn_blue, .logo-card_img a.btn_blue {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.logo-card--img a img, .logo-card_img a img {
  width: auto;
  max-width: 128px;
}

.features-card {
  border: 1px solid #BBBBBB;
  border-radius: 20px;
  padding: 32px;
  box-sizing: border-box;
}
.features-card p {
  margin: 0;
}
.features-card img {
  display: block;
  height: 70px;
  margin: 0 auto 30px;
}
.features-card h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #000;
}
.features-card p {
  font-size: 14px;
  line-height: 19px;
  color: #777777;
  text-align: center;
}

.flyers-card {
  border: 1px solid #BBBBBB;
  border-radius: 20px;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
}
.flyers-card .media {
  height: 119px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.flyers-card img {
  width: auto;
  max-height: 119px;
}
.flyers-card a {
  display: block;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
}
.flyers-card p {
  margin: 0;
}
.flyers-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.flyers-card span:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/i-download.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}

.play-card {
  border: 1px solid #BBBBBB;
  border-radius: 20px;
  overflow: hidden;
}
.play-card .field--name-body > p, .play-card > p {
  margin: 0;
}
.play-card .field--name-body > p img, .play-card > p img {
  display: block;
  width: 100%;
}
.play-card__main {
  padding: 16px 32px 32px 32px;
  box-sizing: border-box;
}
.play-card__main h2 {
  margin-top: 0;
}
.play-card__main h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 0;
  font-family: "Cervo Neue";
}
.play-card__main .play-card__text p {
  margin-top: 10px;
}
.play-card__main p {
  font-size: 14px;
  line-height: 19px;
  font-family: "Cervo Neue";
}
.play-card__main_center {
  text-align: center;
}
@media (max-width: 576px) {
  .play-card {
    max-width: 360px;
    margin: 8px auto 8px;
  }
}
.play-card--title-small h3, .play-card_title-small h3 {
  font-family: "Cervo Neue";
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 10px;
  color: #000;
}
.play-card--normal-text .play-card__main p, .play-card_normal-text .play-card__main p {
  font-size: 0.875rem;
  font-family: "Helvetica Neue";
}
.play-card--nomarkup h3, .play-card_nomarkup h3 {
  padding: 16px 32px 32px 32px;
  box-sizing: border-box;
  text-align: center;
}
.play-card--nomarkup .field--name-body p:last-child, .play-card_nomarkup .field--name-body p:last-child {
  padding: 16px 32px 32px 32px;
  box-sizing: border-box;
  text-align: center;
}

.reports-card {
  border: 1px solid #BBBBBB;
  border-radius: 20px;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.reports-card h3 {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #777777;
}
.reports-card p {
  margin: 0;
}
.reports-card__img {
  margin-bottom: 32px;
}
.reports-card span {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 19px;
  color: #777777;
}
.reports-card span:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/i-download-2.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}
@media (max-width: 576px) {
  .reports-card {
    max-width: 360px;
    margin: 8px auto 8px;
  }
}

.apply-card {
  border: 1px solid #BBBBBB;
  border-radius: 20px;
  padding: 32px;
  box-sizing: border-box;
  margin-bottom: 16px;
}
.apply-card h2 {
  font-weight: 700;
  font-family: "Cervo Neue";
  margin-top: 0;
}
.apply-card .btn, .apply-card .heading-w-text .file a, .heading-w-text .file .apply-card a {
  max-width: 190px;
}
@media (max-width: 576px) {
  .apply-card .btn, .apply-card .heading-w-text .file a, .heading-w-text .file .apply-card a {
    margin: 0 auto;
  }
}

.people-card {
  border: 1px solid #BBBBBB;
  border-radius: 20px;
  padding: 32px;
  box-sizing: border-box;
  text-align: center;
}
.people-card__img p {
  margin: 0;
}
.people-card__img p img {
  display: block;
  width: 100%;
  max-width: 75px;
  margin: 0 auto 16px;
}
.people-card__name {
  font-size: 28px;
  font-weight: 300;
  line-height: 33px;
  margin-bottom: 8px;
  color: #000;
}
.people-card__work {
  color: #000;
  font-weight: 300;
}
.people-card__text {
  text-align: left;
  font-weight: 300;
}

.b-info {
  background-color: #FDBB30;
  padding: 32px;
  box-sizing: border-box;
  border-radius: 20px;
  color: #043965;
  max-width: 370px;
}
.b-info h3 {
  font-family: "Cervo Neue";
  font-size: 26px;
  font-weight: 500;
  color: #043965;
  margin-top: 0;
}

.b-accent {
  border: 1px solid #BBBBBB;
  border-radius: 20px;
  padding: 32px;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 32px;
}
.b-accent p {
  max-width: 600px;
  margin: 0 auto;
  font-family: "Cervo Neue";
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: black;
}

.b-artcile {
  border: 1px solid #BBBBBB;
  border-radius: 20px;
  padding: 32px;
  box-sizing: border-box;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .b-artcile {
    padding: 0 0 0 0;
    overflow: hidden;
    max-width: 376px;
    margin: 0 auto 16px;
  }
}
.b-artcile__main {
  display: flex;
  align-items: start;
}
@media (max-width: 576px) {
  .b-artcile__main {
    flex-flow: column;
  }
}
.b-artcile__img {
  max-width: 100px;
  margin-right: 32px;
}
@media (max-width: 576px) {
  .b-artcile__img {
    max-width: none;
    width: 100%;
    margin-right: 0;
  }
}
.b-artcile__img p {
  margin: 0;
}
.b-artcile__img img {
  display: block;
  width: 100%;
}
@media (max-width: 576px) {
  .b-artcile__info {
    padding: 32px 32px 0 32px;
    box-sizing: border-box;
  }
}
.b-artcile__info h3 {
  font-family: "Cervo Neue";
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 0;
  margin-bottom: 0;
}
.b-artcile__info p {
  font-size: 14px;
  line-height: 19px;
  margin-top: 0;
}
.b-artcile__info-note p {
  font-size: 12px;
}
.b-artcile__link {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 576px) {
  .b-artcile__link {
    padding: 0 32px 32px 0;
    box-sizing: border-box;
  }
}
.b-artcile__link a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.b-artcile__link a:after {
  content: "";
  display: block;
  width: 13px;
  height: 24px;
  background-image: url("../img/i-chevron-right.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 15px;
}

.b-contacts {
  color: white;
  padding: 32px 0;
  background-color: #043965;
  margin-top: 64px;
}
.b-contacts__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .b-contacts__inner {
    flex-flow: column;
  }
}
.b-contacts__info {
  max-width: 800px;
}
@media (max-width: 768px) {
  .b-contacts__info {
    margin-bottom: 32px;
  }
}
.b-contacts__info h2 {
  margin-top: 5px;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 33px;
  text-transform: uppercase;
}
.b-contacts__info > p {
  font-style: italic;
}
.b-contacts__info > p a {
  color: #FDBB30;
}
.b-contacts__list-item {
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.b-contacts__list-item:last-child {
  margin-bottom: 0;
}
.b-contacts__list-item-propertie {
  margin-right: 10px;
}
.b-contacts__list-item-value a {
  display: inline-block;
  color: #FDBB30;
}
.b-contacts__img {
  display: block;
  width: 178px;
  min-width: 178px;
  margin-left: 200px;
}
@media (max-width: 768px) {
  .b-contacts__img {
    margin-left: 0;
    margin: 0 auto;
  }
}
.b-contacts__img p {
  margin: 0;
}
.b-contacts__img p img {
  display: block;
  width: 100%;
}
.play-responsibly-slide {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 5px;
  padding-right: 80px;
  padding-left: 80px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .play-responsibly-slide {
    flex-flow: column;
    align-items: center;
    margin-bottom: 16px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
.play-responsibly-slide__img {
  width: 100%;
  max-width: 568px;
}
@media (max-width: 768px) {
  .play-responsibly-slide__img {
    margin-bottom: 16px;
  }
}
.play-responsibly-slide__img p {
  margin: 0;
}
.play-responsibly-slide__img img {
  display: block;
  width: 100%;
}
.play-responsibly-slide__info {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  margin-left: 114px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .play-responsibly-slide__info {
    margin-left: 0;
    align-items: center;
    width: 100%;
    padding-bottom: 0;
  }
}
.play-responsibly-slide__info h2 {
  font-family: "Cervo Neue";
  margin-top: 0;
  max-width: 350px;
  text-align: right;
  text-transform: uppercase;
  color: #043965;
  font-size: 28px;
  line-height: 33px;
  margin-bottom: 32px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .play-responsibly-slide__info h2 {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .play-responsibly-slide__info h2 {
    max-width: none;
    width: 100%;
    text-align: center;
  }
}

.play-responsibly-slider {
  position: relative;
  margin-bottom: 46px;
}
@media (max-width: 768px) {
  .play-responsibly-slider {
    margin-bottom: 0;
  }
}
.play-responsibly-slider .slick-arrow {
  width: 18px;
  height: 32px;
  background-image: url("../img/i-chevron-left-grey.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.play-responsibly-slider .slick-arrow.slick-prev {
  left: 0;
  background-image: url("../img/i-chevron-left-grey.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.play-responsibly-slider .slick-arrow.slick-next {
  right: 0;
  background-image: url("../img/i-chevron-right-grey.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.play-responsibly-slider .slick-arrow:before {
  display: none;
}
.play-responsibly-slider .slick-dots {
  position: static !important;
  padding-right: 80px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  margin-top: -40px;
}
@media (max-width: 768px) {
  .play-responsibly-slider .slick-dots {
    justify-content: center;
    padding-right: 0;
    margin-bottom: 32px;
    margin-top: 0;
  }
}
.play-responsibly-slider .slick-dots li {
  border-radius: 50%;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.play-responsibly-slider .slick-dots li.slick-active {
  background: #FDBB30;
}
.play-responsibly-slider .slick-dots li button {
  display: none;
  width: 20px;
  height: 20px;
  padding: 0;
  box-sizing: border-box;
}
.play-responsibly-slider .slick-dots li button:before {
  display: none;
}

.play-responsibly-slider:not(.slick-initialized) .views-row {
  display: none;
}
.play-responsibly-slider:not(.slick-initialized) .views-row:first-child {
  display: block;
}

/***** Blocks End*****/
/***** Favorite Number *****/
.favorite__head p {
  max-width: 760px;
}
.favorite__main {
  max-width: 958px;
  margin: 0 auto;
}
.favorite__main .collapsible {
  margin-top: 2em;
  margin-bottom: 2em;
}
.favorite__main .icon-circle {
  margin: 0 auto;
}
.favorite__note p {
  font-size: 0.875rem;
  line-height: 19px;
  font-weight: 400;
  font-style: italic;
  max-width: 958px;
  margin: 0 auto;
}

.favorite-form__logo p {
  margin: 0;
}
.favorite-form__logo img {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 24px;
  max-height: 110px;
  width: auto;
}
.favorite-form__controls {
  position: relative;
  margin-bottom: 24px;
}
.favorite-form__controls-add {
  margin: 0 auto;
}
.favorite-form__controls-remove {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.favorite-form__controls-remove img {
  width: 18px;
  margin-right: 5px;
}

@media only screen and (max-width: 768px) {
  .favorite-form__controls-add {
    margin: 0 auto 10px;
  }

  .favorite-form__controls-remove {
    position: static;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }
}
/***** Favorite Number End*****/
/***** Add Favorite Numbers*****/
.add-favorite-numbers {
  margin-top: 25px;
}

.add-favorite-numbers-info__logo {
  margin: 0 auto;
  text-align: center;
}
.add-favorite-numbers-info__logo p {
  margin-top: 0;
  margin-bottom: 0;
}
.add-favorite-numbers-info__logo img {
  max-height: 120px;
  width: auto;
  max-width: 255px;
}
.add-favorite-numbers-info__wrapper-btn-top {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .add-favorite-numbers-info__wrapper-btn-top {
    margin-bottom: 25px;
  }
}
.add-favorite-numbers-info__wrapper-btn-bottom {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .add-favorite-numbers-info__wrapper-btn-bottom {
    margin-bottom: 15px;
  }
}
.add-favorite-numbers-info .btn, .add-favorite-numbers-info .heading-w-text .file a, .heading-w-text .file .add-favorite-numbers-info a {
  cursor: pointer;
}

.popup-favourite-numbers__main {
  max-width: 410px;
  margin: 0 auto;
}
.popup-favourite-numbers__logo {
  display: block;
  width: 100%;
  max-width: 255px;
  margin: 0 auto 15px;
}
.popup-favourite-numbers__logo p {
  margin-top: 0;
  margin-bottom: 0;
}
.popup-favourite-numbers__logo img {
  display: block;
  width: 100%;
}
.popup-favourite-numbers__text_center {
  text-align: center;
}
.popup-favourite-numbers__footnote {
  font-family: "Cervo Neue";
  font-size: 16px;
  text-align: center;
}
.popup-favourite-numbers__footnote a {
  color: #777;
  margin-left: 2px;
}
.popup-favourite-numbers__btn-wrapper-top {
  margin-bottom: 20px;
}

/***** Add Favorite Numbers End*****/
/***** Check My Tickets *****/
.check-my-tickets {
  max-width: 760px;
  margin: 0 auto;
}
.check-my-tickets__footnote {
  text-align: center;
}
.check-my-tickets__footnote-top p {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 16px;
}
.check-my-tickets__footnote .btn, .check-my-tickets__footnote .heading-w-text .file a, .heading-w-text .file .check-my-tickets__footnote a {
  margin-bottom: 15px;
}
.check-my-tickets__footnote-bottom p {
  font-style: italic;
  font-size: 14px;
  line-height: 19px;
  color: #B5132C;
}
.check-my-tickets__collapsible {
  margin-bottom: 35px;
}
.check-my-tickets__cell {
  margin-bottom: 30px;
}
.check-my-tickets__cell-footer {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .check-my-tickets__cell-footer {
    flex-flow: column-reverse;
  }
}
.check-my-tickets__cell-footer-note {
  font-family: "Cervo Neue";
  font-size: 16px;
  text-align: center;
}
.check-my-tickets__cell-footer-note a {
  color: #777777;
  margin-left: 5px;
}
.check-my-tickets__cell-footer .btn, .check-my-tickets__cell-footer .heading-w-text .file a, .heading-w-text .file .check-my-tickets__cell-footer a {
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .check-my-tickets__cell-footer .btn, .check-my-tickets__cell-footer .heading-w-text .file a, .heading-w-text .file .check-my-tickets__cell-footer a {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .check-my-tickets__cell .form__group {
    display: flex;
    flex-flow: column;
  }
  .check-my-tickets__cell .form__group select {
    width: 100%;
    margin-bottom: 10px;
  }
}

/***** Check My Tickets End*****/
/***** Our *****/
.our-block {
  margin-bottom: 40px;
}
.our__promo {
  display: flex;
  align-items: stretch;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .our__promo {
    flex-flow: column-reverse;
  }
}
.our__promo-text {
  max-width: 275px;
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
  .our__promo-text {
    max-width: none;
    margin-right: 0;
  }
}
.our__promo-text p {
  margin-bottom: 20px;
}
.our__promo-text p:last-child {
  margin-bottom: 0;
}
.our__promo-img {
  width: 100%;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 992px) {
  .our__promo-img {
    overflow: hidden;
    max-height: 244px;
  }
}
.our__promo-img p {
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .our__promo-img p {
    max-height: inherit;
    transform: translateY(50%);
  }
}
.our__promo-img img {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .our__promo-img img {
    display: block;
    transform: translateY(-50%);
  }
}
.our__list {
  display: flex;
  margin: 0 -8px 64px 0;
}
@media (max-width: 768px) {
  .our__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.our__list-item {
  position: relative;
  border: 1px solid #888888;
  box-shadow: 0px 4px 0px #707070;
  border-radius: 20px;
  overflow: hidden;
  width: 220px;
  max-width: 220px;
  flex: 1 1 auto;
  margin: 0 8px;
}
@media (max-width: 768px) {
  .our__list-item {
    max-width: 220px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .our__list-item {
    width: 40%;
  }
}
@media (max-width: 400px) {
  .our__list-item {
    width: 100%;
    max-width: 258px;
  }
}
.our__list-item .content a {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.our__list-item .content a img {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  filter: grayscale(100%);
}
.our__list-item .content p {
  margin: 0;
}
.our__list-item .content img {
  filter: grayscale(100%);
}
.our__list-item .content h2, .our__list-item .content-text {
  padding: 25px 30px 60px 30px;
  margin: 0;
  box-sizing: border-box;
  text-align: center;
  font-family: "Cervo Neue";
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #000;
}
@media (max-width: 992px) {
  .our__list-item .content h2, .our__list-item .content-text {
    padding: 16px 16px 46px 16px;
    font-size: 16px;
  }
}
.our__list-item .content h2 p, .our__list-item .content-text p {
  margin: 0;
}
.our__list-item--active .content img, .our__list-item_active .content img {
  filter: grayscale(0);
}
.our__list-item--active .content a img, .our__list-item_active .content a img {
  filter: grayscale(0);
}
.our__list-item:nth-child(1).our__list-item--active, .our__list-item:nth-child(1).our__list-item_active, .our__list-item:nth-child(3).our__list-item--active, .our__list-item:nth-child(3).our__list-item_active {
  box-shadow: 0px 4px 0px #D02032;
}
.our__list-item:nth-child(2).our__list-item--active, .our__list-item:nth-child(2).our__list-item_active {
  box-shadow: 0px 4px 0px #446DB4;
}
.our__list-item:nth-child(4).our__list-item--active, .our__list-item:nth-child(4).our__list-item_active {
  box-shadow: 0px 4px 0px #FDBB30;
}
.our__list-item:nth-child(5).our__list-item--active, .our__list-item:nth-child(5).our__list-item_active {
  box-shadow: 0px 4px 0px #16911E;
}
.our__roots {
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .our__roots {
    flex-flow: column;
    align-items: center;
  }
}
.our__roots .title-text-block {
  width: 100%;
  max-width: 275px;
  margin: 0 8px;
}
@media (max-width: 992px) {
  .our__roots .title-text-block {
    max-width: 344px;
    margin: 0 0 16px 0;
  }
  .our__roots .title-text-block:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 576px) {
  .our__roots .title-text-block {
    max-width: 100%;
  }
}
.our__main {
  margin-bottom: 64px;
}
.our__people-info {
  margin-bottom: 20px;
}
.our__people-info-title {
  text-align: center;
  margin-bottom: 16px;
}
.our__people-info p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 19px;
  color: #777777;
}
.our__people-table {
  margin-bottom: 64px;
}
.our__people-table table {
  margin-bottom: 20px;
}
.our__people-table table thead tr th {
  padding: 10px 10px;
  font-size: 20px;
  line-height: 24px;
}
.our__people-table table tbody tr td:nth-child(1) {
  font-size: 16px;
  text-transform: uppercase;
  min-width: 335px;
}
.our__people-table table tbody tr:last-child {
  font-weight: 700;
  background-color: #BBBBBB !important;
}
.our__people-table-description {
  font-weight: 700;
  color: #000;
  text-align: center;
  text-align: center;
}
.our__people-scheme {
  margin-bottom: 64px;
}
.our__people-scheme p {
  margin-bottom: 16px;
}
.our__people-scheme-main {
  display: flex;
}
.our__people-scheme-main-item {
  position: relative;
  width: 50%;
}
.our__people-scheme-main-item .btn-increase {
  position: absolute;
  top: 0;
  right: 0;
}
.our__people-scheme-main-item p {
  margin: 0;
}
.our__people-scheme-img {
  display: block;
  width: 100%;
}
.our__people-gen {
  margin-bottom: 64px;
}
.our__people-gen-title {
  text-align: center;
  margin-bottom: 16px;
}
.our__people-gen-main {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .our__people-gen-main {
    flex-flow: column;
  }
}
.our__people-gen-img {
  display: block;
  width: 100%;
  min-width: 280px;
  margin-right: 16px;
}
@media (max-width: 768px) {
  .our__people-gen-img {
    max-width: none;
    margin-right: 0;
    margin-bottom: 24px;
    min-width: auto;
  }
}
.our__people-gen-img p {
  margin: 0;
}
.our__people-gen-text {
  font-size: 14px;
  line-height: 19px;
}
.our__people-gen-text p:first-child {
  margin-top: 0;
}
.our__people-review {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .our__people-review {
    flex-flow: column-reverse;
  }
}
.our__people-review-main {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .our__people-review-main {
    margin-right: 0;
  }
}
.our__people-review-text {
  max-width: 750px;
  overflow: hidden;
  margin-bottom: 32px;
}
.our__people-review-text p {
  font-size: 14px;
  line-height: 20px;
  font-style: italic;
  color: #000;
  padding: 15px 25px;
  box-sizing: border-box;
  border-radius: 25px;
  background-color: #eeeeee;
  margin-left: 40px;
  margin-right: 40px;
}
.our__people-review-text-icon {
  width: 36px;
  height: 28px;
}
.our__people-review-text-icon_right {
  float: right;
}
.our__people-review-img {
  display: block;
  width: 100%;
  max-width: 275px;
}
@media (max-width: 768px) {
  .our__people-review-img {
    margin: 0 auto 32px;
  }
}
.our__people-review-img p {
  margin: 0;
}
.our__people-review-signature {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  color: black;
}
.our__people-review-signature-name {
  font-size: 24px;
  line-height: 28px;
}
.our__people-review-signature-profession {
  font-size: 14px;
  line-height: 19px;
}
.our__banner-card-grid {
  display: flex;
  align-items: flex-start;
  margin: 0 -8px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .our__banner-card-grid {
    flex-flow: column;
  }
}
.our__banner-card-grid .banner-card {
  flex: 1 1 auto;
  margin: 0 8px;
  width: 33.3%;
}
@media (max-width: 768px) {
  .our__banner-card-grid .banner-card {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.our .banner-increasing {
  margin-bottom: 40px;
}
.our__preview-link {
  display: flex;
  justify-content: center;
}
@media (max-width: 576px) {
  .our__preview-link {
    flex-flow: column;
    align-items: center;
  }
}
.our__preview-link .preview-link {
  width: 100%;
  max-width: 370px;
  margin: 0 8px;
}
@media (max-width: 576px) {
  .our__preview-link .preview-link {
    margin: 0 0 16px 0;
  }
  .our__preview-link .preview-link:last-child {
    margin: 0;
  }
}

/***** Our End*****/
/***** Retailers *****/
.retailers .h1 {
  text-align: center;
}
.retailers__info {
  margin: 0 auto 64px;
}
.retailers__info ul li {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 5px;
}
.retailers__info ul li:last-child {
  margin-bottom: 0;
}
.retailers__info p {
  font-size: 14px;
  line-height: 19px;
}
.retailers__portal {
  margin-bottom: 64px;
}
.retailers__portal-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .retailers__portal-inner {
    flex-flow: column-reverse;
  }
}
.retailers__portal-img {
  display: block;
  width: 100%;
  max-width: 370px;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .retailers__portal-img {
    margin-left: auto;
    margin: 0 auto 20px;
  }
}
.retailers__portal-img img {
  display: block;
  width: 100%;
}
@media (max-width: 992px) {
  .retailers__portal-main {
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
}
.retailers__portal .btn, .retailers__portal .heading-w-text .file a, .heading-w-text .file .retailers__portal a {
  max-width: 370px;
  margin-bottom: 15px;
}
.retailers__features > p {
  text-align: center;
  font-size: 14px;
  line-height: 19px;
  color: #000;
  margin-bottom: 16px;
}
.retailers__features-grid {
  display: flex;
  margin: 0 -8px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .retailers__features-grid {
    flex-wrap: wrap;
  }
}
.retailers__features-grid .features-card {
  width: 25%;
  flex: 1 1 auto;
  margin: 0 8px;
}
@media (max-width: 768px) {
  .retailers__features-grid .features-card {
    width: 45%;
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .retailers__features-grid .features-card {
    width: 100%;
  }
}
.retailers__features-subtitle {
  text-align: center;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 16px;
}
.retailers__features-grid {
  display: flex;
  margin: 0 -8px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .retailers__features-grid {
    flex-wrap: wrap;
  }
}
.retailers__features-grid .features-card {
  width: 25%;
  flex: 1 1 auto;
  margin: 0 8px;
}
@media (max-width: 768px) {
  .retailers__features-grid .features-card {
    width: 45%;
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .retailers__features-grid .features-card {
    width: 100%;
  }
}
.retailers__flyers > p {
  text-align: center;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 16px;
}
.retailers__flyers-grid {
  display: flex;
  margin: 0 -8px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .retailers__flyers-grid {
    flex-wrap: wrap;
  }
}
.retailers__flyers-grid .flyers-card {
  width: 25%;
  flex: 1 1 auto;
  margin: 0 8px;
}
@media (max-width: 768px) {
  .retailers__flyers-grid .flyers-card {
    width: 45%;
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .retailers__flyers-grid .flyers-card {
    width: 100%;
  }
}
.retailers__where-head {
  max-width: 570px;
  margin: 0 auto 16px;
}
.retailers__where-head p {
  font-size: 14px;
  line-height: 19px;
}
.retailers__where img {
  display: block;
  width: 100%;
}
.retailers__where > p {
  margin: 0;
}

/***** Retailers End*****/
/***** Play Responsibly *****/
.play-responsibly-video {
  display: flex;
  align-items: flex-start;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .play-responsibly-video {
    flex-flow: column;
  }
}
@media (max-width: 992px) {
  .play-responsibly-video__text {
    margin-bottom: 2rem;
  }
}
.play-responsibly-video__text p {
  font-size: 14px;
  line-height: 19px;
}
.play-responsibly-video__text p:last-child {
  margin-bottom: 0;
}
.play-responsibly-video__iframe {
  width: 100%;
  max-width: 374px;
  margin-left: 100px;
}
@media (max-width: 992px) {
  .play-responsibly-video__iframe {
    margin: 0 auto 16px;
    max-width: 584px;
  }
}
.play-responsibly-video__iframe p {
  margin: 0;
}
.play-responsibly-video__iframe img,
.play-responsibly-video__iframe iframe {
  display: block;
  width: 100%;
  min-height: 256px;
}
@media (max-width: 992px) {
  .play-responsibly-video__iframe img,
.play-responsibly-video__iframe iframe {
    min-height: 328px;
  }
}

.play-reports {
  margin-bottom: 64px;
}
.play-reports .grid-4-2-1 {
  margin-bottom: 32px;
}

.play-achievements__row {
  margin-bottom: 64px;
}
.play-achievements__row:last-child {
  margin-bottom: 0;
}
.play-achievements__text {
  text-align: justify;
}
.play-achievements__text h2,
.play-achievements__text h3 {
  text-align: center;
}
.play-achievements__text h3 {
  font-family: "Cervo Neue";
}
.play-achievements__text p {
  font-size: 14px;
  line-height: 19px;
}
.play-achievements .col-lg-8 p {
  margin: 0;
}
.play-achievements img {
  display: block;
  width: 100%;
}

/***** Play Responsibly End *****/
/***** Lottery Related *****/
.lottery-related__head p {
  font-size: 14px;
  line-height: 19px;
  max-width: 568px;
}
.lottery-related__head .btn, .lottery-related__head .heading-w-text .file a, .heading-w-text .file .lottery-related__head a {
  padding-right: 60px;
  padding-left: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .lottery-related__head .btn, .lottery-related__head .heading-w-text .file a, .heading-w-text .file .lottery-related__head a {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.lottery-related__protect {
  display: flex;
  align-items: flex-start;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .lottery-related__protect {
    flex-wrap: wrap;
  }
}
.lottery-related__protect-main {
  max-width: 570px;
  margin-right: 114px;
}
@media (max-width: 768px) {
  .lottery-related__protect-main {
    max-width: none;
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.lottery-related__protect .b-info {
  width: 370px;
  min-width: 370px;
}
@media (max-width: 768px) {
  .lottery-related__protect .b-info {
    width: 100%;
    max-width: 370px;
    min-width: auto;
    margin: 0 auto;
  }
}
.lottery-related__tips {
  display: flex;
  align-items: flex-start;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .lottery-related__tips {
    flex-wrap: wrap;
  }
}
.lottery-related__tips-main {
  max-width: 665px;
  margin-right: 114px;
}
@media (max-width: 768px) {
  .lottery-related__tips-main {
    max-width: none;
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.lottery-related__tips-image {
  margin: 0;
  max-width: 276px;
  min-width: 200px;
}
@media (max-width: 768px) {
  .lottery-related__tips-image {
    margin: 0 auto;
  }
}
.lottery-related__tips-image img {
  display: block;
  width: 100%;
}
.lottery-related__sign img {
  display: block;
  width: 100%;
  max-width: 178px;
  margin: 0 auto 16px;
}
.lottery-related__sign p {
  max-width: 568px;
  margin: 0 auto;
  text-align: center;
}
.lottery-related__sign p:first-child {
  margin: 0 auto;
}

/***** Lottery Related End*****/
/***** Problem Gambling *****/
.problem-gambling__head {
  display: flex;
  align-items: start;
  margin-bottom: 32px;
}
@media only screen and (max-width: 505px) {
  .problem-gambling__head {
    flex-flow: column;
    justify-content: center;
  }
}
.problem-gambling__head-info {
  max-width: 763px;
  margin-right: 114px;
}
@media only screen and (max-width: 700px) {
  .problem-gambling__head-info {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 580px) {
  .problem-gambling__head-info {
    margin-right: 10px;
  }
}
.problem-gambling__head-info p {
  margin-bottom: 24px;
}
.problem-gambling__head .btn, .problem-gambling__head .heading-w-text .file a, .heading-w-text .file .problem-gambling__head a {
  margin-bottom: 16px;
  max-width: 370px;
}
.problem-gambling__head-image {
  display: block;
  width: 100%;
  /*max-width: 179px; affects problem-gambling jsp
  min-width: 150px;*/
}
@media only screen and (max-width: 505px) {
  .problem-gambling__head-image {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
.problem-gambling__head-image img {
  display: block;
  width: 100%;
}
.problem-gambling__video p {
  max-width: 560px;
  margin: 0 auto 64px;
}
.problem-gambling__video p img {
  display: block;
  width: 100%;
}

/***** Problem Gambling End*****/
/***** Employment Opportunities *****/
.employment-opportunities__head {
  max-width: 763px;
  margin-bottom: 64px;
}
.employment-opportunities__head b {
  color: #000;
}

/***** Employment Opportunities End *****/
/***** Missouri Lottery Commission *****/
.missouri-lottery__main {
  display: flex;
  align-items: start;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .missouri-lottery__main {
    flex-wrap: wrap;
  }
}
.missouri-lottery__main-info {
  margin-right: 16px;
}
@media (max-width: 768px) {
  .missouri-lottery__main-info {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.missouri-lottery__main .people-card {
  min-width: 373px;
  width: 373px;
}
@media (max-width: 768px) {
  .missouri-lottery__main .people-card {
    min-width: auto;
    width: 100%;
    max-width: 373px;
    margin: 0 auto;
  }
}
.missouri-lottery .people-card {
  height: 100%;
}

/***** Missouri Lottery Commission End *****/
/***** Speaker's Bureau *****/
.speakers-bureau__main {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .speakers-bureau__main {
    flex-flow: column-reverse;
  }
}
.speakers-bureau__info {
  width: 568px;
  margin-right: 114px;
}
@media (max-width: 768px) {
  .speakers-bureau__info {
    width: 100%;
    margin-right: 0;
  }
}
.speakers-bureau__img {
  max-width: 384px;
}
@media (max-width: 768px) {
  .speakers-bureau__img {
    margin: 0 auto 24px;
  }
}
.speakers-bureau__img img {
  display: block;
  width: 100%;
  max-width: 384px;
}

/***** Speaker's Bureau End *****/
/***** Pull-Tabs *****/
.pull-tabs__head {
  display: flex;
  align-items: flex-start;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .pull-tabs__head {
    flex-flow: column-reverse;
  }
}
.pull-tabs__head-info {
  width: 763px;
  margin-right: 114px;
}
@media (max-width: 768px) {
  .pull-tabs__head-info {
    width: 100%;
    margin-right: 0;
  }
  .pull-tabs__head-info p {
    margin-top: 0;
  }
}
.pull-tabs__head img {
  display: block;
  width: 100%;
  max-width: 179px;
}
@media (max-width: 768px) {
  .pull-tabs__head img {
    margin: 0 auto;
  }
}
.pull-tabs__head > p {
  margin: 0;
}
@media (max-width: 768px) {
  .pull-tabs__head > p {
    margin: 0 auto 24px;
  }
}

/***** Pull-Tabs End *****/
/***** Where to Play *****/
.where-to-play-form__row .form__input {
  display: block;
  width: 100%;
}
.where-to-play-form__title {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 8px;
}
.where-to-play-form .form-item {
  margin-bottom: 24px;
}
.where-to-play-form .form-item.form-type-textfield label {
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  margin-bottom: 10px;
  display: block;
}
.where-to-play-form .form-item.fieldgroup legend {
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  margin-bottom: 10px;
  display: block;
}
.where-to-play-form .form-item.fieldgroup .form-item {
  margin: 0;
}
.where-to-play-form .form-item label {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 8px;
}
.where-to-play-form .form-item .form-text {
  display: block;
  width: 100%;
}
.where-to-play-form .form-item_error .form__field-input {
  border-color: #B5132C !important;
}
.where-to-play-form .form-item-error {
  font-size: 14px;
  line-height: 19px;
  color: #B5132C;
  margin-top: 8px;
}
.where-to-play-form fieldset {
  border: none;
  padding: 0;
}
.where-to-play-form legend {
  display: none;
}
.where-to-play-form .js-form-item {
  margin-bottom: 8px;
}
.where-to-play-form .js-form-item .option {
  font-size: 14px;
  line-height: 18px;
}
.where-to-play-form input[type=checkbox]:checked,
.where-to-play-form input[type=checkbox]:not(:checked),
.where-to-play-form input[type=radio]:checked,
.where-to-play-form input[type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.where-to-play-form input[type=checkbox]:checked + label,
.where-to-play-form input[type=checkbox]:not(:checked) + label,
.where-to-play-form input[type=radio]:checked + label,
.where-to-play-form input[type=radio]:not(:checked) + label {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  line-height: 20px;
  cursor: pointer;
}
.where-to-play-form input[type=checkbox]:checked + label:before,
.where-to-play-form input[type=checkbox]:not(:checked) + label:before,
.where-to-play-form input[type=radio]:checked + label:before,
.where-to-play-form input[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  background-color: #ffffff;
}
.where-to-play-form input[type=checkbox]:checked + label:before,
.where-to-play-form input[type=checkbox]:not(:checked) + label:before {
  border-radius: 2px;
}
.where-to-play-form input[type=radio]:checked + label:before,
.where-to-play-form input[type=radio]:not(:checked) + label:before {
  border-radius: 100%;
}
.where-to-play-form input[type=checkbox]:checked + label:after,
.where-to-play-form input[type=checkbox]:not(:checked) + label:after,
.where-to-play-form input[type=radio]:checked + label:after,
.where-to-play-form input[type=radio]:not(:checked) + label:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.where-to-play-form input[type=checkbox]:checked + label:after,
.where-to-play-form input[type=checkbox]:not(:checked) + label:after {
  left: 3px;
  top: 4px;
  width: 13px;
  height: 8px;
  border-radius: 1px;
  border-left: 4px solid #065596;
  border-bottom: 4px solid #065596;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.where-to-play-form input[type=radio]:checked + label:after,
.where-to-play-form input[type=radio]:not(:checked) + label:after {
  left: 3px;
  top: 3px;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #065596;
}
.where-to-play-form input[type=checkbox]:not(:checked) + label:after,
.where-to-play-form input[type=radio]:not(:checked) + label:after {
  opacity: 0;
}
.where-to-play-form input[type=checkbox]:checked + label:after,
.where-to-play-form input[type=radio]:checked + label:after {
  opacity: 1;
}

/***** Where to Play End *****/
/***** Retailer Search Results *****/
.retailer-search-results .table-responsive {
  max-width: 957px;
  margin: 0 auto 40px;
}

/***** Retailer Search Results End *****/
/***** Ways to Win *****/
.ways-to-win__head {
  max-width: 763px;
  margin-bottom: 64px;
}
.ways-to-win .title-center {
  margin-bottom: 10px;
}
.ways-to-win .h1 {
  margin-bottom: 0;
}

/***** Ways to Win End *****/
/***** Front  *****/
.front-slick {
  width: 100%;
  overflow: hidden;
  max-width: 1360px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}
.front-slick:not(.slick-initialized) {
  white-space: nowrap;
  position: relative;
}
.front-slick__item:not(.slick-slide) {
  height: 100%;
  min-height: 1px;
  margin: 0 15px;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (min-width: 400px) {
  .front-slick__item:not(.slick-slide) {
    min-width: 300px;
  }
}
.front-slick .slick-slide {
  margin: 0 20px;
}
.front-slick .slick-list {
  margin: 0 -20px;
}

.front-games__item {
  display: flex !important;
  width: 100% !important;
  max-width: 295px !important;
  margin: 0 auto !important;
}

.front-slick-slider {
  position: relative;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 25px;
}
.front-slick-slider:hover .front-slick-slider__prev,
.front-slick-slider:hover .front-slick-slider__next {
  opacity: 1;
}
.front-slick-slider__prev, .front-slick-slider__next {
  width: 45px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
@media (max-width: 1024px) {
  .front-slick-slider__prev, .front-slick-slider__next {
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .front-slick-slider__prev, .front-slick-slider__next {
    width: 15px;
  }
}
.front-slick-slider__prev img, .front-slick-slider__next img {
  width: 25px;
}
@media (max-width: 576px) {
  .front-slick-slider__prev img, .front-slick-slider__next img {
    width: 15px;
  }
}
.front-slick-slider__prev {
  left: 0;
}
.front-slick-slider__next {
  right: 0;
}
.scratchers-list__item {
    flex: 1;
    min-width: 295px;
    max-width: 295px;
}
.scratchers-list_big-list {
    display: flex;
    flex-wrap: wrap;
}
.scratchers-list_feat-list {
    display: inline-block;
    flex-wrap: wrap;
}

.layout--twocol-section {
  display: flex;
  flex-wrap: wrap;
}

.layout--twocol-section > .layout__region {
  flex: 0 1 100%;
}

.unactive-header {
  font-weight: normal !important;
  text-decoration: none !important;
}

.is-active-header {
  font-weight: 700 !important;
  text-decoration: underline !important;
}

.navHover {
  font-weight: normal !important;
  text-decoration: underline !important;
}

@media screen and (min-width: 40em) {
  .layout--twocol-section.layout--twocol-section--50-50 > .layout__region--first,
  .layout--twocol-section.layout--twocol-section--50-50 > .layout__region--second {
    flex: 0 1 50%;
  }

  .layout--twocol-section.layout--twocol-section--33-67 > .layout__region--first,
  .layout--twocol-section.layout--twocol-section--67-33 > .layout__region--second {
    flex: 0 1 33%;
  }

  .layout--twocol-section.layout--twocol-section--33-67 > .layout__region--second,
  .layout--twocol-section.layout--twocol-section--67-33 > .layout__region--first {
    flex: 0 1 67%;
  }

  .layout--twocol-section.layout--twocol-section--25-75 > .layout__region--first,
  .layout--twocol-section.layout--twocol-section--75-25 > .layout__region--second {
    flex: 0 1 25%;
  }

  .layout--twocol-section.layout--twocol-section--25-75 > .layout__region--second,
  .layout--twocol-section.layout--twocol-section--75-25 > .layout__region--first {
    flex: 0 1 75%;
  }
}
.bordered-blocks__item.bordered-blocks__item_download .bordered-blocks__link::after, .bordered-blocks_w-links .bordered-blocks__item.bordered-blocks__item_download .bordered-blocks__link::after {
    font-style: normal;
    font-size: 24px;
    position: absolute;
    top: 0;
    margin-top: 0px;
    right: 0;
    content: "";
    background: url(/css/img/icon_download.svg);
    background-repeat: no-repeat;
    width: 27px;
    height: 24px;
}


/*
 * Three col section imported
 * Provides the layout styles for three-column layout section.
 */

.layout--threecol-section {
  display: flex;
  flex-wrap: wrap;
}

.layout--threecol-section > .layout__region {
  flex: 0 1 100%;
}

@media screen and (min-width: 40em) {
  .layout--threecol-section--25-50-25 > .layout__region--first,
  .layout--threecol-section--25-50-25 > .layout__region--third,
  .layout--threecol-section--25-25-50 > .layout__region--first,
  .layout--threecol-section--25-25-50 > .layout__region--second,
  .layout--threecol-section--50-25-25 > .layout__region--second,
  .layout--threecol-section--50-25-25 > .layout__region--third {
    flex: 0 1 25%;
  }
  .layout--threecol-section--25-50-25 > .layout__region--second,
  .layout--threecol-section--25-25-50 > .layout__region--third,
  .layout--threecol-section--50-25-25 > .layout__region--first {
    flex: 0 1 50%;
  }
  .layout--threecol-section--33-34-33 > .layout__region--first,
  .layout--threecol-section--33-34-33 > .layout__region--third {
    flex: 0 1 33%;
  }
  .layout--threecol-section--33-34-33 > .layout__region--second {
    flex: 0 1 34%;
  }
}

/*
 * Two col section import
 * Provides the layout styles for two-column layout section.
 */

.layout--twocol-section {
  display: flex;
  flex-wrap: wrap;
}

.layout--twocol-section > .layout__region {
  flex: 0 1 100%;
}

@media screen and (min-width: 40em) {
  .layout--twocol-section.layout--twocol-section--50-50 > .layout__region--first,
  .layout--twocol-section.layout--twocol-section--50-50 > .layout__region--second {
    flex: 0 1 50%;
  }

  .layout--twocol-section.layout--twocol-section--33-67 > .layout__region--first,
  .layout--twocol-section.layout--twocol-section--67-33 > .layout__region--second {
    flex: 0 1 33%;
  }

  .layout--twocol-section.layout--twocol-section--33-67 > .layout__region--second,
  .layout--twocol-section.layout--twocol-section--67-33 > .layout__region--first {
    flex: 0 1 67%;
  }

  .layout--twocol-section.layout--twocol-section--25-75 > .layout__region--first,
  .layout--twocol-section.layout--twocol-section--75-25 > .layout__region--second {
    flex: 0 1 25%;
  }

  .layout--twocol-section.layout--twocol-section--25-75 > .layout__region--second,
  .layout--twocol-section.layout--twocol-section--75-25 > .layout__region--first {
    flex: 0 1 75%;
  }
}

/*********Header Media Quearys***********/
@media only screen and (max-width: 1300px) {
  #submenu5 {
    right: 0px !important;
    left: auto !important;
  }
  #submenu6 {
    right: 0px !important;
    left: auto !important;
  }
}
@media only screen and (max-width: 900px) {

  .header-main .container {
    flex-wrap: wrap;
  }
  .header-main .container {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 15px;
  }
  .header-main__menu  {
    text-decoration: none;
    color: #043965;
    font-size: 1.2rem;
    /*padding: 0.6rem 1.2rem 1.125rem;*/
    font-weight: 400;
    font-family: "Cervo Neue";
    display: block;
  }
  /*centering main navigation*/
  .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li {
    /*margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    padding-left: 15px;*/
    text-align: center  !important;
}
/*centering main navigation children*/
.sf-no-children {
  text-align: center  !important;
}
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li {
  display: block;
  align-items: center;
  margin-left: 14px;
  margin-right: 14px;
  padding: 0;
}

.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) {
  list-style: none;
  font-family: "Cervo Neue";
  position: relative;
  z-index: 999;
}

ul.sf-menu.menu, ul.sf-menu.menu ul, ul.sf-menu.menu li {
  margin: 0;
  padding: 0;
}

.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li span.my-lottery, .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li a.my-lottery {
  font-style: normal;
  margin-left: 22px;
}

.unactive-header {
  font-weight: normal !important;
  text-decoration: none !important;
}

.is-active-header {
  /*font-weight: 700 !important;*/
  text-decoration: underline !important;
}

a:hover {
  text-decoration: none;
}

/*ul.sf-menu {
  line-height: 1.0 !important;
  z-index: 497 !important;
}*/

.sf-depth-1, .sf-depth-2 {
  padding: 0rem 0rem 1rem !important;
  /*padding-top: 0.05rem !important;*/
  /*padding-right: 1.2rem !important;*/
  padding-bottom: 1rem !important;

}

.sf-sub-indicator{
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  display: block !important;
}

ul.sf-menu .sf-sub-indicator:after {
  content: "▼";
  left: 0!important;
  line-height: 1;
  position: absolute;
  text-indent: 0;
  top: 0;
}

.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li span.sf-depth-1 > .sf-sub-indicator, .header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li a.sf-depth-1 > .sf-sub-indicator {
  position: absolute;
  right: 0;
  margin-right: -20px;
  margin-top: 3px;
}

ul.sf-menu a, ul.sf-menu span.nolink {
  display: inline-flex;
  position: relative;
}

.newIndicator {
  margin-right: -31px;
}

/*mobile header click styling*/ 
.header-main__menu ul.sf-main.sf-horizontal:not(.contextual-links) > li.sf-depth-1.menuparent > ul {
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 10rem !important;
  padding: 0.5rem 0 !important;
  margin: 0.125rem 0 0 !important;
  font-size: 1rem !important;
  color: #212529 !important;
  text-align: left !important;
  list-style: none !important;
  background-color: #fff !important;
  background-clip: padding-box !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  border-radius: 0.25rem !important;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.35) !important;
  border-bottom-left-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  position: static !important;
  max-width: 520px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#mainMenuId {
  display:none;
}
}

.hiddenListItem {
  display:none;
}

/* CheckTickets labels/tables */
.table-w-count {
  counter-reset: timeline-counter;
}

.table-w-count__row {
  position: relative;
  counter-increment: timeline-counter;
  padding-bottom: 16px
}

.table-w-count__row::before {
  content: counter(timeline-counter, upper-alpha);
  border-radius: 50%;
  position: absolute;
  left: -82px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Cervo Neue";
  font-style: normal;
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 19px;
  color: #043965;
  width: 49px;
  height: 49px;
  background: #fff;
  border: 1px solid #bbb;
  box-shadow: inset 0 3px 6px rgb(0 0 0 / 25%);
  z-index: 1;
}

.table-w-count__row::after {
  content: "";
  background: #888;
  width: 3px;
  height: 100%;
  position: absolute;
  top: 30px;
  left: -60px;
  z-index: 0;
}

.table-w-count__row:last-child::after {
  display: none;
}
/****************************/

/***** Front End *****/
/*# sourceMappingURL=maps/main.css.map */
