/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
@import url("https://use.typekit.net/mmm5bwt.css");
:root {
  --font-family: helvetica, sans-serif;
  --font-family--heading: var(--font-family);
  --font-weight--thin: 100;
  --font-weight--extra-light: 200;
  --font-weight--light: 300;
  --font-weight--normal: 400;
  --font-weight--medium: 500;
  --font-weight--semi-bold: 600;
  --font-weight--bold: 700;
  --font-weight--extra-bold: 800;
  --font-weight--black: 900;
  --line-height: 1.5;
  --line-height--heading: 1.2;
  --border-radius: 0.1875rem;
  --spacing: 1.5rem;
  --spacing--small: 0.75rem;
  --border-width: 0.0625rem;
  --border: var(--border-width) solid currentColor;
  --focus-outline-width: 0.1875rem;
  --focus-outline-offset: 0.125rem;
  --focus-outline: var(--focus-outline-width) solid #69FFFF;
  --duration: 150ms;
  --timing: ease; }

button,
[type='button'],
[type='reset'],
[type='submit'] {
  appearance: none;
  background-color: #69FFFF;
  border: 0;
  border-radius: var(--border-radius);
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: var(--spacing--small) var(--spacing);
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration) var(--timing);
  user-select: none;
  vertical-align: middle;
  white-space: nowrap; }
  button:hover,
  [type='button']:hover,
  [type='reset']:hover,
  [type='submit']:hover {
    background-color: #69FFFF; }
  button:focus,
  [type='button']:focus,
  [type='reset']:focus,
  [type='submit']:focus {
    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset); }
  button:disabled,
  [type='button']:disabled,
  [type='reset']:disabled,
  [type='submit']:disabled {
    cursor: not-allowed;
    opacity: 0.5; }

:root {
  --form-box-shadow: inset 0 --border-width 0.1875rem rgba(#000, 0.06);
  --form-box-shadow-focus: var(--form-box-shadow), 0 0 0.3125rem #69FFFF; }

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0; }

legend {
  font-weight: 600;
  margin-bottom: var(--spacing--small);
  padding: 0; }

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing--small); }

input,
select,
textarea {
  display: block;
  font-family: var(--font-family);
  font-size: 1rem; }

[type='color'],
[type='date'],
[type='datetime'],
[type='datetime-local'],
[type='email'],
[type='month'],
[type='number'],
[type='password'],
[type='search'],
[type='tel'],
[type='text'],
[type='time'],
[type='url'],
[type='week'],
input:not([type]),
textarea {
  appearance: none;
  background-color: transparent;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--form-box-shadow);
  box-sizing: border-box;
  margin-bottom: var(--spacing--small);
  padding: calc(var(--spacing) / 3);
  transition: border-color var(--duration) var(--timing);
  width: 100%; }
  [type='color']:focus,
  [type='date']:focus,
  [type='datetime']:focus,
  [type='datetime-local']:focus,
  [type='email']:focus,
  [type='month']:focus,
  [type='number']:focus,
  [type='password']:focus,
  [type='search']:focus,
  [type='tel']:focus,
  [type='text']:focus,
  [type='time']:focus,
  [type='url']:focus,
  [type='week']:focus,
  input:not([type]):focus,
  textarea:focus {
    box-shadow: var(--form-box-shadow-focus); }
  [type='color']:disabled,
  [type='date']:disabled,
  [type='datetime']:disabled,
  [type='datetime-local']:disabled,
  [type='email']:disabled,
  [type='month']:disabled,
  [type='number']:disabled,
  [type='password']:disabled,
  [type='search']:disabled,
  [type='tel']:disabled,
  [type='text']:disabled,
  [type='time']:disabled,
  [type='url']:disabled,
  [type='week']:disabled,
  input:not([type]):disabled,
  textarea:disabled {
    cursor: not-allowed; }
    [type='color']:disabled:hover,
    [type='date']:disabled:hover,
    [type='datetime']:disabled:hover,
    [type='datetime-local']:disabled:hover,
    [type='email']:disabled:hover,
    [type='month']:disabled:hover,
    [type='number']:disabled:hover,
    [type='password']:disabled:hover,
    [type='search']:disabled:hover,
    [type='tel']:disabled:hover,
    [type='text']:disabled:hover,
    [type='time']:disabled:hover,
    [type='url']:disabled:hover,
    [type='week']:disabled:hover,
    input:not([type]):disabled:hover,
    textarea:disabled:hover {
      border: var(--border); }
  [type='color']::placeholder,
  [type='date']::placeholder,
  [type='datetime']::placeholder,
  [type='datetime-local']::placeholder,
  [type='email']::placeholder,
  [type='month']::placeholder,
  [type='number']::placeholder,
  [type='password']::placeholder,
  [type='search']::placeholder,
  [type='tel']::placeholder,
  [type='text']::placeholder,
  [type='time']::placeholder,
  [type='url']::placeholder,
  [type='week']::placeholder,
  input:not([type])::placeholder,
  textarea::placeholder {
    color: #333;
    opacity: 0.25; }

