* {
  padding:0;
  margin:0;
  box-sizing:border-box;
}

:focus {
  outline:none;
}

body {
  background: #000000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.1;
  color: var(--color-text);
  font-weight: 400;
  overflow-x: hidden;
}

body.no-scroll {
  overflow:hidden;
}

@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:#ffffff;
}

@media only screen and (max-width:768px) {
  h1 {
    font-size:1.8em;
  }
}

h2 {
  font-size: 26px;
  color:  #0395fc;
}

@media only screen and (max-width:768px) {
  h2 {
    font-size:1.6em;
  }
}

h3 {
  color:  #0395fc;
  font-size:24px;
}

@media only screen and (max-width:768px) {
  h3 {
    font-size:1.4em;
  }
}

h4 {
  color: #0395fc;
  font-size: 20px;
}

@media only screen and (max-width:768px) {
  h4 {
    font-size:1.2em;
  }
}

h5 {
  color: #0395fc;
  font-size: 18px;
}

@media only screen and (max-width:768px) {
  h5 {
    font-size:1em;
  }
}

h6 {
  color: #0395fc;
  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: #fce184;
}

a:hover,
button:hover {
  color: #ffffff;
}

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: #0395fc;
  margin-top: 1em;
  margin-bottom: 1em;
}

p {
  margin-bottom:0.571rem;
  color:#ffffff;
}

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;
  justify-content:space-between;
}

.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:#006343;
  padding:3px 10px 0;
  font-size:25px;
  font-weight:700;
  color:#ffffff;
}

.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: 40px;
  color: #fafafa;
  width: 100%;
  padding: 4px;
  background-image: linear-gradient(90deg, #ffe217, #ffff65, #ffe217);
  border: 1.5px solid 0395fc;
  font-size: 25px;
  cursor: pointer;
  font-weight:bold;
  font-family: Arial, Helvetica, sans-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: 38px;
  }
}

@keyframes a {
  0% {
    color: #00ffae;
  }
  to {
    color: #006343;
  }
}

.header .item-3 {
  padding-right: 0.5rem;
  display: flex;
  justify-content: flex-end;
}

.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;
  padding-bottom: 0.571rem;
  border-radius: 5px;
  margin: 0 auto;
}

.games-in .item-1,
.games .item-1 {
  font-size: 12px;
  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;
  justify-content:center;
}

.games-in .item-1 a,
.games .item-1 a {
  font-weight: 700;
  color:#ffffff;
  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: #ffffff;
  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 7%;
  flex:0 0 7%;
  max-width:7%;
}

.games .item-1:last-child {
  -ms-flex: 0 0 7%;
  flex: 0 0 7%;
  max-width: 10%;
}

.games .item-1:last-child a {
  color: #ffffff;
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.games .item-1:last-child a:hover {
  color: #ffffff;
}

.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 #ffffff;
}

.logo img {
  max-width: 250px;
  max-height: 90px;
}

input {
  width: 100%;
  font-size: 17px;
  padding: 9px;
  border-radius: 5px;
  border: 1.5px solid #02bb80;
  color: #000000;
  background: #ffffff;
}
input::placeholder {
  color:#000000;
}
input:focus::placeholder {
  color: transparent;
}
.marquee-section {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}

.marquee-section marquee,
.marquee-section span {
  width: 100%;
  background: linear-gradient(90deg, #005a3b, #00be82, #005a3b);
  padding: 0.2855rem 0.571rem 0.1555rem 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;
}

.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: #ffffff;
  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;
  color:#000000;
}

.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;
  color:#ffffff;
}

.account-area {
  background:#01A576;
  border-radius:10px;
  border:1px solid #FFE418;
  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 3px;
  color:#000;
  background-image:linear-gradient(0deg,#F69902,#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:60px;
  }
  .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:#00edaf;
  --color-secondary:#01a576;
  --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));
}

.swiper-container {
  background:url(../img/slide/border-slider.png) no-repeat;
  background-size:100%;
}

.site-article ol {
  margin-inline-start:1em;
  color:#ffffff;
}

.site-article ol li {
  margin-bottom:1em;
}

.carousel {
  position:relative;
}

.carousel-inner {
  position:relative;
  width:100%;
  overflow:hidden;
  z-index:-1;
}

.carousel-item {
  position:relative;
  display:none;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  width:100%;
  transition:-webkit-transform .6s ease;
  transition:transform .6s ease;
  transition:transform .6s ease,-webkit-transform .6s ease;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  -webkit-perspective:1000px;
  perspective:1000px;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display:block;
}

.carousel-item-next,
.carousel-item-prev {
  position:absolute;
  top:0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform:translateX(0);
  transform:translateX(0);
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
  .carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform:translate3d(0,0,0);
  transform:translate3d(0,0,0);
}
}

.active.carousel-item-right,
.carousel-item-next {
  -webkit-transform:translateX(100%);
  transform:translateX(100%);
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
  .active.carousel-item-right,
.carousel-item-next {
  -webkit-transform:translate3d(100%,0,0);
  transform:translate3d(100%,0,0);
}
}

.active.carousel-item-left,
.carousel-item-prev {
  -webkit-transform:translateX(-100%);
  transform:translateX(-100%);
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
  .active.carousel-item-left,
.carousel-item-prev {
  -webkit-transform:translate3d(-100%,0,0);
  transform:translate3d(-100%,0,0);
}
}

.carousel-control-next,
.carousel-control-prev {
  position:absolute;
  top:0;
  bottom:0;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  justify-content:center;
  width:15%;
  color:#fff;
  text-align:center;
  opacity:.5;
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  color:#fff;
  text-decoration:none;
  outline:0;
  opacity:.9;
}

.carousel-control-prev {
  left:0;
}

.carousel-control-next {
  right:0;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  display:inline-block;
  width:20px;
  height:20px;
  background:transparent no-repeat center center;
  background-size:100% 100%;
}

.carousel-control-prev-icon {
  background-image:url("data:image/svg+xml; charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image:url("data:image/svg+xml; charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position:absolute;
  right:0;
  bottom:10px;
  left:0;
  z-index:15;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  justify-content:center;
  padding-left:0;
  margin-right:15%;
  margin-left:15%;
  margin-bottom:5%;
  list-style:none;
}

.carousel-indicators li {
  position:relative;
  -webkit-box-flex:0;
  -ms-flex:0 1 auto;
  flex:0 1 auto;
  width:30px;
  height:3px;
  margin-right:3px;
  margin-left:3px;
  text-indent:-999px;
  background-color:rgba(255,255,255,.5);
  cursor:pointer;
}

.carousel-indicators li::before {
  position:absolute;
  top:-10px;
  left:0;
  display:inline-block;
  width:100%;
  height:10px;
  content:"";
}

.carousel-indicators li::after {
  position:absolute;
  bottom:-10px;
  left:0;
  display:inline-block;
  width:100%;
  height:10px;
  content:"";
}

.carousel-indicators .active {
  background-color:#fff;
}

.carousel-caption {
  position:absolute;
  right:15%;
  bottom:20px;
  left:15%;
  z-index:10;
  padding-top:20px;
  padding-bottom:20px;
  color:#fff;
  text-align:center;
}