@charset "UTF-8";
:root {
  --black: black;
  --black-opacity-1: rgba(0, 0, 0, 0.87);
  --black-opacity-2: rgba(0, 0, 0, 0.7);
  --black-opacity-3: rgba(0, 0, 0, 0.54);
  --black-opacity-4: rgba(0, 0, 0, 0.32);
  --black-opacity-5: rgba(0, 0, 0, 0.16);
  --black-opacity-6: rgba(0, 0, 0, 0.08);
  --white: white;
  --white-opacity-1: rgba(255, 255, 255, 0.87);
  --white-opacity-2: rgba(255, 255, 255, 0.7);
  --white-opacity-3: rgba(255, 255, 255, 0.54);
  --white-opacity-4: rgba(255, 255, 255, 0.32);
  --white-opacity-5: rgba(255, 255, 255, 0.16);
  --white-opacity-6: rgba(255, 255, 255, 0.08);
  --grey-20: #fafafa;
  --grey-50: #f2f2f2;
  --grey-100: #e6e6e6;
  --grey-200: #cccccc;
  --grey-300: #b3b3b3;
  --grey-400: #999999;
  --grey-500: gray;
  --grey-600: #666666;
  --grey-700: #4d4d4d;
  --grey-800: #333333;
  --grey-900: #1a1a1a;
  --highlight-color: #ffc800;
}

/* normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

.cookie-popup {
  z-index: 5;
}

.page-layer {
  z-index: 20;
}

.modal-layer {
  z-index: 99;
}

:root {
  --body-font-family: Roboto, Arial, Helvetica, sans-serif;
  --body-line-height: 1.5;
  --border-radius: .75rem;
  --overlay-1: rgba(0, 0, 0, 0.7);
  --overlay-2: rgba(0, 0, 0, 0.35);
  --box-shadow-down: 0 2px 4px rgba(0, 0, 0, 0.42);
  --box-shadow-up: 0 -2px 4px rgba(0, 0, 0, 0.42);
  --box-shadow: 0 0 4px rgba(0, 0, 0, 0.42);
  --box-shadow-2: 0px 0px 6px rgba(0, 0, 0, 0.87);
  --topbar-height: 1.75rem;
  --header-main-padding-row: .75rem;
  --side-nav-btn-nav-width: 40px;
}

*,
::before,
::after {
  box-sizing: border-box;
  border: 0 solid;
  border-color: inherit;
}

pre {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.5;
  white-space: pre-wrap;
}

p {
  margin-top: .5rem;
  margin-bottom: .5rem;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  padding: 0;
  color: inherit;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}

img {
  vertical-align: middle;
  width: 100%;
}

iframe {
  display: block;
  width: 100%;
  max-height: 100%;
  border: none;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
}

body {
  min-height: 100%;
  min-width: 0;
  font-size: .875rem;
  font-family: var(--body-font-family);
  font-weight: 400;
  line-height: var(--body-line-height);
  color: var(--body-text, var(--primary-500));
  background-color: var(--body-bg, var(--primary-50));
  border-color: var(--primary-100);
}

@media (max-width: 1023px) and (orientation: landscape) {
  body {
    padding-left: constant(safe-area-inset-bottom);
    padding-right: constant(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-bottom);
    padding-right: env(safe-area-inset-bottom);
  }
}

#__next {
  min-height: 100vh;
  min-width: 0;
  position: relative;
}

#__next::before {
  content: "";
  display: flex;
  background-color: var(--body-div-bg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.app::before {
  content: "mobile";
  visibility: hidden;
  position: absolute;
}

@media (min-width: 769px) {
  .app::before {
    content: "desktop";
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  [data-layout=desktop] {
    /* 未使用 */
  }
}

[data-layout=mobile] .app {
  min-width: 320px;
}

[data-layout=desktop] [role=mobile-click] {
  pointer-events: none;
}

[data-layout=desktop] [role=mobile-visible] {
  display: none !important;
}

[data-layout=mobile] [role=desktop-visible] {
  display: none !important;
}

@media (hover: hover) {
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  /* Scroll 軌道 */
  ::-webkit-scrollbar-track {
    background-color: var(--custom-scroll-bg, transparent);
  }
  /* Scroll 本身 */
  ::-webkit-scrollbar-thumb {
    background-color: var(--custom-scroll-thumb-color, var(--primary-200));
    border-radius: 2em;
    border: 1px solid;
    border-color: var(--custom-scroll-thumb-border, var(--primary-100));
    box-shadow: 0 0 4px HSLA(var(--custom-scroll-thumb-shadow, var(--black-opacity-4)));
  }
  *:hover::-webkit-scrollbar-thumb {
    background-color: var(--custom-scroll-thumb-color-hover, var(--primary-200));
  }
}

:root {
  --theme-bg-1: white;
  --theme-bg-2: #f2f2f2;
  --theme-bg-3: #e6e6e6;
  --primary-dark: #172740;
  --theme-text-1: var(--black-opacity-1);
  --theme-text-2: var(--black-opacity-3);
  --theme-text-3: var(--black-opacity-4);
  --theme-border-1: rgba(0, 0, 0, 0.08);
  --theme-border-2: rgba(0, 0, 0, 0.16);
  --brand-color: #5372ac;
  --brand-h: 219;
  --brand-s: 35%;
  --brand-l: 50%;
  --primary-color: var(--brand-color);
  --primary-h: var(--brand-h);
  --primary-s: var(--brand-s);
  --primary-l: var(--brand-l);
  --primary-50: HSL(calc(var(--primary-h) + 5), calc(var(--primary-s) + 25%), calc(var(--primary-l) + 45%));
  --primary-100: HSL(calc(var(--primary-h) + 4), calc(var(--primary-s) + 20%), calc(var(--primary-l) + 35%));
  --primary-200: HSL(calc(var(--primary-h) + 3), calc(var(--primary-s) + 15%), calc(var(--primary-l) + 25%));
  --primary-300: HSL(calc(var(--primary-h) + 2), calc(var(--primary-s) + 10%), calc(var(--primary-l) + 15%));
  --primary-400: HSL(calc(var(--primary-h) + 1), calc(var(--primary-s) + 5%), calc(var(--primary-l) + 5%));
  --primary-500: HSL(calc(var(--primary-h)), calc(var(--primary-s)), calc(var(--primary-l)));
  --primary-600: HSL(calc(var(--primary-h) + 1), calc(var(--primary-s) + 5%), calc(var(--primary-l) - 5%));
  --primary-700: HSL(calc(var(--primary-h) + 2), calc(var(--primary-s) + 10%), calc(var(--primary-l) - 10%));
  --primary-800: HSL(calc(var(--primary-h) + 3), calc(var(--primary-s) + 15%), calc(var(--primary-l) - 15%));
  --primary-900: HSL(calc(var(--primary-h) + 4), calc(var(--primary-s) + 20%), calc(var(--primary-l) - 20%));
  --secondary-color: #f2800d;
  --secondary-h: 30;
  --secondary-s: 90%;
  --secondary-l: 50%;
  --secondary-50: HSL(calc(var(--secondary-h) + 0), calc(var(--secondary-s) - 10%), calc(var(--secondary-l) + 45%));
  --secondary-100: HSL(calc(var(--secondary-h) + 0), calc(var(--secondary-s) + 10%), calc(var(--secondary-l) + 40%));
  --secondary-200: HSL(calc(var(--secondary-h) + 0), calc(var(--secondary-s) + 10%), calc(var(--secondary-l) + 30%));
  --secondary-300: HSL(calc(var(--secondary-h) + 0), calc(var(--secondary-s) + 10%), calc(var(--secondary-l) + 20%));
  --secondary-400: HSL(calc(var(--secondary-h) + 0), calc(var(--secondary-s) + 10%), calc(var(--secondary-l) + 10%));
  --secondary-500: HSL(var(--secondary-h), var(--secondary-s), var(--secondary-l));
  --secondary-600: HSL(calc(var(--secondary-h) - 2), calc(var(--secondary-s)), calc(var(--secondary-l) - 5%));
  --secondary-700: HSL(calc(var(--secondary-h) - 4), calc(var(--secondary-s)), calc(var(--secondary-l) - 10%));
  --secondary-800: HSL(calc(var(--secondary-h) - 6), calc(var(--secondary-s) + 10%), calc(var(--secondary-l) - 15%));
  --secondary-900: HSL(calc(var(--secondary-h) - 8), calc(var(--secondary-s) + 10%), calc(var(--secondary-l) - 20%));
  --third-color: #caab8c;
  --third-h: 30;
  --third-s: 37%;
  --third-l: 67%;
  --third-50: HSL(calc(var(--third-h) + 4), calc(var(--third-s) - 63%), calc(var(--third-l) + 32%));
  --third-100: HSL(calc(var(--third-h) + 2), calc(var(--third-s) + 63%), calc(var(--third-l) + 27%));
  --third-200: HSL(calc(var(--third-h) + 1), calc(var(--third-s) + 7%), calc(var(--third-l) + 18%));
  --third-300: HSL(calc(var(--third-h) + 0), calc(var(--third-s) + 13%), calc(var(--third-l) + 13%));
  --third-400: HSL(calc(var(--third-h) + 0), calc(var(--third-s) + 6%), calc(var(--third-l) + 5%));
  --third-500: HSL(var(--third-h), var(--third-s), var(--third-l));
  --third-600: HSL(calc(var(--third-h) + 2), calc(var(--third-s) + 1%), calc(var(--third-l) - 4%));
  --third-700: HSL(calc(var(--third-h) - 0), calc(var(--third-s) - 3%), calc(var(--third-l) - 10%));
  --third-800: HSL(calc(var(--third-h) - 0), calc(var(--third-s) - 9%), calc(var(--third-l) - 17%));
  --third-900: HSL(calc(var(--third-h) - 0), calc(var(--third-s) - 1%), calc(var(--third-l) - 33%));
  --icon-league-color: #40bf48;
  --icon-certified-color: #33bbff;
}