[type="search"] {
  -webkit-appearance: textfield; }

textarea {
  resize: vertical; }

[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: var(--spacing--small); }

[type="file"] {
  margin-bottom: var(--spacing--small);
  width: 100%; }

select {
  margin-bottom: var(--spacing--small);
  width: 100%; }

[type="checkbox"]:focus,
[type="radio"]:focus,
[type="file"]:focus,
select:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset); }

html {
  background-color: #fff;
  box-sizing: border-box; }

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

html,
body {
  height: 100%; }

body {
  margin: 0; }

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0; }

dl {
  margin: 0; }

dt {
  font-weight: 600;
  margin: 0; }

dd {
  margin: 0; }

figure {
  margin: 0; }

img,
picture {
  margin: 0;
  max-width: 100%; }

table {
  border-collapse: collapse;
  margin: var(--spacing) 0;
  table-layout: fixed;
  text-align: left;
  width: 100%; }

thead {
  line-height: var(--line-height--heading);
  vertical-align: bottom; }

tbody {
  vertical-align: top; }

tr {
  border-bottom: var(--border); }

th {
  font-weight: 600; }

html {
  color: #333;
  font-family: var(--font-family);
  font-size: 100%;
  line-height: var(--line-height); }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--heading);
  font-size: 1.25em;
  line-height: var(--line-height--heading);
  margin: 0 0 var(--spacing--small); }

p {
  margin: 0 0 var(--spacing--small); }

a {
  color: #69FFFF;
  text-decoration-skip: ink;
  transition: color var(--duration) var(--timing); }
  a:hover {
    color: #69FFFF; }
  a:focus {
    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset); }

hr {
  border-bottom: var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: var(--spacing) 0; }

