/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+TC:wght@300;400;500;900&display=swap');

body {
  font-family: 'Noto Sans TC', sans-serif;
  color: #333;
  background: #e8e8e8;
}
main {
  margin-top: 86px;
  background: url(/action/assets/www/images/bg.jpeg) #e1ebf8 no-repeat top;
  background-size: cover;
  background-attachment: fixed;
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

a:hover {
  color: #383838;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans TC', sans-serif;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
}
h2 span.en-title{ 
  color: #666; 
  font-size: 50%; 
  font-weight: normal;
}
.text-right{
  text-align: right;
}
.small, small {
  font-size: 50%;
}
.button{
  color: #fff !important;
  text-transform: uppercase;
  background: #DC5D10;
  padding: 6px 20px;
  border: 2px solid #DC5D10;
  min-width: 100px;
}
.button:hover {
  color: #240037;
}
@media screen and (max-width: 768px) {
  h2 span.min-title{
    display: none;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #cd974e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #FCEDD9;
  line-height: 0;
}

.back-to-top:hover {
  background: #997600;
  color: #FCEDD9;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .back-to-top{
    bottom: 100px;
  }
}
/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: .4s !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 85px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0 4px 10px -3px rgba(191, 191, 191, 0.5);
}

#header .logo a span{
  font-size: 28px;
  margin-left: 12px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b2201c;
  font-family: "cwTeXYen", sans-serif;
}
#header .logo-img {
  background: url(/action/assets/www/images/logo.png) no-repeat;
  background-size: contain;
  font-size: 0;
  width: 150px;
  height: 70px;
  margin: 0;
}

