@charset "UTF-8";

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  to {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

@keyframes flash {

  0%,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes pulse {

  0%,
  to {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes shake {

  0%,
  to {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  to {
    transform: rotate(0);
  }
}

@keyframes tada {
  0% {
    transform: scale(1);
  }

  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }

  to {
    transform: scale(1) rotate(0);
  }
}

@keyframes wobble {

  0%,
  to {
    transform: translateX(0);
  }

  15% {
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  to {
    transform: scale(1);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(30px);
  }

  80% {
    transform: translateY(-10px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(30px);
  }

  80% {
    transform: translateX(-10px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(-30px);
  }

  80% {
    transform: translateX(10px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(-30px);
  }

  80% {
    transform: translateY(10px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes bounceOut {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  to {
    opacity: 0;
    transform: scale(0.3);
  }
}

@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(-20px);
  }

  to {
    opacity: 0;
    transform: translateY(2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(20px);
  }

  to {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(-20px);
  }

  to {
    opacity: 0;
    transform: translateX(2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(20px);
  }

  to {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(2000px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(20px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(2000px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    transform: perspective(400px) rotateX(10deg);
  }

  to {
    transform: perspective(400px) rotateX(0);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    transform: perspective(400px) rotateY(10deg);
  }

  to {
    transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    transform: translateX(0) skewX(-15deg);
    opacity: 1;
  }

  to {
    transform: translateX(0) skewX(0);
    opacity: 1;
  }
}

@keyframes lightSpeedOut {
  0% {
    transform: translateX(0) skewX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }

  to {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }

  to {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(2000px);
  }
}

@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  to {
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }

  to {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.flash {
  animation-name: flash;
}

.pulse {
  animation-name: pulse;
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

.bounceOut {
  animation-name: bounceOut;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInRight {
  animation-name: fadeInRight;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.fadeOut {
  animation-name: fadeOut;
}

.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

.rollOut {
  animation-name: rollOut;
}

/*!
* Bootstrap  v5.2.3 (https://getbootstrap.com/)
* Copyright 2011-2022 The Bootstrap Authors
* Copyright 2011-2022 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: none;
  }
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

@keyframes placeholder-wave {
  to {
    -webkit-mask-position: -200% 0%;
    mask-position: -200% 0%;
  }
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

: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-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}

*,
::after,
::before {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background: #c00;
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h5 {
  font-weight: 500;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.h1,
h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {

  .h1,
  h1 {
    font-size: 2.5rem;
  }
}

.h2,
h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {

  .h2,
  h2 {
    font-size: 2rem;
  }
}

.h3,
h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {

  .h3,
  h3 {
    font-size: 1.75rem;
  }
}

.h4,
h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {

  .h4,
  h4 {
    font-size: 1.5rem;
  }
}

.h5,
h5 {
  font-size: 1.25rem;
}

.h6,
h6 {
  font-size: 1rem;
}

dl,
p {
  margin-top: 0;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address,
dl,
ol,
p,
ul {
  margin-bottom: 1rem;
}

address {
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
  margin-top: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote,
figure {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

.small,
small {
  font-size: 0.875em;
}

.mark,
mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--bs-link-color);
}

a:hover {
  color: var(--bs-link-hover-color);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: var(--bs-font-monospace);
}

samp {
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

pre code {
  font-size: inherit;
  word-break: normal;
}

code,
kbd,
pre {
  font-size: 0.875em;
}

code {
  word-wrap: break-word;
  color: var(--bs-code-color);
}

a>code,
pre code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label,
output {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

.form-control[type="file"]:not(:disabled):not([readonly]),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend+* {
  clear: left;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.list-inline,
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote> :last-child {
  margin-bottom: 0;
}

.figure {
  display: inline-block;
}

.container,
.container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
  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%;
}

.col-4 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  width: 33.33333333%;
}

.col-6 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  width: 50%;
}

.col-8 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  width: 66.66666667%;
}

.col-10 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  width: 83.33333333%;
}

.col-12 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.g-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1 {
  --bs-gutter-y: 0.25rem;
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-3,
  .col-lg-4 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-5,
  .col-lg-6 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7,
  .col-lg-8 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }
}

@media (min-width: 1200px) {
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-5,
  .col-xl-6 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    width: 50%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    width: 66.66666667%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    width: 83.33333333%;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }
}

@media (min-width: 1400px) {
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-3,
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    width: 33.33333333%;
  }

  .col-xxl-5,
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    width: 50%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    width: 66.66666667%;
  }

  .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%;
  }
}

.table {
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}

.table> :not(caption)>*>* {
  padding: 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table>tbody {
  vertical-align: inherit;
}

.table>thead {
  vertical-align: bottom;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control[type="file"] {
  overflow: hidden;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}

.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    transition: none;
  }

  .form-control::file-selector-button {
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group>.form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group>.form-control:focus {
  z-index: 5;
}

.input-group .btn {
  position: relative;
  z-index: 2;
}

.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: #212529;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.375rem;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -ms-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
}

.btn:focus-visible {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}

.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check)+.btn:active:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-color: #fff;
  --bs-btn-disabled-color: #fff;
}

.btn-secondary {
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.btn-secondary,
.btn-success,
.btn-warning {
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-hover-color: #000;
  --bs-btn-active-color: #000;
  --bs-btn-disabled-color: #000;
}

.btn-warning {
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: none;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}

.btn-link:focus-visible {
  color: var(--bs-btn-color);
}

.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropdown,
.dropdown-center,
.dropend,
.dropstart,
.dropup,
.dropup-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after,
.dropend .dropdown-toggle:empty::after,
.dropstart .dropdown-toggle:empty::after,
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: #212529;
  --bs-dropdown-bg: #fff;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: 0.375rem;
  --bs-dropdown-border-width: 1px;
  --bs-dropdown-inner-border-radius: calc(0.375rem - 1px);
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-dropdown-link-color: #212529;
  --bs-dropdown-link-hover-color: #1e2125;
  --bs-dropdown-link-hover-bg: #e9ecef;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}

.dropend .dropdown-toggle::after,
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropend .dropdown-toggle::after {
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  vertical-align: 0;
}

.dropstart .dropdown-toggle::after {
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  display: none;
}

.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
  vertical-align: 0;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}

.nav-link:focus,
.nav-link:hover {
  color: var(--bs-nav-link-hover-color);
}

.nav-link.disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  --bs-navbar-toggler-border-radius: 0.375rem;
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}

.navbar>.container,
.navbar>.container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
  color: var(--bs-navbar-active-color);
}

.navbar-nav .dropdown-menu {
  position: static;
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.375rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(0.375rem - 1px);
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #fff;
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}

.card>hr {
  margin-right: 0;
  margin-left: 0;
}

.card>.list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card>.list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card>.list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card>.card-header+.list-group,
.card>.list-group+.card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.accordion {
  --bs-accordion-color: #212529;
  --bs-accordion-bg: #fff;
  --bs-accordion-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: #212529;
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #0c63e4;
  --bs-accordion-active-bg: #e7f1ff;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:not(:first-of-type) {
  border-top: 0;
}

.accordion-item:last-of-type,
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.pagination {
  display: flex;
  list-style: none;
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: #fff;
  --bs-pagination-border-width: 1px;
  --bs-pagination-border-color: #dee2e6;
  --bs-pagination-border-radius: 0.375rem;
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: #e9ecef;
  --bs-pagination-hover-border-color: #dee2e6;
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: #e9ecef;
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: #6c757d;
  --bs-pagination-disabled-bg: #fff;
  --bs-pagination-disabled-border-color: #dee2e6;
  padding-left: 0;
}

.badge {
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: 0.375rem;
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
  --bs-alert-border-radius: 0.375rem;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.alert-success {
  --bs-alert-color: #0f5132;
  --bs-alert-bg: #d1e7dd;
  --bs-alert-border-color: #badbcc;
}

.alert-danger {
  --bs-alert-color: #842029;
  --bs-alert-bg: #f8d7da;
  --bs-alert-border-color: #f5c2c7;
}

.progress {
  display: flex;
  overflow: hidden;
}

.progress {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: #e9ecef;
  --bs-progress-border-radius: 0.375rem;
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #0d6efd;
  --bs-progress-bar-transition: width 0.6s ease;
  height: var(--bs-progress-height);
  font-size: var(--bs-progress-font-size);
  border-radius: var(--bs-progress-border-radius);
  background-color: var(--bs-progress-bg);
}

.list-group {
  --bs-list-group-color: #212529;
  --bs-list-group-bg: #fff;
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
  --bs-list-group-border-width: 1px;
  --bs-list-group-border-radius: 0.375rem;
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: #495057;
  --bs-list-group-action-hover-color: #495057;
  --bs-list-group-action-hover-bg: #f8f9fa;
  --bs-list-group-action-active-color: #212529;
  --bs-list-group-action-active-bg: #e9ecef;
  --bs-list-group-disabled-color: #6c757d;
  --bs-list-group-disabled-bg: #fff;
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #0d6efd;
  --bs-list-group-active-border-color: #0d6efd;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}

.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}

.list-group-item+.list-group-item {
  border-top-width: 0;
}

.list-group-item+.list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: 0.75rem;
  --bs-toast-padding-y: 0.5rem;
  --bs-toast-spacing: 1.5rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: 0.875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
  --bs-toast-border-width: 1px;
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: 0.375rem;
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-toast-header-color: #6c757d;
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}

.toast.showing {
  opacity: 0;
}

.toast:not(.show) {
  display: none;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }

  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
}

.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.5rem;
  --bs-tooltip-padding-y: 0.25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-color: #fff;
  --bs-tooltip-bg: #000;
  --bs-tooltip-border-radius: 0.375rem;
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  padding: var(--bs-tooltip-arrow-height);
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}

.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}

.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: #fff;
  --bs-popover-border-width: 1px;
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: 0.5rem;
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: ;
  --bs-popover-header-bg: #f0f0f0;
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: #212529;
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}

.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}

.popover .popover-arrow::after,
.popover .popover-arrow::before {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: block;
}

.active.carousel-item-end,
.carousel-item-next:not(.carousel-item-start) {
  transform: translateX(100%);
}

.active.carousel-item-start,
.carousel-item-prev:not(.carousel-item-end) {
  transform: translateX(-100%);
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.offcanvas {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: ;
  --bs-offcanvas-bg: #fff;
  --bs-offcanvas-border-width: 1px;
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}

.offcanvas.show:not(.hiding),
.offcanvas.showing {
  transform: none;
}

.offcanvas.hiding,
.offcanvas.show,
.offcanvas.showing {
  visibility: visible;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.offcanvas-backdrop.fade {
  opacity: 0;
}

.offcanvas-backdrop.show {
  opacity: 0.5;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}

.placeholder.btn::before {
  display: inline-block;
  content: "";
}

.ratio,
.ratio>* {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio>* {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.fixed-bottom,
.fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-top {
  top: 0;
}

.fixed-bottom {
  bottom: 0;
}

.sticky-top {
  position: sticky;
  z-index: 1020;
}

.sticky-top {
  top: 0;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.position-relative {
  position: relative !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.w-100 {
  width: 100% !important;
}

.align-items-center {
  align-items: center !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-0,
h2,
h3,
h4,
h5,
p,
ul {
  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;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.text-center {
  text-align: center !important;
}

a {
  text-decoration: none !important;
}

.visible {
  visibility: visible !important;
}

@media (min-width: 576px) {
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
}

@media (min-width: 768px) {
  .mt-md-5 {
    margin-top: 3rem !important;
  }
}

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper,
.swiper-wrapper {
  position: relative;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  list-style: none;
  padding: 0;
}

.swiper-wrapper {
  width: 100%;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-wrapper {
  transform: translate3d(0, 0, 0);
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

img {
  height: auto;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-prev {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after {
  content: "prev";
}

.swiper-button-next {
  right: 10px;
  left: auto;
}

.swiper-button-next:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width,
      var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height,
      var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: 0;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #08131b;
  font-family: "Poppins", sans-serif !important;
}

::selection {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

::-webkit-selection {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

button:focus,
input:focus {
  box-shadow: none !important;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100 !important;
  padding-top: 40px;
  width: 100%;
}

.logo {
  /* width: 180px; */
}

.hero {
  display: flex;
  height: 735px;
  background-image: url(../img/bg-stadium.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.hero img {
  max-width: 100%;
}

.hero-mobile {
  display: none;
}

@media(max-width:768px) {
  .hero-mobile {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }

  .hero>.row {
    margin-top: 50px !important;
  }

  .hero .container {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
}

.img-hero {
  position: absolute;
  right: -50px;
  bottom: 40px;
  width: 620px;
}

.txt-hero {
  width: 100%;
}

.input-group .input-group-text {
  position: relative;
  padding-right: 20px !important;
  padding-left: 20px !important;
  border: 0;
  border-top-left-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
  background-color: #fff !important;
  color: #000;
  font-weight: 500 !important;
  font-size: 18px;
}

.input-group .input-group-text::after {
  position: absolute;
  right: 1px;
  height: 32px !important;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  content: "";
}

.input-group .form-control {
  height: 58px !important;
  border: 0 !important;
  border-top-right-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
  font-weight: 400 !important;
  font-size: 18px;
}

.input-group .btn-success {
  position: absolute;
  top: 2px !important;
  right: 2px !important;
  z-index: 10 !important;
  width: 182px !important;
  height: 54px !important;
  border-radius: 100px !important;
}

.btn-success {
  border: 0;
  background-color: #00cb8a;
  color: #031f2b;
  font-weight: 500 !important;
  font-size: 18px !important;
}

.btn-success:focus {
  background-color: #00cb8a !important;
  color: #031f2b !important;
}

.btn-mobile {
  z-index: 1;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 6px !important;
  text-transform: uppercase;
  font-weight: 600 !important;
  font-size: 18px !important;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.6), #000);
}

.btn-success:hover {
  background-color: #00e99f;
  color: #031f2b;
}

.QRCode:hover .img-QRCode,
.img-QRCode {
  opacity: 100%;
  transition: 0.2s ease-in-out;
}

.img-QRCode {
  margin-top: 20px;
  width: 62px;
  opacity: 50%;
}

.txt-QRCode {
  margin-top: 10px !important;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px !important;
  cursor: default !important;
}

#myBtn {
  position: fixed;
  bottom: -80px;
  left: 0;
  z-index: 99;
  padding: 10px;
  width: 100%;
  height: 80px !important;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  background-color: #fff !important;
}

#myBtn .btn-warning {
  margin-bottom: 0 !important;
  width: 100% !important;
}

#myBtn .btn-mobile-scroll,
.txt-bonus {
  text-transform: uppercase;
  font-weight: 600 !important;
}

.txt-bonus {
  text-align: right;
  font-size: 17px;
}

#myBtn .btn-mobile-scroll {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  font-size: 16px !important;
}

.section-analytics {
  padding-top: 100px;
}

.alert {
  border-radius: 50px !important;
}

h1 {
  margin-bottom: 0 !important;
  color: #00cb8a;
  font-weight: 600 !important;
  font-size: 50px !important;
}

.subheading,
h2 {
  color: #fff;
  font-weight: 400;
  font-size: 22px;
}

.divider {
  position: relative;
}

.divider::after {
  position: absolute;
  top: 18px;
  right: 2px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  content: "";
}

.section-joinInfo {
  padding-top: 150px;
}

h2 {
  font-weight: 700;
  font-size: 48px !important;
}

.para,
h3 {
  color: #fff;
  font-size: 18px;
}

.GIFvideo {
  overflow: hidden;
  width: 90%;
  border-radius: 22px;
  text-align: right !important;
}

.section-bonusOffer {
  padding-top: 150px;
}

h3 {
  font-weight: 600 !important;
  font-size: 28px !important;
}

.card {
  border-radius: 22px;
  background-color: #0d202b;
}

.card-body,
.card-header {
  padding-bottom: 30px !important;
}

.card-header {
  border: 0 !important;
  background-color: transparent !important;
  padding-top: 20px !important;
}

.card-body {
  padding-top: 0 !important;
}

.txt-cash,
h4 {
  font-weight: 600;
}

h4 {
  font-size: 20px !important;
  color: #00cb8a;
}

.txt-cash {
  color: #FFF000;
}

.section-startWinning {
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: rgba(0, 0, 0, 0.5);
}

.mt-60 {
  margin-top: 60px;
}

.section-howTo {
  padding-top: 100px;
}

.video,
iframe {
  border-radius: 22px !important;
}

.video {
  margin-top: 60px;
  width: 100%;
  height: 400px;
}

.section-testimonials {
  padding-top: 100px;
}

.section-testimonials .card-header {
  padding: 30px !important;
}

.section-testimonials .card-body {
  padding: 0 !important;
}

.section-testimonials .card-footer {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  padding-left: 30px !important;
  border: 0 !important;
  background-color: transparent !important;
}

.img-codes {
  margin-bottom: 20px;
  width: 30px;
}

.prize-money {
  padding-top: 12px;
  padding-right: 30px;
  padding-bottom: 12px;
  width: 100%;
  background-image: url(../img/cut.jpg);
  background-position: top left 60px;
  background-repeat: no-repeat;
  text-align: right;
}

.txt-cash-lg {
  color: #FFF000;
  font-weight: 600;
  font-size: 30px;
}

.txt-prize {
  color: #fff !important;
  font-weight: 500;
  font-size: 14px !important;
}

.txt-dim {
  font-weight: 400;
  opacity: 50%;
}

.img-users {
  margin-right: 5px !important;
  width: 50px;
}

.username {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

.rating {
  margin-top: -5px;
  width: 100px;
}

.section-platform {
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: rgba(0, 0, 0, 0.5);
}

.button-platforms {
  width: 180px;
}

.icon-platforms {
  width: 80px;
}

.section-platform h1 {
  margin-top: 45px;
  color: #fff;
  font-weight: 700 !important;
  font-size: 56px !important;
}

.rating-appstore {
  margin-top: 5px;
  width: 140px;
}

.modal-dialog {
  max-width: 800px !important;
  width: 800px !important;
}

.modal .accordion-item {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}

.modal .accordion li:last-child,
.modal .accordion-item:last-child {
  margin-bottom: 0 !important;
}

.modal-body {
  padding: 15px 30px !important;
}

.modal .accordion li a {
  display: block !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  color: #fff !important;
}

.modal .accordion li {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 15px;
  border-radius: 8px !important;
  background-color: rgba(0, 0, 0, 0.25);
}

.modal .accordion-body {
  padding: 0 30px 30px !important;
}

.section-sponsors {
  padding-top: 150px;
}

.section-faqs {
  padding-top: 100px;
}

.accordion-body,
.accordion-button:not(.collapsed),
.accordion-collapse,
.accordion-header,
.accordion-item {
  border: 0 !important;
  border-radius: 22px !important;
  background-color: #060f16 !important;
  box-shadow: none !important;
}

.accordion button,
.accordion-header {
  border-radius: 22px !important;
}

.accordion {
  --bs-accordion-bg: #060f16 !important;
}

.accordion-item {
  margin-top: 20px;
}

.accordion button {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
  padding-left: 30px !important;
  color: #fff !important;
  font-weight: 500 !important;
  font-size: 20px !important;
}

.accordion-body {
  padding: 10px 30px 30px !important;
}

.accordion-button:not(.collapsed) {
  color: #fff;
}

.accordion button::after {
  margin-right: 5px !important;
  background-image: url(../img/icon-plus.png);
  background-position: center center !important;
  margin-left: 10px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../img/icon-minus.png);
}

.accordion .para {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 400 !important;
}

.learn-more {
  padding-top: 50px;
  padding-bottom: 50px;
}

.btn-secondary {
  background-color: #fff !important;
  color: #031f2b !important;
}

.btn-secondary,
.learn-more .mobile-visible .btn-success {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 50px !important;
  font-weight: 500 !important;
  font-size: 18px !important;
}

.accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

footer {
  margin-top: 50px;
  padding-top: 100px;
  padding-bottom: 30px;
  background-color: rgba(0, 0, 0, 0.5);
}

footer h3 {
  font-weight: 600 !important;
  font-size: 22px !important;
}

.customize p.heading-sponsor,
ul.address,
ul.contact,
ul.links,
ul.socials {
  margin-top: 20px !important;
}

ul.contact {
  display: grid !important;
}

ul.contact li,
ul.links li a {
  color: #fff;
  font-size: 18px;
  transition: 0.2s ease-in-out;
}

ul.links li a {
  text-decoration: none;
  line-height: 46px;
}

ul.address li {
  color: #fff;
  font-size: 18px;
  line-height: 36px;
}

ul.contact li {
  display: inline-block;
}

ul.contact ul {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

ul.contact li a:hover li {
  color: #00cb8a !important;
  transition: 0.2s ease-in-out;
}

footer ul li a:hover {
  color: #00cb8a;
  transition: 0.2s ease-in-out;
}

.icon-contact {
  margin-right: 5px !important;
  width: 24px;
}

.gc-footer {
  margin-bottom: 30px;
  width: 55px;
}

.icon-socials {
  margin-right: 4px;
  margin-left: 4px;
  width: 30px;
  height: 30px;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  transition: 0.2s ease-in-out;
}

.icon-facebook {
  background-image: url(../img/icon-facebook.jpg);
}

.socials a:hover .icon-facebook {
  background-image: url(../img/icon-facebook-active.jpg) !important;
}

.icon-twitter {
  background-image: url(../img/icon-twitter.jpg);
}

.socials a:hover .icon-twitter {
  background-image: url(../img/icon-twitter-active.jpg) !important;
}

.icon-instagram {
  background-image: url(../img/icon-instagram.jpg);
}

.socials a:hover .icon-instagram {
  background-image: url(../img/icon-instagram-active.jpg) !important;
}

.icon-youtube {
  background-image: url(../img/icon-youtube.jpg);
}

.socials a:hover .icon-youtube {
  background-image: url(../img/icon-youtube-active.jpg) !important;
}

.icon-linkedin {
  background-image: url(../img/icon-linkedin.jpg);
}

.socials a:hover .icon-linkedin {
  background-image: url(../img/icon-linkedin-active.jpg) !important;
}

ul.socials li:first-child {
  margin-left: -10px !important;
}

.footer {
  margin-top: 80px;
}

h6 {
  margin-bottom: 20px !important;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase !important;
  letter-spacing: 5px;
  font-weight: 400 !important;
  font-size: 12px;
}

.img-paymentPartners {
  /* margin-bottom: 50px;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain; */
}

.img-itech,
.img-proudPartners {
  height: 42px;
}

.icon-flags {
  width: 30px;
}

.icon-heart {
  width: 20px;
}

.love ul li {
  color: #fff !important;
  font-size: 14px !important;
}

.love {
  position: relative;
  padding-top: 30px;
}

.love:after {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -30%;
  width: 60%;
  height: 1px;
  background-image: linear-gradient(to right,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0));
  content: "";
}

.swiper-slide,
.swiper-wrapper {
  height: auto !important;
}

.swiper-button-next,
.swiper-button-prev {
  outline: 0;
  color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  background-image: url(../img/arrow-right.jpg) !important;
  background-position: center center;
  background-size: 50%;
  background-repeat: no-repeat;
  content: "";
}

.swiper-button-prev::after {
  background-image: url(../img/arrow-left.jpg) !important;
}

div.swiper-button-next,
div.swiper-button-prev {
  top: 80%;
}

.pagination {
  position: relative;
  display: block !important;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  width: 250px;
  height: 30px !important;
}

.mt-100 {
  margin-top: 100px;
}

p.heading-sponsor {
  margin-top: 30px;
  color: #fff;
  font-weight: 500;
  font-size: 18px !important;
}

.swiper-slide .card-header {
  height: 310px !important;
}

.img-sponsor {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
}

#customize-controls {
  display: none !important;
}

.accordion-body ul.para,
.main-faqs p.para {
  text-align: justify !important;
}

.accordion-body ul.para {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.txt-bold {
  font-weight: 600 !important;
}

.para .txt-bold,
.txt-link {
  color: #fff !important;
}

.txt-link {
  text-decoration: underline !important;
}

.main-faqs {
  padding-top: 100px;
  padding-bottom: 100px;
}

.icon-payment {
  width: 60px;
}

.txt-gold {
  color: #FFF000;
}

.txt-cyan {
  color: #44d7b6;
}

.accordion-body iframe,
.main-howTo .iframe {
  width: 100% !important;
  height: 220px !important;
}

h5 {
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  font-size: 16px;
}

.main-privacy,
.main-responsible {
  padding-top: 100px;
  padding-bottom: 100px;
}

.main-howTo p.para,
.main-howTo ul.para,
.main-privacy p.para,
.main-privacy ul.para,
.main-responsible p.para,
.main-responsible ul.para {
  color: rgba(255, 255, 255, 0.8) !important;
  text-align: justify !important;
}

.main-aboutUs h4,
.main-download h4,
.main-dw h4,
.main-howTo h4,
.main-privacy h4,
.main-responsible h4,
.main-tnc h4,
li.name {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 20px !important;
}

span.numbering {
  margin-right: 15px;
}

.main-howTo,
.section-htp {
  padding-top: 100px;
}

.main-howTo h4.text-center {
  color: rgba(255, 255, 255, 0.5) !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.main-howTo .dark {
  margin-top: 50px;
  margin-bottom: 50px !important;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: rgba(0, 0, 0, 0.5);
}

.dark .float-download-mobile .btn-mobile {
  bottom: -30px !important;
}

.main-download,
.main-tnc {
  padding-top: 100px;
  padding-bottom: 100px;
}

.main-download ol,
.main-download p.para,
.main-tnc ol,
.main-tnc p.para,
.main-tnc ul.para {
  color: rgba(255, 255, 255, 0.8) !important;
  text-align: justify !important;
  font-size: 18px;
}

.main-tnc ul.list-unstyled {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  font-weight: 400 !important;
}

.main-download p.para {
  text-align: center !important;
}

.main-download .slider img {
  display: block !important;
  padding-left: 10px;
  width: 300px !important;
}

.main-aboutUs,
.main-dw {
  padding-top: 100px;
}

.main-aboutUs p.para,
.main-aboutUs ul.para,
.main-download ul.para,
.main-dw p.para,
.main-dw ul.para {
  color: rgba(255, 255, 255, 0.8) !important;
  text-align: justify !important;
  font-size: 18px;
}

.main-dw .iframe {
  width: 100% !important;
  height: 220px !important;
}

.main-aboutUs .dark,
.main-dw .dark {
  margin-top: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: rgba(0, 0, 0, 0.5);
}

.avatar-content {
  margin-top: 50px !important;
}

.avatar-content,
.avatar-content ul,
.avatar-content ul li,
p.text-about-icons {
  text-align: center !important;
}

.avatar {
  margin-bottom: 20px !important;
  width: 80% !important;
  border-radius: 20px;
}

li.name {
  font-size: 22px !important;
}

.about-icons {
  margin-bottom: 20px;
  width: 70% !important;
}

p.text-about-icons {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px !important;
}

@media (max-width: 1399px) {
  .img-hero {
    right: -50px;
    bottom: 60px;
    width: 540px;
  }

  .hero {
    overflow: hidden !important;
    height: 650px !important;
    background-size: cover;
  }

  .prize-money {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    background-position: top left 15px;
  }

  .swiper-slide .card-header {
    height: 370px !important;
  }
}

@media (max-width: 1199px) {
  .section-analytics h1 {
    font-size: 38px !important;
  }

  .section-faqs button,
  .subheading,
  footer h3 {
    font-size: 18px !important;
  }

  .divider::after {
    height: 40px !important;
  }

  .img-hero {
    right: -50px;
    bottom: 40px;
    width: 450px;
  }

  .swiper-slide .card-header {
    height: 355px !important;
  }

  .hero {
    height: 540px !important;
  }

  .input-group .form-control {
    height: 50px !important;
    font-size: 16px !important;
  }

  .input-group-text {
    font-size: 16px !important;
  }

  .input-group .btn-success {
    width: 150px !important;
    height: 46px !important;
    font-size: 16px !important;
  }

  .btn-secondary,
  .learn-more .mobile-visible .btn-success {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    font-size: 16px !important;
  }

  .para,
  .txt-QRCode,
  h4,
  ul.address li,
  ul.contact li,
  ul.links li a {
    font-size: 16px !important;
  }

  h2 {
    font-size: 40px !important;
  }

  ul.links li a {
    line-height: 38px !important;
  }

  ul.address li {
    line-height: 32px;
  }

  .section-bonusOffer .card p.para {
    margin-top: 10px !important;
    font-size: 14px !important;
  }

  .button-platforms {
    width: 150px !important;
  }

  .txt-prize {
    font-size: 12px !important;
  }

  .txt-cash-lg {
    font-size: 24px !important;
  }

  .prize-money {
    background-position: top left 0 !important;
  }

  .video {
    width: 100%;
    height: 320px;
  }
}

@media (min-width: 991px) {

  .hidden-lg,
  .img-hero-phone {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .swiper-slide .card-header {
    height: 310px !important;
  }

  .modal h3 {
    font-size: 22px !important;
  }

  .modal-dialog {
    margin-right: auto !important;
    margin-left: auto !important;
    max-width: 95% !important;
    width: 95% !important;
  }

  .hero {
    overflow: hidden !important;
  }

  .img-hero {
    display: none !important;
  }

  .img-hero-phone {
    position: absolute;
    right: -70px;
    bottom: 0;
    width: 250px;
  }

  .icon-socials {
    margin-right: 2px;
    margin-left: 2px;
  }

  .img-paymentPartners,
  .img-proudPartners {
    width: 100% !important;
    height: auto !important;
  }

  .img-proudPartners {
    width: 250px !important;
  }

  .img-paymentPartners {
    width: auto !important;
    margin: 6px !important;
  }

  .section-bonusOffer h3,
  .section-howTo h3,
  .section-joinInfo h2,
  .section-sponsors h2,
  .section-startWinning h3 {
    text-align: center !important;
    font-weight: 400 !important;
    font-size: 22px !important;
  }

  .hidden-md {
    display: none !important;
  }

  .GIFvideo,
  .text-right,
  p.txt-winning {
    text-align: center !important;
  }

  .GIFvideo {
    margin-top: 40px;
    width: 80% !important;
  }

  .section-bonusOffer h4 {
    font-size: 20px !important;
  }

  .section-platform ul.list-unstyled {
    margin-top: 50px !important;
  }

  .txt-prize {
    font-size: 14px !important;
  }

  .txt-cash-lg {
    font-size: 26px !important;
  }

  .prize-money {
    background-position: top left 10px !important;
  }

  .section-startWinning img {
    margin-top: 30px;
  }

  .mt-60 {
    margin-top: 30px !important;
  }

  .main-faqs h5.hindi {
    margin-top: 20px !important;
  }

  p.txt-winning {
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .text-about-icons {
    margin-bottom: 50px !important;
  }

  .section-howTo p.para,
  .section-joinInfo p.para,
  .section-platform p.para {
    color: rgba(255, 255, 255, 0.5) !important;
  }

  p.heading-sponsor {
    font-weight: 300 !important;
    font-size: 14px !important;
  }

  .section-howTo .video {
    margin-top: 40px !important;
  }
}

@media (min-width: 767px) {

  #myBtn,
  .btn-mobile,
  .img-tagline,
  .mobile-visible,
  .overlay {
    display: none !important;
  }
}

@media (max-width: 767px) {

  .section-analytics,
  .section-bonusOffer {
    margin-top: 0 !important;
  }

  .section-analytics,
  .section-bonusOffer,
  .section-faqs {
    margin-bottom: 0 !important;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .section-howTo {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .section-howTo,
  .section-htp,
  .section-joinInfo,
  .section-platform {
    padding-bottom: 50px !important;
  }

  .section-htp,
  .section-joinInfo,
  .section-platform,
  .section-sponsors {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 50px !important;
  }

  .section-startWinning,
  .section-testimonials {
    padding-bottom: 50px !important;
  }

  .section-startWinning,
  .section-testimonials,
  footer {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 50px !important;
  }

  .col-txt-bonus {
    padding-right: 0 !important;
  }

  .section-howTo {
    padding-top: 100px !important;
  }

  .section-faqs {
    margin-top: 50px !important;
  }

  .section-sponsors {
    padding-bottom: 0 !important;
  }

  .main-howTo h5.hindi {
    margin-top: 20px !important;
  }

  .img-tagline {
    display: block !important;
  }

  .img-tagline img {
    position: absolute;
    top: 100px;
    left: 50%;
    margin-left: -60%;
    width: 120% !important;
  }

  .section-analytics h1 {
    font-size: 62px !important;
  }

  .divider::after {
    display: none !important;
  }

  .divider {
    margin-bottom: 80px !important;
  }

  .subheading {
    font-size: 24px !important;
  }

  .section-analytics .d-flex {
    flex-direction: column !important;
  }

  .content-hero,
  .img-hero-phone {
    display: none !important;
  }

  .img-hero {
    bottom: 80px !important;
    left: 51% !important;
    display: block !important;
    margin-left: -60% !important;
    width: 120% !important;
  }

  .btn-mobile {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
  }

  .dark .btn-mobile {
    left: 50% !important;
    margin-left: -45% !important;
    width: 90% !important;
  }

  .hero {
    padding-right: 30px;
    padding-left: 30px;
    height: 100% !important;
    background-image: url(../img/top-bg-mobile.png) !important;
  }

  .navbar {
    text-align: center !important;
  }

  .logo {
    margin-right: auto;
    margin-left: auto;
  }

  .GIFvideo {
    margin-top: 40px;
    width: 80% !important;
  }

  .flex-sm {
    display: flex !important;
    flex-direction: row !important;
  }

  .section-bonusOffer .card-header {
    padding-bottom: 20px !important;
  }

  .section-bonusOffer .card-body {
    display: flex !important;
    flex-wrap: wrap !important;
    align-content: center !important;
    padding-top: 20px !important;
    padding-left: 0 !important;
  }

  .section-bonusOffer .card-body p.para,
  .section-bonusOffer h4 {
    text-align: left !important;
    font-size: 18px !important;
  }

  .section-bonusOffer .card-header img {
    width: 150px !important;
  }

  .section-bonusOffer h4 {
    font-weight: 500 !important;
    font-size: 22px !important;
  }

  .gc-footer,
  footer h3 {
    margin-top: 30px !important;
  }

  ul.socials li:first-child {
    margin-left: -5px !important;
  }

  .txt-prize {
    font-size: 14px !important;
  }

  .txt-cash-lg {
    font-size: 34px !important;
  }

  .section-testimonials .card,
  .swiper-slide {
    width: 400px !important;
  }

  .swiper-container {
    padding-right: 0 !important;
    padding-left: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .prize-money {
    background-position: top left 40px !important;
  }

  .hidden-sm {
    display: none !important;
  }

  footer {
    padding-bottom: 120px !important;
  }

  .learn-more {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .btn-secondary,
  .learn-more .mobile-visible .btn-success {
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 18px !important;
  }

  .swiper-slide .card-header {
    height: 265px !important;
  }
}

@media (max-width: 575px) {
  .video {
    width: 100%;
    height: 300px;
  }

  .img-proudPartners {
    width: 180px !important;
  }

  .icon-socials {
    margin-right: 5px;
    margin-left: 5px;
  }

  ul.contact {
    margin-top: 10px !important;
  }

  .footer {
    margin-top: 40px !important;
  }

  .img-paymentPartners {
    /* margin-bottom: 40px !important; */
  }

  .heading-contacts {
    margin-top: 30px !important;
  }

  .container {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }

  .section-bonusOffer .card-body p.para {
    font-size: 16px !important;
  }

  .section-bonusOffer .card-header img {
    width: 150px !important;
  }

  .section-bonusOffer h4 {
    font-weight: 500 !important;
    font-size: 18px !important;
  }

  .flex-sm {
    margin-bottom: 20px !important;
  }

  .prize-money {
    background-position: top right -300px !important;
  }

  .section-testimonials .card,
  .swiper-slide {
    width: 400px !important;
  }

  .swiper-container {
    padding-right: 0 !important;
    padding-left: 0 !important;
    width: 100% !important;
  }

  .swiper .card-header {
    padding: 20px !important;
  }

  .swiper .card-footer {
    padding: 15px !important;
  }

  .learn-more .mobile-visible {
    display: grid !important;
  }

  .btn-secondary {
    margin-top: 15px !important;
  }

  p.text-about-icons {
    margin-bottom: 30px !important;
  }

  .col-xs-12:last-child .text-about-icons {
    margin-bottom: 0 !important;
  }

  .GIFvideo {
    margin-top: 40px;
    width: 90% !important;
  }
}

@media (max-width: 480px) {
  .section-bonusOffer .card-header img {
    width: 100px !important;
  }

  .section-testimonials .card,
  .swiper-slide {
    width: 360px !important;
  }

  .txt-bonus {
    font-size: 16px;
  }

  li.name {
    font-size: 18px !important;
  }

  #myBtn .btn-mobile-scroll,
  li.designation {
    font-size: 14px !important;
  }

  .GIFvideo {
    margin-top: 40px;
    width: 100% !important;
  }
}

@media (max-height: 550px) {
  .navbar {
    padding-top: 20px !important;
  }

  .img-tagline img {
    top: 80 !important;
  }
}

@media (max-width: 430px) {
  .card-body {
    padding-bottom: 20px !important;
  }

  .video {
    width: 100%;
    height: 220px;
  }

  #myBtn .btn-mobile-scroll,
  .txt-prize {
    font-size: 12px !important;
  }

  .txt-cash-lg {
    font-size: 22px !important;
  }

  .prize-money {
    background-position: top left 50px !important;
  }

  .txt-bonus {
    text-align: right;
    font-size: 16px;
  }

  .customize-tools .img-sponsor {
    width: 45px !important;
    height: 45px !important;
  }

  .swiper-slide .card-header {
    height: 330px !important;
  }

  .mySwiper .swiper-slide {
    width: 80% !important;
  }

  .section-testimonials .card,
  .swiper-slide {
    width: 100% !important;
  }

  .section-sponsors .swiper-slide {
    width: 80% !important;
  }
}

.swiper-pagination {
  bottom: 6px !important;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  margin: 0 4px;
  width: 20px !important;
  height: 5px !important;
  border-radius: 10px !important;
  background-color: #fff !important;
}

.swiper-pagination-bullet-active {
  width: 40px !important;
  height: 5px !important;
  border-radius: 10px !important;
  background-color: #00cb8a !important;
}

.section-sponsors .swiper-slide img {
  border-radius: 17px;
}

.content-hero .input-group {
  min-width: 613px;
  max-width: 100%;
}

.hero {
  overflow-x: hidden;
}

@media (max-width: 1400px) {
  .content-hero .input-group {
    min-width: 546px;
  }
}

@media (max-width: 1200px) {
  .content-hero .input-group {
    min-width: 456px;
  }
}

/*# sourceMappingURL=bundle.css.map */
.icon-telegram {
  background-image: url(../img/icon-telegram.png);
}

.socials a:hover .icon-telegram {
  background-image: url(../img/icon-telegram-active.png);
}

#btnDownload {
  background: linear-gradient(-45deg, #00cb8a, #00cb8a, #00cb8a, #45ffc4);
  background-size: 500% 500%;
  animation: gradient 3s ease infinite;
}

.hero .btn-success,
.section-faqs .btn-success {
  background: linear-gradient(-45deg, #00cb8a, #00cb8a, #00cb8a, #45ffc4);
  background-size: 400% 400%;
  animation: gradient 3s ease infinite;
  font-weight: bolder !important;
  text-transform: uppercase;
}

.btn-outline-secondary {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: 50px;
  border: none;
  height: auto;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
}

.btn-outline-secondary:hover {
  background-color: #00cb8a;
  color: #031f2b;
  border-color: #00cb8a;
}

.color--yellow {
  color: #fff000;
}

.pinned-cta {
  justify-content: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #060f15;
  padding: 30px;
  border-top: 1px solid #1d272e;
  transition: all .3s;
  bottom: -150px;
  z-index: 90;
  position: sticky;
}

.pinned-cta--sticky {
  position: sticky;
  top: 0px;
  bottom: 0px;
}

.pinned-cta__title {
  text-transform: uppercase;
  font-size: 2.5vw;
  font-weight: bold;
  color: #fff;
  padding-right: 30px;
  display: inline-block;
}

.pinned-cta__input {
  width: 560px;
}

.pinned-cta .btn {
  background: linear-gradient(-45deg, #00cb8a, #00cb8a, #00cb8a, #45ffc4);
  background-size: 400% 400%;
  animation: gradient 3s ease infinite;
}

.mt-0 {
  margin-top: 0;
}

.font-weight-bold {
  font-weight: bold !important;
}

.maw-100 {
  max-width: 100%;
}

@media(max-width:1400px) {
  .pinned-cta__title {
    padding-right: 0;
    margin-bottom: 15px;
    width: 100%;
    display: block;
    text-align: center;
  }
}

@media(max-width:768px) {
  .pinned-cta {
    display: none !important;
  }
}

.recent-winners-section {
  margin: 100px 0;
}

.recent-winners-section .swiper-slide {
  padding: 0 10px;
}

.recent-winner {
  position: relative;
  background: #0d202b;
  border-radius: 22px;
  text-align: center;
  padding-top: 20px;
}

.recent-winner__img {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 15px;
}

.recent-winner__img img {
  width: 100%;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  max-width: 100%;
}

.recent-winner__name {
  color: #fff;
  font-size: 24px;
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}

.recent-winner__title {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: 15px;
}

.recent-winner__price {
  font-size: 26px;
  color: #00DE94;
  font-weight: 600;
}

.recent-winner__price strong {
  font-size: 36px;
  font-weight: 700;
}

.recent-winner__title img {
  margin-right: 6px;
  vertical-align: middle;
}

.recent-winner__ribbon {
  position: absolute;
  top: 24px;
  left: -10px;
  width: 124px;
  font-size: 18px;
}

.recent-winner__bottom {
  background: #102A39;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  padding: 20px 5px;
  color: rgba(255, 255, 255, 0.60);
  margin-top: 20px;
}

.recent-winner__teams {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 14px;
}

.recent-winner__teams small {
  margin: 0 6px;
  position: relative;
  bottom: -4px;
}

.recent-winner__team {
  color: #fff;
  font-size: 22px;
}

.recent-winner__team img {
  margin: 0 4px;
}

.recent-winner__date {
  display: block;
  font-size: 19px;
  margin-top: 10px;
}

.recent-winner__ribbon small {
  display: block;
  padding-left: 10px;
  position: relative;
  background: #B9DFB5;
  overflow: visible;
  height: 32px;
  margin-left: 0;
  margin-right: 16px;
  font-weight: 500;
  color: #0D202B;
  line-height: 32px;
  text-decoration: none;
}

.recent-winner__ribbon small:after {
  content: "";
  height: 0;
  width: 0;
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
  border-top: 10px solid #708C72;
  border-left: 10px solid transparent;
}

.recent-winner__ribbon small:before {
  content: "";
  height: 0;
  width: 0;
  display: block;
  position: absolute;
  top: 0;
  right: -16px;
  border-top: 16px solid #B9DFB5;
  border-bottom: 16px solid #B9DFB5;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
}

.recent-winner__ribbon--second small {
  background: #BFEDFF;
}

.recent-winner__ribbon--second small:before {
  border-top: 16px solid #BFEDFF;
  border-bottom: 16px solid #BFEDFF;
}

.recent-winner__ribbon--second small:after {
  border-top: 10px solid #566F78;
}

.recent-winner__ribbon--third small {
  background: #F4BCB2;
}

.recent-winner__ribbon--third small:before {
  border-top: 16px solid #F4BCB2;
  border-bottom: 16px solid #F4BCB2;
}

.recent-winner__ribbon--third small:after {
  border-top: 10px solid #795B56;
}

@media(max-width:992px) {
  .recent-winner__name {
    font-size: 16px;
  }

  .recent-winner__price {
    font-size: 16px;
  }

  .recent-winner__price strong {
    font-size: 24px;
  }
}

.icon-discord {
  background-image: url(../img/icon-discord.png);
}

.socials a:hover .icon-discord {
  background-image: url(../img/icon-discord-active.png);
}

.our-journey-section {
  background: #060c10;
  padding: 80px 0;
  text-align: center;
}

.our-journey-section img {
  max-width: 100%;
}

.oj-mobile {
  display: none;
}

@media(max-width:768px) {
  .oj-mobile {
    display: block;
  }

  .oj-desktop {
    display: none;
  }

  .hero .btn-mobile {
    border-radius: 0 !important;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .float-download-mobile.mobile-visible .btn-mobile {
    position: relative !important;
    left: 0px !important;
    right: 0px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    bottom: 0 !important;
    width: 100% !important;
    margin-bottom: 8px;
  }

  .float-download-mobile.mobile-visible .btn-outline-secondary {
    border-radius: 6px;
  }
}

.footer-logos {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}

.footer-logos img {
  display: inline-block;
  margin: 6px;
}

.section-faqs .accordion-button {
  justify-content: space-between;
}

.popup-bg {
  opacity: 0.5;
  background: #000;
  z-index: 998;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
}

.popup {
  position: absolute;
  width: 1080px;
  max-width: calc(100% - 30px);
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 120px;
  z-index: 999;
  border-radius: 32px;
  background: #08131B;
  background-image: url(../img/modal-bg.png);
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 30px;
}

.popup__close {
  position: absolute;
  right: 42px;
  top: 42px;
  color: #fff;
  transition: all .3s;
}

.popup__close:hover {
  opacity: .6;
}

.popup__profile {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  text-align: center;
  top: -75px;
  width: 240px;
}

.popup__img {
  position: relative;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}

.popup__img img {
  border-radius: 50%;
  height: 150px;
  width: 150px;
  border: 3.598px solid #0D202B;
  background: #08131b;
}

.popup__rank {
  border-radius: 50%;
  border: 3.598px solid #0D202B;
  position: absolute;
  width: 54px;
  height: 54px;
  top: -2px;
  right: -2px;
  background: #fff;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
}

.popup__name {
  color: #FFF;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}

.popup__won {
  color: #00CB8A;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.popup__won small {
  font-size: 22px;
  font-weight: 600;
}

.popup__content {
  padding: 30px;
  margin-top: 160px;
  border-radius: 28px;
  background: #0D202B;
}

.mb30 {
  margin-bottom: 30px;
}

.popup-card {
  border-radius: 20px;
  background: #08131B;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px 0;
  color: #fff;
  height: 100%;
}

.popup-card__top {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #0d202b;
}

.popup-card__teams {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.popup-card__team {
  font-size: 26px;
  font-weight: 500;
}

.popup-card__team strong {
  font-weight: 500;
}

.popup-card__team img {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.popup-card__vs {
  display: inline-block;
  margin: 0 6px;
  opacity: .6;
  font-size: 17px;
}

.popup-card__bottom {
  padding-top: 20px;
  width: 100%;
}

.popup-card__title {
  font-size: 24px;
  font-weight: 500;
}

.popup-card__list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: center;
  align-items: center;
}

.popup-card__list div {
  padding: 0 27px;
}

.popup-card__list strong {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: block;
}

.popup-card__list small {
  font-weight: 400;
  font-size: 16px;
  opacity: .5;
}

.point-items {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.point-item {
  text-align: center;
  margin: 0px 36px;
}

.point-item__img {
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  width: 72px;
  height: 72px;
}

.point-item__img img {
  max-width: 100%;
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.point-item__ratio {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 3px;
  width: 100%;
  line-height: 1.2;
}

.point-item__ratio--yellow {
  background: #f2c850;
}

.point-item__ratio--green {
  background: #44d7b6;
}

.point-item__point {
  font-size: 24px;
  font-weight: bold;
  display: block;
  opacity: .9;
}

.point-item__label {
  opacity: .5;
  font-size: 20px;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  white-space: nowrap;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
  transition: all .3s !important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.recent-winners-section .swiper-pagination {
  left: 0;
  right: 0;
  margin: 0 auto;
}

.recent-winners-section .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
}

.recent-winners-section .swiper-pagination-bullet-active {
  width: 16px !important;
}

@media(max-width:576px) {
  .icon-socials {
    margin-left: 2px;
    margin-right: 2px;
    width: 20px;
    height: 20px;
  }

  .section-testimonials .txt-prize .txt-cash-lg {
    display: block;
  }
}

.section-faqs .accordion-button {
  justify-content: space-between;
}

@media(max-width:1560px) {
  .popup {
    padding: 20px;
  }

  .popup__profile {
    width: -60px;
  }

  .popup__img {
    width: 120px;
  }

  .popup__img img {
    width: 120px;
    height: 120px;
  }

  .popup__name {
    font-size: 18px;
  }

  .popup__won {
    font-size: 26px;
  }

  .popup__content {
    margin-top: 110px;
    padding: 20px;
  }

  .popup__content .mb30 {
    margin-bottom: 15px;
  }

  .popup__content .row {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }

  .popup__content .col-md-6 {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }

  .popup-card {
    padding: 15px 0;
  }

  .popup-card__top {
    padding-bottom: 15px;
  }

  .popup-card__bottom {
    padding-top: 15px;
  }

  .point-item__img {
    width: 62px;
    height: 62px;
  }
}

.footer .container:nth-of-type(1) .img-paymentPartners {
  width: 60px !important;
}

.footer .container:nth-of-type(2) .img-paymentPartners {
  width: 42px !important;
}

.footer .container:nth-of-type(3) .img-paymentPartners {
  width: 120px !important;
}

.float-download-mobile.mobile-visible .btn-outline-secondary {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .2) !important;
  background: transparent !important;
}

.dark .hidden-sm .row .col-4 .btn-outline-secondary {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .2) !important;
  background: transparent !important;
}

.accordion button {
  justify-content: space-between;
}

.content-hero .input-group {
  margin-top: 50px !important;
}

.main-aboutUs .dark {
  background: #08131b;
  padding-top: 100px;
}

@media(max-width:768px) {
  #sectionAnalytics {
    padding-top: 50px;
  }

  #sectionAnalytics .divider {
    margin-bottom: 60px !important;
  }

  .section-bonusOffer .mb-sm-4 {
    margin-bottom: 15px !important;
  }

  .txt-cash-lg {
    font-size: 28px !important;
  }

  .section-platform p.para {
    color: #fff !important;
  }

  .section-platform h2 {
    font-size: 38px !important;
  }

  .accordion button {
    padding: 20px !important;
  }

  .container.love {
    padding-top: 50px;
  }

  .section-bonusOffer .card-header {
    padding-right: 8px !important;
    padding-left: 0 !important;
  }

  .section-bonusOffer .card-body {
    padding-right: 12px !important;
  }

  .section-bonusOffer h4 {
    font-size: 16px !important;
  }

  .section-bonusOffer p.para {
    font-size: 14px !important;
  }

  .main-aboutUs .dark {
    padding-top: 50px;
  }
}

#btnDownload {
  border-radius: 10px !important;
}

.container.love {
  padding-bottom: 30px;
}

#btnDownload {
  border-radius: 10px !important;
}

.float-download-mobile.mobile-visible .btn-outline-secondary {
  border-radius: 10px !important;
}