.wrapper {
  background-color: #080433;
  color: #fff; }
  .wrapper .inner {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px; }
  .wrapper #switch {
    display: flex;
    justify-content: center; }
    .wrapper #switch div {
      border-radius: 30px;
      background: white;
      display: flex; }
      .wrapper #switch div span {
        display: flex;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        align-items: center;
        justify-content: center;
        background: lightgray;
        margin: 4px;
        color: white; }
        .wrapper #switch div span.active {
          background: #69FFFF;
          color: black; }
  .wrapper header {
    background-color: inherit;
    background-image: url(../img/gradient@2x.png);
    background-blend-mode: screen;
    background-size: cover;
    background-position: center bottom; }
    .wrapper header .inner {
      background-image: url(../img/header_d@2x.png);
      background-size: contain;
      background-position: top 40px center;
      overflow: hidden;
      background-repeat: no-repeat; }
      .wrapper header .inner h1 {
        text-align: center;
        font-family: dazzle-unicase,sans-serif;
        text-transform: uppercase;
        font-weight: 700;
        font-style: normal;
        text-shadow: 0px 3px 6px #000;
        margin: 25% 10% 5%;
        font-size: 6vw; }
      .wrapper header .inner .timer {
        margin: 20px auto 40px;
        max-width: 220px;
        text-align: center;
        background-color: #fff;
        color: #000;
        font-size: 2.6em;
        padding: 0 10px; }
        .wrapper header .inner .timer .timer_inner {
          display: flex; }
          .wrapper header .inner .timer .timer_inner span {
            display: block;
            flex: 1;
            font-family: oskar,sans-serif; }
      @media screen and (min-width: 701px) {
        .wrapper header .inner {
          background-size: contain; }
          .wrapper header .inner h1 {
            font-size: 4.5vw;
            margin-top: 15%; } }
    @media screen and (min-width: 701px) and (min-width: 1101px) {
      .wrapper header .inner h1 {
        font-size: 3em; } }
  .wrapper section.top {
    padding: 10px 0;
    background-color: #fff; }
    .wrapper section.top .inner {
      display: flex;
      justify-content: space-between;
      align-items: center; }
    .wrapper section.top img {
      max-width: 200px;
      margin-top: 14px; }
      @media screen and (max-width: 375px) {
        .wrapper section.top img {
          max-width: 125px; } }
    .wrapper section.top ul {
      display: flex; }
      .wrapper section.top ul li {
        line-height: 10px;
        margin-left: 10px; }
  .wrapper .main {
    font-size: 0.9em; }
    .wrapper .main .intro {
      margin: auto;
      max-width: 900px; }
      .wrapper .main .intro p.b {
        font-weight: 700; }
    .wrapper .main .table_wrap {
      background-image: url(../img/gradient@2x.png);
      background-blend-mode: screen;
      background-size: cover;
      background-position: center center;
      background-color: #080433;
      background-attachment: fixed;
      margin: 40px 0; }
      .wrapper .main .table_wrap .table_inner {
        background-color: rgba(255, 255, 255, 0.25);
        overflow: hidden; }
        .wrapper .main .table_wrap .table_inner .table {
          margin: 0;
          font-size: 1em;
          margin: 20px 0 0; }
          @media screen and (max-width: 700px) {
            .wrapper .main .table_wrap .table_inner .table {
              font-size: 0.9em; } }
          .wrapper .main .table_wrap .table_inner .table .row {
            display: grid;
            grid-gap: 20px;
            grid-template-columns: 50px 3fr 0.7fr 0.7fr 0.7fr 1fr;
            border-bottom: 0;
            padding: 0 20px; }
            @media screen and (max-width: 700px) {
              .wrapper .main .table_wrap .table_inner .table .row {
                padding: 0 10px;
                grid-gap: 10px; }
                .wrapper .main .table_wrap .table_inner .table .row .icon {
                  display: none; } }
            .wrapper .main .table_wrap .table_inner .table .row.top_header {
              grid-template-columns: 50px 3fr 2.1fr 1fr;
              text-align: center;
              margin-bottom: 20px; }
            @media screen and (max-width: 700px) {
              .wrapper .main .table_wrap .table_inner .table .row {
                grid-template-columns: 30px 3fr 1fr !important; } }
          .wrapper .main .table_wrap .table_inner .table .thead {
            font-weight: 700;
            line-height: 1.1em; }
            @media screen and (max-width: 700px) {
              .wrapper .main .table_wrap .table_inner .table .thead {
                text-align: center; }
                .wrapper .main .table_wrap .table_inner .table .thead .col {
                  display: flex;
                  flex-direction: column;
                  justify-content: flex-end; }
                  .wrapper .main .table_wrap .table_inner .table .thead .col span {
                    display: inline-block; } }
            .wrapper .main .table_wrap .table_inner .table .thead .col {
              cursor: pointer; }
              .wrapper .main .table_wrap .table_inner .table .thead .col .icon {
                height: 30px;
                width: 30px;
                margin-bottom: 5px;
                background-size: auto 30px;
                background-position: -30px 0; }
              .wrapper .main .table_wrap .table_inner .table .thead .col.center {
                text-align: center; }
                .wrapper .main .table_wrap .table_inner .table .thead .col.center .icon {
                  margin: 0 auto 5px; }
              .wrapper .main .table_wrap .table_inner .table .thead .col.sort {
                color: #69FFFF; }
                .wrapper .main .table_wrap .table_inner .table .thead .col.sort .icon {
                  background-position: 0 0; }
                .wrapper .main .table_wrap .table_inner .table .thead .col.sort span {
                  position: relative; }
                  .wrapper .main .table_wrap .table_inner .table .thead .col.sort span:after {
                    content: "";
                    position: absolute;
                    display: block;
                    right: -11px;
                    bottom: 2px;
                    width: 0;
                    height: 0;
                    border-style: solid;
                    border-width: 8px 4px 0 4px;
                    border-color: #69FFFF transparent transparent transparent; }
                .wrapper .main .table_wrap .table_inner .table .thead .col.sort.reverse span:after {
                  transform: rotate(180deg); }
              @media screen and (max-width: 700px) {
                .wrapper .main .table_wrap .table_inner .table .thead .col.title span {
                  margin: 0 auto;
                  width: 65px; } }
              .wrapper .main .table_wrap .table_inner .table .thead .col.nosort {
                min-width: 70px; }
                @media screen and (max-width: 700px) {
                  .wrapper .main .table_wrap .table_inner .table .thead .col.nosort {
                    min-width: 100px; } }
          .wrapper .main .table_wrap .table_inner .table .tbody {
            display: block;
            margin-top: 10px; }
            .wrapper .main .table_wrap .table_inner .table .tbody .row > .col {
              display: flex;
              align-items: center; }
            .wrapper .main .table_wrap .table_inner .table .tbody .game:nth-child(odd) {
              background-color: rgba(0, 0, 0, 0.3); }
              .wrapper .main .table_wrap .table_inner .table .tbody .game:nth-child(odd) .box {
                background-color: rgba(134, 7, 135, 0.73); }
            @media screen and (max-width: 700px) {
              .wrapper .main .table_wrap .table_inner .table .tbody .game {
                padding: 5px 0; } }
            .wrapper .main .table_wrap .table_inner .table .tbody .game .top.mobile {
              cursor: pointer; }
            .wrapper .main .table_wrap .table_inner .table .tbody .game .bottom {
              padding: 10px 10px 0 50px; }
              .wrapper .main .table_wrap .table_inner .table .tbody .game .bottom .grid {
                display: flex;
                margin-bottom: 10px;
                justify-content: space-between; }
                .wrapper .main .table_wrap .table_inner .table .tbody .game .bottom .grid .box {
                  width: 24%;
                  min-width: 100px;
                  margin-left: 10px; }
            .wrapper .main .table_wrap .table_inner .table .tbody .circ {
              border-radius: 100%;
              background-color: #fff;
              color: #000;
              width: 25px;
              height: 25px;
              font-weight: 700;
              display: flex;
              justify-content: center;
              align-items: center; }
            @media screen and (min-width: 701px) {
              .wrapper .main .table_wrap .table_inner .table .tbody .title {
                font-size: 1.2em; } }
            .wrapper .main .table_wrap .table_inner .table .tbody .title .img {
              max-width: 40px;
              margin-right: 10px; }
              @media screen and (max-width: 700px) {
                .wrapper .main .table_wrap .table_inner .table .tbody .title .img {
                  display: none; } }
            .wrapper .main .table_wrap .table_inner .table .tbody .box {
              background-color: rgba(162, 9, 163, 0.5);
              background-position: center center;
              width: 100%;
              padding: 5px;
              text-align: center; }
            .wrapper .main .table_wrap .table_inner .table .tbody .livespend {
              min-width: 70px; }
              @media screen and (max-width: 700px) {
                .wrapper .main .table_wrap .table_inner .table .tbody .livespend {
                  min-width: 100px; } }
              .wrapper .main .table_wrap .table_inner .table .tbody .livespend .box {
                background-color: #69FFFF !important;
                font-weight: 700;
                color: #000; }
    .wrapper .main .outro {
      text-align: center;
      font-weight: 700;
      margin: 40px 0;
      font-size: 1.1em; }
  .wrapper .notes {
    padding: 20px 0;
    background-color: #524f70;
    font-size: 0.8em; }
  .wrapper footer {
    background-color: #fff;
    color: #000;
    font-size: 0.8em; }
    .wrapper footer .inner {
      text-align: center;
      padding: 20px; }
      .wrapper footer .inner .cc span {
        display: block; }
      .wrapper footer .inner .logo {
        max-width: 200px;
        margin: 20px 0; }
      @media screen and (min-width: 701px) {
        .wrapper footer .inner {
          display: flex;
          justify-content: space-between;
          text-align: left; }
          .wrapper footer .inner .cc {
            max-width: 450px;
            display: flex;
            align-items: center; }
            .wrapper footer .inner .cc span {
              margin-right: 10px; } }
    .wrapper footer a {
      color: inherit; }