.heard-top{
  padding: 0.5rem;
}
.heard-top h2{
  /* font-size: 24px; */
  font-weight: 900;
  padding: 8px;
  text-align: center;
  color: transparent;
}
.scrolled-offset {
  margin-top: 90px;
}
@media (max-width: 1410px) {
  #header .logo a span{
    font-size: 24px;
  }
}
@media (max-width: 1199px) {

}
@media (max-width: 767px) {
  main{
    margin-top: 70px;
    padding-bottom: 70px;
  }
  #header {
    height: 70px;}
    #header .logo-img {
      width: 150px;
      height: 60px;
      margin: 5px;
    }
  .scrolled-offset {
    margin-top: 0px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar-bg {
  padding: 0;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
}
.navbar {
  padding: 0;
  margin: auto;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #414d59;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
  height: 85px;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #8f6300;
}
.navbar a span{
  color: #FFF;
  font-size: 12px;
  display: none;
}

.btn-login {
  color: #fff !important;
  background: #cd974e;
  padding: 6px 20px;
  border-right: 0;
  width: 100px;
  height: 85px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.btn-register {
  background: #A40804;
  color: #fff !important;
  padding: 6px 20px;
  width: 100px;
  height: 85px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.btn-login:hover, 
.btn-register:hover {
  color: #ffffff!important;
  background: #946c36;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
@media (max-width: 768px) {
  .btn-login, .btn-register{
    width: 200px;
    font-size: 2rem !important;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #cd974e;
  font-size: 2rem;
  font-weight: bolder;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  background: transparent;
  padding: 12px;
  margin: -9px;
}

.mobile-nav-toggle.bi-x {
  color: #e1cd9b;
  background: transparent;
}

@media (max-width: 991px) {
  .navbar {
    padding: 12px 0;
    margin: 0;
  }
  .navbar-bg{
    padding: 0 !important;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    flex-direction: row;
    justify-content:center;
  }
  .navbar a span{ margin-left: .8rem;}
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: url(/action/assets/www/images/mb_menu_bg.png) rgba(0, 0, 0, 0.9) no-repeat;
  background-position: bottom;
  background-size: 100%;
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile::before{
  content: '';
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 30%);
  opacity: 0.6;
  margin-top: -25px;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 1.5rem;
  font-weight: normal;
  font-family: 'Bebas Neue';
  color: #fff;
}

.navbar-mobile a:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 1px;
  background: #fff;
  opacity: .4;
}

header nav.mainNav .border-link:after {
  width: 20px;
  height: 1px;
  background: #fff;
  opacity: 0.4;
  left: 50%;
  top: -14px;
  margin-left: -10px;
}
.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #f44336;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

.section-bg {
  background-color: #000
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  color:  #cd974e;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 0;
}

.section-title p {
  margin-bottom: 0;
  color: #333;
}
@media (max-width: 768px) {
  .section-title {
    padding-bottom: 20px;
  }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 0;
}
.testimonials .container-fluid{
  padding: 0 !important;
}
.testimonials .swiper-container{
  overflow:hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-title {
  position: absolute;
  left: 25%;
  top: 25%;
  transform: rotate(-4deg);
  -webkit-filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.7));
  display:none;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 7rem;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
  background-image: linear-gradient(180deg,#ffffff 20%,#f3efb3 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.testimonials .testimonial-item h4 {
  font-size: 4rem;
  color: #ddd;
  margin: 0 0 15px 0;
  background-image: linear-gradient(180deg,#ffffff 20%,#f3efb3 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  margin-top: 0;
  position: absolute;
  bottom: 1%;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  background: hwb(0deg 100% 0% / 70%);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: hwb(0deg 100% 0% / 100%);
  box-shadow: 0px 0px 4px 3px #fdb548;
}

@media (max-width: 768px) {
  .testimonials {
    background: transparent;
    padding-top: 72px;
  }
  .testimonials .testimonial-item .testimonial-img {
    overflow: hidden;
}
  .testimonials .testimonial-item p {
    width: 80%;
  }
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/*--------------------------------------------------------------
# m-side-menu
--------------------------------------------------------------*/
.testimonials-game {
  padding: 0;
  margin-bottom: 16px;
}
.testimonials-game .container-fluid{
  padding: 0;
}
.testimonials-game img{
  width: 100%;
}

.index{
 background: url(/action/assets/www/images/bg_game.jpeg) no-repeat #fff;
 background-size: cover;
}

.GameNav {
  padding: 12px;
  width: 100%;
}
.GameNav .nav {
  max-width: 80%;
  margin: auto;
  background: linear-gradient(180deg, rgb(255 255 255 / 50%) 0%, rgb(243 243 243 / 80%) 100%);
  border-radius: 60px;
  box-shadow: 0px 0px 7px rgb(195 159 100 / 38%);
  overflow: hidden;
}
.GameNav li.nav-item.col{
  text-align: center;
}
.GameNav .color .img{
  width: 105px;
  height: 75px;
  overflow: hidden;
  margin: auto;
  margin-bottom: 6px;
  margin-top: 10px;
  border-bottom: 1px solid #f6d7a4;
}
.GameNav picture{
  display: block;
  margin: 10px auto 2px auto;
}
.GameNav img{
  width: 100%;
}
.nav-pills .nav-link {
  border-radius: 0;
  color: #46484d;
  padding: 20px 0px 0px 0px
}
.GameNav .nav-link {
  color: #46484d;
  padding: 0;
  padding-bottom: 6px;
  text-align: center;
  filter: grayscale(50%) brightness(100%);
  transition: filter .2s ease;
  -webkit-filter: grayscale(50%) brightness(100%);
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: transparent;
}
.GameNav .color.active{
  color: #cd974e;
  display: block;
  filter: none;
}
@media (max-width: 1024px) {
  .GameNav .color .img{
    width: 77px;
    height: 50px;
  }
}
@media (max-width: 660px) {
  .tab-content {
    min-height: 60vh;
  }
  .GameNav {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    float: left;
    padding: 12px 0;
  }
  .GameNav .nav {
    max-width: 100%;
  }
  .GameNav picture, .GameNav img{
    width: 50px;
  }
  .GameNav .color .img {
    height: 40px;
  }
  .GameNav .nav-link{
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# featured
--------------------------------------------------------------*/
.featured.slotPage {
  padding-bottom: 60px;
  padding-top: 60px;
}
.featured .games {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.featured .games .gamesBox {
  width: 22%;
  background: #fff;;
  margin: 5px 6px;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 30px -20px #222;
}
.featured .games .game-name {
  padding: 4px 12px;
  font-size: 1.2rem;
  text-align: center;
  color: #000;
}
.featured .games .gamesBox--image img {
  display: block;
  width: 96%;
  margin: 0 auto;
}
.featured .games .gamesBox, .featured .games .gamesBox--image img{
  border-radius: 25px;}
.featured .games .gamesBox--image {
  margin: 5px 0;
}
.featured .games .gamesBox__content {
  height: 175px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), to(rgba(53, 53, 53, 0.85)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(53, 53, 53, 0.85) 100%);
  position: relative;
  border-top-left-radius: 0 0;
  border-top-right-radius: 0 0;
  overflow: hidden;
  font-size: 15px;
  padding: 6px;
}

.featured .games .gamesBox--button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.featured .games .gamesBox--button a {
  width: 100%;
  height: 50px;
  color: #333;
  text-align: center;
  line-height: 55px;
}
.featured .games .gamesBox--button a.play {
  background: #d2b983;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.featured .games .gamesBox:hover a.play{
  background: #A40804;
  color: #fff;
}
@media (max-width: 767px) {
  .featured .games .gamesBox {width: 45%;}
  .featured .games .gamesBox--title, .featured .games .game-name{font-size: medium;}
  .featured .games .gamesBox--button a,  .featured .games .gamesBox__content {font-size: small;}
}
@media (max-width: 660px) {
  .featured.slotPage {
    padding-left: 0;
    padding-bottom: 120px;
    min-height: 90vh;
  }
  .featured .games .gamesBox {
    width: 30%;
  }
  .featured .games .game-name {
    display: none;
  }
  .featured .games .gamesBox, .featured .games .gamesBox--image img{
    border-radius: 16px;}

}
/*--------------------------------------------------------------
# Casino
--------------------------------------------------------------*/
.casino-btn-grop {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.casino-btn-grop .casino-btn{
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0px;
}
.casino-btn-grop .casino-btn h3 {
  font-size: 20px;
  color:  #333;
  margin-top: 12px;
  margin-bottom: 0;
  display: none;
}
.casino-btn-grop .casino-btn div{
  width: 110px;
  height: 30px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 0;
  text-align: center;
  color: #cc974e;
  padding: 16px 10px;
  background: transparent;
  border: 1px solid;
  border-radius: 25px;
  margin-top: 15px;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}
.casino-btn-grop .casino-btn div:hover, 
.casino-btn-grop .casino-btn div:active{
  color: #cc974e;
}
.casino-btn-grop .casino-btn img{
  height: 100px;
  margin: 0px 5px;
}
.g-grop-body.g-grop-m {
  padding-top: 1rem;
}
/*--------------------------------------------------------------
# Sport
--------------------------------------------------------------*/
.casino-btn-grop .sport-btn img{
  height: 200px;
}
/*--------------------------------------------------------------
  game-grop  
--------------------------------------------------------------*/
.featured.slot {
  padding: 1rem 0 0rem 0;
}
.game-grop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 60px;
}
.game-grop .game-body {
  width: 20%;
  padding: 0px 15px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  color: #333;
  border: 1px solid #e4d2a1;
  border-radius: 20px;
  background: #fff;
  /* background: url(/action/assets/www/images/game/casino/casino_game_bg.png) #fff no-repeat; */
  background-size: 247px;
  background-position: -67% 16%;
  overflow: hidden;
  padding: 20px;
  margin: 8px 8px;
  justify-content: center;
}
.slot .game-body {
  background: url(/action/assets/www/images/game/slot/slot_bg.png) #fff no-repeat !important;
  background-size: 247px !important;
  background-position: center 47% !important;
}
.fish .game-body{
  background: url(/action/assets/www/images/game/fish/fish_bg.png) #ffffff no-repeat !important;
  background-size: 300px !important;
  background-position: center 50% !important;
  overflow: visible;
}
.game-grop .game-body img {
  width: 80%;
}
.game-grop .link {
  width: 100%;
  margin-top: 16px;
  text-align: center;
}
.game-grop .link h3 {
  font-size: larger;
  line-height: 1;
}
.game-grop .link h3 small {
  font-size: .8rem;
  letter-spacing: 2px;
  color: #bababa;
}
.game-grop .link .game-start {
  display: block;
  font-size: .8em;
  letter-spacing: 2px;
  padding: 5px 15px;
  width: 80%;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #be9b21;
  color: #ac883e;
  margin: auto;
}

@media (max-width: 767px) {
    .game-grop .game-body{
      width: 100%;
      padding: 0px 15px;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: center;
      color: #333;
      border: 1px solid #fff;
      border-radius: 20px;
      background-size: 247px;
      background-position: -67% 16%;
      overflow: hidden;
      margin: 8px 0;
    }
    .game-grop .game-body img {
      width: 45%;
    }
    .game-grop .link {
      width: 55%;
      margin: 0;
      text-align: center;
    }
    .game-grop .link h3 {
      font-size: larger;
      line-height: 1;
    }
    .game-grop .link h3 small {
      font-size: .8rem;
      letter-spacing: 2px;
      color: #ce974e;
    }
    .game-grop .link .game-start {
      display: block;
      font-size: .8em;
      letter-spacing: 2px;
      padding: 5px 15px;
      width: 80%;
      background: #ce974e;
      border-radius: 20px;
      border: 1px solid #be9b21;
      color: #fff;
      margin: auto;
    }
    .casino .game-body{
      padding: 4px 15px 0px 10px;
      background: url(/action/assets/www/images/game/casino/casino_bg.jpeg) #fff no-repeat !important;
      background-size: cover !important;
      /* background-position: left -27% bottom 0% !important; */
      overflow: visible;
    }
    .slot .game-body{
      min-height: 130px;
      background: url(/action/assets/www/images/game/slot/slot_bg.png) #fff no-repeat !important;
      background-size: 207px !important;
      background-position: left -27% bottom 0% !important;
      overflow: visible;
    }
    .slot .game-grop .game-body img {
      position: relative;
      bottom: 7%;
    }
    .fish .game-body{
      min-height: 130px;
      background: url(/action/assets/www/images/game/fish/fish_bg.png) #fff no-repeat !important;
      background-size: 200px !important;
      background-position: left -17% bottom -80% !important;
      overflow: visible;
    }
    .sport .game-body{
      padding: 5px 15px 0px 0px;
      background: url(/action/assets/www/images/game/sport/sport_bg.png) #fff no-repeat !important;
      background-size: 200px !important;
      background-position: left -75% bottom 0% !important;
      overflow: visible;
    }
    .keno .game-body{
      padding: 5px 15px 0px 0px;
      background: url(/action/assets/www/images/game/keno/keno_bg.png) #fff no-repeat !important;
      background-size: 244px !important;
      background-position: left -151% bottom 0% !important;
      overflow: visible;
    }
    .sport .game-body img, .keno .game-body img {width: 60%;}
    .sport .game-body .link, .keno .game-grop .link {width: 40%;}
    .sport .game-body .link .game-start, .keno .game-grop .link .game-start{ padding: 5px 6px; width: 85%;}
}
/*--------------------------------------------------------------
# Home-exclusive
--------------------------------------------------------------*/
.exclusive {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  background: rgb(255 255 255 / 63%);
}

.btn {
  position: relative;
  display: inline-block;
  font-size: .875rem;
  line-height: 1.25;
  min-width: 180px;
  border-radius: 6.25rem;
  text-align: center;
  padding: 0.75rem 1.875rem;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: color .3s ease,background-color .3s ease,border-color .3s ease,box-shadow .3s ease;
}
.btn--white {
  color: #fff;
  border: 4px solid #fff;
  margin-top: 12px;
}

.btn--white:hover {
  color: #000;
  background: #fff;
}

.btn--secondary {
  color: #fff;
  background: linear-gradient(357deg, #B39973 0%, #9B774C 100%);
}
.btn--secondary:hover {
  color: #fff;
  background: linear-gradient(180deg, #B39973 0%, #9B774C 100%);
}
@media (min-width: 48em){
  .btn {
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 2px;
  }
}
@media (max-width: 1024px) {

}
@media (max-width: 768px) {
  .btn{
    border-width: 2px;
    margin-top: 12px;
    max-width: 80%;
  }
}

@media (max-width: 425px) {
  .btn {
    min-width: 180px;
  }
}


/*========== external css: flickity.css ==========*/
.carousel {
  /* background: #FAFAFA; */
}

.carousel-cell {
  width: 22%;
  height: 480px;
  padding: 50px 20px;
  margin-right: 10px;
  text-align: center;
  counter-increment: carousel-cell;
  background: url(/action/assets/www/images/home/bg_1301617.jpeg) no-repeat;
  background-size: contain;
  border: 4px solid #ebebeb;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}

.carousel-cell img {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 200px;
}

.carousel-cell:hover img {
  transform: translate3d(0px, -4px, 14px) rotate(0deg) scale(1.1, 1.1);
  transition-duration: 2s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transform: translate3d(0px, -4px, 14px) rotate(0deg) scale(1.1, 1.1);
  -moz-transform: translate3d(0px, -4px, 14px) rotate(0deg) scale(1.1, 1.1);
  -ms-transform: translate3d(0px, -4px, 14px) rotate(0deg) scale(1.1, 1.1);
  -o-transform: translate3d(0px, -4px, 14px) rotate(0deg) scale(1.1, 1.1);
}
.carousel-title{
  font-weight: 600;
  margin-bottom: 1em;
}
.carousel-cell p{
  font-size: .8em;
  color: #757575;
}
/* fade in lazy loaded image */
.carousel-cell-image.flickity-lazyloaded,
.carousel-cell-image.flickity-lazyerror {
  opacity: 1;
}
.flickity-page-dots .dot{
  background: #cd974e !important;
}
/* external Games */
.game_main_spec_group{
  position: relative;
  margin-top: 10px;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;

}
.game_main_spec_group .game_main_spec{
  width: 50%;
}
.game_main_spec_group .game_main_spec b {
  display: block;
  margin-bottom: 5px;
  opacity: 0.7;
  font-size: 13px;
  line-height: 15px;
}
.game-list-block .game-content .game_main_spec_group .game_main_spec span {
  font-size: 25px;
  line-height: 35px;
}
.game-list-block .game-content .game_main_spec_group {
  padding: 25px 50px 30px;
}
.game_main_spec_group .game_main_spec .val {
  font-family: 'Bebas Neue', "微軟正黑體";
  font-weight: normal;
}
.g-btn {
  padding: 10px 0;
  width: 100%;
}
.block-btn{
  color: #fff !important;
  width: 100%;
  height: 40px;
  background: #DC5D10;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

@media (max-width: 768px) {
  .carousel-cell {
    width: 75%;
    height: 500px;
  }
}
@media (max-width: 450px) {
  .carousel-cell {
    width: 75%;
    height: 450px;
  }
}
/*--------------------------------------------------------------
# MYSTERY JACKPOT
--------------------------------------------------------------*/
.exclusive.jp{
  background: #f8f9fa;
  background: url(/action/assets/www/images/bg.jpeg) #e1ebf8 no-repeat top;
  background-size: cover;
}

/*---- jp-----*/
.jp .j-list-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  position: relative;
}
.jp .j-list-group .list {
  width: 60%;
}

.jp h6{
  font-family: 'Noto Sans TC', sans-serif;
}

.jp h6 {
  font-size: 2em;
  line-height: 30px;
  margin-bottom: 1em;
}
.j-list-group p {
  padding: 20px;
  font-size: 1em;
  color: #666;
  background: #ffffffa3;
  border-radius: 20px;
}

@media (max-width: 1024px) {

}
@media (max-width: 768px) {
  .exclusive.jp{
    padding: 20px;
  }
  .jp .j-list-group{flex-wrap: wrap;}
  .jp .j-list-group .gap-line{display: none;}
  .jp .list.aos-init {width: 100%;}
  .jp .list.aos-init img{ display: none;}
  .j-list-group p {
    font-size: .8em;
    background: transparent;
  }
  .jp h6 {
    font-size: 1.2em;
    line-height: 0px;
    margin-bottom: 0em;
}
}
/*--------------------------------------------------------------
# index-about
--------------------------------------------------------------*/
section.index-about {
  padding: 0;
  overflow: hidden;
}
.info-body {
  padding: 80px 30px;
  color: #333;
}
.index-about .section-title h2 {
  color:  #cd974e;
  font-size: xxx-large;
  text-align: left;
  text-shadow: 3px 2px 3px #ffedb9b3;
}
.index-about .leading-loose{
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 50px;
  opacity: .7;
}
.index-about2 {
  padding: 10rem 0px !important;
  background: url(/action/assets/www/images/home/home-bg-2.png) #fff no-repeat;
  background-size: contain;
  background-position: bottom;
}
.index-about2 .j-list-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  position: relative;
}
.index-about2 .j-list-group .list {
  width: 30%;
  text-align: center;
} 
.index-about2 .j-list-group img{
  max-height: 120px;
  margin: auto;
  margin-bottom: 20px;
  display: flex;
}

/* 數字動態 */
.data-count span.count {
  font-size: 65px;
  line-height: 65px;
}
.index-about .data-count .data-unit {
  font-size: 28px;
  line-height: 28px;
}
.index-about .data-count .data-title {
  color: #ccc;
}
.index-about .data-block{
  font-family: 'Noto Sans TC', sans-serif;
  font-family: 'Bebas Neue', sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.index-about .data-block .data-count{
  width: 50%;
}
/* 圖片動態 */
.index-about3.img {
  transform: scale(1,1);
  transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
}
.index-about3 .img:hover{
  transform: translate3d(29.53px, -40.27px, 10px) rotate(0.1deg) scale(1.1, 1.1);
  transition-duration: 2s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.casino-btn img{
  transform: scale(1,1);
  transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
}
.casino-btn-grop .casino-btn:hover img{
  transform: translate3d(0px, -4px, 14px) rotate(0deg) scale(1.1, 1.1);
  transition-duration: 2s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-transform: translate3d(0px, -4px, 14px) rotate(0deg) scale(1.1, 1.1);
  -moz-transform: translate3d(0px, -4px, 14px) rotate(0deg) scale(1.1, 1.1);
  -ms-transform: translate3d(0px, -4px, 14px) rotate(0deg) scale(1.1, 1.1);
  -o-transform: translate3d(0px, -4px, 14px) rotate(0deg) scale(1.1, 1.1);
}

@media (max-width: 768px) {
  section.index-about {
    padding: 3rem 1.6rem;
  }
  .index-about .leading-loose{
    font-size: 1rem;
  }
  .index-about .section-title h2 {
    text-align: center;
  }
  .index-about3 {
    padding: 8em 2em !important;
  }
  .img.Mermaid {
    position: absolute;
    right: 3em;
}
  .index-about3 .info-body {
    left: 8em;
    width: 80%;
  }
}

/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/
.brand-banner {
  position: relative;
  color: #fff;
  text-shadow: 0 0 7px rgb(0 0 0 / 80%);
  background: url(/action/assets/www/images/brand/brand-banner.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  margin: auto;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.brand-banner img{
  height: 120px;
  margin-bottom: 20px;
}
.brand-banner h2{
  font-size: 8rem;
  line-height: 1;
}
.brand-banner h4{
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 1px;
  font-family: system-ui;
}

#aboutSA .title.aboutSA {
  text-align: left;
  margin-top: 80px;
  font-size: 6rem;
  color: #333;
}

section#aboutServices {
  padding: 30px;
  position: relative;
  overflow: inherit;
}
#aboutServices .sv {
  padding: 10%;
  position: relative;
  bottom: -9%;
  text-shadow: 0 0 4px white;
}
#aboutServices .service-scope-title h3{
  font-size: 4rem;
}

.key_data_bg{
  position: relative;
  background: url(/action/assets/www/images/brand/key_data_bg.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  overflow: inherit;
}
/* .key_data_group:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background:#000;
  opacity: 0.3;
} */
.key_data {
  color: #fff;
  padding: 10%;
  position: relative;
  min-height: 28vw;
  height: auto;
  border-right: 1px solid #e3d1a0;
  border-bottom: 1px solid #e3d1a0;
  background: transparent;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.key_data h6{ 
  font-size: 4em;
}
.key_data p{
  opacity: 0;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.key_data:hover{
  background: rgb(178 148 24 / 88%);
}
.key_data:hover p{
  opacity: 1;
}
@media (max-width: 768px) {
  section#aboutRSG {
    padding: 6px 20px;
  }
  #aboutRSG .leading-loose, #aboutServices .service-scope-img {
    position: inherit;
  }
  #aboutServices .sv {
    bottom: 0;
  }
  .key_data p{
    opacity: 1;
  }
  section#aboutServices{
    padding: 0;
  }
  .key_data{
    height: 60vw;
    background: rgba(0,0,0,.5);
  }
}
@media (max-width: 600px) {
  .brand-banner h2{ font-size: 3rem; }
  .brand-banner h4, .brand-banner .about-nav nav a{ font-size: 1rem; }
  .key_data_bg{padding-bottom: 100px;}
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
section#faq {
  padding: 60px 20px;
}
.faq .container{
  max-width: 960px;
}
.faq .faq-list {
  padding: 0;
  list-style: none;
  color: #333;
}

.faq .faq-list li {
  padding: 10px;
  background: #f8f9fa;
  border: 4px solid #cfb67e;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.faq .faq-list a {
  display: contents;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}
.faq .faq-list .btn {
  display: initial;
  padding: 6px 24px;
  font-size: 1rem;
}
.faq .faq-list img{
  position: relative;
  border-radius: 20px;
}
.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 4px;
  top: 4px;
  background: #cfb67e;
  color: #FFF;
  padding: 6px;
  border-radius: 12px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 1rem 3rem;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #cfb67e;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
.faq.news .container{
  /* max-width: 80%; */
}
@media (max-width: 768px) {
  section#faq {
    padding: 60px 0;
  }
  .faq .faq-list p {
    padding: 1rem 1rem;
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 40px 0;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("/action/assets/www/images/footer-bg.png") #000 repeat;
  color: #fff;
  font-size: 14px;
  position: relative;
}

#footer .ft_logo img {
  max-height: 90px;
}

#footer ul{margin: 30px 0 0 0;}

#footer ul li{
  list-style: none;
  margin: 10px;
  display: inline-block;
}
#footer a {
  color: #ffffff;
  font-style: italic;
}
#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

#footer .footer-top .footer-logo img {
  height: 80px;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ffc600;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 30px 0 0 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 1rem;
  line-height: 1.5;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 1rem;
  margin-top: 30px;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #cd974e;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #5ab652;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  border-top: 1px solid #222222;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  padding-top: 5px;
}


/*--------------------------------------------------------------
# SEO
--------------------------------------------------------------*/
.product-item h3{
  font-size: 1.2rem;
  font-weight: 600;
}
.seo {
  border-top: 1px solid #c6c6c6;
  background: #ebebeb;
  padding-top: 60px;
  color: rgb(0 0 0 / 60%);
}
.seo .container{
  padding-bottom: 0;
}
.seo-faq-list i {
  font-size: 18px;
  position: absolute;
  right: 4px;
  top: 4px;
  background: rgb(144 144 144 / 30%);
  color: #737373;
  padding: 6px;
  border-radius: 12px;
  font-weight: 900;
}
.seo-faq-list .icon-show {
  display: none;
}

.seo-faq-list a.collapsed {
  color: #333;
}

.seo-faq-list a.collapsed:hover {
  color: #000;
}

.seo-faq-list a.collapsed .icon-show {
  display: inline-block;
}
.seo-faq-list a.collapsed .icon-close {
  display: none;
}
.seo-faq-list li {
  list-style: none;
  color: #575757;
  border-bottom: 1px solid rgb(144 144 144 / 30%);
  margin: 1rem 0px;
}
.seo-faq-list li h5{
  color: #333;
  font-size: 2rem;
}
/*--------------------------------------------------------------
# modal
--------------------------------------------------------------*/
.modal{
  top: 10%;
}
.modal-header {
  background: #cd974e;
  color: #333333;
  font-weight: 900;
  border-bottom: 0;
}
.modal-header .close {
  color: #333333;
  font-size: 2rem;
  padding: 1rem 1rem;
  margin: -1rem -0.2rem -1rem auto;
  padding: 0;
  background-color: transparent;
  border: 0;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 0 #333333;
  opacity: 1;
}
.modal-footer{
  border: 0;
}
h4.modal-title{
  color:#333;
}
.modal-content {
  background-color: rgb(255 255 255 / 90%);
  color: #333;
  border: 2px solid #cd974e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0 4px 2px rgb(0 0 0 / 30%);
}
.modal-body {
  max-height: 78vh;
  overflow-y: scroll;
}
.login_form .form-control {
  font-size: 18px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid;
  background: 0 0;
}
.login_form label {
  margin: 10px 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
}
.login_form .button-red {
  /* min-width: 120px;
  height: 40px; */
  color: #fff;
  letter-spacing: 2px;
  font-weight: 400 !important;
  text-shadow: none;
  margin: 0 -15px;
  background: #dc3545;
  border-radius: 40px;
  border: solid 1px #dc3545;
}
.login_form .button-red:hover {
  background :#99000f;
  transition: all 0.4s;
}
#notice li{
  margin-bottom: 12px;
  border-bottom: 1px dotted #c2c2c2;
}
/*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/
section#register {
  min-height: 80vh;
  padding: 60px 40px 120px 40px;
}

/*-----------------------------------
    ft_menu
------------------------------------*/

.ft-navbar {
  background: #231600;
  border-top: solid 1px #cd974e;
  padding: 8px 0 24px 0;
  box-shadow: 0px -3px 5px 0px rgb(229 211 162 / 51%);
}

.ft-navbar ul {
  margin: auto;
  height: 40px;
}
.ft-navbar ul li {
  list-style: none;
  padding: 6px 0px;
  text-align: center;
  min-width: 46px;
}
.ft-link-home {
  position: relative;
  bottom: 17px;
  width: 120px;
  height: 54px;
  z-index: 10;
  text-align: center;
}
.ft-link-home .home {
  text-align: center;
  margin: 18px 0;
}
.ft-link-home .home img {
  margin: -10px 0px;
  max-width: 65px;
}
.ft-link-home .home div{
  font-size: .6em;
  line-height: 2.4;
  width: 50px;
  margin: -26px 14px;
}
a.ft-link {
  line-height: 0;
  font-size: .8em;
  color: #cd974e;
}
.ft-link img {
    margin-bottom: 10px;
    max-width: 28px;
    height: 26px;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.7));
}
a.ft-link div{
  margin: 4px auto;
    text-align: center;
}

/* login-els */
.login-else, .register_else{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-else h4, .register h4{
  color: #000;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}
.login-else .hr ,.register_else .hr{
  width: 100%;
  height: 1px;
  margin: 16px 0;
  background: #8f8f8f;
}
.register_else .hr{
  margin: 40px 0;
}
.else-btn {
  display: flex;
    width: 275px !important;
    height: 50px;
    background: -webkit-linear-gradient(90deg,#5BC2E7 20%, #ffe97d,#5BC2E7 90% );
    border-radius: 40px;
    padding: 6px 20px;
    margin: 5px 0;
    align-items: center;
    justify-content: space-between;
}
.else-btn.google{
  background: #db4437;
  color: #fff;
}
.else-btn.line{
  background: #06c755;
  color: #fff;
}
.else-btn span {
  width: 80%;
  text-align: left;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 14px;
  border-left: 1px solid;
  padding-left: 16px;
}
.else-btn img{
  max-width: 40px;
  padding: 5px;
}