:root {
  --body-bg: var(--primary-50);
  --app-bg: var(--black-opacity-4);
  --body-text: var(--primary-500);
  --custom-scroll-thumb-color: var(--primary-200);
  --custom-scroll-thumb-border: transparent;
  --custom-scroll-thumb-color-hover: var(--primary-200);
  --preloader-border: var(--primary-500);
  --swiper-preloader-color: var(--preloader-border);
  --btn-primary-text: var(--primary-600);
  --btn-primary-gradient-bg: linear-gradient(180deg, var(--primary-200) 0%, var(--primary-100) 100%);
  --btn-primary-shadow: 0px 2px 2px var(--primary-200), inset 0px 2px 16px var(--primary-100), inset 0px -0.5px 0px var(--white);
  --btn-primary-desktop-shadow: 0px 4px 2px var(--primary-200), inset 0px 2px 16px var(--primary-100), inset 0px -0.5px 0px var(--white);
  --btn-primary-hover-bg: var(--primary-200);
  --btn-secondary-text: var(--white-opacity-1);
  --btn-secondary-gradient-bg: linear-gradient(180deg, var(--secondary-500) 0%, var(--secondary-400) 100%);
  --btn-secondary-shadow: 0px 2px 2px var(--secondary-500), inset 0px 4px 15px var(--secondary-300), inset 0px -0.5px 0px var(--secondary-200);
  --btn-secondary-desktop-shadow: 0px 4px 2px var(--secondary-500), inset 0px 4px 15px var(--secondary-300), inset 0px -0.5px 0px var(--secondary-200);
  --btn-secondary-hover-bg: var(--secondary-200);
  --btn-secondary-disable-text: var(--white-opacity-1);
  --btn-secondary-disable-img: linear-gradient(180deg, var(--grey-400) 0%, var(--grey-300) 100%);
  --btn-secondary-disable-shadow: 0px 2px 2px var(--grey-500), inset 0px 4px 15px var(--grey-300), inset 0px -0.5px 0px var(--grey-200);
  --btn-third-text: var(--third-900);
  --btn-third-gradient-bg: linear-gradient(177.12deg, var(--third-400) -4.5%, var(--third-300) 50.27%, var(--third-100) 108.32%);
  --btn-third-shadow: 0px 2px 2px var(--third-400), inset 0px -1px 0px var(--third-100);
  --btn-thrid-desktop-shadow: 0px 4px 2px var(--third-400), inset 0px -1px 0px var(--third-100);
  --btn-gradient-before-line: linear-gradient(270.01deg, var(--white-opacity-6) -1.95%, var(--white) 49.28%, var(--white-opacity-6) 97.85%);
  --btn-gradient-light-text-bg: linear-gradient(165.89deg, var(--white-opacity-4) 6.78%, var(--white-opacity-6) 45.21%);
  --btn-disable-text: var(--grey-400);
  --btn-disable-bg: var(--grey-200);
  --btn-submit-text: var(--white);
  --btn-submit-bg: var(--primary-500);
  --btn-back-text: var(--white);
  --btn-back-gradient-bg: linear-gradient(180deg, var(--primary-500) 0%, var(--primary-400) 100%);
  --btn-back-shadow: 0px 2px 2px var(--primary-500), inset 0px 2px 16px var(--primary-300), inset 0px -0.5px 0px var(--primary-200);
  --btn-back-desktop-shadow: 0px 4px 2px var(--primary-500), inset 0px 2px 16px var(--primary-300), inset 0px -0.5px 0px var(--primary-200);
  --btn-back-hover-bg: var(--primary-200);
  --checkbox-text: var(--grey-500);
  --checkbox-icon-text: var(--grey-300);
  --checkbox-icon-checked-text: var(--primary-400);
  --icon-gradient-primary-bg: radial-gradient(77.99% 77.99% at 50% 18%, var(--primary-50) 0%, var(--primary-100) 31.77%, var(--primary-300) 70.05%, var(--primary-400) 95.83%);
  --icon-gradient-primary-hover-bg: radial-gradient(77.99% 77.99% at 50% 15.85%, var(--white) 0%, #CEDAED 31.77%, var(--primary-200) 70.05%, var(--primary-300) 95.83%);
  --icon-gradient-primary-before-bg: conic-gradient(from 180deg at 50% 50%, var(--primary-50) -40.04deg, var(--primary-100) 44.57deg, var(--primary-300) 86.34deg, var(--primary-50) 179.52deg, var(--primary-200) 224.69deg, var(--primary-500) 279.73deg, var(--primary-50) 319.96deg, var(--primary-100) 404.57deg);
  --icon-gradient-primary-after-bg: linear-gradient(180deg, var(--primary-50) 0%, var(--primary-50) 100%);
  --icon-gradient-third-bg: radial-gradient(77.99% 77.99% at 50% 18%, var(--third-200) 0%, var(--third-400) 35%, var(--third-600) 70.05%, var(--third-700) 95.83%);
  --icon-gradient-third-before-bg: conic-gradient(from 180deg at 50% 50%, var(--third-100) -40.04deg, var(--third-300) 44.57deg, var(--third-400) 86.34deg, var(--third-100) 179.52deg, var(--third-300) 224.69deg, var(--third-700) 279.73deg, var(--third-100) 319.96deg, var(--third-300) 404.57deg);
  --icon-gradient-third-after-bg: linear-gradient(180deg, var(--third-200) 0%, var(--third-800) 100%);
  --modal-header-text: var(--primary-500);
  --modal-after-bg: var(--black-opacity-3);
  --modal-dialog-bg: var(--white);
  --modal-close-icon: var(--white);
  --modal-header-text-before-bg: var(--secondary-300);
  --modal-um-body-text: var(--black);
  --modal-alert-body-text: var(--black);
  --tabs-pills-border-top: var(--primary-200);
  --tabs-pills-tab-selected-btn: var(--primary-800);
  --tabs-pills-tab-selected-btn-icon-done: var(--white);
  --tabs-pills-tab-selected-border: var(--primary-400);
  --tabs-pills-tab-border: var(--primary-50);
  --tabs-pills-tab-btn: var(--primary-600);
  --tabs-pills-tab-btn-border: var(--primary-400);
  --tabs-pills-tab-btn-bg: var(--primary-50);
  --tabs-pills-tab-btn-hover-text: var(--primary-800);
  --tabs-pills-tab-btn-icon-done-text: var(--white);
  --tabs-pills-tab-btn-icon-done-bg: var(--icon-league-color);
  --tabs-underline-bg: var(--primary-600);
  --tabs-underline-tab-before-bg: var(--white-opacity-5);
  --tabs-underline-tab-after-bg: var(--third-400);
  --tabs-underline-tab-btn: var(--white-opacity-3);
  --tabs-underline-tab-btn-hover-text: var(--white-opacity-1);
  --tabs-underline-tab-selected-btn: var(--third-200);
  --tabs-underline-tab-selected-btn-hover-text: var(--third-200);
  --text-primary: var(--primary-500);
  --text-secondary: var(--secondary-500);
  --textfield-text: var(--grey-800);
  --textfield-input-placeholder: var(--grey-300);
  --textfield-input-focus: var(--grey-800);
  --textfield-input-focus-border: var(--primary-500);
  --textfield-input-disabled-bg: var(--grey-200);
  --textfield-bg: var(--white-opacity-1);
  --textfield-border: var(--grey-300);
  --textfield-icon: var(--primary-400);
  --textfield-icon-icon: var(--grey-300);
  --textfield-icon-border: var(--grey-300);
  --textfield-input-auto-fill: inherit;
  --textfield-input-autofill-bg: var(--white);
  --textfield-error-tips-text: red;
  --textfield-country-code-add-icon: var(--grey-800);
  --dropdown-text: var(--grey-800);
  --dropdown-bg: var(--white);
  --dropdown-before-border: var(--grey-500);
  --dropdown-btn-border: var(--grey-300);
  --dropdown-btn-open-border: var(--primary-500);
  --dropdown-shadow: var(--black-opacity-4);
  --dropdown-item-text: var(--black-opacity-3);
  --dropdown-item-hover-bg: var(--black-opacity-6);
  --dropdown-item-border: var(--grey-50);
  --dropdown-item-selected-btn-text: var(--black-opacity-2);
  --dropdown-item-selected-btn-bg: var(--primary-50);
  --dropdown-item-icon-first: var(--black-opacity-5);
  --dropdown-item-icon-down: var(--primary-500);
  --dropdown-primary-text: var(--white);
  --dropdown-primary-btn-text: var(--dropdown-primary-text);
  --dropdown-primary-btn-bg: var(--primary-900);
  --dropdown-primary-container-bg: var(--primary-dark);
  --dropdown-primary-before-border: var(--primary-dark);
  --dropdown-primary-item-text: var(--white-opacity-1);
  --dropdown-primary-item-hover-text: var(--dropdown-primary-item-text);
  --dropdown-primary-item-hover-bg: var(--list-item-btn-hover-bg);
  --dropdown-primary-item-border: var(--primary-900);
  --dropdown-primary-item-selected-text: var(--primary-900);
  --dropdown-primary-item-selected-bg: var(--third-300);
  --dropdown-primary-item-selected-hover-text: var(--primary-900);
  --dropdown-primary-item-selected-hover-bg: var(--third-300);
  --dropdown-primary-item-icon: var(--white-opacity-1);
  --dropdown-primary-item-icon-first: var(--primary-400);
  --dropdown-primary-item-icon-down: var(--primary-900);
  --tooltip-text: var(--black-opacity-1);
  --tooltip-bg: #fff9e6;
  --tooltip-close: var(--black-opacity-3);
  --tooltip-highlight-bg: #ffcc33;
  --tag-new-text: #663c00;
  --tag-new-bg: #ffcc33;
  --panel-bg: var(--white);
  --panel-header-text-title-border: var(--secondary-500);
  --panel-dropdown-text: var(--primary-500);
  --panel-register-shadow: 0 4px 40px 0 HSLA(calc(var(--primary-h) + 3), calc(var(--primary-s) + 15%), calc(var(--primary-l) + 25%), 0.5);
  --panel-register-form-info-text: var(--black-opacity-2);
  --patt-circ-hover-border: var(--primary-50);
  --patt-circ-hover-bg: var(--primary-50);
  --list-header-text: var(--primary-800);
  --list-item-bg: var(--primary-900);
  --list-item-btn-bg: var(--black-opacity-3);
  --list-item-border-top: var(--list-item-bg);
  --list-item-btn-selected-text: var(--primary-900);
  --list-item-btn-selected-bg: var(--third-300);
  --list-item-btn-text: var(--white-opacity-3);
  --list-item-btn-hover-text: var(--white-opacity-1);
  --list-item-btn-hover-bg: var(--primary-800);
  --list-item-icon: var(--white-opacity-1);
  --list-item-icon-first: var(--primary-400);
  --list-item-icon-done: var(--primary-900);
  --list-item-selected-icon-done: var(--third-800);
  --empty-no-event-img-first-bg: var(--primary-500);
  --empty-no-event-text-third-text: var(--primary-500);
  --empty-no-event-text-last-child: var(--primary-300);
  --topbar-text: var(--white);
  --topbar-bg: var(--third-800);
  --header-bg: var(--white-opacity-1);
  --header-shadow: 0px 1px 6px var(--black-opacity-6);
  --header-logo-border: var(--black-opacity-5);
  --header-logo-text-powered-by: var(--black-opacity-1);
  --header-nav-item: var(--primary-600);
  --header-nav-item-hover: var(--primary-600);
  --header-border-bottom: var(--primary-100);
  --header-option-text: var(--primary-700);
  --header-option-icon-after-bg: var(--primary-800);
  --header-option-icon-after-image: transparent;
  --header-option-dropdown-text: var(--primary-600);
  --header-option-dropdown-child2-before-bg: var(--black-opacity-5);
  --header-option-dropdown-btn-icon-bg: transparent;
  --header-option-flag-border: var(--third-100);
  --header-login-text-after-border: var(--primary-400);
  --login-switch-bg: var(--primary-500);
  --login-switch-btn-icon: var(--white);
  --login-gestrure-item-text: var(--textfield-text);
  --login-gestrure-item-border: var(--textfield-border);
  --login-mhn-lock-title: var(--primary-500);
  --main-content-gradient-bg: linear-gradient(175.4deg, var(--primary-50) 15.4%, #f4f7fb 40.55%);
  --main-content-gradient-after: linear-gradient(90.01deg, var(--primary-100) 0.28%, var(--primary-50) 0.59%, var(--primary-100) 2.21%, var(--primary-100) 19.18%, var(--primary-50) 64.64%, var(--primary-100) 90.58%, var(--primary-100) 98.66%, var(--primary-50) 99.49%, var(--primary-300) 100.12%);
  --main-content-box-shadow: var(--primary-200);
  --main-bar-btn-bg: var(--primary-800);
  --main-bar-btn-before-bg: var(--white-opacity-6);
  --main-bar-btn-selected-bg: var(--third-800);
  --main-bar-btn-after-bg-selected: radial-gradient(55% 95% at 50% 95%, var(--third-50) 0%, var(--third-500) 25%, var(--third-800) 50%);
  --main-bar-btn-selected-before-bg: var(--white-opacity-5);
  --main-bar-btn-selected-text: var(--third-100);
  --main-bar-btn-selected-text-shadow: 1px 2px 2px var(--black-opacity-4);
  --main-bar-text: var(--white-opacity-3);
  --main-bar-text-gradient-before-after-bg: linear-gradient(230.33deg, var(--primary-800) 6.95%, rgba(45, 71, 134, 0) 74.67%);
  --main-bar-text-gradient-before-after-bg-selected: linear-gradient(243.44deg, var(--third-800) -9.12%, rgba(163, 128, 92, 0) 82.54%);
  --main-bar-btn-selected-box-shadow: inset 0px -2px 0px var(--third-800), inset 0px 3px 2px var(--third-300);
  --main-btn-hover-text: var(--third-600);
  --main-btn-hover-selected-text: var(--third-100);
  --page-bg: var(--primary-50);
  --page-header-bg: var(--primary-500);
  --page-logo-info-text: var(--white);
  --page-logo-info-border: var(--white-opacity-3);
  --page-footer-text: var(--white-opacity-1);
  --page-footer-bg: var(--primary-900);
  --page-register-mobile-bg: var(--white);
  --page-register-mobile-form-submit-bg: var(--page-register-mobile-bg);
  --promotion-swiper-button: var(--white);
  --promotion-swiper-active-img-border: var(--white);
  --promotion-swiper-slide-active-gradient-border: linear-gradient(90.06deg, #C4D0EE 0.1%, #EBEFFA 0.45%, #C4D0EE 1.45%, #C4D0EE 19.22%, #EBEFFA 38.3%, #C4D0EE 57.35%, #EBEFFA 81.3%, #C4D0EE 96.1%, #C4D0EE 98.5%, #EBEFFA 99.53%, #C4D0EE 100%);
  --promotion-swiper-pagination-bullet-bg: var(--primary-300);
  --promotion-swiper-pagination-bullet-active-after-bg: var(--primary-50);
  --promotion-swiper-bullet-active-bg: linear-gradient(180deg, var(--third-300) 0%, var(--third-600) 100%);
  --sports-banner-text: var(--white-opacity-1);
  --sports-banner-swiper-text-group-bg: linear-gradient(180deg, rgba(83, 114, 172, 0) 0%, rgba(69, 99, 161, 0.8) 35.42%, rgba(34, 58, 119, 0.9) 80.21%);
  --sports-banner-swiper-text-gradient-bg: linear-gradient(0deg, var(--primary-100) 85.29%, transparent 0.1%);
  --sports-banner-swiper-text-group-title-after-bg: var(--white);
  --sports-banner-swiper-title-gradient-bg: linear-gradient(0deg, var(--primary-600) 10.15%, var(--primary-900) 90.29%, transparent 0.5%);
  --sports-bullets-swiper-slide-thumb-active-icon-gradient-primary-bg: var(--icon-gradient-third-bg);
  --sports-bullets-swiper-slide-thumb-active-icon-gradient-primary-hover-bg: var(--icon-gradient-third-bg);
  --sports-bullets-swiper-slide-thumb-active-icon-gradient-primary-before-bg: var(--icon-gradient-third-before-bg);
  --sports-bullets-swiper-slide-thumb-active-icon-gradient-primary-after-bg: var(--icon-gradient-third-after-bg);
  --sports-bullets-swiper-slide-thumb-active-icon-gradient-hover-bg: radial-gradient(77.99% 77.99% at 50% 15.85%, #FFFCF8 0%, #E6CDB3 31.77%, #D7B99A 70.05%, #C4A27B 95.83%);
  --sports-bullets-btn-saba-hover-before-bg: var(--white-opacity-4);
  --sports-bullets-icon-gradient-primary-hover-bg: var(--icon-gradient-primary-hover-bg);
  --sports-banner-swiper-slide-thumb-active-before-bg: var(--primary-900);
  --item-text: var(--body-text);
  --item-text-time: var(--primary-300);
  --item-gradient-bg: linear-gradient(175.4deg, var(--primary-50) 28.4%, var(--primary-50) 60.66%, #f4f7fb 94.55%);
  --item-border: var(--primary-100);
  --item-hover-border: var(--primary-300);
  --item-bg: linear-gradient(180deg, var(--primary-50) 25.45%, var(--primary-50) 68.33%, var(--white-opacity-1) 100%);
  --main-content-border: var(--white);
  --live-score-group-bg: var(--main-content-gradient-bg);
  --live-score-border: var(--main-content-border);
  --live-score-option-icon: var(--secondary-100);
  --live-score-gradient-header: linear-gradient(110.26deg, HSL(235, 71%, 26%) 2.72%, HSL(241, 73%, 17%) 108%);
  --live-score-gradient-match-trapezoid: var(--primary-200);
  --live-score-gradient-match-bg: linear-gradient(180deg, var(--primary-200) 0%, var(--primary-100) 30.09%, var(--white) 100%);
  --ls-match-text: var(--primary-400);
  --ls-match-text-vs: var(--primary-300);
  --ls-match-text-score: var(--third-600);
  --ls-match-text-score-cricket: var(--third-400);
  --ls-match-text-live: var(--secondary-500);
  --ls-match-team-text: var(--primary-600);
  --ls-match-time-text: var(--ls-match-text);
  --ls-match-border: var(--primary-100);
  --ls-match-header-border: var(--primary-200);
  --ls-match-main-border-top: var(--white-opacity-3);
  --ls-match-hover-border: var(--primary-300);
  --sport-highlights-border: var(--main-content-border);
  --sport-highlights-promo-video-bg: transparent;
  --sport-hightlights-promo-main-video-border: var(--video-border);
  --sport-hightlights-promo-main-video-hover-border: var(--item-hover-border);
  --sport-highlights-promo-vido-info-border: var(--primary-200);
  --sports-highlights-list-video-border: var(--primary-300);
  --video-bg: var(--item-bg);
  --video-border: var(--item-border);
  --video-hover-border: var(--item-hover-border);
  --video-text-time: var(--item-text-time);
  --video-play-bg: var(--black-opacity-4);
  --video-btn-border: var(--white-opacity-1);
  --news-border: var(--main-content-border);
  --news-text: var(--item-text);
  --news-text-time: var(--item-text-time);
  --news-item-bg: var(--item-bg);
  --news-item-border: var(--item-border);
  --news-item-hover-border: var(--item-hover-border);
  --news-item-hover-text: inherit;
  --news-promo-main-item-bg: transparent;
  --news-promo-img-border: var(--item-border);
  --news-promo-news-info-border: var(--sport-hightlights-promo-main-video-hover-border);
  --footer-bg: var(--primary-900);
  --footer-provider-border: var(--primary-800);
  --footer-heading-text: var(--primary-300);
  --footer-main-text: var(--grey-400);
  --footer-col-dropdown-icon-first-child-bg: var(--primary-400);
  --footer-nav-logo-text-powerd-by: var(--white);
  --footer-nav-list-text: var(--primary-100);
  --footer-nav-list-item-hover-text: var(--white);
  --footer-nav-list-item-border: var(--white-opacity-6);
  --footer-cpr-text: var(--white-opacity-4);
  --footer-cpr-bg: var(--black-opacity-3);
  --footer-icon-certified: var(--icon-certified-color);
  --footer-heading-icon-certified-after-bg: var(--white);
  --footer-dropdwon-btn-bg: var(--black-opacity-3);
  --register-step-text: #999999;
  --register-step-count-bg: var(--register-step-text);
  --register-step-selected-text: var(--primary-500);
  --register-step-selected-count-bg: var(--register-step-selected-text);
  --register-step-decorative-line: #b3b3b3;
  --register-msg-text: var(--black);
  --register-msg-text-title: var(--primary-500);
  --register-msg-success-icon: #40bf4a;
  --register-msg-warning-icon: #ffbf00;
  --contact-list-text: var(--white);
  --contact-list-bg: var(--primary-900);
  --contact-list-icon-bg: var(--primary-500);
  --contact-list-icon-line-bg: #4dc763;
  --contact-list-icon-tg-bg: #37aee1;
}

[data-layout="mobile"] {
  --tabs-pills-bg: var(--primary-300);
  --tabs-underline-tab-selected-btn: var(--third-200);
  --empty-mobile-border: var(--white);
  --header-bg: var(--white);
  --header-login-text-before-bg: var(--header-bg);
  --header-login-text-before-text: var(--primary-700);
  --header-login-text-after-border: var(--primary-400);
  --list-header-text: var(--primary-800);
  --list-item-btn--hover-icon: var(--primary-600);
  --btn-nav-stick-bg: var(--primary-900);
  --side-nav-main-bg: var(--primary-50);
  --side-nav-after-bg: var(--black-opacity-3);
  --side-nav-list-header-text: var(--primary-900);
  --side-nav-list-item-bg: transparent;
  --side-nav-list-item-icon: var(--primary-600);
  --side-nav-list-item-btn-text: var(--primary-600);
  --side-nav-list-item-btn-bg: transparent;
  --side-nav-list-item-selected-btn: var(--primary-600);
  --side-nav-list-item-selected-btn-bg: var(--third-200);
  --side-nav-list-item-selected-icon: var(--third-700);
  --language-list-border-top: var(--primary-100);
  --social-list-border-top: var(--primary-100);
  --main-bar-border: var(--white);
  --sports-banner-swiper-bg: linear-gradient(180deg, var(--primary-50) 0%, var(--primary-100) 100%);
}

.patt-wrap {
  position: relative;
  cursor: pointer;
}

.patt-wrap li, .patt-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.patt-circ {
  position: relative;
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.patt-error .patt-circ.hovered {
  border: 3px solid #BA1B26;
}

.patt-hidden .patt-circ.hovered {
  border: 0;
}

.patt-dots, .patt-lines {
  border-radius: 5px;
  height: 10px;
  position: absolute;
}

.patt-dots {
  width: 10px;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -5px;
}

.patt-lines {
  background: rgba(255, 255, 255, 0.7);
  transform-origin: 5px 5px;
  -ms-transform-origin: 5px 5px;
  -webkit-transform-origin: 5px 5px;
}

.patt-hidden .patt-lines {
  display: none;
}

.mhn-lock-wrap {
  position: relative;
  margin-top: 1rem;
}

.mhn-lock-wrap .mhn-lock-title {
  margin: 0 auto;
  min-height: 2.5rem;
  max-width: 300px;
  text-align: center;
  font-size: 14px;
}

.mhn-lock-wrap .mhn-lock-success {
  color: transparent;
  text-shadow: none;
}

.mhn-lock-wrap .mhn-lock-failure {
  color: red;
}

.mhn-lock {
  margin: -15px auto 0;
  background: 0 0;
}

.patt-wrap {
  margin: auto;
  overflow: hidden;
}

.patt-wrap li {
  -webkit-transition: all .4s ease-in-out 0s;
  transition: all .4s ease-in-out 0s;
}

.patt-dots, .patt-lines {
  -webkit-transition: background .1s ease-in-out 0s;
  transition: background .1s ease-in-out 0s;
}

.patt-circ {
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.patt-dots {
  background-color: white;
}

.patt-lines {
  background-color: rgba(0, 0, 0, 0.1);
}

.patt-circ.hovered {
  border-color: #ddd;
  background-color: rgba(0, 0, 0, 0.05);
}

.patt-error .patt-circ.hovered {
  background: rgba(243, 66, 53, 0.4);
  border-color: rgba(243, 66, 53, 0.8);
}

.patt-error .patt-lines {
  background: rgba(243, 66, 53, 0.5);
}

.patt-success .patt-circ.hovered {
  background: rgba(75, 174, 79, 0.4);
  border-color: rgba(75, 174, 79, 0.8);
}

.patt-success .patt-lines {
  background: rgba(75, 174, 79, 0.5);
}

/**
 * Swiper 8.1.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 25, 2022
 */
@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 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  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-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.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);
}

.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;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.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-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  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-cursor-drag {
  cursor: move;
}

.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 > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.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,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

@font-face {
  font-family: "iconfont";
  src: url("../../../_global/common/images/before_nova88/ui/iconfont.woff?v=20251010002") format("woff");
}

.icon {
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  /* speak: none; only necessary if not using the private unicode range (firstGlyph option) */
  text-decoration: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon::before {
  font-family: "iconfont";
}

.icon--account-circle-outline::before {
  content: "\EA01";
}

.icon--add-account::before {
  content: "\EA02";
}

.icon--addition::before {
  content: "\EA03";
}

.icon--arrow-down::before, .icon--caret::before {
  content: "\EA04";
}

.icon--arrow-left::before {
  content: "\EA05";
}

.icon--arrow-right::before {
  content: "\EA06";
}

.icon--arrow-up::before {
  content: "\EA07";
}

.icon--cancel::before {
  content: "\EA08";
}

.icon--certified::before {
  content: "\EA09";
}

.icon--checkbox-on::before, .checkbox :checked ~ .icon--checkbox::before {
  content: "\EA0A";
}

.icon--checkbox::before {
  content: "\EA0B";
}

.icon--clear::before {
  content: "\EA0C";
}

.icon--clock::before {
  content: "\EA0D";
}

.icon--close::before {
  content: "\EA0E";
}

.icon--desktop::before {
  content: "\EA0F";
}

.icon--done::before {
  content: "\EA10";
}

.icon--download::before {
  content: "\EA11";
}

.icon--gesture-password::before {
  content: "\EA12";
}

.icon--gototop::before {
  content: "\EA13";
}

.icon--help-outline::before {
  content: "\EA14";
}

.icon--info-circle-fill::before {
  content: "\EA15";
}

.icon--keypad::before {
  content: "\EA16";
}

.icon--lock::before {
  content: "\EA17";
}

.icon--menu::before {
  content: "\EA18";
}

.icon--mobile::before {
  content: "\EA19";
}

.icon--my-account::before {
  content: "\EA1A";
}

.icon--pause::before {
  content: "\EA1B";
}

.icon--phone-fill::before {
  content: "\EA1C";
}

.icon--phone-outline::before {
  content: "\EA1D";
}

.icon--play::before {
  content: "\EA1E";
}

.icon--refresh::before {
  content: "\EA1F";
}

.icon--shield::before {
  content: "\EA20";
}

.icon--successful-circle-fill::before {
  content: "\EA21";
}

.icon--visibility-off::before {
  content: "\EA22";
}

.icon--visibility::before {
  content: "\EA23";
}

.icon--wap::before {
  content: "\EA24";
}

.icon--warning-triangle-fill::before {
  content: "\EA25";
}

.icon--bundesliga::before {
  content: "\EA26";
}

.icon--la-liga::before {
  content: "\EA27";
}

.icon--ligue-1::before {
  content: "\EA28";
}

.icon--premier-league::before {
  content: "\EA29";
}

.icon--serie-A::before {
  content: "\EA2A";
}

.icon--uefa::before {
  content: "\EA2B";
}

.icon--social-line-fill::before {
  content: "\EA2C";
}

.icon--social-live-chat-outline::before {
  content: "\EA2D";
}

.icon--social-telegram-fill::before {
  content: "\EA2E";
}

.icon--gv-basketball::before {
  content: "\EA2F";
}

.icon--gv-esports::before {
  content: "\EA30";
}

.icon--gv-live-casino::before {
  content: "\EA31";
}

.icon--gv-mini-casino::before {
  content: "\EA32";
}

.icon--gv-number-game::before {
  content: "\EA33";
}

.icon--gv-soccer::before {
  content: "\EA34";
}

.icon--sport1::before {
  content: "\EA35";
}

.icon--sport18x::before {
  content: "\EA36";
}

.icon--sport2::before {
  content: "\EA37";
}

.icon--sport5::before {
  content: "\EA38";
}

.icon--sport50::before {
  content: "\EA39";
}

.icon--sport997::before {
  content: "\EA3A";
}

.icon {
  flex: 0 0 auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  line-height: 1;
  font-size: 1.25rem;
  position: relative;
}

.icon--gradient-primary {
  background-color: var(--icon-gradient-primary-bg);
  background-image: var(--icon-gradient-primary-bg);
}

.icon--gradient-primary::before {
  background-image: var(--icon-gradient-primary-before-bg);
}

.icon--gradient-primary::after {
  background-color: var(--icon-gradient-primary-after-bg);
  background-image: var(--icon-gradient-primary-after-bg);
}

[data-selected="true"] > .icon--gradient-primary {
  background-image: var(--icon-gradient-third-bg);
}

[data-selected="true"] > .icon--gradient-primary::before {
  background-image: var(--icon-gradient-third-before-bg);
}

[data-selected="true"] > .icon--gradient-primary::after {
  background-image: var(--icon-gradient-third-after-bg);
}

.icon--gradient-third {
  background-image: var(--icon-gradient-third-bg);
}

.icon--gradient-third::before {
  background-image: var(--icon-gradient-third-before-bg);
}

.icon--gradient-third::after {
  background-image: var(--icon-gradient-third-after-bg);
}

.icon--gradient-primary, .icon--gradient-third {
  padding: 0.25rem;
  color: var(--white);
  border-radius: 50%;
  box-shadow: inset 0px 0px 4px var(--black-opacity-4);
}

.icon--gradient-primary::before, .icon--gradient-primary::after, .icon--gradient-third::before, .icon--gradient-third::after {
  content: '';
  position: absolute;
  border-radius: inherit;
}

.icon--gradient-primary::before, .icon--gradient-third::before {
  z-index: -1;
}

.icon--gradient-primary::after, .icon--gradient-third::after {
  z-index: -2;
}

.icon + .text, .icon + .icon, .icon + .label {
  margin-left: .375rem;
}

[data-layout="desktop"] .icon--gradient-primary::before, [data-layout="desktop"] .icon--gradient-third::before {
  left: -3px;
  right: -3px;
  top: -3px;
  bottom: -3px;
}

[data-layout="desktop"] .icon--gradient-primary::after, [data-layout="desktop"] .icon--gradient-third::after {
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
}

[data-layout="mobile"] .icon--gradient-primary::before, [data-layout="mobile"] .icon--gradient-third::before {
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
}

[data-layout="mobile"] .icon--gradient-primary::after, [data-layout="mobile"] .icon--gradient-third::after {
  left: -4px;
  right: -4px;
  top: -4px;
  bottom: -4px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: .125rem .5rem;
  min-height: 36px;
  border-radius: .25rem;
  outline: none;
  cursor: pointer;
}

.btn[data-disable="true"] {
  pointer-events: none;
  color: var(--btn-disable-text);
  background-color: var(--btn-disable-bg);
}

.btn--primary {
  color: var(--btn-primary-text);
  background-image: var(--btn-primary-gradient-bg);
  box-shadow: var(--btn-primary-shadow);
  overflow: hidden;
}

[data-layout="desktop"] .btn--primary {
  box-shadow: var(--btn-primary-desktop-shadow);
}

.btn--primary:hover {
  -webkit-filter: brightness(105%);
          filter: brightness(105%);
  background-color: var(--btn-primary-hover-bg);
}

.btn--secondary, .btn--next {
  color: var(--btn-secondary-text);
  background-image: var(--btn-secondary-gradient-bg);
  box-shadow: var(--btn-secondary-shadow);
  overflow: hidden;
}

[data-layout="desktop"] .btn--secondary, [data-layout="desktop"] .btn--next {
  box-shadow: var(--btn-secondary-desktop-shadow);
}

.btn--secondary:hover, .btn--next:hover {
  -webkit-filter: brightness(108%);
          filter: brightness(108%);
  background-color: var(--btn-secondary-hover-bg);
}

.btn--secondary[data-disable="true"], [data-disable="true"].btn--next {
  color: var(--btn-secondary-disable-text);
  background-image: var(--btn-secondary-disable-img);
  box-shadow: var(--btn-secondary-disable-shadow);
  -webkit-filter: none;
          filter: none;
}

.btn--third {
  color: var(--btn-third-text);
  background-image: var(--btn-third-gradient-bg);
  box-shadow: var(--btn-third-shadow);
}

[data-layout="desktop"] .btn--third {
  box-shadow: var(--btn-thrid-desktop-shadow);
}

.btn--primary, .btn--secondary, .btn--next, .btn--third, .btn--back {
  position: relative;
}

.btn--primary::before, .btn--secondary::before, .btn--next::before, .btn--third::before, .btn--back::before {
  content: '';
  margin: 0 auto;
  width: calc(100% - 2rem);
  height: 1px;
  background-image: var(--btn-gradient-before-line);
  background-color: var(--btn-gradient-before-line);
  position: absolute;
  bottom: 0px;
}

.btn--primary .text, .btn--secondary .text, .btn--next .text, .btn--third .text, .btn--back .text {
  font-weight: 500;
}

.btn--primary .text::before, .btn--primary .text::after, .btn--secondary .text::before, .btn--next .text::before, .btn--secondary .text::after, .btn--next .text::after, .btn--third .text::before, .btn--third .text::after, .btn--back .text::before, .btn--back .text::after {
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  transform: skewX(40deg);
  background-image: var(--btn-gradient-light-text-bg);
  background-color: var(--btn-gradient-light-text-bg);
  opacity: .7;
}

.btn--primary .text::before, .btn--secondary .text::before, .btn--next .text::before, .btn--third .text::before, .btn--back .text::before {
  width: 35%;
  left: 40%;
}

.btn--primary .text::after, .btn--secondary .text::after, .btn--next .text::after, .btn--third .text::after, .btn--back .text::after {
  width: 60%;
  right: -35%;
}

.btn--gototop {
  border-radius: 100%;
  position: fixed;
  bottom: 1rem;
  bottom: calc(constant(safe-area-inset-bottom) + 1.5rem);
  bottom: calc(env(safe-area-inset-bottom) + 1.5rem);
  right: 0.5rem;
  z-index: 4;
}

.btn--gototop[data-open="true"] {
  bottom: 1rem;
  transition: bottom 1s ease;
}

.btn--gototop[data-open="false"] {
  bottom: -10%;
  transition: bottom 1s ease;
}

.btn--submit {
  background-color: var(--btn-submit-bg);
}

.btn--submit .text {
  color: var(--btn-submit-text);
}

.btn--submit:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

.btn--icon {
  padding: 0;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
}

.btn--nav {
  display: flex;
  z-index: 11;
}

.btn--nav .iconani-nav {
  width: 18px;
  height: 18px;
  position: relative;
}

.btn--nav .iconani-nav__stick {
  display: block;
  background-color: var(--btn-nav-stick-bg);
  position: absolute;
  width: 18px;
  height: .125rem;
  top: 50%;
  transform: translateY(50%);
}

[data-open="false"] .btn--nav .iconani-nav__stick:nth-child(1) {
  animation: nav_close_down .4s forwards;
}

[data-open="false"] .btn--nav .iconani-nav__stick:nth-child(2) {
  transform: translateY(50%);
}

[data-open="false"] .btn--nav .iconani-nav__stick:nth-child(3) {
  animation: nav_close_up .4s forwards;
}

[data-open="true"] .btn--nav .iconani-nav__stick:nth-child(1), [data-open="true"] .btn--nav .iconani-nav__stick:nth-child(2) {
  animation: nav_open_down .4s forwards;
}

[data-open="true"] .btn--nav .iconani-nav__stick:nth-child(3) {
  animation: nav_open_up .4s forwards;
}

.btn--back {
  color: var(--btn-back-text);
  background-image: var(--btn-back-gradient-bg);
  background-color: var(--btn-back-gradient-bg);
  box-shadow: var(--btn-back-shadow);
  overflow: hidden;
}

[data-layout="desktop"] .btn--back {
  box-shadow: var(--btn-back-desktop-shadow);
}

.btn--back:hover {
  -webkit-filter: brightness(105%);
          filter: brightness(105%);
  background-color: var(--btn-back-hover-bg);
}

@keyframes nav_open_down {
  0% {
    transform: translateY(calc( 50% - (.25rem + .125rem))) rotate(0);
  }
  50% {
    transform: translateY(50%) rotate(0);
  }
  100% {
    transform: translateY(50%) rotate(-45deg);
  }
}

@keyframes nav_open_up {
  0% {
    transform: translateY(calc( 50% + .25rem)) rotate(0);
  }
  50% {
    transform: translateY(50%) rotate(0);
  }
  100% {
    transform: translateY(50%) rotate(45deg);
  }
}

@keyframes nav_close_down {
  0% {
    transform: translateY(50%) rotate(-45deg);
  }
  50% {
    transform: translateY(50%) rotate(0);
  }
  100% {
    transform: translateY(calc( 50% - (.25rem + .125rem))) rotate(0);
  }
}

@keyframes nav_close_up {
  0% {
    transform: translateY(50%) rotate(45deg);
  }
  50% {
    transform: translateY(50%) rotate(0);
  }
  100% {
    transform: translateY(calc( 50% + (.25rem + .125rem))) rotate(0);
  }
}

.btn--link {
  min-height: auto;
}

.btn + .btn, .btn + .dropdown {
  margin-left: .5rem;
}

.text,
[class^="text-"] {
  word-break: break-word;
}

.text:empty,
[class^="text-"]:empty {
  margin: 0 !important;
  padding: 0 !important;
}

.text + .icon,
.text + .badge,
.text + .btn,
.text + .lang,
.text + .dropdown,
.text + .text,
.text + .tag,
[class^="text-"] + .icon,
[class^="text-"] + .badge,
[class^="text-"] + .btn,
[class^="text-"] + .lang,
[class^="text-"] + .dropdown,
[class^="text-"] + .text,
[class^="text-"] + .tag {
  margin-left: .5rem;
}

.text-primary {
  color: var(--text-primary);
}

.text-highlight {
  color: var(--text-secondary);
}

.checkbox,
.radio {
  display: inline-flex;
  align-items: center;
  margin: 0;
  min-width: 0;
  vertical-align: middle;
  font-weight: normal;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  border-color: transparent;
  background-origin: border-box;
}

.checkbox input,
.radio input {
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  -webkit-appearance: none;
          appearance: none;
}

.checkbox input[type="checkbox"],
.radio input[type="checkbox"] {
  margin: 0;
}

.checkbox input[type="radio"],
.radio input[type="radio"] {
  margin: 0;
}

.checkbox .text,
.radio .text {
  color: var(--checkbox-text);
}

.checkbox .icon--checkbox {
  color: var(--checkbox-icon-text);
}

.checkbox :checked ~ .icon--checkbox {
  color: var(--checkbox-icon-checked-text);
}

.checkbox + .checkbox,
.radio + .checkbox {
  margin-left: 1rem;
}

.textfield {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0;
  background-color: transparent;
  border-radius: .375rem;
  position: relative;
  z-index: 0;
}

.textfield--error .textfield__bg {
  border-color: red;
}

.textfield--error ~ .textfield-tips {
  color: var(--textfield-error-tips-text);
}

.textfield__input {
  flex: 1 1 auto;
  margin: 0 .75rem;
  min-width: 0;
  font-size: 1rem;
  color: var(--textfield-text);
  text-align: left;
  border: none;
  border-radius: inherit;
  background-color: transparent;
  background-image: none;
  outline: none;
  resize: none;
}

.textfield__input::-webkit-input-placeholder {
  color: var(--textfield-input-placeholder);
}

.textfield__input:focus {
  color: var(--textfield-input-focus);
}

.textfield__input:focus + .textfield__bg, .textfield__input:focus + .btn + .textfield__bg {
  border-width: 1px;
  border-color: var(--textfield-input-focus-border);
}

.textfield__input:disabled ~ * {
  background-color: var(--textfield-input-disabled-bg) !important;
}

.textfield__input:disabled ~ .c-btn {
  pointer-events: none;
  opacity: .24 !important;
}

.textfield__input:disabled ~ .c-btn::before {
  display: none;
}

.textfield__input:invalid ~ .textfield__bg {
  border-width: 1px;
  border-color: red;
}

.textfield__input:-webkit-autofill, .textfield__input:-webkit-autofill:hover, .textfield__input:-webkit-autofill:focus, .textfield__input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--textfield-input-auto-fill, inherit);
  -webkit-box-shadow: 0 0 0px 1000px var(--textfield-input-autofill-bg) inset;
  transition: background-color 5000s ease-in-out 0s;
  border-radius: 0;
  width: auto;
}

.textfield__bg {
  flex: 1;
  background-color: var(--textfield-bg);
  border-radius: inherit;
  border-width: 1px;
  border-color: var(--textfield-border);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.textfield__icon {
  flex: 0 0 auto;
  height: 22px;
  padding: 0 .75rem;
  border-right-width: 1px;
  border-right-color: var(--textfield-icon-border);
}

.textfield__icon .icon {
  color: var(--textfield-icon-icon);
}

.textfield .btn {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}

.textfield .btn[data-selected="true"] .icon--visibility {
  opacity: 1;
  visibility: visible;
}

.textfield .btn[data-selected="true"] .icon--visibility-off {
  opacity: 0;
  visibility: hidden;
}

.textfield .btn .icon {
  font-size: 1.25rem;
  color: var(--textfield-icon);
  position: absolute;
}

.textfield .btn .icon--visibility {
  opacity: 0;
  visibility: hidden;
}

.textfield .btn .icon--visibility-off {
  opacity: 1;
  visibility: visible;
}

.textfield .btn .icon + .icon {
  margin-left: 0;
}

.textfield .icon {
  font-size: 1.375rem;
}

.textfield--password .textfield__input {
  margin: 0 2.375rem 0 0.75rem;
}

.textfield--password > .btn--icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  position: absolute;
  right: .75rem;
}

.textfield--country-code::before {
  order: 2;
  content: "+";
  margin-left: .75rem;
  font-size: 1rem;
  font-family: sans-serif;
  color: var(--textfield-country-code-add-icon);
}

.textfield--country-code .textfield__icon {
  order: 1;
}

.textfield--country-code .textfield__input {
  order: 3;
  margin-left: 0;
}

.textfield + .textfield {
  margin-left: .5rem;
}

.textfield + .textfield-tips {
  margin-top: .25rem;
}

.textfield-tips {
  margin: 0;
  padding-left: 1.25rem;
}

.tabs {
  flex: 0 0 auto;
  display: flex;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
}

.tabs__content {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.tabs__content .tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  position: relative;
}

.tabs__content .tab .btn {
  flex: 1;
}

.tabs--pills {
  border-top-width: 1px;
  border-top-color: var(--tabs-pills-border-top);
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: ease .3s;
}

.tabs--pills[data-open="true"] {
  max-height: 75px;
  opacity: 1;
  visibility: visible;
}

.tabs--pills .tab {
  align-items: flex-start;
}

.tabs--pills .tab[data-selected="true"] .btn {
  color: var(--tabs-pills-tab-selected-btn);
}

.tabs--pills .tab[data-selected="true"] .btn .icon:first-child .icon {
  opacity: 0;
  visibility: hidden;
}

.tabs--pills .tab[data-selected="true"] .btn .icon:first-child .league {
  opacity: 1;
  visibility: visible;
}

.tabs--pills .tab[data-selected="true"] .btn .icon--done {
  width: inherit;
  height: inherit;
  margin-left: 0.375rem;
  border-width: 1px;
  border-color: var(--tabs-pills-tab-selected-btn-icon-done);
  opacity: 1;
  visibility: visible;
}

.tabs--pills .tab .btn {
  color: var(--tabs-pills-tab-btn);
}

.tabs--pills .tab .btn .icon:first-child {
  width: 28px;
  height: 28px;
}

.tabs--pills .tab .btn .icon:first-child .icon {
  font-size: 28px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
}

.tabs--pills .tab .btn .icon:first-child .league {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.tabs--pills .tab .btn .icon--done {
  width: 0px;
  height: 0px;
  color: var(--tabs-pills-tab-btn-icon-done-text);
  background-color: var(--tabs-pills-tab-btn-icon-done-bg);
  border-radius: 50%;
  top: 0;
  right: 2px;
  transition: ease .2s;
  opacity: 0;
  visibility: hidden;
}

.tabs--pills .tab .text {
  width: 100%;
  line-height: 1;
}

.tabs--pills .tab .text + .icon {
  margin-left: 0;
}

.tabs--underline {
  background-color: var(--tabs-underline-bg);
}

.tabs--underline .tab:last-child::before {
  content: none;
}

.tabs--underline .tab::before {
  content: "";
  display: block;
  width: 1px;
  height: 1rem;
  background-color: var(--tabs-underline-tab-before-bg);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(calc(-50% - 0.375rem));
}

.tabs--underline .tab::after {
  content: "";
  display: block;
  margin: auto;
  height: 4px;
  background-color: var(--tabs-underline-tab-after-bg);
  position: absolute;
  bottom: 0;
  transform: scaleX(0);
  transition: ease .3s;
}

.tabs--underline .tab .btn {
  padding: 0 0 0.625rem;
  color: var(--tabs-underline-tab-btn);
}

.tabs--underline .tab[data-selected="true"]::after {
  transform: scaleX(1);
}

.tabs--underline .tab[data-selected="true"] .btn {
  color: var(--tabs-underline-tab-selected-btn);
}

.tabs--underline .tab[data-selected="true"] .btn:hover {
  cursor: default;
}

[data-layout="desktop"] .tabs .tabs__content .btn {
  transition: ease .3s;
}

[data-layout="desktop"] .tabs--pills {
  background-color: var(--tabs-pills-bg);
  padding: 0 .75rem;
}

[data-layout="desktop"] .tabs--pills[data-open="true"] {
  padding-top: .75rem;
  padding-bottom: .75rem;
}

[data-layout="desktop"] .tabs--pills .tab[data-selected="true"] .btn {
  border-color: var(--tabs-pills-tab-selected-border);
}

[data-layout="desktop"] .tabs--pills .tab .btn {
  flex-wrap: nowrap;
  max-width: inherit;
  min-height: 40px;
  padding-left: .75rem;
  padding-right: .75rem;
  background-color: var(--tabs-pills-tab-btn-bg);
  border-radius: 50px;
  border-width: 2px;
  border-color: var(--tabs-pills-tab-border);
}

[data-layout="desktop"] .tabs--pills .tab .btn:hover {
  color: var(--tabs-pills-tab-btn-hover-text);
  border-width: 2px;
  border-color: var(--tabs-pills-tab-btn-border);
}

[data-layout="desktop"] .tabs--pills .tab .btn:hover .icon:first-child .icon {
  opacity: 0;
  visibility: hidden;
}

[data-layout="desktop"] .tabs--pills .tab .btn:hover .icon:first-child .league {
  opacity: 1;
  visibility: visible;
}

[data-layout="desktop"] .tabs--pills .tab .btn .icon--done {
  font-size: 1.125rem;
  position: static;
}

[data-layout="desktop"] .tabs--pills .tab .text {
  margin-top: 0;
  font-size: 1rem;
  text-align: left;
  white-space: nowrap;
}

[data-layout="desktop"] .tabs--pills .tab + .tab {
  margin-left: .5rem;
}

[data-layout="desktop"] .tabs--underline .tab {
  padding: 0 2rem;
  font-size: 1.25rem;
}

[data-layout="desktop"] .tabs--underline .tab::after {
  left: 2rem;
  right: 2rem;
}

[data-layout="desktop"] .tabs--underline .tab .btn:hover {
  color: var(--tabs-underline-tab-btn-hover-text);
}

[data-layout="desktop"] .tabs--underline .tab[data-selected="true"] .btn:hover {
  color: var(--tabs-underline-tab-selected-btn-hover-text);
  transform: scaleX(1);
  opacity: 1;
}

[data-layout="mobile"] .tabs--pills {
  background-color: var(--tabs-pills-bg);
  padding: 0 .5rem;
}

[data-layout="mobile"] .tabs--pills[data-open="true"] {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

[data-layout="mobile"] .tabs--pills .tab .btn {
  flex-wrap: wrap;
  max-width: 60px;
  padding: 0;
}

[data-layout="mobile"] .tabs--pills .tab .btn .icon--done {
  font-size: .75rem;
  position: absolute;
  transition-property: opacity;
}

[data-layout="mobile"] .tabs--pills .tab .btn .icon + .text {
  margin-left: 0;
}

[data-layout="mobile"] .tabs--pills .tab .text {
  margin-top: .125rem;
  font-size: .75rem;
  text-align: center;
  white-space: normal;
}

[data-layout="mobile"] .tabs--pills .tab + .tab {
  margin-left: .25rem;
}

[data-layout="mobile"] .tabs--underline .tab {
  padding: 0 .75rem;
  font-size: 1rem;
}

[data-layout="mobile"] .tabs--underline .tab::after {
  left: .75rem;
  right: .75rem;
}

[data-layout="mobile"] .tabs--underline .tab .icon {
  font-size: 1.125rem;
}

[data-layout="mobile"] .tabs--underline .tab[data-selected="true"] .btn:hover {
  color: var(--tabs-underline-tab-selected-btn);
  transform: scaleX(1);
  opacity: 1;
}

.dropdown {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  vertical-align: middle;
  color: var(--dropdown-text);
  background-color: inherit;
  border-radius: inherit;
  z-index: 3;
}

.dropdown[data-open="true"] .dropdown__btn .icon--arrow-down::before, .dropdown[data-open="true"] .dropdown__btn .icon--caret::before {
  transform: rotate(180deg);
}

.dropdown__btn {
  flex: 1;
  display: flex;
  align-items: center;
  padding: .125rem .5rem;
  min-height: 1.75rem;
  color: var(--dropdown-btn-text);
  border-color: var(--dropdown-btn-border);
  border-width: 1px;
  border-radius: .25rem;
  cursor: pointer;
}

.dropdown__btn .icon--arrow-down, .dropdown__btn .icon--caret {
  font-size: 1rem;
}

.dropdown__btn .icon--arrow-down::before, .dropdown__btn .icon--caret::before {
  transition: ease .2s;
  transform: rotate(0deg);
}

.dropdown__btn .text + .icon--arrow-down, .dropdown__btn .text + .icon--caret {
  margin-left: auto;
  padding-left: .5rem;
}

.dropdown__container {
  padding: 0;
  min-width: 190px;
  background-color: var(--dropdown-bg);
  border-radius: var(--border-radius);
  box-shadow: 0px 4px 6px var(--dropdown-shadow);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  transition: ease 0.2s;
  visibility: hidden;
  opacity: 0;
}

.dropdown[data-open="true"] .dropdown__container {
  visibility: visible;
  opacity: 1;
}

.dropdown__container::before {
  border-color: transparent transparent var(--dropdown-before-border);
}

.dropdown__list {
  display: flex;
  flex-direction: column;
  min-height: 1px;
  max-height: 50vh;
  background-color: inherit;
  border-radius: inherit;
  overflow-y: auto;
}

.dropdown__item {
  flex: 1;
  display: flex;
  padding: 0.5rem 0.75rem;
  color: var(--dropdown-item-text);
  cursor: pointer;
}

.dropdown__item:hover {
  background-color: var(--dropdown-item-hover-bg);
}

.dropdown__item + .dropdown__item {
  border-top-width: 1px;
  border-top-color: var(--dropdown-item-border);
}

@media (hover: none) {
  .dropdown__item[data-selected="true"]:hover {
    background-color: var(--dropdown-item-selected-btn-bg);
  }
  .dropdown__item:hover {
    background-color: transparent;
  }
}

.dropdown__item[data-selected="true"] {
  color: var(--dropdown-item-selected-btn-text);
  background-color: var(--dropdown-item-selected-btn-bg);
  cursor: default;
}

.dropdown__item[data-selected="false"] .icon--done {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.dropdown__item .icon {
  font-size: 1.125rem;
  color: var(--dropdown-item-icon);
  transition: ease .2s;
}

.dropdown__item .icon:first-child {
  width: 20px;
  height: 20px;
  border-radius: 50px;
}

.dropdown__item .icon--done {
  color: var(--dropdown-item-icon-down);
}

.dropdown__item .text {
  flex: 1;
}

.dropdown--primary {
  color: var(--dropdown-primary-text);
}

.dropdown--primary[data-open="true"] .dropdown__container {
  border-top: 0;
}

.dropdown--primary .dropdown__btn {
  color: var(--dropdown-primary-btn-text);
  background-color: var(--dropdown-primary-btn-bg);
}

.dropdown--primary .dropdown__item {
  color: var(--dropdown-primary-item-text);
  border-top-color: var(--dropdown-primary-item-border);
}

.dropdown--primary .dropdown__item:hover {
  color: var(--dropdown-primary-item-hover-text);
  background-color: var(--dropdown-primary-item-hover-bg);
}

.dropdown--primary .dropdown__item[data-selected="true"] {
  color: var(--dropdown-primary-item-selected-text);
  background-color: var(--dropdown-primary-item-selected-bg);
}

.dropdown--primary .dropdown__item[data-selected="true"]:hover {
  color: var(--dropdown-primary-item-selected-hover-text);
  background-color: var(--dropdown-primary-item-selected-hover-bg);
}

.dropdown--primary .dropdown__item .icon {
  color: var(--dropdown-primary-item-icon);
}

.dropdown--primary .dropdown__item .icon:first-child {
  width: 20px;
  height: 20px;
  font-size: .875rem;
  border-radius: 50px;
  background-color: var(--dropdown-primary-item-icon-first);
}

.dropdown--primary .dropdown__item .icon--done {
  color: var(--dropdown-primary-item-icon-down);
}

.dropdown--primary .dropdown__container {
  background-color: var(--dropdown-primary-container-bg);
  border-radius: var(--border-radius);
}

.dropdown--primary .dropdown__container::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -0.375rem;
  left: 1rem;
  background-color: transparent;
  border-width: 0 0.625rem 1rem;
  border-color: transparent transparent var(--dropdown-primary-before-border);
}

.dropdown + .icon, .dropdown + .text, .dropdown + .btn, .dropdown + .badge, .dropdown + .dropdown {
  margin-left: .5rem;
}

.tooltip {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: .375rem .5rem;
  background-color: var(--tooltip-bg);
  color: var(--tooltip-text);
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  z-index: 1;
  -webkit-filter: drop-shadow(0 0 0.125rem rgba(0, 0, 0, 0.38));
          filter: drop-shadow(0 0 0.125rem rgba(0, 0, 0, 0.38));
  border-radius: .25rem;
  transition: ease 0.2s;
}

.tooltip__content {
  padding: .5rem;
}

.tooltip__content [class*="c-text"] + [class*="c-text"] {
  margin-top: .25rem;
}

.tooltip__content .c-checkbox {
  margin-top: .25rem;
}

.tooltip::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: calc(50% - (0.5rem / 2));
  height: 0.5rem;
  width: 0.5rem;
  background-color: inherit;
  transform: rotate(45deg);
}

.tooltip[data-open="true"] {
  visibility: visible;
  opacity: 1;
}

.tooltip > * {
  position: relative;
  z-index: 1;
}

.tooltip > .c-icon {
  align-self: stretch;
}

.tooltip .c-text {
  display: block;
  align-self: stretch;
  padding: .125rem 0;
  text-align: left;
}

.tooltip > .c-btn + .c-text {
  margin-left: .5rem;
}

.tooltip .c-btn--clear {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 2;
}

.tooltip--highlight {
  background-color: var(--tooltip-highlight-bg);
}

.tooltip--top, [class*="tooltip--top"] {
  bottom: 100%;
  margin-bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tooltip--top::before, [class*="tooltip--top"]::before {
  top: 100%;
  margin-top: -0.25rem;
}

.tooltip--top[data-open="true"], [data-open="true"][class*="tooltip--top"] {
  margin-bottom: .25rem;
}

.tooltip--bottom, [class*="tooltip--bottom"] {
  top: 100%;
  margin-top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tooltip--bottom::before, [class*="tooltip--bottom"]::before {
  bottom: 100%;
  margin-bottom: -0.25rem;
}

.tooltip--bottom[data-open="true"], [data-open="true"][class*="tooltip--bottom"] {
  margin-top: .25rem;
}

.tooltip--hr-left {
  left: 0;
  transform: translateX(-100%);
}

.tooltip--hr-left::before {
  margin-top: -0.25rem;
  margin-right: -0.25rem;
  left: auto;
  right: 0;
  top: 50%;
  transform: rotate(-45deg);
}

.tooltip--hr-right {
  right: 0;
  transform: translateX(100%);
}

.tooltip--hr-right::before {
  margin-top: -0.25rem;
  margin-left: -0.25rem;
  left: 0;
  top: 50%;
  transform: rotate(-45deg);
}

.tooltip--top-left, .tooltip--bottom-left {
  left: 0;
  transform: translateX(0);
}

.tooltip--top-left::before, .tooltip--bottom-left::before {
  left: 1rem;
}

.tooltip--top-right, .tooltip--bottom-right {
  left: auto;
  right: 0;
  transform: translateX(0);
}

.tooltip--top-right::before, .tooltip--bottom-right::before {
  left: auto;
  right: 1rem;
}

.flag {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background-image: url("../../../_global/common/images/before_nova88/ui/language_flags.png?v=20251010002");
  background-size: 100% auto;
  border-radius: 50%;
}

.flag--en {
  background-position-y: 0;
}

.flag--ch {
  background-position-y: -20px;
}

.flag--cs, .flag--zhcn {
  background-position-y: -40px;
}

.flag--vn {
  background-position-y: -60px;
}

.flag--th {
  background-position-y: -80px;
}

.flag--id {
  background-position-y: -100px;
}

.flag--ko {
  background-position-y: -120px;
}

.flag--jp {
  background-position-y: -140px;
}

.flag--mm {
  background-position-y: -160px;
}

.flag--tl {
  background-position-y: -180px;
}

.flag + .text {
  margin-left: .375rem;
}

.league {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: transparent;
  background-image: url("../images/ui/soccer_leagues.png?v=20251010002");
  background-size: 100% auto;
}

.league--premier-league {
  background-position-y: 0%;
}

.league--ligue-1 {
  background-position-y: 20%;
}

.league--bundesliga {
  background-position-y: 40%;
}

.league--serie-A {
  background-position-y: 60%;
}

.league--la-liga {
  background-position-y: 80%;
}

.league--uefa {
  background-position-y: 100%;
}

[data-layout="desktop"] .league + .text {
  margin-left: .25rem;
}

.platform-list,
.language-list,
.social-list {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  overflow: hidden;
}

.platform-list__header,
.language-list__header,
.social-list__header {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--list-header-text);
}

.platform-list__header .text,
.language-list__header .text,
.social-list__header .text {
  font-size: 1rem;
}

.platform-list__item,
.language-list__item,
.social-list__item {
  flex: 0 0 auto;
  background-color: var(--list-item-bg);
  padding: 0;
  border-top-width: 1px;
  border-top-color: var(--list-item-border-top);
}

.platform-list__item:first-child,
.language-list__item:first-child,
.social-list__item:first-child {
  border-radius: var(--border-radius);
  border-top: 0;
}

.platform-list__item:first-child .btn,
.language-list__item:first-child .btn,
.social-list__item:first-child .btn {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.platform-list__item:last-child,
.language-list__item:last-child,
.social-list__item:last-child {
  border-radius: var(--border-radius);
}

.platform-list__item:last-child .btn,
.language-list__item:last-child .btn,
.social-list__item:last-child .btn {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.side-nav .platform-list__item:last-child .btn, .side-nav
.language-list__item:last-child .btn, .side-nav
.social-list__item:last-child .btn {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.platform-list__item[data-selected="true"] .btn,
.language-list__item[data-selected="true"] .btn,
.social-list__item[data-selected="true"] .btn {
  color: var(--list-item-btn-selected-text);
  background-color: var(--list-item-btn-selected-bg);
  pointer-events: none;
}

.platform-list__item[data-selected="true"] .btn .icon--done,
.language-list__item[data-selected="true"] .btn .icon--done,
.social-list__item[data-selected="true"] .btn .icon--done {
  color: var(--list-item-selected-icon-done);
}

.platform-list__item[data-selected="true"] .icon,
.language-list__item[data-selected="true"] .icon,
.social-list__item[data-selected="true"] .icon {
  color: var(--list-item-icon, var(--white-opacity-1));
}

.platform-list__item[data-selected="false"] .icon--done,
.language-list__item[data-selected="false"] .icon--done,
.social-list__item[data-selected="false"] .icon--done {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.platform-list__item .btn,
.language-list__item .btn,
.social-list__item .btn {
  flex: 1;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  color: var(--list-item-btn-text);
  background-color: var(--list-item-btn-bg);
  border-radius: 0;
  transition: ease .2s;
  transform: translate3d(0, 0, 0);
}

.platform-list__item .btn:hover,
.language-list__item .btn:hover,
.social-list__item .btn:hover {
  background-color: var(--list-item-btn-hover-bg);
}

.platform-list__item .btn:hover .icon--arrow-right,
.language-list__item .btn:hover .icon--arrow-right,
.social-list__item .btn:hover .icon--arrow-right {
  color: var(--list-item-btn--hover-icon);
}

.platform-list__item .btn .icon,
.language-list__item .btn .icon,
.social-list__item .btn .icon {
  color: var(--list-item-icon);
}

.platform-list__item .icon,
.language-list__item .icon,
.social-list__item .icon {
  font-size: 1.125rem;
  transition: ease .2s;
}

.platform-list__item .icon:first-child,
.language-list__item .icon:first-child,
.social-list__item .icon:first-child {
  width: 20px;
  height: 20px;
  font-size: .875rem;
  border-radius: 50px;
  background-color: var(--list-item-icon-first);
}

.platform-list__item .icon--done,
.language-list__item .icon--done,
.social-list__item .icon--done {
  color: var(--list-item-icon-done);
}

.platform-list__item .text,
.language-list__item .text,
.social-list__item .text {
  flex: 1;
}

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: ease 0.2s;
  z-index: 99;
}

.modal:after {
  content: '';
  display: block;
  background-color: var(--modal-after-bg);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.modal[data-open="true"] {
  visibility: visible;
  opacity: 1;
}

.modal[data-open="false"] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.modal__dialog {
  display: flex;
  flex-direction: column;
  width: 90%;
  min-height: 310px;
  padding: 2rem 0;
  background-color: var(--modal-dialog-bg);
  border-radius: var(--border-radius);
  position: relative;
}

.modal__close {
  height: 24px;
  position: absolute;
  top: calc( 0% - 3rem);
  right: 0;
  z-index: 1;
}

.modal__close .icon {
  font-size: 36px;
  color: var(--modal-close-icon);
}

.modal__header {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 0.5rem;
  margin: 0 0 .75rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--modal-header-text);
  position: relative;
}

.modal__header .text::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 0.25rem;
  border-radius: .625rem;
  background-color: var(--modal-header-text-before-bg);
}

.modal__body {
  flex: 1;
  display: flex;
  justify-content: center;
  min-height: 0;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.modal__footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.25rem;
}

.modal--um .modal__header {
  font-weight: 700;
}

.modal--um .modal__dialog {
  min-height: 253px;
}

.modal--um .modal__body {
  flex: 0 1 auto;
  flex-wrap: wrap;
  padding: 0 1rem;
  color: var(--modal-um-body-text);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

.modal--um [class*="text-"] {
  flex: 1 0 auto;
  display: inline-flex;
}

.modal--um .text-highlight, .modal--um .text-primary {
  font-weight: 700;
}

.modal--um .text-gmt {
  align-items: center;
}

.modal--um .text-group .text-highlight {
  font-size: 1.125rem;
}

.modal--um .text-col {
  flex-direction: column;
}

.modal--um .text-col [class*="text-"] {
  align-items: center;
  justify-content: flex-end;
}

.modal--um .text-col:nth-child(2) {
  margin: 0 .25rem;
}

.modal--um .text + .text {
  margin-left: 0;
}

.modal--um [class^="text-"] + .text {
  margin-left: 0;
}

.modal--um p {
  margin: 0;
}

.modal--um p + p {
  margin-top: .25rem;
}

.modal--um p:last-child {
  font-size: 1.125rem;
}

.modal--alert .modal__body {
  padding: 0 2.5rem;
  flex-direction: column;
  font-size: 1rem;
  color: var(--modal-alert-body-text);
}

.modal--alert .modal__body p {
  flex: 1;
  text-align: left;
}

.modal--alert .modal__body p + .btn--secondary, .modal--alert .modal__body p + .btn--next {
  margin-top: 1.5rem;
}

.modal--alert .btn--secondary, .modal--alert .btn--next {
  min-height: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.modal--alert .btn--secondary .text, .modal--alert .btn--next .text {
  font-size: 1.125rem;
}

.modal--alert .btn--secondary .text::before, .modal--alert .btn--next .text::before, .modal--alert .btn--secondary .text::after, .modal--alert .btn--next .text::after {
  content: '';
  transform: skewX(70deg);
  opacity: .32;
}

.modal--alert .btn--secondary + label, .modal--alert .btn--next + label {
  margin-top: 1rem;
}

.modal--register .modal__dialog {
  width: 335px;
  max-width: 100vw;
  min-height: auto;
}

.modal--register .modal__body {
  display: block;
  padding: 0 2.5rem;
}

.modal--register .register-msg + .btn--secondary, .modal--register .register-msg + .btn--next {
  margin-top: 2rem;
}

.modal--register .btn--secondary, .modal--register .btn--next {
  width: 100%;
  border-radius: 2em;
}

[data-layout="desktop"] .modal--um .modal__dialog, [data-layout="desktop"] .modal--login .modal__dialog, [data-layout="desktop"] .modal--alert .modal__dialog {
  width: 400px;
}

[data-layout="mobile"] .modal--um .modal__dialog, [data-layout="mobile"] .modal--alert .modal__dialog {
  max-width: 350px;
}

[data-layout="mobile"] .modal--um .modal__body, [data-layout="mobile"] .modal--alert .modal__body {
  font-size: .875rem;
}

[data-layout="mobile"] .modal--um p:last-child, [data-layout="mobile"] .modal--alert p:last-child {
  font-size: 1rem;
}

.preloader {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.preloader__spiner {
  flex: 0 0 auto;
  display: inline-flex;
  position: relative;
  width: 36px;
  height: 36px;
  align-self: center;
  font-size: 0;
  border-color: var(--preloader-border);
  /* duration: 360 * ARCTIME / (ARCSTARTROT + (360-ARCSIZE)) */
  animation: container-rotate 1568ms linear infinite;
}

@keyframes container-rotate {
  to {
    transform: rotate(360deg);
  }
}

.preloader__circles {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-color: inherit;
  opacity: 1;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

@keyframes fill-unfill-rotate {
  12.5% {
    transform: rotate(135deg);
  }
  25% {
    transform: rotate(270deg);
  }
  37.5% {
    transform: rotate(405deg);
  }
  50% {
    transform: rotate(540deg);
  }
  62.5% {
    transform: rotate(675deg);
  }
  75% {
    transform: rotate(810deg);
  }
  87.5% {
    transform: rotate(945deg);
  }
  to {
    transform: rotate(1080deg);
  }
}

.preloader__circle-1, .preloader__circle-2 {
  display: inline-block;
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-color: inherit;
}

.preloader__circle-1::before, .preloader__circle-2::before {
  content: "";
  width: 200%;
  height: 100%;
  box-sizing: border-box;
  border-width: 3px;
  border-style: solid;
  border-color: inherit;
  border-bottom-color: transparent !important;
  border-radius: 50%;
  animation: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.preloader__circle-1::before {
  left: 0;
  border-right-color: transparent !important;
  transform: rotate(129deg);
  animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader__circle-2::before {
  left: -100%;
  border-left-color: transparent !important;
  transform: rotate(-129deg);
  animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

@keyframes left-spin {
  from {
    transform: rotate(130deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(130deg);
  }
}

@keyframes right-spin {
  from {
    transform: rotate(-130deg);
  }
  50% {
    transform: rotate(5deg);
  }
  to {
    transform: rotate(-130deg);
  }
}

.preloader--overlay {
  flex: 1;
  background-color: var(--body-bg);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.preloader--overlay[data-open="false"] {
  transition: all .2s ease;
  opacity: 0;
  visibility: hidden;
}

.panel {
  padding: 32px 40px;
  background-color: var(--panel-bg);
  border-radius: .75rem;
  position: relative;
}

.panel__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.panel__header .text-title {
  display: inline-block;
  font-size: 1.25rem;
}

.panel__header .dropdown:only-child {
  margin-left: auto;
}

.panel__header + .panel__content {
  margin-top: 1.125rem;
}

.panel__row {
  flex: 0 0 auto;
  display: flex;
  width: 100%;
}

.panel__row + .panel__row {
  margin-top: .25rem;
}

.panel .dropdown {
  color: var(--panel-dropdown-text);
}

[data-layout="mobile"] .panel {
  padding: 2rem;
}

.panel--register {
  width: 524px;
  max-width: 100vw;
  min-height: 466px;
  box-shadow: var(--panel-register-shadow);
}

.panel__header .text-title {
  padding-left: .375rem;
  line-height: 1.5rem;
  border-left-width: 3px;
  border-color: var(--panel-header-text-title-border);
}

.panel__header .text-title + .dropdown {
  margin-left: auto;
}

.panel__header .dropdown__btn {
  min-width: 130px;
}

.panel__header .dropdown__container {
  min-width: 130px;
  left: auto;
  right: 0;
}

.panel--register .register-step + .form {
  margin-top: 1.125rem;
}

.panel--register .form__submit .btn--back .icon {
  display: none;
}

.panel--register .form__info {
  color: var(--panel-register-form-info-text);
}

.panel--register .textfield__icon {
  padding: 0 .5rem;
}

[data-layout="mobile"] .panel--register {
  border-radius: 0;
}

[data-layout="mobile"] .panel--register .form__submit .btn--back {
  flex: 0 0 auto;
  min-width: 63px;
}

[data-layout="mobile"] .panel--register .form__submit .btn--back .icon {
  display: inline-flex;
}

[data-layout="mobile"] .panel--register .form__submit .btn--back .text {
  display: none;
}

.form > [class^="form__"] + [class^="form__"] {
  margin-top: 1rem;
}

.form > [class^="form__"] + .form__submit {
  margin-top: 1.25rem;
}

.form__group {
  display: flex;
  flex-wrap: wrap;
}

.form__group .textfield {
  flex: 0 0 auto;
  width: 100%;
}

.form__group .textfield + .textfield {
  margin-left: 0;
  margin-top: 1rem;
}

.form__group .textfield--country-code {
  width: 136px;
}

.form__group .textfield--country-code + .textfield {
  flex: 1;
  margin-left: .5rem;
  margin-top: 0;
  width: auto;
  min-width: 0;
}

.form__group .textfield-tips {
  flex: 0 0 auto;
  width: 100%;
}

.form__info {
  display: flex;
  align-items: center;
}

.form__submit .btn {
  flex: 1;
  display: flex;
  border-radius: 2em;
}

.form__submit .btn:only-child {
  flex: 0 0 auto;
}

.form__row {
  display: flex;
  justify-content: center;
}

.form__row + .form__row {
  margin-top: 1.25rem;
}

.tag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: .75rem;
  font-weight: 400;
  padding: 0 .25rem;
  min-height: 1rem;
  line-height: 1.15;
  white-space: nowrap;
  border-radius: 2px;
}

.tag--new {
  color: var(--tag-new-text);
  background-color: var(--tag-new-bg);
}

.tag--new::before {
  content: attr(data-value);
  display: inline-block;
  transform: scale(0.83333);
}

.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 0;
}

.main {
  flex: 1 0 auto;
  align-content: stretch;
  width: 100%;
  min-height: 0;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.main__bar {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.main__bar .btn {
  flex: 1;
  min-height: 42px;
  border-radius: 0;
  background-color: var(--main-bar-btn-bg);
  position: relative;
}

.main__bar .btn::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--main-bar-btn-before-bg);
  position: absolute;
  z-index: 1;
}

.main__bar .btn:nth-child(2) {
  width: 45%;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
}

.main__bar .btn:first-child .text {
  margin-left: -3.75rem;
}

.main__bar .btn:last-child .text {
  margin-right: -3.75rem;
}

.main__bar .btn .text {
  color: var(--main-bar-text);
  z-index: 1;
}

.main__bar .btn[data-selected="true"] {
  background-color: var(--main-bar-btn-selected-bg);
}

.main__bar .btn[data-selected="true"]::before {
  background-color: var(--main-bar-btn-selected-before-bg);
}

.main__bar .btn[data-selected="true"]::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: var(--main-bar-btn-after-bg-selected);
  opacity: .7;
  position: absolute;
}

.main__bar .btn[data-selected="true"]:first-child::after {
  left: -2rem;
}

.main__bar .btn[data-selected="true"]:last-child::after {
  right: -2rem;
}

.main__bar .btn[data-selected="true"]:hover {
  cursor: default;
}

.main__bar .btn[data-selected="true"] .text {
  font-weight: 500;
  color: var(--main-bar-btn-selected-text);
  text-shadow: var(--main-bar-btn-selected-text-shadow);
}

.main__bar .btn + .btn {
  margin-left: 0;
}

.main__content {
  display: flex;
  align-content: stretch;
  margin: 0rem 1rem .5rem;
  position: relative;
}

[data-layout="desktop"] .main {
  padding-bottom: 2.75rem;
}

[data-layout="desktop"] .main::before, [data-layout="desktop"] .main::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 870px;
  background-size: 120% auto;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (min-width: 1024px) {
  [data-layout="desktop"] .main::before, [data-layout="desktop"] .main::after {
    background-size: 130% auto;
  }
}

@media (min-width: 1366px) {
  [data-layout="desktop"] .main::before, [data-layout="desktop"] .main::after {
    background-size: 1920px auto;
  }
}

@media (min-width: 1921px) {
  [data-layout="desktop"] .main::before, [data-layout="desktop"] .main::after {
    background-size: 100% auto;
  }
}

[data-layout="desktop"] .main::before {
  background-image: url("../../../_global/common/images/before_nova88/body/bg_up.png?v=20251010002");
  background-position: center -55px;
}

[data-layout="desktop"] .main::after {
  bottom: -10%;
  background-image: url("../../../_global/common/images/before_nova88/body/bg_down.png?v=20251010002");
  background-position: bottom center;
}

[data-layout="desktop"] .main__bar {
  margin-top: -1rem;
  margin-bottom: 1rem;
  max-width: 1366px;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 55px) 100%, 55px 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 55px) 100%, 55px 100%);
}

@media (max-width: 1199px) {
  [data-layout="desktop"] .main__bar {
    max-width: calc( 1366px - 1.5rem);
    margin-top: 0;
  }
}

[data-layout="desktop"] .main__bar .btn {
  min-height: 54px;
  transition: ease .2s;
}

[data-layout="desktop"] .main__bar .btn::before {
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 55px) 100%, 55px 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 55px) 100%, 55px 100%);
  bottom: 4px;
}

[data-layout="desktop"] .main__bar .btn:first-child::before {
  right: -1rem;
}

[data-layout="desktop"] .main__bar .btn:last-child::before {
  left: -1rem;
}

[data-layout="desktop"] .main__bar .btn:nth-child(2) {
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 55px) 100%, 55px 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 55px) 100%, 55px 100%);
}

[data-layout="desktop"] .main__bar .btn:nth-child(2)::before {
  width: calc( 100% - 2rem);
  left: 1rem;
}

[data-layout="desktop"] .main__bar .btn:nth-child(2) .text::before {
  left: 2.875rem;
}

[data-layout="desktop"] .main__bar .btn:nth-child(2) .text::after {
  right: 2.875rem;
}

[data-layout="desktop"] .main__bar .btn .text {
  font-size: 1.625rem;
  transition: ease .2s;
}

[data-layout="desktop"] .main__bar .btn .text::before, [data-layout="desktop"] .main__bar .btn .text::after {
  content: '';
  width: .625rem;
  height: 55%;
  background-image: var(--main-bar-text-gradient-before-after-bg);
  opacity: .9;
  position: absolute;
  top: 0;
}

[data-layout="desktop"] .main__bar .btn .text::before {
  transform: skewX(45deg);
  left: 3.5rem;
}

[data-layout="desktop"] .main__bar .btn .text::after {
  transform: skewX(-45deg);
  right: 3.5rem;
}

[data-layout="desktop"] .main__bar .btn[data-selected="true"] {
  box-shadow: var(--main-bar-btn-selected-box-shadow);
}

[data-layout="desktop"] .main__bar .btn[data-selected="true"]::after {
  bottom: 3px;
}

[data-layout="desktop"] .main__bar .btn[data-selected="true"] .text::before, [data-layout="desktop"] .main__bar .btn[data-selected="true"] .text::after {
  background-image: var(--main-bar-text-gradient-before-after-bg-selected);
}

[data-layout="desktop"] .main__bar .btn:hover {
  -webkit-filter: brightness(115%);
          filter: brightness(115%);
}

[data-layout="desktop"] .main__bar .btn:hover .text {
  color: var(--main-btn-hover-text);
}

[data-layout="desktop"] .main__bar .btn:hover[data-selected="true"] {
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}

[data-layout="desktop"] .main__bar .btn:hover[data-selected="true"]:hover .text {
  color: var(--main-btn-hover-selected-text);
}

[data-layout="desktop"] .main__content {
  max-width: calc( 1366px - 5.75rem);
  width: calc( 100% - 5.75rem);
  border-radius: var(--border-radius);
  margin: 0rem auto 1rem;
  padding: 0;
  box-shadow: 0px 9px 22px 5px var(--main-content-box-shadow);
  background: var(--main-content-gradient-bg);
}

[data-layout="desktop"] .main__content:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin-bottom: -10px;
  border-radius: var(--border-radius);
  background-color: var(--main-content-gradient-after);
  background-image: var(--main-content-gradient-after);
}

@media (min-width: 769px) and (max-width: 1023px) {
  [data-layout="desktop"] .main__content {
    line-height: 1.25rem;
  }
}

[data-layout="mobile"] .main {
  margin-top: 60px;
}

[data-layout="mobile"] .main__bar {
  margin: 0 1rem .5rem;
  border-radius: var(--border-radius);
  border-width: 1px;
  border-color: var(--main-bar-border);
}

[data-layout="mobile"] .main__bar .btn::before {
  bottom: 2px;
}

[data-layout="mobile"] .main__bar .btn:nth-child(2) {
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
          clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

[data-layout="mobile"] .main__bar .btn:nth-child(2)::before {
  width: calc( 100% - .8rem);
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
          clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  left: .4rem;
}

[data-layout="mobile"] .main__bar .btn .text {
  font-size: 1rem;
}

[data-layout="mobile"] .main__bar .btn[data-selected="true"]::after {
  bottom: 2px;
}

[data-layout="mobile"] .main__bar .btn[data-selected="true"]:first-child::before {
  -webkit-clip-path: polygon(0 0, 91% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 91% 0, 100% 100%, 0% 100%);
  right: 40%;
}

[data-layout="mobile"] .main__bar .btn[data-selected="true"]:last-child::before {
  -webkit-clip-path: polygon(9% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(9% 0, 100% 0, 100% 100%, 0% 100%);
  left: 40%;
}

[data-layout="mobile"] .main__content {
  margin-bottom: 1rem;
}

.topbar {
  flex: 0 0 auto;
  display: flex;
  width: 100%;
  min-height: var(--topbar-height);
  color: var(--topbar-text);
  background-color: var(--topbar-bg);
  position: fixed;
  z-index: 3;
  top: 0;
}

.topbar + .header {
  top: var(--topbar-height);
}

.topbar + .header + .side-nav[data-open="true"] .btn--nav {
  top: 0;
}

.topbar + .header + .side-nav .btn--nav {
  top: var(--topbar-height);
}

[data-layout="desktop"] .topbar + .header + .side-nav ~ .main {
  margin-top: var(--topbar-height);
}

[data-layout="mobile"] .topbar + .header + .side-nav ~ .main {
  margin-top: calc( 60px + var(--topbar-height));
}

[data-layout="mobile"] .topbar + .header + .side-nav ~ .main .live-score__tab {
  top: calc( 60px + var(--topbar-height));
}

.announce {
  display: flex;
  align-items: center;
  max-width: 1366px;
  margin: auto;
  width: 100%;
  padding: 0 0.5rem;
}

.announce__content {
  flex: 1;
  max-height: 22px;
  text-align: center;
  overflow: hidden;
}

[data-layout="mobile"] .announce__content {
  text-align: left;
}

.announce .text {
  flex: 1;
}

.header {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--header-shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

@media (max-width: 1023px) and (orientation: landscape) {
  .header {
    left: constant(safe-area-inset-bottom);
    right: constant(safe-area-inset-bottom);
    left: env(safe-area-inset-bottom);
    right: env(safe-area-inset-bottom);
  }
}

.header__main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 var(--header-main-padding-row);
  margin: auto;
}

.header-logo {
  display: grid;
  grid-template: auto auto / auto auto;
  align-items: center;
  padding: .25rem 0;
  margin-right: auto;
  border-color: var(--header-logo-border);
}

.header-logo::before {
  content: "";
  grid-area: 2 / 1 / 3 / 2;
  display: inline-block;
  min-width: var(--header-logo-width);
  height: var(--header-logo-height);
  line-height: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

.header-logo .header-sponsor-logo {
  grid-area: 2 / 2 / 3 / 3;
  margin-left: 1rem;
  border-left-width: 1px;
  border-style: solid;
}

.header-logo .text-powered-by {
  grid-area: 1 / 1 / 2 / 3;
  font-size: .75rem;
  font-weight: 700;
  color: var(--header-logo-text-powered-by);
}

.header-sponsor-logo {
  width: 42px;
  height: 42px;
}

.header-nav {
  flex: 1 0 auto;
  align-items: center;
}

.header-nav__item {
  flex: 0 0 auto;
  display: flex;
  height: 70px;
  color: var(--header-nav-item);
  position: relative;
}

.header-nav__item::after {
  content: "";
  display: block;
  margin: auto;
  height: 4px;
  background-color: var(--header-nav-item-hover);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transition: ease .3s;
}

.header-nav__item:hover {
  color: var(--header-nav-item-hover);
}

.header-nav__item:hover::after {
  transform: scaleX(1);
}

.header-nav__item .btn {
  padding: 0;
}

.header-nav__item .btn .text {
  text-align: center;
  line-height: 1.25;
}

.header-option {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.header-option .dropdown {
  align-items: center;
  margin-left: 0;
  background-color: transparent;
  padding: 0 .75rem;
  transition: ease .2s;
  color: var(--header-option-dropdown-text);
}

.header-option .dropdown__container {
  margin-top: 0.375rem;
  left: .5rem;
}

.header-option .dropdown__btn {
  padding: 0;
  margin-top: .25rem;
  margin-bottom: .25rem;
  border-bottom: 0px;
  border-radius: 50%;
  background-color: var(--header-option-dropdown-btn-icon-bg);
  background-image: var(--header-option-dropdown-btn-icon-bg);
}

.header-option .dropdown__btn .icon--gradient-third {
  padding: 0.375rem;
}

.header-option .dropdown__btn .icon--gradient-third::after {
  background-color: var(--icon-gradient-primary-after-bg);
  background-image: var(--icon-gradient-primary-after-bg);
}

.header-option .dropdown__btn .flag {
  border-width: 1px;
  border-color: var(--header-option-flag-border);
  box-sizing: content-box;
}

.header-option .dropdown__btn + .text {
  font-size: .75rem;
}

.header-option__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 .75rem;
  color: var(--header-option-dropdown-text);
  background-color: transparent;
  transition: ease .2s;
  position: relative;
}

.header-option__btn .btn {
  margin-top: .25rem;
  margin-bottom: .25rem;
}

.header-option__btn .icon--gradient-third {
  padding: 0.375rem;
}

.header-option__btn .icon--gradient-third::after {
  background-color: var(--icon-gradient-primary-after-bg);
  background-image: var(--icon-gradient-primary-after-bg);
}

.header-option__btn .text {
  font-size: .75rem;
}

.header-option__btn .tooltip {
  width: -webkit-max-content;
  width: max-content;
  max-width: 216px;
}

.header-option__btn .tooltip .text {
  font-size: .875rem;
  line-height: 1.25;
}

.header-option__btn .tooltip--bottom[data-open="true"], .header-option__btn [data-open="true"][class*="tooltip--bottom"] {
  margin-top: .125rem;
}

.header-login {
  flex: 0 0 auto;
  position: relative;
}

.header-login .btn {
  min-height: 32px;
  margin-bottom: .125rem;
  padding-left: .75rem;
  padding-right: .75rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.header-login .btn + .btn {
  margin-left: .25rem;
}

.header-login > .text {
  display: flex;
  min-height: .75rem;
  position: relative;
  top: -.125rem;
}

.header-login > .text::before {
  content: attr(data-value);
  display: inline-flex;
  justify-content: center;
  padding: 0 0.25rem;
  line-height: 1.15;
  font-size: .75rem;
  white-space: nowrap;
  color: var(--header-login-text-before-text);
  background-color: var(--header-login-text-before-bg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.header-login > .text::after {
  content: '';
  display: inline-flex;
  background-color: var(--header-login-text-after-border);
  margin: auto;
  width: calc(100% - 0.5rem);
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}

.header-login > .text + .btn {
  margin-left: 0;
}

[data-layout="desktop"] .header {
  min-height: 70px;
  background-color: var(--header-bg);
  border-bottom-width: 1px;
  border-bottom-color: var(--header-border-bottom);
}

[data-layout="desktop"] .header__main {
  width: 100%;
}

@media (min-width: 1366px) {
  [data-layout="desktop"] .header__main {
    max-width: 1366px;
  }
}

@media screen and (min-width: 1200px) {
  [data-layout="desktop"] .header-logo {
    margin-right: 1rem;
  }
}

[data-layout="desktop"] .header-sponsor-logo {
  width: 50px;
  height: 50px;
}

[data-layout="desktop"] .header-nav {
  display: flex;
}

[data-layout="desktop"] .header-nav__item {
  margin: 0  .6vw;
  font-size: 1rem;
}

@media (max-width: 1199px) {
  [data-layout="desktop"] .header-nav {
    display: none;
  }
}

[data-layout="desktop"] .header-option .dropdown .btn:hover {
  -webkit-filter: brightness(105%);
          filter: brightness(105%);
}

@media (min-width: 769px) {
  [data-layout="desktop"] .header-option + .header-login {
    margin-left: 1rem;
  }
}

[data-layout="desktop"] .header-login {
  font-size: 1rem;
}

@media (min-width: 769px) {
  [data-layout="desktop"] .header-login > .text + .btn, [data-layout="desktop"] .header-login > .text + .btn + .btn {
    margin-top: 0;
  }
}

[data-layout="desktop"] .header-login .btn {
  min-width: 95px;
  padding: .375rem 1.5rem;
}

[data-layout="desktop"] .header-login .btn + .btn {
  margin-left: .75rem;
}

[data-layout="mobile"] .header {
  background-color: var(--header-bg);
}

@media (max-width: 375px) {
  [data-layout="mobile"] .header-sponsor-logo {
    margin-left: .625rem;
    width: 36px;
    height: 36px;
  }
}

[data-layout="mobile"] .header__main {
  margin: 0;
  min-height: 60px;
}

[data-layout="mobile"] .header-nav {
  display: none;
}

[data-layout="mobile"] .header-login {
  min-width: calc( 60px + 1.5rem);
  text-align: center;
  margin-right: calc( var(--side-nav-btn-nav-width) - var(--header-main-padding-row));
}

[lang="th"] [data-layout="mobile"] .header-login {
  min-width: calc( 80px + 1rem);
}

[lang="jp"] [data-layout="mobile"] .header-login {
  min-width: calc( 80px + 2.25rem);
}

[lang="vn"] [data-layout="mobile"] .header-login, [lang="vi-VN"] [data-layout="mobile"] .header-login, [lang="id-ID"] [data-layout="mobile"] .header-login {
  min-width: calc( 80px + 3rem);
}

@media (max-width: 375px) {
  [data-layout="mobile"] .header-login .btn {
    padding-left: .625rem;
    padding-right: .625rem;
    font-size: .75rem;
  }
}

@media (max-width: 1280px) {
  [lang="vn"] .header-nav__item, [lang="vi-VN"] .header-nav__item, [lang="id"] .header-nav__item, [lang="id-ID"] .header-nav__item, [lang="jp"] .header-nav__item {
    font-size: .875rem;
  }
}

@media (max-width: 375px) {
  [lang="vn"] .header-login .btn, [lang="vi-VN"] .header-login .btn, [lang="id"] .header-login .btn, [lang="id-ID"] .header-login .btn, [lang="jp"] .header-login .btn {
    padding: 0 .5rem;
    font-size: 13px;
  }
}

@media (min-width: 1150px) {
  [lang="vn"] .header-login .btn, [lang="vi-VN"] .header-login .btn, [lang="id"] .header-login .btn, [lang="id-ID"] .header-login .btn, [lang="jp"] .header-login .btn {
    padding-left: .75rem;
    padding-right: .75rem;
  }
}

.side-nav {
  flex: 0 1 auto;
  display: flex;
  justify-content: flex-end;
  font-size: 15px;
  transition: ease .2s;
  z-index: 4;
}

.side-nav[data-open="true"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.side-nav[data-open="true"] .side-nav__main {
  transform: translateX(0);
}

.side-nav[data-open="true"]:after {
  content: '';
  display: block;
  min-height: 100vh;
  background-color: var(--side-nav-after-bg);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: auto;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  z-index: -1;
}

.side-nav[data-open="true"] .tooltip {
  opacity: 0;
  visibility: hidden;
  transition: ease 0.1s;
}

.side-nav[data-open="false"] .side-nav__main {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
}

.side-nav__main {
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  min-width: 60%;
  min-height: 100vh;
  max-width: 75%;
  padding-top: 50px;
  padding-bottom: calc(constant(safe-area-inset-bottom) + 1rem);
  padding-bottom: calc(env(safe-area-inset-bottom) + 1rem);
  background-color: var(--side-nav-main-bg);
  transition: ease .2s;
  position: fixed;
  bottom: 0;
  top: 0;
  overflow-y: auto;
}

.side-nav__header {
  display: flex;
  justify-content: flex-end;
  padding: 0.75rem 1rem;
  background-color: var(--side-nav-main-bg);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}

.side-nav__header .btn {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  color: var(--side-nav-list-header-text);
}

.side-nav__header .icon {
  font-size: 1.5rem;
}

.side-nav .platform-list__item, .side-nav .language-list__item, .side-nav .social-list__item {
  border: 0;
  background-color: var(--side-nav-list-item-bg);
}

.side-nav .platform-list__item[data-selected="true"] .btn, .side-nav .language-list__item[data-selected="true"] .btn, .side-nav .social-list__item[data-selected="true"] .btn {
  color: var(--side-nav-list-item-selected-btn);
  background-color: var(--side-nav-list-item-selected-btn-bg);
}

.side-nav .platform-list__item .btn, .side-nav .language-list__item .btn, .side-nav .social-list__item .btn {
  min-height: 40px;
  color: var(--side-nav-list-item-btn-text);
  font-weight: 400;
  background-color: var(--side-nav-list-item-btn-bg);
}

.side-nav .platform-list__item .icon--done, .side-nav .language-list__item .icon--done, .side-nav .social-list__item .icon--done {
  color: var(--side-nav-list-item-selected-icon);
}

.side-nav .platform-list__item .icon--arrow-right, .side-nav .language-list__item .icon--arrow-right, .side-nav .social-list__item .icon--arrow-right {
  color: var(--side-nav-list-item-icon);
}

.side-nav .platform-list {
  margin-top: -.5rem;
}

.side-nav .language-list {
  margin-top: .75rem;
  border-top-width: 1px;
  border-top-color: var(--language-list-border-top);
}

.side-nav .social-list {
  margin-top: .75rem;
  border-top-width: 1px;
  border-top-color: var(--social-list-border-top);
}

.side-nav .btn--nav {
  padding: 0;
  width: var(--side-nav-btn-nav-width);
  height: 60px;
  position: fixed;
}

.side-nav .btn--nav[data-visible="false"] {
  opacity: 0;
  pointer-events: none;
}

.side-nav .btn--nav[data-visible="true"] {
  opacity: 1;
}

.side-nav .btn--nav .tooltip {
  width: -webkit-max-content;
  width: max-content;
  max-width: 216px;
}

.side-nav .btn--nav .tooltip .text {
  font-size: .875rem;
  line-height: 1.25;
}

.side-nav .btn--nav .tooltip::before {
  right: .5rem;
}

.side-nav .btn--nav .tooltip--bottom[data-open="true"], .side-nav .btn--nav [data-open="true"][class*="tooltip--bottom"] {
  margin-top: -.125rem;
  margin-right: .625rem;
}

.footer {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--footer-bg);
  position: relative;
  z-index: 1;
}

.footer__provider {
  border-color: var(--footer-provider-border);
}

.footer__container {
  display: flex;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 1rem;
}

.footer__heading {
  display: flex;
  flex-wrap: wrap;
  color: var(--footer-heading-text);
}

.footer__heading .icon--certified {
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  color: var(--footer-icon-certified);
  position: relative;
  z-index: 1;
}

.footer__heading .icon--certified::before {
  z-index: 1;
}

.footer__heading .icon--certified::after {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--footer-heading-icon-certified-after-bg);
  position: absolute;
}

.footer__heading .text {
  flex: 1 0 auto;
  font-size: 15px;
}

.footer__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__main .text {
  color: var(--footer-main-text);
}

.footer__nav {
  flex: 1;
  display: flex;
}

.footer__col {
  flex: 1;
}

.footer__col--gaming-lic {
  display: flex;
  flex-wrap: wrap;
}

.footer__col--gaming-lic .footer__item + .footer__item {
  margin-left: .5rem;
  padding: .375rem;
}

.footer__col--browser {
  display: flex;
  flex-wrap: wrap;
}

.footer__col--browser .footer__item + .footer__item {
  margin-left: .5rem;
}

.footer__col--dropdown .dropdown {
  width: 100%;
}

.footer__col--dropdown .dropdown[data-open="true"] .icon--arrow-down {
  transform: rotate(-180deg);
}

.footer__col--dropdown .dropdown__btn {
  padding: .5rem .75rem;
  border-radius: 2em;
  border-bottom: 0;
  background-color: var(--footer-dropdwon-btn-bg);
}

.footer__col--dropdown .dropdown__container {
  min-width: 100%;
  top: auto;
  bottom: -.375rem;
}

.footer__col--dropdown .dropdown__container::before {
  content: none;
}

.footer__col--dropdown .dropdown .icon {
  font-size: 1.125rem;
  transition: ease .3s;
}

.footer__col--dropdown .dropdown .icon:first-child {
  width: 20px;
  height: 20px;
  font-size: .875rem;
  border-radius: 50px;
  background-color: var(--footer-col-dropdown-icon-first-child-bg);
}

.footer__col--dropdown .dropdown .text {
  flex: 1;
  white-space: nowrap;
}

.footer__col--dropdown .dropdown + .dropdown {
  margin-top: 1rem;
  margin-left: 0;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 1rem;
  color: var(--footer-nav-list-text);
}

.footer__nav-list .footer__nav + .footer__nav {
  margin-top: .5rem;
}

.footer__nav-list .footer__item {
  flex: 0 0 auto;
  padding: 0 1rem;
  transition: .2s ease;
  cursor: pointer;
}

.footer__nav-list .footer__item:hover {
  color: var(--footer-nav-list-item-hover-text);
}

.footer__nav-list .footer__item + .footer__item {
  border-left: 1px solid var(--footer-nav-list-item-border);
}

.footer__cpr {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-cpr-text);
  background-color: var(--footer-cpr-bg);
  position: relative;
}

.footer__cpr .text {
  line-height: 40px;
  position: relative;
  z-index: 1;
}

[data-layout="mobile"] .footer__provider {
  order: 1;
  padding: .625rem 0;
  border-bottom-width: 0;
  border-top-width: 1px;
}

[data-layout="mobile"] .footer__nav {
  flex-direction: column;
}

[data-layout="mobile"] .footer__nav .footer__col--gaming-lic .footer__item {
  max-width: 72px;
}

[data-layout="mobile"] .footer__nav .footer__col--browser .footer__item {
  max-width: 32px;
}

[data-layout="mobile"] .footer__heading {
  flex: 1;
  align-items: flex-start;
  margin-right: auto;
}

[data-layout="mobile"] .footer__heading .icon--certified {
  align-self: flex-start;
}

[data-layout="mobile"] .footer__heading .text {
  width: calc( 100% - ( 350px + 1rem));
}

[data-layout="mobile"] .footer__col--gaming-lic {
  margin-top: 1.5rem;
}

[data-layout="mobile"] .footer__col--gaming-lic + .footer__col--browser {
  border-top: 1px solid var(--footer-provider-border);
}

[data-layout="mobile"] .footer__col--browser {
  margin: .5rem 0;
  padding-top: 1rem;
}

[data-layout="mobile"] .footer__cpr {
  --footer-cpr-mobile-padding: 1rem;
  order: 2;
  flex-direction: column;
  padding: var(--footer-cpr-mobile-padding);
  padding-bottom: calc(constant(safe-area-inset-bottom) + var(--footer-cpr-mobile-padding));
  padding-bottom: calc(env(safe-area-inset-bottom) + var(--footer-cpr-mobile-padding));
  font-size: .75rem;
}

[data-layout="mobile"] .footer__cpr .logo {
  opacity: .3;
}

[data-layout="mobile"] .footer__cpr .logo + .text {
  margin-top: 1rem;
}

[data-layout="mobile"] .footer__cpr .text {
  line-height: 1.15;
}

[data-layout="mobile"] .footer__col--dropdown {
  flex: 0 0 auto;
  width: 100%;
  order: -1;
}

@media (min-width: 1024px) {
  [data-layout="desktop"] .footer__container {
    padding: 1.5rem 10%;
  }
}

[data-layout="desktop"] .footer__col {
  max-width: 30%;
}

[data-layout="desktop"] .footer__col--gaming-lic .footer__item {
  max-width: 82px;
}

[data-layout="desktop"] .footer__col--browser .footer__item {
  max-width: 35px;
}

[data-layout="desktop"] .footer__col--dropdown {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  min-width: 190px;
}

[data-layout="desktop"] .footer__nav {
  align-items: flex-start;
}

[data-layout="desktop"] .footer__nav .logo {
  flex: 1;
  align-self: center;
  margin-right: auto;
  width: 25%;
  opacity: 0.5;
}

[data-layout="desktop"] .footer__provider {
  padding: 1rem 0;
  border-bottom-width: 1px;
}

[data-layout="desktop"] .footer__heading {
  flex: 0 0 auto;
  align-items: center;
  margin-right: auto;
  width: 100%;
}

[data-layout="desktop"] .footer__col--browser .footer__heading {
  margin-bottom: .5rem;
}

@media (max-width: 1023px) and (orientation: landscape) {
  [data-layout="desktop"] .footer__cpr {
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

.footer .logo {
  display: grid;
  grid-template: auto auto / auto;
}

.footer .logo:before {
  grid-area: 2 / 1 / 3 / 2;
  content: "";
  display: inline-block;
  width: var(--footer-logo-width);
  height: var(--footer-logo-height);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer .logo .text-powered-by {
  grid-area: 1 / 1 / 2 / 2;
  color: var(--footer-nav-logo-text-powerd-by);
}

.footer .contact-list + .footer__container {
  margin-top: 2rem;
}

.page {
  display: flex;
  flex-direction: column;
  background-color: var(--page-bg);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.page__header {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--page-header-bg);
  position: relative;
}

.page__content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page__footer {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--page-footer-text);
  background-color: var(--page-footer-bg);
}

.page__logo {
  display: flex;
}

.page__logo-info {
  display: flex;
  align-items: center;
  padding-right: .75rem;
  color: var(--page-logo-info-text);
  border-right-width: 1px;
  border-color: var(--page-logo-info-border);
}

.page__logo-info .text {
  font-weight: 700;
}

.page__logo a {
  display: inline-block;
}

.page__logo img {
  height: 56px;
  object-fit: cover;
}

.page--register .page__header {
  height: 174px;
}

.page--register .page__content {
  align-items: flex-start;
}

.page--register .page__footer {
  height: 73px;
}

.page--register .panel--register {
  top: -28px;
}

[data-layout="mobile"] .page__logo img {
  height: 40px;
}

[data-layout="mobile"] .page--register {
  background-color: var(--page-register-mobile-bg);
  overflow: auto;
}

[data-layout="mobile"] .page--register .page__header {
  height: 73px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 5;
}

[data-layout="mobile"] .page--register .page__content {
  flex: 1;
  flex-direction: column;
  display: contents;
}

[data-layout="mobile"] .page--register .page__footer {
  margin-top: auto;
}

[data-layout="mobile"] .page--register .panel {
  display: contents;
}

[data-layout="mobile"] .page--register .panel__header {
  padding: 1.5rem 2rem 0;
}

[data-layout="mobile"] .page--register .panel__content {
  display: contents;
}

[data-layout="mobile"] .page--register .form {
  display: contents;
}

[data-layout="mobile"] .page--register .form > [class^="form__"] {
  padding-left: 2rem;
  padding-right: 2rem;
}

[data-layout="mobile"] .page--register .form__submit {
  margin-top: 0;
  padding-top: 1.25rem;
  padding-bottom: 2rem;
  background-color: var(--page-register-mobile-form-submit-bg);
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
}

[data-layout="mobile"] .page--register .register-step {
  padding: 1.25rem 2rem;
}

.live-score {
  flex: 1;
  flex-direction: column;
  min-width: 0;
  background-color: var(--live-score-group-bg, var(--primary-50));
  border-width: 1px;
  border-top: 0px;
  border-color: var(--live-score-border, var(--white));
  border-radius: var(--border-radius);
  position: relative;
  z-index: 1;
}

.live-score[data-open="true"] {
  display: flex;
}

.live-score[data-open="false"] {
  display: none;
}

.live-score::after {
  content: '';
}

.live-score__option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.live-score__option .icon {
  font-size: 1.75rem;
  margin-left: .5rem;
  color: var(--live-score-option-icon, var(--secondary-100));
}

.live-score__tab {
  border-bottom-width: 1px;
  border-color: var(--live-score-border, var(--white));
}

.live-score__tab .tabs--underline {
  padding-top: 1rem;
  border-radius: 12px 12px 0 0;
}

.live-score__group {
  flex: 1;
  display: flex;
}

.live-score__group[data-open="true"] {
  display: flex;
}

.live-score__group[data-open="false"] {
  display: none;
}

.live-score__group--sport2 .ls-match__info {
  width: 26%;
}

.live-score__group--sport2 .ls-match__info .text-score {
  font-size: 1.125rem;
}

.live-score__group--sport2 .ls-match [class*="ls-match__team"] {
  width: 37%;
}

[data-layout="mobile"] .live-score__tab {
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
  z-index: 2;
}

[data-layout="mobile"] .live-score__group {
  flex-direction: column;
  margin: .5rem;
}

[data-layout="mobile"] .live-score__group--sport50 .ls-match__info {
  width: 25%;
}

[data-layout="mobile"] .live-score__group .ls-match {
  flex: 1 0 auto;
}

[data-layout="desktop"] .live-score {
  overflow: hidden;
}

[data-layout="desktop"] .live-score__option {
  width: 100%;
}

[data-layout="desktop"] .live-score__option .btn--icon:hover {
  transform: scale(1.1);
  transition: ease .2s;
}

[data-layout="desktop"] .live-score__tab .tabs--underline {
  padding-top: 1.25rem;
}

[data-layout="desktop"] .live-score__group {
  flex-direction: row;
  flex-wrap: wrap;
  max-height: 55vh;
  margin: 1rem;
  padding-right: .5rem;
  margin-right: 1rem;
  overflow-y: auto;
}

[data-layout="desktop"] .live-score__group .ls-match {
  flex: 0 0 auto;
  width: calc( 50% - .375rem);
}

.live-score .preloader {
  min-height: 600px;
  margin: auto;
}

.ls-match {
  margin: 0 0 .875rem;
  position: relative;
  color: var(--ls-match-text);
  border-color: var(--ls-match-border);
  border-width: 1px;
  border-radius: var(--border-radius);
  background-color: var(--live-score-gradient-match-bg);
  background-image: var(--live-score-gradient-match-bg);
  overflow: hidden;
}

.ls-match:before {
  content: '';
  background-color: var(--live-score-gradient-match-trapezoid);
  background-image: var(--live-score-gradient-match-trapezoid);
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 350px;
  transform: rotate(122deg) translate(0px, 55%);
  z-index: 0;
  opacity: 0.2;
}

.ls-match .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ls-match .text-time, .ls-match .text {
  position: relative;
  z-index: 1;
}

.ls-match .text-time {
  order: 2;
  color: var(--ls-match-time-text);
}

.ls-match .text-vs, .ls-match .text-score {
  line-height: 1.1;
  font-weight: 700;
}

.ls-match .text-vs {
  font-size: 1.375rem;
  color: var(--ls-match-text-vs);
}

.ls-match .text-score {
  color: var(--ls-match-text-score);
  z-index: 1;
}

.ls-match .text-score--cricket {
  color: var(--ls-match-text-score-cricket);
}

.ls-match .text-live {
  color: var(--ls-match-text-live);
  font-size: 1rem;
  font-weight: 700;
}

.ls-match .team-logo {
  flex: 0 0 auto;
  width: 35px;
  margin: 0 .375rem;
  z-index: 1;
}

.ls-match [class*="ls-match__team"] {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 .25rem;
}

.ls-match [class*="ls-match__team"] .text {
  line-height: 1.3;
  -webkit-line-clamp: 2;
  color: var(--ls-match-team-text);
}

.ls-match [class*="ls-match__team"] .text-score {
  flex: 1;
}

.ls-match .ls-match__team-home {
  text-align: right;
  justify-content: flex-end;
}

.ls-match .ls-match__team-home .team-logo {
  margin-right: 0px;
  right: 0;
}

.ls-match .ls-match__team-away {
  justify-content: flex-start;
}

.ls-match .ls-match__team-away .team-logo {
  margin-left: 0px;
  left: 0;
}

.ls-match__header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 1.75rem;
  text-align: center;
  border-bottom-width: 1px;
  border-color: var(--ls-match-header-border);
  position: relative;
}

.ls-match__header .text {
  width: calc( 100% - .5rem);
  -webkit-line-clamp: 1;
}

.ls-match__main {
  display: flex;
  min-height: calc( 100% - 1.875rem);
  padding: .375rem 0;
  border-top: 1px solid var(--ls-match-main-border-top);
}

.ls-match__info {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 20%;
  text-align: center;
  white-space: nowrap;
}

[data-layout="mobile"] .ls-match {
  margin-bottom: .375rem;
}

[data-layout="mobile"] .ls-match:last-child {
  margin-bottom: 0px;
}

[data-layout="mobile"] .ls-match .text, [data-layout="mobile"] .ls-match .text-time {
  font-size: .75rem;
}

[data-layout="mobile"] .ls-match .text-score {
  font-size: 1.125rem;
}

[data-layout="mobile"] .ls-match [class*="ls-match__team"] .text-score {
  font-size: .875rem;
}

[data-layout="mobile"] .ls-match [class*="ls-match__team"] .text {
  width: calc( (100% - .25rem) - (22px + .25rem));
  font-size: .8125rem;
}

[data-layout="mobile"] .ls-match .team-logo {
  max-width: 22px;
  margin: 0 .25rem;
}

[data-layout="desktop"] .ls-match {
  transition: .2s ease;
}

[data-layout="desktop"] .ls-match:nth-last-child(2), [data-layout="desktop"] .ls-match:last-child {
  margin-bottom: 0;
}

[data-layout="desktop"] .ls-match [class*="ls-match__team"] .text {
  width: calc(100% - (35px + .375rem));
  font-size: 1rem;
}

@media (min-width: 769px) and (max-width: 1023px) {
  [data-layout="desktop"] .ls-match [class*="ls-match__team"] .text {
    font-size: .875rem;
  }
}

[data-layout="desktop"] .ls-match__info .text-score {
  margin-bottom: .125rem;
  line-height: 1;
  font-size: 1.5rem;
}

@media (min-width: 769px) and (max-width: 1023px) {
  [data-layout="desktop"] .ls-match__info .text-score {
    font-size: 1.25rem;
  }
}

[data-layout="desktop"] .ls-match__header:before {
  height: 30px;
}

[data-layout="desktop"] .ls-match__header .text {
  font-size: 1rem;
  padding: .25rem;
}

[data-layout="desktop"] .ls-match [class*="ls-match__team"] .text-score {
  font-size: 1rem;
}

[data-layout="desktop"] .ls-match:hover {
  border-color: var(--ls-match-hover-border);
  cursor: pointer;
}

[data-layout="desktop"] .ls-match:nth-child(odd) {
  margin-right: .375rem;
}

[data-layout="desktop"] .ls-match:nth-child(even) {
  margin-left: .375rem;
}

.sport-highlights {
  flex: 0 0 auto;
  width: 100%;
}

.sport-highlights[data-open="true"] {
  display: flex;
}

.sport-highlights[data-open="false"] {
  display: none;
}

.sport-highlights__tabs {
  flex: 0 0 auto;
  display: flex;
  width: 100%;
}

.sport-highlights__list {
  display: flex;
  flex: 1;
}

.sport-highlights__promo .video__info {
  margin: 0.5rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--news-promo-news-info-border);
}

[data-layout="mobile"] .sport-highlights {
  padding: 0;
  flex-direction: column;
}

[data-layout="mobile"] .sport-highlights__promo {
  display: contents;
}

[data-layout="mobile"] .sport-highlights__promo .video {
  margin-bottom: .5rem;
}

[data-layout="mobile"] .sport-highlights__promo .video__info {
  padding-left: .5rem;
  border-left-width: 2px;
}

[data-layout="mobile"] .sport-highlights__list {
  flex-direction: row;
  flex-wrap: wrap;
}

[data-layout="mobile"] .sport-highlights__list .video {
  width: calc( 50% - .25rem);
  margin-bottom: .5rem;
}

[data-layout="mobile"] .sport-highlights__list .video:nth-child(2n) {
  margin-left: .25rem;
}

[data-layout="mobile"] .sport-highlights__list .video:nth-child(2n-1) {
  margin-right: .25rem;
}

[data-layout="mobile"] .sport-highlights__list .video__play .btn {
  width: 27px;
  height: 27px;
  min-height: 27px;
}

[data-layout="mobile"] .sport-highlights__list .video__play .btn .icon {
  font-size: 1rem;
}

[data-layout="mobile"] .sport-highlights__list .video__info .icon {
  font-size: 1rem;
}

[data-layout="mobile"] .sport-highlights__list .video__info .text {
  font-size: .75rem;
}

[data-layout="desktop"] .sport-highlights {
  flex-direction: row;
  flex-wrap: wrap;
  padding: 1rem;
  border-radius: var(--border-radius);
  border-width: 1px;
  border-color: var(--sport-highlights-border);
  background-position: 50% 210%;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDk1IiBoZWlnaHQ9IjQ5NCIgdmlld0JveD0iMCAwIDQ5NSA0OTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIG9wYWNpdHk9IjAuMSI+CjxwYXRoIGQ9Ik0zMTIuMTA2IDQwNy4zNEMzMjYuNjU3IDQwMy40ODYgMzQwLjkxMSAzOTguNTg0IDM1NC43NTcgMzkyLjY3MkMzNzguNDc2IDM3NC4yNjEgMzk5LjEwNCAzNTIuMTg4IDQxNS44NjEgMzI3LjI4N0MzNjQuMTU1IDM0OS4zNTYgMzA3Ljk0OCAzNTguNzU2IDI1MS45MzQgMzU0LjcwM0MxOTUuOTIgMzUwLjY1MSAxNDEuNzI4IDMzMy4yNjMgOTMuODg0MyAzMDMuOTkxQzk3LjI3NjYgMzE0LjE0IDEwMS4wOTkgMzI0LjIzNiAxMDUuNTEyIDMzNC4yMDlDMTE2LjkyMiAzNjAuMDI1IDEzMS40ODIgMzg0LjMyNyAxNDguODYgNDA2LjU2NEMyMDIuMjA4IDQyMS4yNTQgMjU4LjU0MiA0MjEuNTIyIDMxMi4xMDYgNDA3LjM0WiIgZmlsbD0iIzdFOTdDRSIvPgo8cGF0aCBkPSJNMTIyLjA5MiA0MDYuMTQ3QzEzNC45NTEgNDE3LjYyIDE0OC42MjcgNDI4LjE0NyAxNjMuMDE0IDQzNy42NDNDMTY1LjQxIDQzOS4yMjQgMTY3LjgzMiA0NDAuNzU4IDE3MC4yOCA0NDIuMjQ2QzE2MS4xNTEgNDMzLjA2OCAxNTIuNTQ0IDQyMy4zODcgMTQ0LjQ5NyA0MTMuMjQ5QzEzNi45NTggNDExLjE1NiAxMjkuNDkgNDA4Ljc4OSAxMjIuMDkyIDQwNi4xNDdaIiBmaWxsPSIjN0U5N0NFIi8+CjxwYXRoIGQ9Ik0zMjkuNjExIDQxMC4wNjFDMzI0LjQ3NyA0MTEuNjk1IDMxOS4yODQgNDEzLjIzNSAzMTQuMDI2IDQxNC42MjlDMjYyLjYxIDQyOC4yNjYgMjA4LjY0IDQyOC45MDYgMTU2Ljk4NiA0MTYuNDkyQzE2OC4yMjkgNDI5LjgwNyAxODAuNDc4IDQ0Mi4yNCAxOTMuNjI3IDQ1My42OEMyMjQuNzc4IDQ1MS42ODQgMjU1LjQyIDQ0NC43MDMgMjg0LjM4MiA0MzMuMDA0QzMwMC4wODUgNDI2LjY2NCAzMTUuMjE3IDQxOC45ODggMzI5LjYxMSA0MTAuMDYxWiIgZmlsbD0iIzdFOTdDRSIvPgo8cGF0aCBkPSJNMTM2LjYxIDQwMi45OTFDMTEzLjIxOSAzNzEuMTE5IDk1LjM4MDkgMzM1LjUyMyA4My44NDY2IDI5Ny42OTdDNTcuNjA5NyAyODAuNDk3IDMzLjgxNDIgMjU5Ljg0NyAxMy4wOTg4IDIzNi4zMDJDMzEuNTg5NSAyOTUuMDMyIDYzLjg2ODIgMzQ4LjQ2MSAxMDcuMjQ4IDM5Mi4xNDJDMTE2Ljk0NyAzOTYuMjU1IDEyNi43MzUgMzk5Ljg3MiAxMzYuNjEgNDAyLjk5MVoiIGZpbGw9IiM3RTk3Q0UiLz4KPHBhdGggZD0iTTIzNC44NDMgMjYwLjE0N0wyMTIuMDg0IDI3MC4yNDhMMjIxLjI4MyAyOTEuMDM4TDI0NC4wNDMgMjgwLjkzN0MyNDYuODA2IDI3OS43MTEgMjQ4Ljk3IDI3Ny40NCAyNTAuMDYyIDI3NC42MjNDMjUxLjE1MyAyNzEuODA3IDI1MS4wODEgMjY4LjY3NSAyNDkuODYxIDI2NS45MThDMjQ4LjY0MSAyNjMuMTYxIDI0Ni4zNzMgMjYxLjAwNSAyNDMuNTU3IDI1OS45MjNDMjQwLjc0IDI1OC44NCAyMzcuNjA2IDI1OC45MjEgMjM0Ljg0MyAyNjAuMTQ3WiIgZmlsbD0iIzdFOTdDRSIvPgo8cGF0aCBkPSJNMTQ3LjgxMiAyMS44MzM1QzEwMy4xNDQgNDEuNjU3OCA2NS4zMjc0IDc0LjI1MzIgMzkuMTQ0MyAxMTUuNDk4QzEyLjk2MTIgMTU2Ljc0MiAtMC40MTI2NiAyMDQuNzgzIDAuNzE0MjE1IDI1My41NDZDMS44NDEwOSAzMDIuMzA4IDE3LjQxODMgMzQ5LjYwMiA0NS40NzU0IDM4OS40NDdDNzMuNTMyNCA0MjkuMjkyIDExMi44MDkgNDU5Ljg5OCAxNTguMzQgNDc3LjM5NUMyMDMuODcgNDk0Ljg5MiAyNTMuNjA5IDQ5OC40OTQgMzAxLjI2NiA0ODcuNzQ2QzM0OC45MjMgNDc2Ljk5NyAzOTIuMzU4IDQ1Mi4zODEgNDI2LjA3OCA0MTcuMDFDNDU5Ljc5OSAzODEuNjM5IDQ4Mi4yOSAzMzcuMTAyIDQ5MC43MDggMjg5LjAzMUM0OTkuMTI2IDI0MC45NTkgNDkzLjA5MyAxOTEuNTEzIDQ3My4zNzEgMTQ2Ljk0NEM0NDYuODY4IDg3LjIyODIgMzk3LjcwNyA0MC41MTg2IDMzNi42NzMgMTcuMDYzN0MyNzUuNjQgLTYuMzkxMTUgMjA3LjcxOCAtNC42NzU3MiAxNDcuODEyIDIxLjgzMzVaTTI3NC44NTYgMjU0Ljc3MkMyNzYuOTIyIDI1OS40MSAyNzguMDUzIDI2NC40MTIgMjc4LjE4MyAyNjkuNDkyQzI3OC4zMTMgMjc0LjU3MSAyNzcuNDQgMjc5LjYzIDI3NS42MTQgMjg0LjM3OEMyNzMuNzg4IDI4OS4xMjYgMjcxLjA0NSAyOTMuNDcxIDI2Ny41NDEgMjk3LjE2NEMyNjQuMDM3IDMwMC44NTggMjU5Ljg0MSAzMDMuODI4IDI1NS4xOTMgMzA1LjkwNUwyMDcuNDgxIDMyNy4yMTlMMTY3LjczMyAyMzcuOTQyTDE5Mi43MzYgMjI2Ljg0NUwyMDAuOTk2IDI0NS41MTNMMjIzLjkxNiAyMzUuMzQxQzIyNS4yODYgMjM0LjczMyAyMjYuNTIzIDIzMy44NjEgMjI3LjU1NiAyMzIuNzc1QzIyOC41ODkgMjMxLjY4OSAyMjkuMzk3IDIzMC40MTEgMjI5LjkzNSAyMjkuMDEzQzIzMC40NzMgMjI3LjYxNiAyMzAuNzMgMjI2LjEyNiAyMzAuNjkgMjI0LjYzMUMyMzAuNjUxIDIyMy4xMzYgMjMwLjMxNyAyMjEuNjY0IDIyOS43MDYgMjIwLjI5OUMyMjguMDY2IDIxNy41MjcgMjI1Ljc0OCAyMTUuMjE2IDIyMi45NjkgMjEzLjU4NEMyMzAuMDg4IDIwNy41OTQgMjM1LjY5MyAyMDAuMDExIDIzOS4zMjUgMTkxLjQ1NEMyNDUuOTIzIDE5NS44OTIgMjUxLjIzOCAyMDEuOTgyIDI1NC43NDIgMjA5LjExOUMyNTguNjM4IDIxNy40OTQgMjU5LjI1MiAyMjcuMDMxIDI1Ni40NjIgMjM1Ljg1NEMyNjQuNzEyIDIzOS42NzIgMjcxLjI1NSAyNDYuMzk3IDI3NC44NDMgMjU0Ljc0M0wyNzQuODU2IDI1NC43NzJaTTE0OC4xNSAxMzguODExQzE0OS41NyAxMzkuMzgzIDE1MS4wOTMgMTM5LjY1NyAxNTIuNjI0IDEzOS42MTRDMTU0LjE1NiAxMzkuNTcyIDE1NS42NjQgMTM5LjIxNSAxNTcuMDUzIDEzOC41NjVMMTY5LjgwMiAxMzIuOTA2QzE3OS4zODYgMTI4LjY1MyAxOTAuMjU4IDEyOC4zNzMgMjAwLjAyNiAxMzIuMTI3QzIwOS43OTUgMTM1Ljg4MSAyMTcuNjYgMTQzLjM2MiAyMjEuODkyIDE1Mi45MjRDMjI2LjEyMyAxNjIuNDg2IDIyNi4zNzQgMTczLjM0NyAyMjIuNTg5IDE4My4xMTZDMjE4LjgwNSAxOTIuODg1IDIxMS4yOTUgMjAwLjc2MyAyMDEuNzExIDIwNS4wMTZMMTYxLjMyMiAyMjIuOTQyTDE1MC4wNTcgMTk3LjQ4NUwxOTAuNDQ3IDE3OS41NkMxOTMuMjY2IDE3OC4zMDkgMTk1LjQ3NSAxNzUuOTkxIDE5Ni41ODkgMTczLjExN0MxOTcuNzAyIDE3MC4yNDQgMTk3LjYyNyAxNjcuMDQ5IDE5Ni4zODMgMTY0LjIzN0MxOTUuMTM4IDE2MS40MjQgMTkyLjgyNSAxNTkuMjIzIDE4OS45NTIgMTU4LjExOUMxODcuMDc4IDE1Ny4wMTQgMTgzLjg4IDE1Ny4wOTcgMTgxLjA2MSAxNTguMzQ4TDE2OC4zMTEgMTY0LjAwN0MxNTguNzI4IDE2OC4yNiAxNDcuODU2IDE2OC41NCAxMzguMDg3IDE2NC43ODZDMTI4LjMxOSAxNjEuMDMyIDEyMC40NTMgMTUzLjU1MSAxMTYuMjIyIDE0My45ODlDMTExLjk5MSAxMzQuNDI3IDExMS43NCAxMjMuNTY2IDExNS41MjQgMTEzLjc5N0MxMTkuMzA5IDEwNC4wMjggMTI2LjgxOSA5Ni4xNDk5IDEzNi40MDIgOTEuODk2NUwxNzYuNzkzIDczLjk3MDdMMTg4LjA1MSA5OS40MTI3TDE0Ny42NjEgMTE3LjMzOUMxNDUuNTYyIDExOC4yNzYgMTQzLjc4NiAxMTkuODEyIDE0Mi41NTYgMTIxLjc1M0MxNDEuMzI2IDEyMy42OTUgMTQwLjY5OCAxMjUuOTU0IDE0MC43NDkgMTI4LjI0OEMxNDAuODAxIDEzMC41NDIgMTQxLjUzMSAxMzIuNzY3IDE0Mi44NDYgMTM0LjY0NEMxNDQuMTYyIDEzNi41MjEgMTQ2LjAxMiAxMzcuOTggMTQ4LjE1IDEzOC44MTFaTTI0OS45MTIgMTM2LjkwNUwyNTguNjQ5IDM4Ljg1OTNMMzcwLjQ2MiAxMjQuMTU2TDM0Mi40MTMgMTM2LjYwNUwyOTMuMDMzIDk4LjU5OTdMMjQ5LjkxMiAxMzYuOTA1Wk0yNzcuNTEzIDEzMi4zMDhMMjc0LjcyOCAxNjYuNTkyTDI0Ni42OCAxNzkuMDRMMjQ4LjIyNCAxNTguMjY1TDI3Ny41MTMgMTMyLjMwOFpNMjk1LjIyNyAyNjguMDNMMzI0LjQ5NSAyNDIuMDNMMzIxLjcxIDI3Ni4zMTNMMjkzLjY2MiAyODguNzYyTDI5NS4yMjcgMjY4LjAzWk0yOTYuOTY3IDI0Ni41OTRMMzA3LjM5OCAxMjguOTc3TDQzNi40NTUgMjI1LjgyM0w0MDguNDY2IDIzNy45MzJMMzUxLjY0MiAxOTQuMDk5TDI5Ni45NjcgMjQ2LjU5NFpNMTEyLjg2OSA0NDYuOTU4QzEzMy4zOTIgNDUxLjc0OCAxNTQuMzk4IDQ1NC4xOTUgMTc1LjQ4NyA0NTQuMjVDMTY5Ljg2NSA0NTAuOTQ3IDE2NC4zMTggNDQ3LjUxMyAxNTguODQ3IDQ0My45NDZDMTM4Ljc3OSA0MzAuNjkyIDEyMC4wNzIgNDE1LjQ5MyAxMDIuOTk2IDM5OC41NjhDODUuNjQ3NSAzOTEuMTM5IDY4LjkyNTkgMzgyLjMzMyA1Mi45OTE5IDM3Mi4yMzNDNDYuNTEzNyAzNjguMTUxIDQwLjIwODIgMzYzLjc0OCAzNC4wMTQgMzU5LjI0NEMzMS41NjQgMzU0LjU3NSAyOS4xOTYxIDM0OS44MTYgMjcuMDQxIDM0NC45NDZDOS40NzQ5NCAzMDUuMzUgMy4wMTg3NSAyNjEuNzAxIDguMzYxMjQgMjE4LjY2MkMyOS4wMiAyNDQuNjA1IDUzLjM1NjYgMjY3LjM5NSA4MC42MDU4IDI4Ni4zMTZDNjAuNTgyOCAyMTEuNDY5IDY1LjkzMDUgMTMyLjAzOCA5NS44MTUyIDYwLjQwODFDOTkuODY2MyA1Ny4xMTQzIDEwNC4wMTIgNTMuOTE3NCAxMDguMzA5IDUwLjg2MjdDNzMuMDkxNCAxMjYuNzMyIDY2LjcwNjYgMjEyLjc0MiA5MC4zNDc4IDI5Mi44MTFDMTM4LjM0OSAzMjMuOTE3IDE5My4zOTIgMzQyLjU1IDI1MC40OTIgMzQ3LjAyM0MzMDcuNTkyIDM1MS40OTYgMzY0Ljk0NiAzNDEuNjY4IDQxNy4zNjIgMzE4LjQyOUM0MTkuMzU4IDMxNy41NDMgNDIxLjM1NCAzMTYuNjU3IDQyMy4zMTggMzE1LjY5OEM0NDEuNTE0IDI4Ni4zMDYgNDUzLjM1OSAyNTMuNDUxIDQ1OC4wOSAyMTkuMjQ3QzQ2Mi44MiAxODUuMDQzIDQ2MC4zMzMgMTUwLjI0OCA0NTAuNzg4IDExNy4xMDFDNDgzLjE3NSAxNjcuODE4IDQ5NS4zMTQgMjI4Ljg3NiA0ODQuODA4IDI4OC4yMTdDNDY3LjE1NCAzMDEuMDY4IDQ0OC4zNDUgMzEyLjI1MSA0MjguNjI0IDMyMS42MjNDNDE1LjUzMyAzNDIuOTY0IDM5OS42OTkgMzYyLjUwNSAzODEuNTMgMzc5Ljc0NkM0MjEuNzg3IDM1Ny42MzggNDU2Ljg2MyAzMjcuMTkgNDg0LjQwMiAyOTAuNDQ5QzQ4My4zMTEgMjk2LjI1NiA0ODEuOTY3IDMwMS45NjYgNDgwLjQ4NiAzMDcuNzJDNDQ4LjQ4IDM0Ni40NzggNDA3Ljk0MiAzNzcuMzI5IDM2Mi4wNTEgMzk3Ljg1M0wzNTguNjg2IDM5OS4zNDZDMzM5LjcwNiA0MTMuOTY2IDMxOS4wNDQgNDI2LjI2IDI5Ny4xNDMgNDM1Ljk2NkMyOTMuODc5IDQzNy40MTUgMjkwLjYxNiA0MzguODYzIDI4Ny4yNiA0NDAuMTQzQzI2MC41MDUgNDUwLjk1MSAyMzIuMzM3IDQ1Ny44NDUgMjAzLjYzMSA0NjAuNjE0QzIyNy42OTMgNDcyLjE2NyAyNTMuMTQ1IDQ4MC41OTMgMjc5LjM2NSA0ODUuNjg4QzI3MS4xNzkgNDg2LjggMjYyLjk0MiA0ODcuNDg5IDI1NC42ODggNDg3Ljc1MkMyNDQuNzgzIDQ4NS4wMzkgMjM0Ljk2NyA0ODEuODU5IDIyNS4yNCA0NzguMjA5QzIzMC4yMDcgNDgxLjU1NCAyMzUuMTI4IDQ4NC43OTYgMjQwLjI3MSA0ODcuODcxQzE5NC43NTUgNDg2LjQ4NiAxNTAuNTgzIDQ3Mi4zMjkgMTEyLjgwOSA0NDcuMDJMMTEyLjg2OSA0NDYuOTU4WiIgZmlsbD0iIzdFOTdDRSIvPgo8L2c+Cjwvc3ZnPgo=);
  position: relative;
  padding-bottom: 50%;
}

[data-layout="desktop"] .sport-highlights:before {
  content: "";
  position: relative;
}

@media (max-width: 1199px) {
  [data-layout="desktop"] .sport-highlights {
    background-position: 50% 250px;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  [data-layout="desktop"] .sport-highlights {
    padding-bottom: 55%;
    background-position: 50% 100px;
  }
}

[data-layout="desktop"] .sport-highlights__promo {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 70%;
  position: absolute;
  overflow: hidden;
}

[data-layout="desktop"] .sport-highlights__promo:before {
  content: "";
  position: absolute;
  padding-bottom: 55%;
}

[data-layout="desktop"] .sport-highlights__promo .video {
  width: 100%;
  border: 0;
  background-image: var(--sport-highlights-promo-video-bg, none);
  background-color: var(--sport-highlights-promo-video-bg);
}

[data-layout="desktop"] .sport-highlights__promo .video .video__play .btn {
  width: 105px;
  height: 105px;
}

[data-layout="desktop"] .sport-highlights__promo .video .video__play .btn .icon {
  font-size: 3.75rem;
}

[data-layout="desktop"] .sport-highlights__promo .video .video__info {
  margin: 0.5rem 0;
  padding-left: .75rem;
  border-left: 4px solid var(--sport-highlights-promo-vido-info-border);
}

[data-layout="desktop"] .sport-highlights__promo .video .video__info > .text {
  font-size: 1.25rem;
}

[data-layout="desktop"] .sport-highlights__promo .video .video__info .text-time {
  display: flex;
  font-size: 1rem;
}

[data-layout="desktop"] .sport-highlights__promo .video .video__main {
  border: 1px solid var(--sport-hightlights-promo-main-video-border);
  border-radius: var(--border-radius);
}

[data-layout="desktop"] .sport-highlights__promo .video .video__main:hover {
  border-color: var(--sport-hightlights-promo-main-video-hover-border);
}

[data-layout="desktop"] .sport-highlights__promo .video .video__source * {
  border-radius: var(--border-radius);
}

[data-layout="desktop"] .sport-highlights__list {
  flex-direction: column;
  width: calc( 30% - 2rem);
  height: calc( 100% - 2rem);
  padding-left: .875rem;
  padding-right: .5rem;
  position: absolute;
  right: 1rem;
  overflow-y: auto;
}

[data-layout="desktop"] .sport-highlights__list .video:hover {
  border-color: var(--sports-highlights-list-video-border);
}

[data-layout="desktop"] .sport-highlights__list .video > .text {
  font-size: 1rem;
}

[data-layout="desktop"] .sport-highlights__list .video .text-time {
  font-size: .8125rem;
}

[data-layout="desktop"] .sport-highlights .video {
  margin-bottom: .75rem;
}

[data-layout="desktop"] .sport-highlights .video__play .text {
  font-size: 1.125rem;
}

.video {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  border-width: 1px;
  border-color: var(--video-border);
  border-radius: var(--border-radius);
  background-color: var(--video-bg);
  background-image: var(--video-bg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.video[data-selected="true"] .video__play {
  opacity: 1;
}

.video[data-selected="false"] .video__play {
  opacity: 0;
}

.video .btn[data-selected="true"] .icon--pause {
  opacity: 1;
  visibility: visible;
}

.video .btn[data-selected="true"] .icon--play {
  opacity: 1;
  visibility: hidden;
}

.video .btn[data-selected="false"] .icon--pause {
  opacity: 0;
  visibility: hidden;
}

.video .btn[data-selected="false"] .icon--play {
  opacity: 1;
  visibility: visible;
}

.video:hover {
  border-color: --video-hover-border;
}

.video:hover .video__play {
  opacity: 1;
}

.video .text-time {
  display: flex;
  align-items: center;
  color: var(--video-text-time);
}

.video .text-time .text {
  flex: 0 0 auto;
}

.video__main {
  flex: 1 0 auto;
  position: relative;
  overflow: hidden;
}

.video__play {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--white);
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0px;
  background-color: var(--video-play-bg);
  transition: all .3s ease-in-out;
  cursor: default;
}

.video__play .btn {
  width: 60px;
  height: 60px;
  border-width: 3px;
  border-color: var(--video-btn-border);
  border-radius: 50%;
  position: relative;
}

.video__play .btn .icon {
  font-size: 2rem;
  position: absolute;
}

.video__play .btn .icon + .icon {
  margin-left: 0px;
}

.video__play .btn .icon--pause {
  opacity: 0;
  visibility: hidden;
}

.video__play .btn .icon--play {
  opacity: 1;
  visibility: visible;
}

.video__source {
  padding-bottom: 56%;
}

.video__source * {
  position: absolute;
}

.video__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-right: .5rem;
  padding-left: .5rem;
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.video__info .text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video__info .text:first-child {
  margin-bottom: .25rem;
}

[data-layout="mobile"] .video .icon, [data-layout="mobile"] .video .text {
  line-height: 1.25;
}

[data-layout="mobile"] .video .icon + .text, [data-layout="mobile"] .video .text + .text {
  margin-left: .25rem;
}

.news[data-open="true"] {
  flex: 1;
  display: flex;
  height: 100%;
}

.news[data-open="false"] {
  display: none;
}

.news .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news .text:first-child {
  margin-bottom: .25rem;
}

.news .text-time {
  display: flex;
  align-items: center;
  color: var(--news-text-time);
}

.news__promo {
  height: 100%;
}

.news__promo .news__info {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: .75rem;
  border-left: 4px solid var(--news-promo-news-info-border);
}

.news__group {
  flex: 1;
  display: flex;
}

.news__item {
  flex: 0 0 auto;
  margin-bottom: .5rem;
  border-width: 1px;
  border-color: var(--news-item-border);
  border-radius: var(--border-radius);
  background-color: var(--news-item-bg);
  background-image: var(--news-item-bg);
  transition: .2s ease;
  position: relative;
  overflow: hidden;
}

.news__item:hover {
  border-color: var(--news-item-hover-border);
}

.news__item img {
  position: absolute;
}

.news__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news__img {
  flex: 1;
  display: flex;
  padding-bottom: 55%;
  position: relative;
  overflow: hidden;
}

.news__info {
  min-height: 2.5rem;
  padding: .25rem .375rem;
}

[data-layout="mobile"] .news {
  flex-direction: column;
  margin-bottom: .5rem;
  padding: 0;
}

[data-layout="mobile"] .news__promo {
  flex: 1;
  width: 100%;
}

[data-layout="mobile"] .news__promo .news__item {
  flex: 1;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  border-width: 1px;
}

[data-layout="mobile"] .news__promo .news__info {
  margin: .5rem;
  padding-left: .5rem;
  border-left-width: 2px;
}

[data-layout="mobile"] .news__group {
  flex-direction: row;
  flex-wrap: wrap;
}

[data-layout="mobile"] .news__group .icon {
  font-size: 1rem;
}

[data-layout="mobile"] .news__group .text {
  font-size: .75rem;
}

[data-layout="mobile"] .news__item {
  width: calc( 50% - .25rem);
}

[data-layout="mobile"] .news__item:nth-child(2n) {
  margin-left: .25rem;
}

[data-layout="mobile"] .news__item:nth-child(2n-1) {
  margin-right: .25rem;
}

[data-layout="mobile"] .news__img {
  border-radius: .75rem .75rem 0 0;
}

[data-layout="mobile"] .news .text:first-child {
  margin-bottom: .25rem;
}

[data-layout="mobile"] .news .icon, [data-layout="mobile"] .news .text {
  line-height: 1.25;
}

[data-layout="mobile"] .news .icon + .text, [data-layout="mobile"] .news .text + .text {
  margin-left: .25rem;
}

[data-layout="desktop"] .news {
  padding: 1rem;
  border-radius: var(--border-radius);
  border-width: 1px;
  border-color: var(--sport-highlights-border);
  background-position: 50% 250%;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDk1IiBoZWlnaHQ9IjQ5NCIgdmlld0JveD0iMCAwIDQ5NSA0OTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIG9wYWNpdHk9IjAuMSI+CjxwYXRoIGQ9Ik0zMTIuMTA2IDQwNy4zNEMzMjYuNjU3IDQwMy40ODYgMzQwLjkxMSAzOTguNTg0IDM1NC43NTcgMzkyLjY3MkMzNzguNDc2IDM3NC4yNjEgMzk5LjEwNCAzNTIuMTg4IDQxNS44NjEgMzI3LjI4N0MzNjQuMTU1IDM0OS4zNTYgMzA3Ljk0OCAzNTguNzU2IDI1MS45MzQgMzU0LjcwM0MxOTUuOTIgMzUwLjY1MSAxNDEuNzI4IDMzMy4yNjMgOTMuODg0MyAzMDMuOTkxQzk3LjI3NjYgMzE0LjE0IDEwMS4wOTkgMzI0LjIzNiAxMDUuNTEyIDMzNC4yMDlDMTE2LjkyMiAzNjAuMDI1IDEzMS40ODIgMzg0LjMyNyAxNDguODYgNDA2LjU2NEMyMDIuMjA4IDQyMS4yNTQgMjU4LjU0MiA0MjEuNTIyIDMxMi4xMDYgNDA3LjM0WiIgZmlsbD0iIzdFOTdDRSIvPgo8cGF0aCBkPSJNMTIyLjA5MiA0MDYuMTQ3QzEzNC45NTEgNDE3LjYyIDE0OC42MjcgNDI4LjE0NyAxNjMuMDE0IDQzNy42NDNDMTY1LjQxIDQzOS4yMjQgMTY3LjgzMiA0NDAuNzU4IDE3MC4yOCA0NDIuMjQ2QzE2MS4xNTEgNDMzLjA2OCAxNTIuNTQ0IDQyMy4zODcgMTQ0LjQ5NyA0MTMuMjQ5QzEzNi45NTggNDExLjE1NiAxMjkuNDkgNDA4Ljc4OSAxMjIuMDkyIDQwNi4xNDdaIiBmaWxsPSIjN0U5N0NFIi8+CjxwYXRoIGQ9Ik0zMjkuNjExIDQxMC4wNjFDMzI0LjQ3NyA0MTEuNjk1IDMxOS4yODQgNDEzLjIzNSAzMTQuMDI2IDQxNC42MjlDMjYyLjYxIDQyOC4yNjYgMjA4LjY0IDQyOC45MDYgMTU2Ljk4NiA0MTYuNDkyQzE2OC4yMjkgNDI5LjgwNyAxODAuNDc4IDQ0Mi4yNCAxOTMuNjI3IDQ1My42OEMyMjQuNzc4IDQ1MS42ODQgMjU1LjQyIDQ0NC43MDMgMjg0LjM4MiA0MzMuMDA0QzMwMC4wODUgNDI2LjY2NCAzMTUuMjE3IDQxOC45ODggMzI5LjYxMSA0MTAuMDYxWiIgZmlsbD0iIzdFOTdDRSIvPgo8cGF0aCBkPSJNMTM2LjYxIDQwMi45OTFDMTEzLjIxOSAzNzEuMTE5IDk1LjM4MDkgMzM1LjUyMyA4My44NDY2IDI5Ny42OTdDNTcuNjA5NyAyODAuNDk3IDMzLjgxNDIgMjU5Ljg0NyAxMy4wOTg4IDIzNi4zMDJDMzEuNTg5NSAyOTUuMDMyIDYzLjg2ODIgMzQ4LjQ2MSAxMDcuMjQ4IDM5Mi4xNDJDMTE2Ljk0NyAzOTYuMjU1IDEyNi43MzUgMzk5Ljg3MiAxMzYuNjEgNDAyLjk5MVoiIGZpbGw9IiM3RTk3Q0UiLz4KPHBhdGggZD0iTTIzNC44NDMgMjYwLjE0N0wyMTIuMDg0IDI3MC4yNDhMMjIxLjI4MyAyOTEuMDM4TDI0NC4wNDMgMjgwLjkzN0MyNDYuODA2IDI3OS43MTEgMjQ4Ljk3IDI3Ny40NCAyNTAuMDYyIDI3NC42MjNDMjUxLjE1MyAyNzEuODA3IDI1MS4wODEgMjY4LjY3NSAyNDkuODYxIDI2NS45MThDMjQ4LjY0MSAyNjMuMTYxIDI0Ni4zNzMgMjYxLjAwNSAyNDMuNTU3IDI1OS45MjNDMjQwLjc0IDI1OC44NCAyMzcuNjA2IDI1OC45MjEgMjM0Ljg0MyAyNjAuMTQ3WiIgZmlsbD0iIzdFOTdDRSIvPgo8cGF0aCBkPSJNMTQ3LjgxMiAyMS44MzM1QzEwMy4xNDQgNDEuNjU3OCA2NS4zMjc0IDc0LjI1MzIgMzkuMTQ0MyAxMTUuNDk4QzEyLjk2MTIgMTU2Ljc0MiAtMC40MTI2NiAyMDQuNzgzIDAuNzE0MjE1IDI1My41NDZDMS44NDEwOSAzMDIuMzA4IDE3LjQxODMgMzQ5LjYwMiA0NS40NzU0IDM4OS40NDdDNzMuNTMyNCA0MjkuMjkyIDExMi44MDkgNDU5Ljg5OCAxNTguMzQgNDc3LjM5NUMyMDMuODcgNDk0Ljg5MiAyNTMuNjA5IDQ5OC40OTQgMzAxLjI2NiA0ODcuNzQ2QzM0OC45MjMgNDc2Ljk5NyAzOTIuMzU4IDQ1Mi4zODEgNDI2LjA3OCA0MTcuMDFDNDU5Ljc5OSAzODEuNjM5IDQ4Mi4yOSAzMzcuMTAyIDQ5MC43MDggMjg5LjAzMUM0OTkuMTI2IDI0MC45NTkgNDkzLjA5MyAxOTEuNTEzIDQ3My4zNzEgMTQ2Ljk0NEM0NDYuODY4IDg3LjIyODIgMzk3LjcwNyA0MC41MTg2IDMzNi42NzMgMTcuMDYzN0MyNzUuNjQgLTYuMzkxMTUgMjA3LjcxOCAtNC42NzU3MiAxNDcuODEyIDIxLjgzMzVaTTI3NC44NTYgMjU0Ljc3MkMyNzYuOTIyIDI1OS40MSAyNzguMDUzIDI2NC40MTIgMjc4LjE4MyAyNjkuNDkyQzI3OC4zMTMgMjc0LjU3MSAyNzcuNDQgMjc5LjYzIDI3NS42MTQgMjg0LjM3OEMyNzMuNzg4IDI4OS4xMjYgMjcxLjA0NSAyOTMuNDcxIDI2Ny41NDEgMjk3LjE2NEMyNjQuMDM3IDMwMC44NTggMjU5Ljg0MSAzMDMuODI4IDI1NS4xOTMgMzA1LjkwNUwyMDcuNDgxIDMyNy4yMTlMMTY3LjczMyAyMzcuOTQyTDE5Mi43MzYgMjI2Ljg0NUwyMDAuOTk2IDI0NS41MTNMMjIzLjkxNiAyMzUuMzQxQzIyNS4yODYgMjM0LjczMyAyMjYuNTIzIDIzMy44NjEgMjI3LjU1NiAyMzIuNzc1QzIyOC41ODkgMjMxLjY4OSAyMjkuMzk3IDIzMC40MTEgMjI5LjkzNSAyMjkuMDEzQzIzMC40NzMgMjI3LjYxNiAyMzAuNzMgMjI2LjEyNiAyMzAuNjkgMjI0LjYzMUMyMzAuNjUxIDIyMy4xMzYgMjMwLjMxNyAyMjEuNjY0IDIyOS43MDYgMjIwLjI5OUMyMjguMDY2IDIxNy41MjcgMjI1Ljc0OCAyMTUuMjE2IDIyMi45NjkgMjEzLjU4NEMyMzAuMDg4IDIwNy41OTQgMjM1LjY5MyAyMDAuMDExIDIzOS4zMjUgMTkxLjQ1NEMyNDUuOTIzIDE5NS44OTIgMjUxLjIzOCAyMDEuOTgyIDI1NC43NDIgMjA5LjExOUMyNTguNjM4IDIxNy40OTQgMjU5LjI1MiAyMjcuMDMxIDI1Ni40NjIgMjM1Ljg1NEMyNjQuNzEyIDIzOS42NzIgMjcxLjI1NSAyNDYuMzk3IDI3NC44NDMgMjU0Ljc0M0wyNzQuODU2IDI1NC43NzJaTTE0OC4xNSAxMzguODExQzE0OS41NyAxMzkuMzgzIDE1MS4wOTMgMTM5LjY1NyAxNTIuNjI0IDEzOS42MTRDMTU0LjE1NiAxMzkuNTcyIDE1NS42NjQgMTM5LjIxNSAxNTcuMDUzIDEzOC41NjVMMTY5LjgwMiAxMzIuOTA2QzE3OS4zODYgMTI4LjY1MyAxOTAuMjU4IDEyOC4zNzMgMjAwLjAyNiAxMzIuMTI3QzIwOS43OTUgMTM1Ljg4MSAyMTcuNjYgMTQzLjM2MiAyMjEuODkyIDE1Mi45MjRDMjI2LjEyMyAxNjIuNDg2IDIyNi4zNzQgMTczLjM0NyAyMjIuNTg5IDE4My4xMTZDMjE4LjgwNSAxOTIuODg1IDIxMS4yOTUgMjAwLjc2MyAyMDEuNzExIDIwNS4wMTZMMTYxLjMyMiAyMjIuOTQyTDE1MC4wNTcgMTk3LjQ4NUwxOTAuNDQ3IDE3OS41NkMxOTMuMjY2IDE3OC4zMDkgMTk1LjQ3NSAxNzUuOTkxIDE5Ni41ODkgMTczLjExN0MxOTcuNzAyIDE3MC4yNDQgMTk3LjYyNyAxNjcuMDQ5IDE5Ni4zODMgMTY0LjIzN0MxOTUuMTM4IDE2MS40MjQgMTkyLjgyNSAxNTkuMjIzIDE4OS45NTIgMTU4LjExOUMxODcuMDc4IDE1Ny4wMTQgMTgzLjg4IDE1Ny4wOTcgMTgxLjA2MSAxNTguMzQ4TDE2OC4zMTEgMTY0LjAwN0MxNTguNzI4IDE2OC4yNiAxNDcuODU2IDE2OC41NCAxMzguMDg3IDE2NC43ODZDMTI4LjMxOSAxNjEuMDMyIDEyMC40NTMgMTUzLjU1MSAxMTYuMjIyIDE0My45ODlDMTExLjk5MSAxMzQuNDI3IDExMS43NCAxMjMuNTY2IDExNS41MjQgMTEzLjc5N0MxMTkuMzA5IDEwNC4wMjggMTI2LjgxOSA5Ni4xNDk5IDEzNi40MDIgOTEuODk2NUwxNzYuNzkzIDczLjk3MDdMMTg4LjA1MSA5OS40MTI3TDE0Ny42NjEgMTE3LjMzOUMxNDUuNTYyIDExOC4yNzYgMTQzLjc4NiAxMTkuODEyIDE0Mi41NTYgMTIxLjc1M0MxNDEuMzI2IDEyMy42OTUgMTQwLjY5OCAxMjUuOTU0IDE0MC43NDkgMTI4LjI0OEMxNDAuODAxIDEzMC41NDIgMTQxLjUzMSAxMzIuNzY3IDE0Mi44NDYgMTM0LjY0NEMxNDQuMTYyIDEzNi41MjEgMTQ2LjAxMiAxMzcuOTggMTQ4LjE1IDEzOC44MTFaTTI0OS45MTIgMTM2LjkwNUwyNTguNjQ5IDM4Ljg1OTNMMzcwLjQ2MiAxMjQuMTU2TDM0Mi40MTMgMTM2LjYwNUwyOTMuMDMzIDk4LjU5OTdMMjQ5LjkxMiAxMzYuOTA1Wk0yNzcuNTEzIDEzMi4zMDhMMjc0LjcyOCAxNjYuNTkyTDI0Ni42OCAxNzkuMDRMMjQ4LjIyNCAxNTguMjY1TDI3Ny41MTMgMTMyLjMwOFpNMjk1LjIyNyAyNjguMDNMMzI0LjQ5NSAyNDIuMDNMMzIxLjcxIDI3Ni4zMTNMMjkzLjY2MiAyODguNzYyTDI5NS4yMjcgMjY4LjAzWk0yOTYuOTY3IDI0Ni41OTRMMzA3LjM5OCAxMjguOTc3TDQzNi40NTUgMjI1LjgyM0w0MDguNDY2IDIzNy45MzJMMzUxLjY0MiAxOTQuMDk5TDI5Ni45NjcgMjQ2LjU5NFpNMTEyLjg2OSA0NDYuOTU4QzEzMy4zOTIgNDUxLjc0OCAxNTQuMzk4IDQ1NC4xOTUgMTc1LjQ4NyA0NTQuMjVDMTY5Ljg2NSA0NTAuOTQ3IDE2NC4zMTggNDQ3LjUxMyAxNTguODQ3IDQ0My45NDZDMTM4Ljc3OSA0MzAuNjkyIDEyMC4wNzIgNDE1LjQ5MyAxMDIuOTk2IDM5OC41NjhDODUuNjQ3NSAzOTEuMTM5IDY4LjkyNTkgMzgyLjMzMyA1Mi45OTE5IDM3Mi4yMzNDNDYuNTEzNyAzNjguMTUxIDQwLjIwODIgMzYzLjc0OCAzNC4wMTQgMzU5LjI0NEMzMS41NjQgMzU0LjU3NSAyOS4xOTYxIDM0OS44MTYgMjcuMDQxIDM0NC45NDZDOS40NzQ5NCAzMDUuMzUgMy4wMTg3NSAyNjEuNzAxIDguMzYxMjQgMjE4LjY2MkMyOS4wMiAyNDQuNjA1IDUzLjM1NjYgMjY3LjM5NSA4MC42MDU4IDI4Ni4zMTZDNjAuNTgyOCAyMTEuNDY5IDY1LjkzMDUgMTMyLjAzOCA5NS44MTUyIDYwLjQwODFDOTkuODY2MyA1Ny4xMTQzIDEwNC4wMTIgNTMuOTE3NCAxMDguMzA5IDUwLjg2MjdDNzMuMDkxNCAxMjYuNzMyIDY2LjcwNjYgMjEyLjc0MiA5MC4zNDc4IDI5Mi44MTFDMTM4LjM0OSAzMjMuOTE3IDE5My4zOTIgMzQyLjU1IDI1MC40OTIgMzQ3LjAyM0MzMDcuNTkyIDM1MS40OTYgMzY0Ljk0NiAzNDEuNjY4IDQxNy4zNjIgMzE4LjQyOUM0MTkuMzU4IDMxNy41NDMgNDIxLjM1NCAzMTYuNjU3IDQyMy4zMTggMzE1LjY5OEM0NDEuNTE0IDI4Ni4zMDYgNDUzLjM1OSAyNTMuNDUxIDQ1OC4wOSAyMTkuMjQ3QzQ2Mi44MiAxODUuMDQzIDQ2MC4zMzMgMTUwLjI0OCA0NTAuNzg4IDExNy4xMDFDNDgzLjE3NSAxNjcuODE4IDQ5NS4zMTQgMjI4Ljg3NiA0ODQuODA4IDI4OC4yMTdDNDY3LjE1NCAzMDEuMDY4IDQ0OC4zNDUgMzEyLjI1MSA0MjguNjI0IDMyMS42MjNDNDE1LjUzMyAzNDIuOTY0IDM5OS42OTkgMzYyLjUwNSAzODEuNTMgMzc5Ljc0NkM0MjEuNzg3IDM1Ny42MzggNDU2Ljg2MyAzMjcuMTkgNDg0LjQwMiAyOTAuNDQ5QzQ4My4zMTEgMjk2LjI1NiA0ODEuOTY3IDMwMS45NjYgNDgwLjQ4NiAzMDcuNzJDNDQ4LjQ4IDM0Ni40NzggNDA3Ljk0MiAzNzcuMzI5IDM2Mi4wNTEgMzk3Ljg1M0wzNTguNjg2IDM5OS4zNDZDMzM5LjcwNiA0MTMuOTY2IDMxOS4wNDQgNDI2LjI2IDI5Ny4xNDMgNDM1Ljk2NkMyOTMuODc5IDQzNy40MTUgMjkwLjYxNiA0MzguODYzIDI4Ny4yNiA0NDAuMTQzQzI2MC41MDUgNDUwLjk1MSAyMzIuMzM3IDQ1Ny44NDUgMjAzLjYzMSA0NjAuNjE0QzIyNy42OTMgNDcyLjE2NyAyNTMuMTQ1IDQ4MC41OTMgMjc5LjM2NSA0ODUuNjg4QzI3MS4xNzkgNDg2LjggMjYyLjk0MiA0ODcuNDg5IDI1NC42ODggNDg3Ljc1MkMyNDQuNzgzIDQ4NS4wMzkgMjM0Ljk2NyA0ODEuODU5IDIyNS4yNCA0NzguMjA5QzIzMC4yMDcgNDgxLjU1NCAyMzUuMTI4IDQ4NC43OTYgMjQwLjI3MSA0ODcuODcxQzE5NC43NTUgNDg2LjQ4NiAxNTAuNTgzIDQ3Mi4zMjkgMTEyLjgwOSA0NDcuMDJMMTEyLjg2OSA0NDYuOTU4WiIgZmlsbD0iIzdFOTdDRSIvPgo8L2c+Cjwvc3ZnPgo=);
  position: relative;
  padding-bottom: 50%;
}

[data-layout="desktop"] .news:before {
  content: "";
  position: relative;
}

@media (max-width: 1199px) {
  [data-layout="desktop"] .news {
    background-position: 50% 250px;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  [data-layout="desktop"] .news {
    padding-bottom: 55%;
    background-position: 50% 100px;
  }
}

[data-layout="desktop"] .news__group {
  flex-direction: column;
  width: calc( 30% - 2rem);
  height: calc( 100% - 2rem);
  padding-left: 1rem;
  padding-right: .5rem;
  position: absolute;
  right: 1rem;
  overflow-y: auto;
}

[data-layout="desktop"] .news__group .news__info > .text {
  font-size: 1rem;
}

[data-layout="desktop"] .news__group .news__info .text-time {
  font-size: .8125rem;
}

[data-layout="desktop"] .news__promo {
  flex: 0 0 auto;
  width: 70%;
  position: absolute;
  overflow: hidden;
  transition: .2s ease;
}

[data-layout="desktop"] .news__promo:hover .news__img {
  border-color: var(--news-item-hover-border);
}

[data-layout="desktop"] .news__promo .news__item {
  border-width: 0px;
  background-color: var(--news-promo-main-item-bg);
  background-image: var(--news-promo-main-item-bg, none);
}

[data-layout="desktop"] .news__promo .news__info {
  margin: .5rem 0;
}

[data-layout="desktop"] .news__promo .news__info > .text {
  font-size: 1.25rem;
}

[data-layout="desktop"] .news__promo .news__info .text-time {
  font-size: 1rem;
}

[data-layout="desktop"] .news__promo .news__img {
  border: 1px solid var(--news-promo-img-border);
  border-radius: var(--border-radius);
}

[data-layout="desktop"] .news__item {
  cursor: pointer;
}

[data-layout="desktop"] .news__item:active {
  cursor: auto;
  -webkit-user-select: none;
          user-select: none;
}

[data-layout="desktop"] .news__item:hover .text {
  color: var(--news-item-hover-text);
  transition: all .3s ease-in-out;
}

[data-layout="desktop"] .news__content:nth-child(3) {
  border-right: 0px;
}

.login-form {
  width: 100%;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
}

.login-form[data-open="true"] {
  max-height: 100%;
  padding: 0rem 1.75rem;
  padding-top: 0;
  visibility: visible;
  opacity: 1;
}

.login-form__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.login-form__item[data-disable="true"] {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  pointer-events: none;
}

.login-form__item[data-disable="true"] .text {
  opacity: .5;
}

.login-form__item [class*="text"] + .text {
  margin-left: 0;
}

.login-form__item [class*="text"] .text {
  color: var(--login-verified-text);
}

.login-form__item .textfield {
  flex: 0 0 auto;
  width: 100%;
}

.login-form__item--failed {
  flex-direction: column;
  transition: .2s ease;
}

.login-form__item--failed[data-open="true"] {
  visibility: visible;
}

.login-form__item--failed[data-open="false"] {
  height: 0;
  margin-top: 0;
  padding-top: 0;
  visibility: hidden;
  opacity: 0;
}

.login-form__item + .login-form__item {
  margin-top: 1rem;
}

.login-form--verified[data-open="true"] {
  padding-bottom: 0 !important;
}

.login-form--verified .img {
  margin-right: .5rem;
}

[lang="jp"] .login-form--verified .tooltip {
  min-width: 232px;
}

.login-form .text-void {
  margin: .25rem 0;
  color: red;
}

.login-form .img {
  flex: 0 0 auto;
  display: flex;
}

.login-form .btn--secondary, .login-form .btn--next {
  flex: 1;
  min-height: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.login-form .btn--secondary .text, .login-form .btn--next .text {
  font-size: 1.125rem;
}

.login-form .btn--secondary .text::before, .login-form .btn--next .text::before, .login-form .btn--secondary .text::after, .login-form .btn--next .text::after {
  content: '';
  transform: skewX(70deg);
  opacity: .32;
}

.login-form .btn--refresh[data-refresh="true"] {
  animation: rotate 1s 1;
}

.login-form .textfield__input {
  margin: 0 2.375rem 0 0.75rem;
}

.login-form .textfield .btn--icon {
  position: absolute;
  right: .75rem;
}

.login-form .textfield .btn--refresh {
  margin-right: .75rem;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.login-gesture {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 0;
  padding: 0;
  visibility: hidden;
  opacity: 0;
}

.login-gesture[data-open="true"] {
  max-height: 100%;
  padding: 0rem 1.5rem 1.5rem;
  padding-top: 0;
  visibility: visible;
  opacity: 1;
}

.login-gesture__item {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0;
  background-color: transparent;
}

.login-gesture .dropdown {
  flex: 1;
}

.login-gesture .dropdown__btn {
  padding: .5rem .75rem;
  font-size: 1rem;
  border-width: 0;
}

.login-gesture .dropdown__container {
  right: 0;
}

.login-gesture .dropdown .text + .icon {
  margin-left: auto;
}

.login-gesture .dropdown .icon {
  padding: 0 0.5rem;
}

.login-gesture .mhn-lock {
  margin-top: .25rem;
}

.login-gesture .mhn-lock-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.login-gesture .mhn-lock-wrap .mhn-lock-success {
  flex: 1;
  color: rgba(75, 174, 79, 0.8);
}

.login-gesture .panel-heading {
  min-height: 0;
  padding: 0;
  font-size: 1rem;
  text-align: center;
}

.login-gesture .mhn-lock-title {
  color: var(--login-mhn-lock-title);
}

.login-gesture .mhn-lock-title::before {
  content: ' ';
  display: flex;
  margin-top: 1rem;
}

[data-layout="mobile"] .login-gesture[data-open="true"] {
  padding: 1rem 1rem;
}

.login-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: var(--login-switch-bg);
  border-top-right-radius: .375rem;
  position: absolute;
  top: -2rem;
  right: 0;
}

.login-switch[data-mode="gesture-password"] .btn .icon--gesture-password {
  opacity: 0;
  visibility: hidden;
}

.login-switch[data-mode="gesture-password"] .btn .icon--keypad {
  opacity: 1;
  visibility: visible;
}

.login-switch .btn {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  margin: -.375rem -.375rem 0 0;
  position: relative;
}

.login-switch .btn .icon {
  font-size: 46px;
  color: var(--login-switch-btn-icon);
  position: absolute;
}

.login-switch .btn .icon--keypad {
  opacity: 0;
  visibility: hidden;
}

.login-switch .btn .icon--gesture-password {
  opacity: 1;
  visibility: visible;
}

.login-switch .btn .icon + .icon {
  margin-left: 0;
}

.modal .tooltip[data-open="false"] {
  visibility: hidden;
}

.modal .tooltip[data-open="true"] {
  visibility: visible;
}

.modal .tooltip--top-right {
  flex: 0 0 auto;
  flex-direction: column;
}

.modal .tooltip--top-right .text + .text {
  margin-left: 0;
}

.modal .tooltip--top-right .text .btn--icon {
  padding: .125rem;
  margin: auto .25rem;
  color: var(--login-switch-btn-icon);
  background-color: var(--login-switch-bg);
  position: relative;
  top: .25rem;
}

.modal .tooltip--top-right .icon--cancel {
  color: var(--black-opacity-3);
}

.modal .tooltip--top-right > .btn--icon {
  position: absolute;
  right: .25rem;
  top: .25rem;
}

.modal .tooltip .btn--icon {
  width: auto;
  height: auto;
  min-width: auto;
  min-height: auto;
}

.modal .tooltip > .btn--icon {
  padding: 0;
  color: var(--tooltip-close);
  background-color: transparent;
}

.promotions {
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  [data-layout="desktop"] .promotions {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.promotions__swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.promotions__swiper-pagination.swiper-pagination-bullets {
  position: relative;
  bottom: 0 !important;
}

.promotions__swiper-button-prev {
  left: 0;
}

.promotions__swiper-button-next {
  right: 0;
}

.promotions .swiper {
  max-width: 1366px;
  width: 100%;
  overflow: hidden;
}

.promotions.swiper-container-3d .swiper-slide-shadow-right, .promotions.swiper-container-3d .swiper-slide-shadow-left {
  background-image: none;
}

.promotions .swiper-slide {
  max-width: 950px !important;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  .promotions .swiper-slide {
    max-width: 100% !important;
  }
}

.promotions .swiper-slide img {
  display: block;
  width: 100%;
  border-radius: var(--border-radius);
}

.promotions .swiper-slide.swiper-slide-active:after {
  content: '';
  position: absolute;
  top: .25rem;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin-bottom: -10px;
  border-radius: var(--border-radius);
  background-image: var(--promotion-swiper-slide-active-gradient-border);
  background-color: var(--promotion-swiper-slide-active-gradient-border);
}

.promotions .swiper__item {
  cursor: grab;
}

.promotions .swiper-slide-active img {
  border-width: 1px;
  border-color: var(--promotion-swiper-active-img-border);
  border-style: solid;
}

.promotions [class*="swiper-button-"] {
  display: flex;
  align-items: center;
  height: calc( 100% - 2.5rem);
  font-size: 1.5rem;
  color: var(--promotion-swiper-button);
  position: absolute;
  background-image: none;
  top: 0;
  bottom: 0;
  z-index: 1;
  cursor: pointer;
}

.promotions [class*="swiper-button-"] .icon {
  font-size: 2rem;
  text-shadow: var(--box-shadow);
}

.promotions .swiper-pagination-bullet {
  width: .625rem;
  height: .625rem;
  border-radius: var(--border-radius);
  background-color: var(--promotion-swiper-pagination-bullet-bg);
}

.promotions .swiper-pagination-bullet-active {
  position: relative;
  background-image: var(--promotion-swiper-bullet-active-bg);
}

.promotions .swiper-pagination-bullet-active:after {
  content: '';
  display: flex;
  margin: auto;
  border-radius: 100%;
  border: 2px solid var(--promotion-swiper-pagination-bullet-active-after-bg);
  position: absolute;
  right: 0;
  left: 0;
  top: 0rem;
  bottom: 0;
}

[data-layout="desktop"] .promotions {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: calc( 1366px + 4.5rem);
  margin: auto;
  top: -3rem;
  z-index: 1;
}

@media (min-width: 769px) and (max-width: 1023px) {
  [data-layout="desktop"] .promotions {
    top: -.75rem;
    margin: 0 .75rem;
  }
}

[data-layout="desktop"] .promotions__swiper-pagination.swiper-pagination-bullets {
  margin-top: 1.5rem;
}

[data-layout="desktop"] .promotions__swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: auto 1rem;
}

[data-layout="desktop"] .promotions .swiper-wrapper {
  max-width: calc( 1366px + 4rem);
}

[data-layout="desktop"] .promotions .swiper__item {
  min-height: 10rem;
}

[data-layout="desktop"] .promotions .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: .5rem  1rem;
}

[data-layout="desktop"] .promotions .swiper-pagination-bullet-active {
  width: 1rem;
  height: 1rem;
}

[data-layout="desktop"] .promotions .swiper-pagination-bullet-active:after {
  width: .75rem;
  height: .75rem;
}

[data-layout="mobile"] .promotions {
  margin-right: 1rem;
  margin-left: 1rem;
  margin-bottom: .5rem;
}

[data-layout="mobile"] .promotions .swiper__item {
  min-height: 10rem;
}

@media (max-width: 414px) {
  [data-layout="mobile"] .promotions .swiper__item {
    min-height: 7rem;
  }
}

[data-layout="mobile"] .promotions__swiper-pagination.swiper-pagination-bullets {
  margin-bottom: .5rem;
  margin-top: .5rem;
}

[data-layout="mobile"] .promotions__swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: .5rem;
}

[data-layout="mobile"] .promotions .swiper-slide-active:after {
  margin-bottom: -5px;
}

[data-layout="mobile"] .promotions .swiper-pagination-bullet-active {
  width: .625rem;
  height: .625rem;
}

[data-layout="mobile"] .promotions .swiper-pagination-bullet-active:after {
  width: .5rem;
  height: .5rem;
}

.provider .swiper {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.provider .swiper-wrapper {
  align-items: center;
  opacity: .5;
}

.provider .swiper-slide {
  display: flex;
  align-items: center;
  width: auto;
  margin: auto .5rem;
}

.provider .swiper__item {
  padding: 0 .5rem;
}

[data-layout="mobile"] .provider .swiper__item img {
  max-width: 70px;
}

[data-layout="desktop"] .provider .swiper__item img {
  max-width: 100px;
}

.sports {
  display: flex;
  flex-direction: column;
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  [data-layout="desktop"] .sports {
    padding: 0 1rem;
  }
}

.sports__banner .swiper-slide {
  width: 100% !important;
  opacity: 0 !important;
}

.sports__banner .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.sports__banner .swiper__text-group {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  position: absolute;
}

.sports__banner .swiper__text-group .title {
  font-weight: 900;
  position: relative;
}

.sports__banner .swiper__text-group .title:before, .sports__banner .swiper__text-group .title:after {
  content: attr(data-text);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.sports__banner .swiper__text-group .title::before {
  position: absolute;
}

.sports__banner .swiper__text-group .text {
  font-size: 1.25rem;
  font-weight: 400;
}

.sports__banner .swiper__item {
  display: flex;
  width: 100%;
  position: absolute;
  cursor: pointer;
}

.sports__banner picture {
  flex: 1;
}

[data-layout="mobile"] .sports__banner .swiper {
  background-image: var(--sports-banner-swiper-bg);
}

[data-layout="mobile"] .sports__banner .swiper-slide {
  padding-bottom: 91%;
}

[data-layout="mobile"] .sports__banner .swiper__text-group {
  width: 100%;
  max-width: 100%;
  padding: 1rem;
  color: var(--white);
  background-image: var(--sports-banner-swiper-text-group-bg);
  bottom: 0;
}

[data-layout="mobile"] .sports__banner .swiper__text-group .title {
  font-size: 1.375rem;
}

[data-layout="mobile"] .sports__banner .swiper__text-group .title::after {
  background-color: var(--sports-banner-swiper-text-group-title-after-bg);
}

[data-layout="mobile"] .sports__banner .swiper__text-group .text {
  font-size: 1rem;
  line-height: 1.125rem;
}

[data-layout="desktop"] .sports__banner .swiper-slide {
  padding-bottom: 36%;
}

[data-layout="desktop"] .sports__banner .swiper__text-group {
  font-size: 3rem;
  top: 0;
  bottom: 0;
  transform: translateY(30%);
}

@media (max-width: 1199px) {
  [data-layout="desktop"] .sports__banner .swiper__text-group {
    padding: 0 .75rem;
    transform: translateY(20%);
  }
}

@media (min-width: 1024px) {
  [lang="mm"] [data-layout="desktop"] .sports__banner .swiper__text-group .title {
    min-height: calc( 70px + 0.5rem);
  }
}

@media (max-width: 1199px) {
  [lang="mm"] [data-layout="desktop"] .sports__banner .swiper__text-group .title {
    min-height: calc( 60px + 0.5rem);
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  [lang="mm"] [data-layout="desktop"] .sports__banner .swiper__text-group .title {
    min-height: calc( 50px + 0.5rem);
  }
}

[data-layout="desktop"] .sports__banner .swiper__text-group .title:before {
  display: inline-block;
  top: -3px;
  bottom: 0;
  left: 0;
  right: -3px;
  z-index: 1;
  background-size: contain;
  background-image: var(--sports-banner-swiper-title-gradient-bg);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

[data-layout="desktop"] .sports__banner .swiper__text-group .title:after {
  background-image: var(--sports-banner-swiper-text-gradient-bg);
  background-color: var(--sports-banner-swiper-text-gradient-bg);
}

[data-layout="desktop"] .sports__banner .swiper__text-group .text {
  max-width: 330px;
}

@media (max-width: 1199px) {
  [data-layout="desktop"] .sports__banner .swiper__text-group .title {
    margin-bottom: .25rem;
    font-size: 2.5rem;
  }
  [data-layout="desktop"] .sports__banner .swiper__text-group .text {
    font-size: 1rem;
    max-width: 55%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  [data-layout="desktop"] .sports__banner .swiper__text-group .title {
    font-size: 2.25rem;
  }
  [data-layout="desktop"] .sports__banner .swiper__text-group .text {
    line-height: 1.375rem;
  }
}

@media (max-width: 1199px) {
  [data-layout="desktop"] .sports__banner .swiper__item {
    margin-top: 70px;
    top: -50px;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  [data-layout="desktop"] .sports__banner .swiper__item {
    margin-top: 80px;
  }
}

[data-layout="desktop"] .sports__banner .swiper-slide-active .swiper__text-group {
  animation: fadeInUp 1s 1 ease-in-out;
}

.sports__bullets {
  display: flex;
  align-items: center;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
}

.sports__bullets .swiper {
  flex: 1;
  margin-right: auto;
  overflow: visible;
}

.sports__bullets .swiper-wrapper {
  transform: translate3d(0px, 0, 0) !important;
}

.sports__bullets .swiper-slide {
  width: auto !important;
}

.sports__bullets .swiper-slide-thumb-active .icon--gradient-primary {
  background-image: var(--sports-bullets-swiper-slide-thumb-active-icon-gradient-primary-bg);
}

.sports__bullets .swiper-slide-thumb-active .icon--gradient-primary:hover {
  background-image: var(--sports-bullets-swiper-slide-thumb-active-icon-gradient-primary-hover-bg);
}

.sports__bullets .swiper-slide-thumb-active .icon--gradient-primary::before {
  background-image: var(--sports-bullets-swiper-slide-thumb-active-icon-gradient-primary-before-bg);
}

.sports__bullets .swiper-slide-thumb-active .icon--gradient-primary::after {
  background-image: var(--sports-bullets-swiper-slide-thumb-active-icon-gradient-primary-after-bg);
}

.sports__bullets [class*="swiper__item"] {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
}

.sports__bullets [class*="swiper__item"]::after, .sports__bullets [class*="swiper__item"]::before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 100%;
}

.sports__bullets .btn--saba-score {
  flex: 0 0 auto;
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
}

.sports__bullets .btn--saba-score .text {
  white-space: nowrap;
}

.sports__bullets .btn--saba-score .text + .icon {
  margin-left: .25rem;
}

.sports__bullets .btn--saba-score:hover:before {
  content: "";
  height: 100%;
  width: 30px;
  display: inline-block;
  position: absolute;
  left: -50%;
  z-index: 0;
  transform: skewX(40deg);
  background-color: var(--sports-bullets-btn-saba-hover-before-bg);
  animation: btnSkew 2s 1;
}

@keyframes btnSkew {
  0% {
    left: -50%;
  }
  48% {
    left: 150%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: -50%;
  }
}

[data-layout="desktop"] .sports__bullets {
  bottom: 5rem;
}

@media (min-width: 1024px) {
  [data-layout="desktop"] .sports__bullets {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 1199px) {
  [data-layout="desktop"] .sports__bullets {
    bottom: 4rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  [data-layout="desktop"] .sports__bullets {
    bottom: 2rem;
    padding: 0 .75rem;
  }
}

[data-layout="desktop"] .sports__bullets .swiper__item {
  transition: .2s ease;
}

[data-layout="desktop"] .sports__bullets .swiper-slide {
  margin: 0 .5rem;
}

[data-layout="desktop"] .sports__bullets .swiper-slide .icon {
  font-size: 1.75rem;
}

[data-layout="desktop"] .sports__bullets .swiper-slide-thumb-active .icon--gradient-primary {
  background-image: var(--sports-bullets-swiper-slide-thumb-active-icon-gradient-primary-bg);
}

[data-layout="desktop"] .sports__bullets .swiper-slide-thumb-active .icon--gradient-primary:hover {
  background-image: var(--sports-bullets-swiper-slide-thumb-active-icon-gradient-hover-bg);
}

[data-layout="desktop"] .sports__bullets .swiper-slide-thumb-active .icon {
  font-size: 2rem;
}

[data-layout="desktop"] .sports__bullets .icon--gradient-primary:hover {
  background-image: var(--sports-bullets-icon-gradient-primary-hover-bg);
}

[data-layout="desktop"] .sports__bullets .btn--saba-score {
  padding-left: .75rem;
}

[data-layout="mobile"] .sports__bullets {
  padding: 1rem .5rem;
  position: relative;
  bottom: 0;
}

[data-layout="mobile"] .sports__bullets .swiper-slide {
  margin-left: .125rem;
  margin-right: .125rem;
}

@media screen and (max-width: 360px) {
  [data-layout="mobile"] .sports__bullets .swiper-slide {
    margin-left: 0;
    margin-right: 0;
  }
}

[data-layout="mobile"] .sports__bullets .swiper-slide.swiper-slide-thumb-active:before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  border-radius: 3px;
  background-color: var(--sports-banner-swiper-slide-thumb-active-before-bg);
  -webkit-mask-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4zLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i5ZyW5bGkXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMjUwIDE2Ny4xIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNTAgMTY3LjE7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtzdHJva2U6IzAwMDAwMDtzdHJva2Utd2lkdGg6MC43NTtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTExMi42LDE2LjdMNy4zLDEzNy41Yy02LjYsNy41LDAuNCwxNy43LDEyLjIsMTcuN0gyMzBjMTEuOCwwLDE4LjgtMTAuMSwxMi4yLTE3LjdMMTM3LDE2LjcNCglDMTMxLjIsMTAsMTE4LjQsMTAsMTEyLjYsMTYuN3oiLz4NCjwvc3ZnPg0K");
          mask-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4zLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i5ZyW5bGkXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMjUwIDE2Ny4xIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNTAgMTY3LjE7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtzdHJva2U6IzAwMDAwMDtzdHJva2Utd2lkdGg6MC43NTtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTExMi42LDE2LjdMNy4zLDEzNy41Yy02LjYsNy41LDAuNCwxNy43LDEyLjIsMTcuN0gyMzBjMTEuOCwwLDE4LjgtMTAuMSwxMi4yLTE3LjdMMTM3LDE2LjcNCglDMTMxLjIsMTAsMTE4LjQsMTAsMTEyLjYsMTYuN3oiLz4NCjwvc3ZnPg0K");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  z-index: 1;
  transform: rotate(180deg);
}

[data-layout="mobile"] .sports__bullets .icon {
  font-size: 1.25rem;
}

[data-layout="mobile"] .sports__bullets .btn--saba-score .text + .icon {
  margin-left: 0;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(30%);
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.gesturePwdPanel .content-scroller {
  padding-top: .5rem;
  padding-bottom: .5rem !important;
}

.gesturePwdPanel .panel {
  margin: 0 .5rem;
  min-height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.gesturePwdPanel .panel .panel-heading {
  min-height: 70px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.gesturePwdPanel .panel .panel-body {
  padding-top: 0;
  padding-bottom: 0;
}

.gesturePwdPanel .panel .panel-footer {
  color: inherit;
}

.gesturePwdPanel .panel .panel-footer.panel-success {
  display: none;
}

.gesturePwdPanel .panel .panel-footer > div {
  padding-left: 0;
  padding-right: 0;
}

.gesturePwdPanel .panel .btn-skip {
  display: none;
}

.gesturePwdPanel .box {
  width: 100%;
}

.gesturePwdPanel .box .box-flex:first-child {
  vertical-align: top;
}

.gesturePwdPanel .box .box-flex:last-child {
  vertical-align: bottom;
}

.gesturePwdPanel.setFirst .btn-skip {
  display: block;
  text-align: right;
}

.gesturePwdPanel.setSuccess .main-bar {
  padding-left: .5rem;
}

.gesturePwdPanel.setSuccess .main-bar > .btn {
  display: block;
}

.gesturePwdPanel.setSuccess .panel-footer.panel-note {
  display: none;
}

.gesturePwdPanel.setSuccess .panel-footer.panel-success {
  display: block;
}

.gesturePwdPanel .loading {
  bottom: 0;
}

.dialogPanel .modal-dialog .modal-footer .col-xs-12.col-sm-12 + .col-xs-12.col-sm-12 {
  padding-top: .625rem;
}

.dialogPanel .modal-dialog .modal-footer .col-xs-12.col-sm-12 + .col-xs-12.col-sm-12 .title {
  text-align: left;
}

.dialogPanel .modal-dialog .modal-footer .col-xs-6.col-sm-6:first-child {
  padding-left: 0;
  padding-right: 5px;
}

.dialogPanel .modal-dialog .modal-footer .col-xs-6.col-sm-6:last-child {
  padding-left: 5px;
  padding-right: 0;
}

.img-gesturePassword {
  display: block;
  height: 100px;
  background-size: contain;
  background-position: center;
}

.img-depositPromo {
  display: block;
  height: 200px;
  background-size: contain;
  background-position: center;
}

.deposit-descript h1 {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
  margin: 5px 14px 0 14px;
  line-height: 1.2em;
}

.deposit-descript p {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.54);
  margin: 0 14px;
}

.patt-holder {
  background: #3382c0;
}

.patt-wrap {
  position: relative;
  cursor: pointer;
}

.patt-wrap li,
.patt-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.patt-circ {
  position: relative;
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.patt-error .patt-circ.hovered {
  border: 3px solid #ba1b26;
}

.patt-hidden .patt-circ.hovered {
  border: 0;
}

.patt-dots,
.patt-lines {
  border-radius: 10px;
  height: 10px;
  position: absolute;
}

.patt-dots {
  width: 10px;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -5px;
}

.patt-lines {
  transform-origin: 5px 5px;
  -ms-transform-origin: 5px 5px;
  -webkit-transform-origin: 5px 5px;
}

.patt-hidden .patt-lines {
  display: none;
}

.mhn-ui-date-time,
.text-center {
  text-align: center;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.clearfix:after,
.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  display: block;
}

.mhn-lock-wrap .mhn-lock-title {
  text-align: center;
  line-height: 1.2em;
}

.mhn-lock-title:empty {
  display: none;
}

.mhn-lock-wrap .mhn-lock-success {
  color: transparent;
  text-shadow: none;
}

.mhn-lock-wrap .mhn-lock-failure {
  color: #FF2B2B;
}

.mhn-lock {
  margin: auto;
  margin-top: -15px;
  margin-bottom: -15px;
  background: 0 0;
}

.patt-wrap {
  margin: auto;
  overflow: hidden;
}

.patt-wrap li {
  transition: all 0.4s ease-in-out 0s;
}

.patt-dots,
.patt-lines {
  transition: background 0.1s ease-in-out 0s;
}

.patt-circ {
  border: 1px solid var(--grey-300);
}

.patt-dots {
  background-color: var(--grey-200);
}

.patt-lines {
  background-color: var(--patt-lines-bg, var(--primary-200));
  opacity: var(--patt-lines-opacity, 0.4);
}

.patt-circ.hovered {
  border-color: var(--patt-circ-hover-border);
  background-color: var(--patt-circ-hover-bg);
}

.patt-circ.hovered .patt-dots {
  background-color: var(--primary-400);
}

.patt-error .patt-circ.hovered {
  background: #fcd2cf;
  border: 1px solid #fcd2cf;
}

.patt-error .patt-circ.hovered .patt-dots {
  background: #f54a3d;
}

.patt-error .patt-lines {
  background: rgba(245, 74, 61, 0.4);
}

.patt-success .patt-circ.hovered {
  background: rgba(75, 174, 79, 0.4);
  border-color: rgba(75, 174, 79, 0.4);
}

.patt-success .patt-circ.hovered .patt-dots {
  background: rgba(75, 174, 79, 0.8);
}

.patt-success .patt-lines {
  background: rgba(75, 174, 79, 0.4);
}

.empty__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  margin: auto;
  position: relative;
}

.empty--no-event .img {
  position: relative;
}

.empty--no-event .img:nth-child(1)::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--empty-no-event-img-first-bg);
  -webkit-mask-size: 400px;
          mask-size: 400px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  mix-blend-mode: overlay;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOTkuNTIgMjMyLjExIj48ZyBpZD0i5ZyW5bGkXzIiIGRhdGEtbmFtZT0i5ZyW5bGkIDIiPjxnIGlkPSLlnJblsaRfMi0yIiBkYXRhLW5hbWU9IuWcluWxpCAyIj48cGF0aCBkPSJNMjM5LjgsMTA4LjQyYy4wNi0uMTQsNC4yOS05LjY5LDguMTktMTksMi41OCwxLjU4LDExLjQsNi41NiwxMS40Ny44MS4wOC03LjE5LTcuOTUtMy41NS0xMS0xLjkxLDEuNjktNCwzLjI4LTgsNC40MS0xMSwuNS0xLjMzLDEtMi42MiwxLjUtMy44OCwzLjQ4LDEuODEsMTcuOCw4LjcsMTcuMzksMC0uNTQtMTAuOTEtMTIuODYtMy44Ni0xNi44OS0xLjI2YTE1MC4zNiwxNTAuMzYsMCwwLDEsOC4zOC0xNy41N2MyLjM1LDEuNDUsMTEuNTcsNi43OSwxMS42NC45MS4wOC03LjI0LTguMDgtMy41LTExLjA5LTEuODdBODUuMTYsODUuMTYsMCwwLDEsMjcxLjA1LDQzYzIuNDktMS4zMSwxOC41Mi0xMCwxMi4zMy0xNS03LjI1LTUuODItMTEuMTIsOC4xMS0xMi4yNywxMy4yOGE3OS44NSw3OS44NSwwLDAsMC03LjU2LDEwLjg5Yy0uMTMtNC40My0uODctMTMuMTMtNC42OC0xMC4yNC01LjQxLDQuMDksMS4wOSw5LjksMy43LDExLjkzYTE1Mi42OCwxNTIuNjgsMCwwLDAtOC40OSwxNy44Yy0uMzQtNC42OS0xLjc5LTE4LjI0LTYuODQtMTMuODMtNyw2LjE2LDMuNjksMTMuMzksNi4zNiwxNS0uNTMsMS4zMy0xLjA2LDIuNzEtMS42LDQuMTMtMSwyLjY5LTIuMzgsNi4xMi0zLjg3LDkuNzEtLjE0LTQuNDYtLjktMTIuOTUtNC42Ny0xMC4wOS01LjUyLDQuMTgsMS4zNiwxMC4xNCwzLjg2LDEyLTMuOTQsOS40LTguMjgsMTkuMi04LjM0LDE5LjM0WiIvPjxwYXRoIGQ9Ik0yOTkuNSwxNzNzMS0xMy0xNS41MS0yM2MwLDAtNy01LjI0LTIzLTEwLjlsLS4yMy0uMDgtMS4zNS0uNDgtMS4xNC0uMzktLjE4LS4wNnEtNC0xLjM1LTguMzMtMi42bC0yLjU4LS42OWMyMy03LjY5LDU2LjU0LTIzLjUyLDQ5LjUyLTM2LjQ5YTI1LjgzLDI1LjgzLDAsMCwwLTQuNDYtNi4xMmMtNy4yMSwyLjkzLTIwLjUyLDEwLTM5LjksMjYuNTQtNi4yNCw1LjM2LTExLjQxLDkuNzktMTUuNjgsMTMuNDRsLTEuMzgtLjMxLDE2LjMxLTE0QzI3MC44MSwxMDEuNSwyODQsOTQuMzMsMjkxLjM2LDkxLjMzYy0xOC40MS0xNi00OS43MSwyMi02MC41LDM5LjU4cS0xMi42OS0yLjY2LTI1LjU3LTQuMjMtMTMuMjItMS42NC0yNi41Mi0yLjQ1Yy0xOC40Ni0yMC40NS05LjA4LTU0LjA3LTkuMDgtNTQuMDcsNi44My0zMC4zNCwzLjYtNDAuODEsMy42LTQwLjgxQzE2OS4zMSw5LjI5LDE0NS45MSwwLDE0NS45MSwwYy01LS40Ni00MS40Miw1Ljc2LTQxLjQsNS43OUM1OSwxMi41MSw0NywxNiw0NywxNiwyOC41NywyMy42MiwzNC40Myw0MywzNC40Myw0M2MtLjA3LS42MS0uMTEtMS4xOS0uMTYtMS43OCwzLjcxLDIxLjExLDI2LDE3LjQ1LDI2LDE3LjQ1bDIwLjUxLTUuNTVhODYuMjMsODYuMjMsMCwwLDEtMiwzMC41LDExNy4zOCwxMTcuMzgsMCwwLDAtMywyNy42OEM2My41OCw4Ni40OSw0Mi44Myw1Ni44OSwyNCw2OC42OCwzMS42NCw3NCw0NSw4NS41NSw2My4xNiwxMDkuNjJMNjQuOTQsMTEyYy0uNjYsMC0xLjMyLDAtMiwuMDVMNjIsMTEwLjc5Yy0xOC40NS0yNC4zOC0zMi0zNS44Ni0zOS41OC00MWEzMC43MiwzMC43MiwwLDAsMC02LjM3LDYuMzZjLTYsNy44OSwyLjI4LDE5Ljc1LDE1LDMxLjItMTEuODgtNS43OS0yMy44NC03LjM4LTI5LjIyLDQsNi44LDIuMSwyMS41LDYuNjgsMzYuMTYsMTEuNTktLjIzLjItLjQ3LjQzLS43My42OS0xNC41Mi01LTI5LTkuNi0zNS42Ni0xMS43MS0uMjIuNTQtLjQzLDEuMDktLjYyLDEuNjgtNC4yMywxMi44OSwxMi4xNCwxOC4zNCwyOSwyMC4xNGEzNi4zNCwzNi4zNCwwLDAsMC0zLjksMTAuODNjLTIuMjcsMS4wNi00LjQyLDIuMTYtNi40MywzLjI4QzEwLjQzLDE1Myw0LDE1OC45MSwxLjQzLDE2NS4yYy0uMTYuMzgtLjI5Ljc1LS40MiwxLjEzSDFjLTEuMjksMi43LTEuMDgsNi40OC0uOCw4LjcyaDBsMCwuMTNjMCwuMDYsMCwuMTIsMCwuMTguMTQsMSwuNjEsNC42OC44Niw3LjM5LDAsMCwuMjksNC4yNCwxLjM3LDYuNDdhMjkuMTEsMjkuMTEsMCwwLDAsOCwxMC42N3MxMCwxMC42MywzOC45NSwxOS4zOWMwLDAsMjAuMzQsNy4wOSw1NywxMC44MywwLDAsMzIuNTksNCw3Ny40Mi43LDAsMCw0MS4yOS0yLjMzLDc0LjA2LTE0LjI1LDAsMCwzMi45NC0xMC4zOSwzOS4zNy0yOC4yMywwLDAsMS4xMS0yLjA2LDEuMy03LjA4YTM0Ljg5LDM0Ljg5LDAsMCwxLC40MS00LjRBMTMsMTMsMCwwLDAsMjk5LjUsMTczWiIvPjwvZz48L2c+PC9zdmc+);
          mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOTkuNTIgMjMyLjExIj48ZyBpZD0i5ZyW5bGkXzIiIGRhdGEtbmFtZT0i5ZyW5bGkIDIiPjxnIGlkPSLlnJblsaRfMi0yIiBkYXRhLW5hbWU9IuWcluWxpCAyIj48cGF0aCBkPSJNMjM5LjgsMTA4LjQyYy4wNi0uMTQsNC4yOS05LjY5LDguMTktMTksMi41OCwxLjU4LDExLjQsNi41NiwxMS40Ny44MS4wOC03LjE5LTcuOTUtMy41NS0xMS0xLjkxLDEuNjktNCwzLjI4LTgsNC40MS0xMSwuNS0xLjMzLDEtMi42MiwxLjUtMy44OCwzLjQ4LDEuODEsMTcuOCw4LjcsMTcuMzksMC0uNTQtMTAuOTEtMTIuODYtMy44Ni0xNi44OS0xLjI2YTE1MC4zNiwxNTAuMzYsMCwwLDEsOC4zOC0xNy41N2MyLjM1LDEuNDUsMTEuNTcsNi43OSwxMS42NC45MS4wOC03LjI0LTguMDgtMy41LTExLjA5LTEuODdBODUuMTYsODUuMTYsMCwwLDEsMjcxLjA1LDQzYzIuNDktMS4zMSwxOC41Mi0xMCwxMi4zMy0xNS03LjI1LTUuODItMTEuMTIsOC4xMS0xMi4yNywxMy4yOGE3OS44NSw3OS44NSwwLDAsMC03LjU2LDEwLjg5Yy0uMTMtNC40My0uODctMTMuMTMtNC42OC0xMC4yNC01LjQxLDQuMDksMS4wOSw5LjksMy43LDExLjkzYTE1Mi42OCwxNTIuNjgsMCwwLDAtOC40OSwxNy44Yy0uMzQtNC42OS0xLjc5LTE4LjI0LTYuODQtMTMuODMtNyw2LjE2LDMuNjksMTMuMzksNi4zNiwxNS0uNTMsMS4zMy0xLjA2LDIuNzEtMS42LDQuMTMtMSwyLjY5LTIuMzgsNi4xMi0zLjg3LDkuNzEtLjE0LTQuNDYtLjktMTIuOTUtNC42Ny0xMC4wOS01LjUyLDQuMTgsMS4zNiwxMC4xNCwzLjg2LDEyLTMuOTQsOS40LTguMjgsMTkuMi04LjM0LDE5LjM0WiIvPjxwYXRoIGQ9Ik0yOTkuNSwxNzNzMS0xMy0xNS41MS0yM2MwLDAtNy01LjI0LTIzLTEwLjlsLS4yMy0uMDgtMS4zNS0uNDgtMS4xNC0uMzktLjE4LS4wNnEtNC0xLjM1LTguMzMtMi42bC0yLjU4LS42OWMyMy03LjY5LDU2LjU0LTIzLjUyLDQ5LjUyLTM2LjQ5YTI1LjgzLDI1LjgzLDAsMCwwLTQuNDYtNi4xMmMtNy4yMSwyLjkzLTIwLjUyLDEwLTM5LjksMjYuNTQtNi4yNCw1LjM2LTExLjQxLDkuNzktMTUuNjgsMTMuNDRsLTEuMzgtLjMxLDE2LjMxLTE0QzI3MC44MSwxMDEuNSwyODQsOTQuMzMsMjkxLjM2LDkxLjMzYy0xOC40MS0xNi00OS43MSwyMi02MC41LDM5LjU4cS0xMi42OS0yLjY2LTI1LjU3LTQuMjMtMTMuMjItMS42NC0yNi41Mi0yLjQ1Yy0xOC40Ni0yMC40NS05LjA4LTU0LjA3LTkuMDgtNTQuMDcsNi44My0zMC4zNCwzLjYtNDAuODEsMy42LTQwLjgxQzE2OS4zMSw5LjI5LDE0NS45MSwwLDE0NS45MSwwYy01LS40Ni00MS40Miw1Ljc2LTQxLjQsNS43OUM1OSwxMi41MSw0NywxNiw0NywxNiwyOC41NywyMy42MiwzNC40Myw0MywzNC40Myw0M2MtLjA3LS42MS0uMTEtMS4xOS0uMTYtMS43OCwzLjcxLDIxLjExLDI2LDE3LjQ1LDI2LDE3LjQ1bDIwLjUxLTUuNTVhODYuMjMsODYuMjMsMCwwLDEtMiwzMC41LDExNy4zOCwxMTcuMzgsMCwwLDAtMywyNy42OEM2My41OCw4Ni40OSw0Mi44Myw1Ni44OSwyNCw2OC42OCwzMS42NCw3NCw0NSw4NS41NSw2My4xNiwxMDkuNjJMNjQuOTQsMTEyYy0uNjYsMC0xLjMyLDAtMiwuMDVMNjIsMTEwLjc5Yy0xOC40NS0yNC4zOC0zMi0zNS44Ni0zOS41OC00MWEzMC43MiwzMC43MiwwLDAsMC02LjM3LDYuMzZjLTYsNy44OSwyLjI4LDE5Ljc1LDE1LDMxLjItMTEuODgtNS43OS0yMy44NC03LjM4LTI5LjIyLDQsNi44LDIuMSwyMS41LDYuNjgsMzYuMTYsMTEuNTktLjIzLjItLjQ3LjQzLS43My42OS0xNC41Mi01LTI5LTkuNi0zNS42Ni0xMS43MS0uMjIuNTQtLjQzLDEuMDktLjYyLDEuNjgtNC4yMywxMi44OSwxMi4xNCwxOC4zNCwyOSwyMC4xNGEzNi4zNCwzNi4zNCwwLDAsMC0zLjksMTAuODNjLTIuMjcsMS4wNi00LjQyLDIuMTYtNi40MywzLjI4QzEwLjQzLDE1Myw0LDE1OC45MSwxLjQzLDE2NS4yYy0uMTYuMzgtLjI5Ljc1LS40MiwxLjEzSDFjLTEuMjksMi43LTEuMDgsNi40OC0uOCw4LjcyaDBsMCwuMTNjMCwuMDYsMCwuMTIsMCwuMTguMTQsMSwuNjEsNC42OC44Niw3LjM5LDAsMCwuMjksNC4yNCwxLjM3LDYuNDdhMjkuMTEsMjkuMTEsMCwwLDAsOCwxMC42N3MxMCwxMC42MywzOC45NSwxOS4zOWMwLDAsMjAuMzQsNy4wOSw1NywxMC44MywwLDAsMzIuNTksNCw3Ny40Mi43LDAsMCw0MS4yOS0yLjMzLDc0LjA2LTE0LjI1LDAsMCwzMi45NC0xMC4zOSwzOS4zNy0yOC4yMywwLDAsMS4xMS0yLjA2LDEuMy03LjA4YTM0Ljg5LDM0Ljg5LDAsMCwxLC40MS00LjRBMTMsMTMsMCwwLDAsMjk5LjUsMTczWiIvPjwvZz48L2c+PC9zdmc+);
}

.empty--no-event .img:nth-child(2) {
  position: absolute;
  bottom: 6.5rem;
  right: 0%;
  z-index: 1;
}

.empty--no-event .text:nth-child(3) {
  margin-top: .5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--empty-no-event-text-third-text);
}

.empty--no-event .text:last-child {
  color: var(--empty-no-event-text-last-child);
}

.empty .text {
  text-align: center;
}

.empty .text + .text {
  margin-left: 0;
}

[data-layout="desktop"] .empty {
  padding: 10% 0;
}

[data-layout="mobile"] .empty {
  padding: calc( 15% + 5rem) 5% 15%;
  border-width: 1px;
  border-top-width: 0;
  border-color: var(--empty-mobile-border);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.register-step {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  counter-reset: register-step-counter;
}

[class*="register-step__step"] {
  flex: 0 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  color: var(--register-step-text);
  border-radius: 2em;
  min-height: 1.875rem;
  z-index: 1;
}

[class*="register-step__step"]::before {
  counter-increment: register-step-counter;
  content: counter(register-step-counter);
  flex: 0 0 auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: .5rem;
  padding: 0;
  width: 1.375rem;
  height: 1.375rem;
  color: white;
  background-color: var(--register-step-count-bg);
  border-radius: 50%;
}

[class*="register-step__step"][data-selected="true"] {
  color: var(--register-step-selected-text);
}

[class*="register-step__step"][data-selected="true"]::before {
  background-color: var(--register-step-selected-count-bg);
}

[class*="register-step__step"] .text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.register-step__decorative-line {
  flex: 1;
  display: block;
  margin: 0 .5rem;
  height: 2px;
  background-color: var(--register-step-decorative-line);
  border-radius: 2em;
}

[data-layout="mobile"] [class*="register-step__step"][data-selected="false"] .text {
  display: none;
}

.register-msg {
  --register-msg-icon-title-spacing: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--register-msg-text);
}

.register-msg > .icon {
  font-size: 48px;
}

.register-msg > .icon--successful-circle-fill {
  color: var(--register-msg-success-icon);
}

.register-msg > .icon--warning-triangle-fill {
  color: var(--register-msg-warning-icon);
}

.register-msg > .icon + .text-title {
  margin-top: var(--register-msg-icon-title-spacing);
}

.register-msg > .preloader {
  --preloader-border: var(--secondary-500);
  padding: .375rem;
}

.register-msg > .preloader:first-child .preloader__circle-1::before, .register-msg > .preloader:first-child .preloader__circle-2::before {
  border-width: 4px;
}

.register-msg > .preloader + .text-title {
  margin-top: var(--register-msg-icon-title-spacing);
}

.register-msg .text-title {
  font-size: 1.25rem;
  color: var(--register-msg-text-title);
}

.register-msg .text-title + .text {
  margin-top: .25rem;
  margin-left: 0;
}

.register-msg .text-title + .preloader .preloader__spiner {
  width: 1.125rem;
  height: 1.125rem;
}

.register-msg .text {
  font-size: .875rem;
}

.contact-list {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: .5rem 2rem;
  color: var(--contact-list-text);
  background-color: var(--contact-list-bg);
  width: 100%;
  list-style-type: none;
}

.contact-list__title {
  display: flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 700;
}

.contact-list__title + .contact-list__item {
  margin-left: 1rem;
}

.contact-list__item {
  display: flex;
  align-items: center;
  font-size: .875rem;
  cursor: pointer;
}

.contact-list__item + .contact-list__item {
  margin-left: .75rem;
}

.contact-list .icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--contact-list-icon-bg);
  border-radius: 50%;
  font-size: 1rem;
}

.contact-list .icon--social-line-fill {
  background-color: var(--contact-list-icon-line-bg);
}

.contact-list .icon--social-telegram-fill {
  background-color: var(--contact-list-icon-tg-bg);
}

[data-layout="mobile"] .contact-list__title {
  flex: 0 0 auto;
  justify-content: center;
  margin-bottom: .5rem;
  width: 100%;
}

[data-layout="mobile"] .contact-list__title::after {
  display: none;
}

[data-layout="mobile"] .contact-list__title + .contact-list__item {
  margin-left: 0;
}

[data-layout="mobile"] .contact-list__item .icon--social-line-fill + .text, [data-layout="mobile"] .contact-list__item .icon--social-telegram-fill + .text {
  display: none;
}

[data-layout="desktop"] .contact-list--cash-agent .contact-list__item:has(.icon--phone-fill) {
  cursor: default;
}

.cookie-popup {
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.78);
  color: rgba(255, 255, 255, 0.87);
  padding: 16px;
}

.cookie-popup__title {
  font-size: 16px;
  margin: 0 0 8px;
  font-weight: bold;
}

.cookie-popup__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookie-popup__content > .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  background-color: var(--primary-400);
  background-image: none;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 14px;
}

.cookie-popup__text {
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 12px;
}

[data-layout="desktop"] .cookie-popup {
  bottom: 0;
  border-radius: 0;
  padding: 20px 40px;
  align-items: center;
}

[data-layout="desktop"] .cookie-popup__container {
  max-width: 1200px;
}

[data-layout="desktop"] .cookie-popup__content {
  flex-direction: row;
  align-items: self-start;
}

[data-layout="desktop"] .cookie-popup__content > .btn {
  min-width: 20%;
  max-width: 280px;
  margin-left: 20px;
}

[data-layout="desktop"] .cookie-popup__content > .btn:hover {
  background-color: var(--primary-300);
  background-image: none;
}

[data-layout="desktop"] .cookie-popup__title {
  font-size: 20px;
  margin-bottom: 8px;
}

[data-layout="desktop"] .cookie-popup__text {
  font-size: 16px;
  margin: 0;
}

.header-logo::before {
  background-image: url("../../../nova88/common/images/logo_slogan/logo_dark_en.svg?v=20251010002");
}

[lang="ch"] .header-logo::before, [lang="zh-TW"] .header-logo::before {
  background-image: url("../../../nova88/common/images/logo_slogan/logo_dark_ch.svg?v=20251010002");
}

[lang="cs"] .header-logo::before, [lang="zh-CN"] .header-logo::before, [lang="zh-CHS"] .header-logo::before, [lang="zhcn"] .header-logo::before {
  background-image: url("../../../nova88/common/images/logo_slogan/logo_dark_cs.svg?v=20251010002");
}

[lang="vn"] .header-logo::before, [lang="vi-VN"] .header-logo::before {
  background-image: url("../../../nova88/common/images/logo_slogan/logo_dark_vn.svg?v=20251010002");
}

.logo::before {
  background-image: url("../../../nova88/common/images/logo_slogan/logo_grayscale_en.svg?v=20251010002");
}

[lang="ch"] .logo::before, [lang="zh-TW"] .logo::before {
  background-image: url("../../../nova88/common/images/logo_slogan/logo_grayscale_ch.svg?v=20251010002");
}

[lang="cs"] .logo::before, [lang="zh-CN"] .logo::before, [lang="zh-CHS"] .logo::before, [lang="zhcn"] .logo::before {
  background-image: url("../../../nova88/common/images/logo_slogan/logo_grayscale_cs.svg?v=20251010002");
}

[lang="vn"] .logo::before, [lang="vi-VN"] .logo::before {
  background-image: url("../../../nova88/common/images/logo_slogan/logo_grayscale_vn.svg?v=20251010002");
}

.header-logo, .logo {
  --logo-default-width: 130px;
  --logo-default-height: 56px;
}

[data-layout="desktop"] .header-logo, [data-layout="desktop"] .logo {
  --header-logo-width: var(--logo-default-width);
  --header-logo-height: var(--logo-default-height);
  --footer-logo-width: calc( var(--header-logo-width) * 0.9);
  --footer-logo-height: calc( var(--header-logo-height) * 0.9);
}

[data-layout="mobile"] .header-logo, [data-layout="mobile"] .logo {
  --header-logo-width: calc(var( --logo-default-width) * 0.8);
  --header-logo-height: calc(var( --logo-default-height) * 0.8);
  --footer-logo-width: calc( var(--header-logo-width) * 0.9);
  --footer-logo-height: calc( var(--header-logo-height) * 0.9);
}

@media (max-width: 375px) {
  [data-layout="mobile"] .header-logo, [data-layout="mobile"] .logo {
    --header-logo-width: calc(var( --logo-default-width) * 0.7);
  }
}
