* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:focus {
  outline: none;
}
body {
  background: var(--color-bg);
  font-family: math;
  font-size: 15px;
  line-height: 1.1;
  color: var(--color-text);
  font-weight: 400;
}
body.no-scroll {
  overflow: hidden;
}
body .container {
  padding: 0 0.571rem;
}
@media (min-width: 768px) {
  body .container {
    width: 920px;
  }
}
@media (min-width: 992px) {
  body .container {
    width: 1090px;
  }
}
h1,
h2 {
  margin-bottom: 1.142rem;
}
h3,
h4,
h5,
h6 {
  margin-bottom: 0.571rem;
}
h1 {
  font-size: 28px;
  color: var(--color-primary);
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 1.8em;
  }
}
h2 {
  font-size: 26px;
  color: hsl(var(--h), var(--s), calc(var(--l) + 5%));
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 1.6em;
  }
}
h3 {
  color: hsl(var(--h), var(--s), calc(var(--l) + 7%));
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  h3 {
    font-size: 1.4em;
  }
}
h4 {
  color: hsl(var(--h), var(--s), calc(var(--l) + 7%));
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  h4 {
    font-size: 1.2em;
  }
}
h5 {
  color: hsl(var(--h), var(--s), calc(var(--l) + 10%));
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  h5 {
    font-size: 1em;
  }
}
h6 {
  color: hsl(var(--h), var(--s), calc(var(--l) + 10%));
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  h6 {
    font-size: 0.9em;
  }
}
a,
button {
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: var(--color-primary);
}
a:hover,
button:hover {
  color: hsl(var(--h), var(--s), calc(var(--l) + 20%));
}
ul {
  list-style: none;
}
.m-r-1 {
  margin-right: 0.571rem;
}
.m-r-2 {
  margin-right: 1.142rem;
}
.m-b-1 {
  margin-bottom: 0.571rem;
}
.m-b-2 {
  margin-bottom: 1.142rem;
}
.m-b-3 {
  margin-bottom: 1.713rem;
}
.m-b-half {
  margin-bottom: 0.2855rem;
}
.m-l-1 {
  margin-left: 0.571rem;
}
.m-l-2 {
  margin-left: 1.142rem;
}
.m-t-1 {
  margin-top: 0.571rem;
}
.m-t-2 {
  margin-top: 1.142rem;
}
.m-t-3 {
  margin-top: 1.713rem;
}
.p-1 {
  padding: 0.571rem;
}
.p-2 {
  padding: 1.142rem;
}
.p-t-1 {
  padding-top: 0.571rem;
}
.p-t-2 {
  padding-top: 1.142rem;
}
.p-b-1 {
  padding-bottom: 0.571rem;
}
.p-b-2 {
  padding-bottom: 1.142rem;
}
.p-l-1 {
  padding-left: 0.571rem;
}
.p-l-2 {
  padding-left: 1.142rem;
}
.p-r-1 {
  padding-right: 0.571rem;
}
.p-r-2 {
  padding-right: 1.142rem;
}
hr {
  border-color: var(--color-primary);
  margin-top: 1em;
  margin-bottom: 1em;
}
p {
  margin-bottom: 0.571rem;
}
p.m-0 {
  margin-bottom: 0;
}
.m-auto {
  margin: auto;
}
.relative {
  position: relative;
}
img {
  max-width: 100%;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-bold {
  font-weight: 700;
}
.btn-primary,
.btn-primary-o {
  min-width: 5.71rem;
  padding: 0.1142rem 0.571rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  background-color: transparent;
  font-weight: 700;
}
.btn-primary {
  color: #fff;
  background-color: var(--color-primary);
  box-shadow: 0 4px 15px -4px hsl(var(--h), var(--s), calc(var(--l) + 5%));
}
.btn-primary:hover {
  background-color: hsl(var(--h), var(--s), calc(var(--l) - 10%));
  color: #fff;
}
.btn-primary-o {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-primary-o:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.menu-box.active .btn-menu span:first-of-type {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(3px);
}
.menu-box.active .btn-menu span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}
.menu-box.active .btn-menu span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(15px, -3px) rotatez(45deg);
}
.btn-menu {
  display: none;
  border: none;
  background: transparent;
  width: 35px;
  cursor: pointer;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .btn-menu {
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 0.8565rem;
    top: 0.8565rem;
  }
}
.btn-menu span {
  background: #fff;
  border-radius: 10px;
  height: 3px;
  margin: 3px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.btn-menu span:first-of-type {
  width: 50%;
}
.btn-menu span:nth-of-type(2) {
  width: 100%;
}
.btn-menu span:nth-of-type(3) {
  width: 75%;
}
.btn-small {
  padding: 0.2855rem 0.571rem;
  font-size: 0.85em;
}
.btn-large {
  padding: 0.571rem 1.713rem;
  font-size: 1.1em;
  letter-spacing: 0;
}
.btn-full {
  display: block;
  width: 100%;
}
footer {
  margin-bottom: 1.713rem;
}
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
.container--small {
  max-width: 670px;
}
.flex {
  display: -ms-flexbox;
  display: flex;
}
.flex-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.dir-col {
  -ms-flex-direction: column;
  flex-direction: column;
}
.dir-col-rev {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.dir-row {
  -ms-flex-direction: row;
  flex-direction: row;
}
.dir-row-rev {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wrap-rev {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.items-center {
  -ms-flex-align: center;
  align-items: center;
}
.items-end {
  -ms-flex-align: end;
  align-items: flex-end;
}
.items-start {
  -ms-flex-align: start;
  align-items: flex-start;
}
.content-center {
  -ms-flex-pack: center;
  justify-content: center;
}
.content-end {
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.content-start {
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.content-between {
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-auto {
  -ms-flex: 1;
  flex: 1;
}
.flex-grow {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.items {
  margin-left: -0.571rem;
  margin-right: -0.571rem;
}
.items [class^="item-"] {
  padding: 0 0.571rem;
}
@media only screen and (max-width: 768px) {
  .items {
    margin-left: 0;
    margin-right: 0;
  }
  .items > [class^="item-"] {
    padding: 0 0.2855rem;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.item-auto {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.item-1 {
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}
.item-2 {
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}
.item-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.item-4 {
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}
.item-5 {
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}
.item-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.item-7 {
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}
.item-8 {
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}
.item-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.item-10 {
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}
.item-11 {
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}
.item-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.block {
  display: block;
}
.bottom-area,
.games,
.games-in,
.header,
.marquee-section,
.result ul,
.row,
.social,
.top-area {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.input-group,
.input-group .input-group-text-l,
.input-group .input-group-text-r {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.input-group .input-group-text-l,
.input-group .input-group-text-r {
  background: #cba109;
  padding: 3px 10px 0;
  font-size: 25px;
  font-weight: 700;
  color: #000;
}
.input-group .input-group-text-r {
  border-radius: 0 5px 5px 0 !important;
}
.input-group input[name="captcha"] {
  border-radius: 5px 0 0 5px;
}
.btn-login {
  height: 38px;
  color: #fafafa;
  width: 100%;
  padding: 4px;
  background-image: linear-gradient(0deg, #d19a33, #f8e86c, #d19a33);
  font-size: 25px;
  border: 0;
  cursor: pointer;
  text-shadow: 2px -1px #000;
  font-family: serif;
  letter-spacing: 3px;
  animation: a 1s linear infinite;
}
.btn-login:hover {
  color: #e2e2e2;
}
@media only screen and (max-width: 768px) {
  .btn-login {
    font-size: 22px;
    height: 35px;
  }
}
@keyframes a {
  0% {
    color: #fafafa;
  }
  to {
    color: red;
  }
}
.header .item-3 {
  padding-right: 1.142rem;
}
.header .item-3 a img {
  max-width: 200px;
}
.header .login-area {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.header .login-area :nth-child(2) {
  -ms-flex-order: 3;
  order: 3;
}
.header .login-area :nth-child(3) {
  -ms-flex-order: 2;
  order: 2;
}
.header .login-area :nth-child(4) {
  -ms-flex-order: 4;
  order: 4;
}
.header .login-area :last-child {
  border-radius: 5px;
}
.header [class^="item-"] a {
  display: -ms-flexbox;
  display: flex;
}
.games,
.games-in {
  padding-top: 0.571rem;
}
.games-in .item-1,
.games .item-1 {
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.games-in .item-1 a,
.games-in .item-1 div,
.games .item-1 a,
.games .item-1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.games-in .item-1 a,
.games .item-1 a {
  font-weight: 700;
  color: var(--color-text);
  background: linear-gradient(180deg, #fff 0, #dbdbdb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  -ms-flex-direction: column;
  flex-direction: column;
}
.games-in .item-1 a img,
.games .item-1 a img {
  max-width: 50px;
}
.games-in .item-1 a:hover,
.games .item-1 a:hover {
  color: var(--color-secondary);
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.games-in [class^="item-"],
.games [class^="item-"] {
  padding: 0 0.2855rem;
}
.games .item-1 {
  -ms-flex: 0 0 9%;
  flex: 0 0 9%;
  max-width: 9%;
}
.games .item-1:last-child {
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
  max-width: 10%;
}
.games .item-1:last-child a {
  color: red;
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.games .item-1:last-child a:hover {
  color: var(--color-secondary);
}
.games-in {
  -ms-flex-wrap: unset;
  flex-wrap: unset;
}
.games-in .item-1 {
  max-width: 6.65%;
}
.games-in .item-1 a {
  font-size: 11.9px;
}
.games-in .item-1:nth-child(11) a {
  color: red;
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.games-in .item-1:nth-child(11) a:hover {
  color: var(--color-secondary);
}
.arrow-down {
  margin-left: 4px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid var(--color-secondary);
}
.logo img {
  max-width: 250px;
}
input {
  width: 100%;
  font-size: 17px;
  padding: 9px;
  border-radius: 5px;
  border: none;
  color: #484848;
}
.marquee-section {
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
}
.marquee-section marquee,
.marquee-section span {
  width: 100%;
  background-color: var(--color-secondary);
  padding: 0.2855rem 0.571rem;
  text-align: center;
}
.marquee-section div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.marquee-section div:last-child {
  padding: 0 0.2855rem;
}
.marquee-section .info:after {
  rotate: 180deg;
  right: 0;
}
.marquee-section .info:before {
  left: 0;
}
.marquee-section .info:after,
.marquee-section .info:before {
  content: "";
  background-image: url(../img/bingkai.png);
  width: 12px;
  height: 40px;
  background-repeat: no-repeat;
  display: block;
  background-position: 100%;
  position: absolute;
  z-index: 5;
}
.border-slider {
  background-image: url(../img/slide/bingkai-slider.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.marquee-section a img,
.row a img,
.social a img {
  transition: 0.2s;
}
.marquee-section a img:hover,
.row a img:hover,
.social a img:hover {
  transform: scale(1.05);
  transition: 0.2s;
}
.result ul {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
}
.result ul,
.result ul li {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
.result ul li {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  margin-top: 0.8565rem;
  padding: 0 0.571rem;
  position: relative;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #000;
  font-weight: 700;
}
.result ul li .name-result {
  position: absolute;
  top: 0;
  margin-top: 6px;
  font-size: 14px;
}
.result ul li .ball-result {
  position: absolute;
  bottom: 13px;
  font-size: 17px;
}
.result ul li .ball-result span {
  position: relative;
  z-index: 1;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 11.5px;
}
.result ul li .ball-result span:before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../img/ball.png);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -3px;
}
.site-article {
  text-align: justify;
  margin: 0.571rem 0 1.142rem;
}
.site-article ul {
  list-style-type: disc;
  margin: 0.571rem 0;
  padding-left: 1.142rem;
}
.account-area {
  background: #f8d04a;
  border-radius: 10px;
  border: 1px solid #ff0000b9;
  padding: 0 0.2855rem;
}
.top-area {
  padding: 0.571rem;
}
.top-area .item-2 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 0.19033rem;
}
.top-area li a {
  padding: 4px 5px;
  color: #000;
  background-image: linear-gradient(0deg, #f3aa23, #fff);
  box-shadow: 1px 1px 6px 0 #888;
  display: block !important;
  text-align: center;
  font-size: 15px;
}
.top-area li a:hover {
  box-shadow: 1px 1px 6px 0 #fff;
}
.top-area li:first-child {
  -ms-flex: 0 0 21%;
  flex: 0 0 21%;
  max-width: 21%;
}
.top-area li:first-child a {
  border-radius: 10px 0 0 10px;
}
.top-area li:last-child {
  -ms-flex: 0 0 16%;
  flex: 0 0 16%;
  max-width: 16%;
}
.top-area li:last-child a {
  border-radius: 0 10px 10px 0;
}
.top-area li:nth-child(2) {
  -ms-flex: 0 0 23%;
  flex: 0 0 23%;
  max-width: 23%;
}
.bottom-area {
  padding: 0.2855rem 1.142rem 0.571rem;
  text-align: center;
}
.bottom-area li {
  font-size: 18px;
}
.bottom-area li:first-child {
  padding: 0 0.571rem;
}
.bottom-area li:first-child a {
  background-color: #d60000;
  display: block !important;
  transform: skew(-10deg, 0);
  padding: 0.19033rem 0;
  color: #000;
  border: 1px solid #000;
}
.bottom-area li select {
  width: 100%;
  font-size: 17px;
  padding: 0.19033rem 0.571rem;
  border-radius: 10px;
}
.livechat-destop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 15;
}
.livechat-destop a {
  display: -ms-flexbox;
  display: flex;
}
.livechat-destop a img {
  max-width: 250px;
}
@media only screen and (max-width: 768px) {
  .header {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .header .item-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .header .item-4 .logo img {
    max-height: 45px;
  }
  .header .item-3 {
    padding-right: 0.571rem;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .header .item-3 a {
    float: right;
  }
  .header .item-3 a img {
    max-height: 45px;
  }
  .header .item-5 {
    padding: 0;
    margin-top: 0.8565rem;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .header .item-5 .login-area .item-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .header .item-5 .login-area .item-6 input {
    font-size: 15px;
  }
  .header-in .item-3,
  .header-in .item-4 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .header-in .item-4 {
    margin-bottom: 1.142rem;
  }
  .header-in .item-4 .logo a {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header-in .item-3 {
    text-align: center;
  }
  .header-in .item-3 #date_time,
  .input-group .input-group-text-l,
  .input-group .input-group-text-r {
    font-size: 20px;
  }
  .games,
  .games-in {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .games-in .item-1,
  .games .item-1 {
    margin-bottom: 0.571rem;
    font-size: 14px;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .games-in .item-1:first-child,
  .games .item-1:first-child {
    display: none;
  }
  .games-in .item-1:last-child,
  .games .item-1:last-child {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .marquee-section .info:after,
  .marquee-section .info:before {
    width: 9px;
  }
  .marquee-section .item-2:first-child {
    display: none;
  }
  .marquee-section .item-8 {
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
  }
  .marquee-section .item-2 {
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
  }
  .banner {
    margin-right: 0.19033rem;
  }
  .social .item-3 {
    text-align: center;
  }
  .account-area .top-area li,
  .banner-bottom .item-4,
  .result ul li,
  .social .item-3 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .account-area .top-area li {
    margin-bottom: 0.571rem;
  }
  .account-area .top-area li a {
    padding: 0.38067rem 0;
    font-size: 18px;
  }
  .account-area .top-area li:first-child {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .account-area .top-area li:first-child a {
    border-radius: 10px 10px 0 0;
  }
  .account-area .top-area li:nth-child(4) a {
    border-radius: 0 0 0 10px;
  }
  .account-area .top-area li:last-child a {
    border-radius: 0 0 10px 0;
  }
  .account-area .bottom-area li {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    margin-bottom: 0.571rem;
  }
  .livechat-destop {
    display: none;
  }
}
#date_time {
  color: var(--color-secondary);
  font-size: 16px;
}
@media only screen and (max-width: 360px) {
  .result ul li .ball-result {
    font-size: 12px;
  }
  .result ul li .ball-result span {
    margin: 0 9.5px;
  }
  .result ul li .ball-result span:before {
    width: 22px;
    height: 22px;
    right: -8px;
  }
}
@media screen and (max-width: 480px) and (min-width: 440px) {
  .result ul li .ball-result {
    font-size: 18px;
    bottom: 18px;
  }
  .result ul li .ball-result span {
    margin: 0 12.5px;
  }
  .result ul li .ball-result span:before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 656px) and (min-width: 511px) {
  .result ul li {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .result ul li .ball-result {
    font-size: 18px;
    bottom: 13px;
  }
  .result ul li .ball-result span:before {
    width: 28px;
    height: 28px;
    bottom: -2px;
  }
}
@media screen and (max-width: 768px) and (min-width: 680px) {
  .result ul li {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .result ul li .name-result {
    margin-top: 8px;
  }
  .result ul li .ball-result {
    font-size: 22px;
    bottom: 18px;
  }
  .result ul li .ball-result span {
    margin: 0 12.5px;
  }
  .result ul li .ball-result span:before {
    width: 30px;
    height: 30px;
    bottom: -1px;
  }
}
@media screen and (max-width: 992px) and (min-width: 800px) {
  .games-in {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .games-in .item-1 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    margin-bottom: 0.571rem;
  }
}
#lhnContainerDone {
  display: none !important;
}
:root {
  --color-grey: #5c5959;
  --hbg: 0;
  --sbg: 0%;
  --lbg: 2%;
  --color-bg: hsl(var(--hbg), var(--sbg), var(--lbg));
  --hbase: 0;
  --sbase: 0%;
  --lbase: 100%;
  --color-base: hsl(var(--hbase), var(--sbase), var(--lbase));
  --h: 47;
  --s: 99%;
  --l: 45%;
  --color-primary: hsl(var(--h), var(--s), var(--l));
  --color-secondary: hsl(var(--h), var(--s), calc(var(--l) + 10%));
  --color-dark: hsl(var(--h), var(--s), calc(var(--l) - 20%));
  --htext: 0;
  --stext: 0%;
  --ltext: 100%;
  --color-text: hsl(var(--htext), var(--stext), var(--ltext));
  --hhd: 286;
  --shd: 100%;
  --lhd: 29%;
  --header-color: hsl(var(--hhd), var(--shd), var(--lhd));
}
