/*--------------------------------------------------------------
# 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: #2e2517;
  background: #fff;
  /* background: linear-gradient(180deg, #ffe97d 0%, #c5a572 100%); */
}
main {
  margin-top: 85px;
}
a {
  text-decoration: none;
  color: var(--bs-secondary-bg);
  cursor: pointer;
}

a:hover {
  color: var(--bs-secondary-bg);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 900;
}
h4, h5, h6 {
  /* font-family: 'Bebas Neue', sans-serif; */
  font-weight: 600;
}
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: var(--bs-secondary-bg);
  padding: 6px 20px;
  border: 2px solid var(--bs-secondary-bg);
  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: linear-gradient(0deg, #86b7fe 0%, #c6deff 100%);
  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: linear-gradient(0deg, #0a58ca 0%, #86b7fe 100%);
  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: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 85px;
  transition: all 0.5s;
  z-index: 1030;
  transition: all 0.5s;
  background: #fff;
  /* background: linear-gradient(180deg, #ffe97d 0%, #c5a572 100%); */
  box-shadow: 0 4px 10px -3px rgb(26 35 52 / 50%);
}

#header .logo a span{
  font-size: 28px;
  margin-left: 12px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #202b41;
  font-family: "cwTeXYen", sans-serif;
}
#header .logo{
  text-align: center;
}
#header .logo img {
  padding: 0;
  max-height: 52px;
}
.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) {
  #header .logo img {
    margin: auto;
    max-height: 45px;
  }
  #header .logo{
    flex: none;
  }
}
@media (max-width: 960px) {
  main{
    margin-top: 70px;
    padding-bottom: 75px;
  }
  #header {
    height: 70px;}
  .scrolled-offset {
    margin-top: 90px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar-bg {
  padding: 0;
  color: #6e5a3a;
  display: flex;
  align-items: center;
}
.navbar {
  padding: 0;
  margin: auto 0;
}

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

.navbar li {
  position: relative;
  padding: 0;
}

.navbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #003a91;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.4s;
  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: #86b7fe;
}
.navbar a span{
  color: #FFF;
  font-size: 12px;
  display: none;
}

a.btn-login {
  color: #ffffff !important;
  background: #86b7fe;
  background: linear-gradient(0deg, #86b7fe 0%, #c6deff 100%);
  padding: 6px 20px;
  border-right: 0;
  width: 100px;
  height: 85px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
a.btn-register {
  background: #0a58ca;
  background: linear-gradient(0deg, #0a58ca 0%, #86b7fe 100%);
  color: #fff !important;
  padding: 6px 20px;
  width: 100px;
  height: 85px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.navbar .btn-register:hover {
  color: #ffffff !important;
  background: linear-gradient(0deg, #002357 0%, #0a58ca 100%); !important;
}
.navbar .btn-login:hover{
  color: #ffffff !important;
  background: linear-gradient(0deg, #406cad 0%, #86b7fe 100%);
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
@media (max-width: 767px) {
  #header {
    height: 70px;
    padding: 12px 0px;
  }
  .mob-nav-sign .btn-login, .mob-nav-sign .btn-register {
    width: 50%;
    font-size: .8rem !important;
    padding: 2px 22px;
    height: 30px;
    margin-right: 6px;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #cb9057;
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  background: var(--bs-secondary-bg);
  padding: 20px;
  margin: -12px;
}

.mobile-nav-toggle.bi-x {
  color: #ffc600;
  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;}
}
@media (max-width: 767px) {
  .mobile-nav-toggle {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: url(/action/assets/www/images/mb_menu_bg.webp) rgba(0, 0, 0, 0.9);
  background-size: cover;
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile::before{
  content: '';
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  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: 2rem;
  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: 20px;
}

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

.section-title p {
  margin-bottom: 0;
  color: #aeaeae;
}
@media (max-width: 768px) {
  .section-title {
    padding-bottom: 20px;
  }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 0;
}
.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% / 60%);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: hwb(0deg 100% 0% / 100%);
}

@media (max-width: 768px) {
  .testimonials {
    background: transparent !important;
    padding: 6px 0;
  }
  .testimonials .testimonial-item .testimonial-img {
    border-radius: 7px;
    overflow: hidden;
}
  .testimonials .testimonial-item p {
    width: 80%;
  }
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/*--------------------------------------------------------------
# m-side-menu
--------------------------------------------------------------*/
.Game-lobby._games{
  /* background: #2e2517;
  border-top: 1px solid rgb(126 153 180 / 40%);
  color: #a9bee3; */
}
.Game-lobby._games .pt_ {
  margin-bottom: 2.2em;
  border-bottom: #86b7fe 1px solid;
}
.Game-lobby._games .pt_ .tt {
  background: linear-gradient(0deg, #86b7fe 0%, #c6deff 100%);
  color: #ffffff;
}
.Game-lobby._games .pt_bg{
  background: transparent;
  margin: 2px;
  color: #a1a1a1;
  border-bottom: 5px solid transparent;
}
.Game-lobby._games .pt_bg.active{
  background: transparent;
  margin: 2px;
  color: #86b7fe;
  font-weight: 600;
  border-bottom: 5px solid #86b7fe;
}
.Game-lobby._games h4{
  margin-bottom: 1em;
}
.GameNav li.nav-item.col{
  text-align: center;
}
.GameNav .color .img{
  width: 50px;
  height: 50px;
  overflow: hidden;
  margin: auto;
  margin-bottom: 6px;
  margin-top: 10px;
}
.GameNav picture{
  display: block;
  margin: 10px auto 2px auto;
}
.GameNav img{
  width: 100%;
}


@media (max-width: 660px) {
  .Game-lobby._games .pt_{
    align-items: flex-end;
    justify-content: space-between;
  }
  .Game-lobby._games .tt span, .Game-lobby._games .pt_bg span{
    display: none;
  }  
  .GameNav .color .img {
    height: 40px;
  }
  .GameNav .nav-link{
    font-size: 14px;
  }
}
/* Game-lobby _games */
.Game-lobby._games{

}
/*--------------------------------------------------------------
# featured
--------------------------------------------------------------*/
.featured.slotPage {
  padding-bottom: 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: 12%;
  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: .8em;
  text-align: center;
  color: #000;
}
.featured .games .gamesBox--image img {
  display: block;
  width: 90%;
  margin: 0 auto;
}
/* .featured .games .gamesBox, .featured .games .gamesBox--image img{
  border-radius: 10px;
} */
.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: .8em;
  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: 40px;
  color: #fff;
  text-align: center;
  line-height: 40px;
}
.featured .games .gamesBox--button a.play {
  font-size: .8em;
  background: #f70809;
  background: linear-gradient(0deg, #86b7fe 0%, #c6deff 100%);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

@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: 540px) {
  .featured .games .gamesBox {
    width: 29%;
  }
  .featured .games .game-name {
    display: none;
  }
  /* .featured .games .gamesBox, .featured .games .gamesBox--image img{
    border-radius: 16px;} */

}
/*--------------------------------------------------------------
# Home-exclusive
--------------------------------------------------------------*/
.exclusive {
  width: 100%;
  background-color: #000000;
  color: #fff;
  padding: 4rem 0;
}
.exclusive.jp{
  padding: 0;
}
.exclusive .section-title h2{ color: #fff;}
.exclusive .flickity-button {
  position: absolute;
  background: #2e2517;
  border: none;
  color: #fff;
}
.exclusive .flickity-prev-next-button {
  top: -12%;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.exclusive .flickity-prev-next-button.previous {
  left: auto;
  right: 45px;
}
.flickity-button:hover {
  background: rgb(108 117 125 / 65%) !important;
  cursor: pointer;
}

.exclusive.jp .section-title h2{ color: #fff;}
.btn {
  position: relative;
  display: inline-block;
  font-size: .875rem;
  line-height: 1.25;
  min-width: 180px;
  /* background-color: transparent; */
  border: 4px solid transparent;
  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;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  border-color: #fff;
}
.btn--secondary:hover {
  color: #c6deff;
  background: #2395f8;
  border-color: #c6deff;
}
@media (min-width: 48em){
  .btn {
      font-size: 1.125rem;
      padding: 0.75rem 2.5rem;
  }
}
@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 ==========*/
.Game-lobby._index{padding: 2em 0; }
.Game-lobby .section-title h2,
.exclusive .section-title h2 {
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 0;
  text-align: left;
}
.Game-lobby .section-title h2{
  color: #284979;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  font-size: 2em;
}
.Game-lobby .section-title h2 img, .exclusive .section-title h2 img {
  max-height: 29px;
  margin-right: 6px;
}
.carousel-cell {
  width: 180px;
  height: 280px;
  margin-right: 10px;
  background: #151b29;
  counter-increment: carousel-cell;
  background-size: cover !important;
  border-radius: 20px;
  overflow: hidden;
}

.carousel-cell img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 340px;
}
.carousel-cell:hover {
  position: relative;
  bottom: 2%;
  transition: all 0.4s;
}
/* fade in lazy loaded image */
.carousel-cell-image.flickity-lazyloaded,
.carousel-cell-image.flickity-lazyerror {
  opacity: 1;
}
/* dots are lines */
.flickity-page-dots .dot{
  background: rgb(255 255 255 / 50%) !important;
  height: 4px !important;
  width: 40px !important;
  margin: 0 !important;
  border-radius:0 !important;
  -webkit-border-radius:0 !important;
  -moz-border-radius:0 !important;
  -ms-border-radius:0 !important;
  -o-border-radius:0 !important;
}

/* external Games */
.game_main_spec_group{
  /* position: relative;
  display: flex;
  flex-wrap: wrap;
  transition: all .3s ease 0s;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end; */
}
.game_main_spec_group .game_main_spec{
  /* width: 100%;
  font-size: .8em;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin: 20px 0; */
}
/* .game_main_spec_group .game_main_spec span{ opacity: .8;} */
/* .game_main_spec_group .game_main_spec b {
  display: block;
  margin-bottom: 5px;
  opacity: 1;
  font-size: 1.6em;
  line-height: 1;
} */
/* .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%;
  display: none;
} */

.carousel-cell.is-selected:hover .g-btn {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: rgb(0 0 0 / 30%);
  padding: 10px;
  display: flex;
  align-items: center;
  transition: all .3s ease 0s;
}
.g-btn .block-btn{
  width: 100%;
  height: 40px;
}
@media (max-width: 768px) {
  .flickity-enabled.is-draggable .flickity-viewport{
    height: 200px;
  }
  .carousel-cell {
    width: 126px;
    height: 196px;
  }
  .flickity-page-dots{
    display: none;
  }
}
/*--------------------------------------------------------------
# MYSTERY JACKPOT
--------------------------------------------------------------*/
.exclusive.jp {
  position: relative;
  background: url(/action/assets/www/images/home/jp_bg.jpg) #c6deff;
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-group>*{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: top center !important;
}

.jackpot .data-count{
  font-family: 'Bebas Neue', sans-serif;
  font-size: initial;
  text-align: center;
}
.jackpot .data-count span{
  font-size: 8rem !important;
  font-weight: 900;
  background: linear-gradient(0deg, #86b7fe5e 0%, #ffffffc2 100%);
  color: #0469b4;
  padding: 0px 25px;
  margin: 0px 1px;
}
.jackpot .data-count span.dot {
  background: transparent;
  color: #0469b4;
  padding: 0;
  position: relative;
  bottom: -20px;
}
/*---- jp-----*/
.jp .j-list-group {
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  position: relative;
}
.jp .j-list-group .gap-line {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  width: 1px;
  height: 60px;
  margin: 0 15px;
  background: #ffffff;
  opacity: 0.3;
  position: relative;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
.jp .list.aos-init{
  width: 23%;
  text-align: center;
}
.jp .j-list-group .list span {
  font-size: 60px;
  line-height: 60px;
  opacity: .4;
  font-weight: normal;
  display: block;
  margin-bottom: 8px;
  font-family: 'Bebas Neue', sans-serif;
}
.jp h5, .jp h6{
  font-family: 'Noto Sans TC', sans-serif;
}
.jp h5 {
  font-size: 28px;
  line-height: 38px;
}
.jp h6 {
  font-size: 20px;
  line-height: 30px;
}
.jp .fc-ccc {
  color: #003a91;
}

.main-tit h3{
  font-size: 4em;
  margin-top: 1em;
  color: #fff;
}

@media (max-width: 1024px) {
  .jackpot .data-count span {
    font-size: 6rem !important;
    padding: 0px 16px;
  }
}
@media (max-width: 768px) {
  .jackpot .data-count span {
    font-size: 3rem !important;
    padding: 0px 6px;
  }
  .jp .j-list-group{flex-wrap: wrap;}
  .jp .j-list-group .gap-line{display: none;}
  .jp .list.aos-init {width: 50%;}

}
/*--------------------------------------------------------------
# main-style
--------------------------------------------------------------*/
.bg-body-tertiary {
  --bs-bg-opacity: 1;
  /* background-color: #343a52 !important; */
  background-color: #fff;
}
.bg-body-blue-dark {
  /* background: #eaeaea; */
  color: #333 !important;
}
.bg-body-blue-light {
  background:#fff;
}
.border-primary {
  color: #FFF;
  border-color: #c6deff !important;
  background: linear-gradient(0deg, #86b7fe 0%, #c6deff 100%);
  padding: 10px 10px;
  margin: 10px 0;
  font-size: .8em;
  transition: 0.3s;
}
.border-primary:hover{
  color: #FFF;
  background: linear-gradient(0deg, #5a93e6 0%, #c6deff 100%);
}
.border-primary img{
  max-width: 20px;
  margin-left: 4px;
}
.bg-body-blue-dark .border-primary {
  color: #FFF;
}
.fw-bold {
  font-weight: 700 !important;
}
/*--------------------------------------------------------------
# index-crypto
--------------------------------------------------------------*/
.index-crypto {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.crypto-info-body.height-a{ height: 350px; }
.crypto-info-body.height-b{ height: 259px; }
.crypto-info-body.height-c{ height: 80px;margin-top: -6px !important;; }
.crypto-info-body {
  color: #2e2517;
  text-align: center;
  margin: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.crypto-info-box{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crypt-img{
  max-width: 40%;
  margin-right: 2%;
  padding: 14px;
}
.icon_crypto {
  font-size: .8em;
  font-weight: 600;
  color: #003a91;
}
.icon_crypto img {
  color: #003a91;
  max-width: 42px;
  max-height: 42px;
  padding: 5px;
}
.crypt-img.uda{
  width: 22%;
  padding: 10px 10px;
  background: #ffffff4d;
  border: 1px solid #c6deff2b;
  border-radius: 5px;
  margin-left: 40px;
}

@media (max-width: 1024px) {
  .crypto-info-body.height-a{ height: 250px; }
  .crypto-info-body.height-b{ height: 159px; }
  .crypto-info-body.height-c{ height: 80px;margin-top: -6px !important;; }
}
@media (max-width: 600px){
  .index-crypto {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
    .crypto-info-body.height-c {
      height: 60px;
      margin-top: -6px !important;
    }
    .icon_crypto img {
      max-width: 32px;
      max-height: 32px;
      margin-right: 4px;
      margin-left: 4px;
  }
  .icon_crypto span{
    display: none;
  }
}
/*--------------------------------------------------------------
# index Game-lobby
--------------------------------------------------------------*/
.Game-lobby{
  padding: 4em 0;
}
.game-lobby-body {
  overflow: hidden;
}
.game-lobby-body:hover .lobby-img{
  filter: grayscale(20%) brightness(120%);
  -webkit-filter: grayscale(20%) brightness(120%);
}
.lobby-name {
  background: #86b7fe;
  color: #ffffff;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lobby-name img{
  height: 20px;
}
.lobby_banner {
    padding: 2em 10em;
}
/*--------------------------------------------------------------
# Game-lobby._lobby
--------------------------------------------------------------*/
.lobby_banner {
  padding: 2em 6em;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 5px rgb(44 61 91 / 55%);
  margin-bottom: 1rem;
}
._casino .lobby_banner{
    background-image: url(/action/assets/www/images/lobby/lobby_banner_casino.jpg);
    background-position: right top; 
}
._sport .lobby_banner{
  background-image: url(/action/assets/www/images/lobby/lobby_banner_sport.jpg);
  background-position: right top; 
}
._slot .lobby_banner{
  background-image: url(/action/assets/www/images/lobby/lobby_banner_slot.jpg);
  background-position: right top; 
}
._keno .lobby_banner{
  background-image: url(/action/assets/www/images/lobby/lobby_banner_keno.jpg);
  background-position: right top; 
}
._fish .lobby_banner{
  background-image: url(/action/assets/www/images/lobby/lobby_banner_fish.jpg);
  background-position: right top; 
}
._fish .lobby_banner .section-title h2.title{
  color: #284979 !important;
  font-size: 30px !important;
  line-height: normal !important;
  text-shadow: 4px 0px 4px #c6deff;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}
.lobby_banner .section-title{
  margin-bottom: 0;
  padding-bottom: 0;
}
.Game-lobby .lobby_brand .section-title h2, .Game-lobby._lobby._fish .section-title h2.title{
  font-size: 1.2em;
  color: #2e2517;
  display: flex;
  align-items: flex-start;
  flex-direction:row;
}
.Game-lobby._lobby .section-title h2 img{
  margin-right: 10px;
  max-height: 26px;
}
.Game-lobby .lobby_brand .section-title h2 small{
  font-weight: normal;
}
.lob {
  counter-increment: lob-body;
}
.lob .flickity-viewport {
  /* height: 400px !important; */
}
.lob-body{
  width: 260px;
  height: 380px;
  border-radius: 20px;
  box-shadow: 0 3px 5px rgb(44 61 91 / 55%);
  background-size: cover !important;
  background-position: center !important;
  margin: .5em;
}
.spec_group{
  text-align: center;
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}
.Game-lobby._lobby .lob-body {
  background: url(/action/assets/www/images/lobby/lob_casino_bg.png);
}
.carousel-cell.lob-body:hover img.img-fluid {
  position: relative;
  max-width: 100% !important;
  transition: all 0.4s;
}
.carousel-cell.lob-body:hover .btn{
  /* max-width: fit-content; */
}
.game-brand h4{
  text-align: center;
  margin: 10px 0;
}
._lobby._slot .carousel-cell{
  overflow: visible;
}
.game-brand-mini {
  position: absolute;
  right: 17px;
  top: -1px;
  z-index: 1;
  background: #0a58ca;
  border-radius: 2px 2px 6px 6px;
  padding: 4px 10px;
  color: #ffffff;
  font-size: .8em;
  font-weight: 600;
  box-shadow: 0px 3px 4px rgb(44 61 91 / 50%);
}
.game-brand-mini.rsg, .game-brand-mini.blue{ background: #2e2517;}
.game-brand-mini.ge{ background: #3830ca;}
.lob-body .btn{
  margin: 0;
}
.Game-lobby .flickity-prev-next-button { /* 左右按鍵 */
  top: -7%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.Game-lobby  .flickity-prev-next-button.previous { /* 左右按鍵 */
  left: auto;
  right: 50px;
}
.Game-lobby  .flickity-page-dots .dot{/* 下方點點顏色 */background: #2e2517 !important;}
@media (max-width: 1024px) {

}
@media (max-width: 768px) {
  .lobby_banner{ padding: 2em 2em; }
  .Game-lobby._lobby .section-title h2 {
    font-size: 22px;
    line-height: 20px;}
  .Game-lobby .flickity-page-dots { /* 下方點點 */ display: block; }
  .Game-lobby{ padding-top: 1em; }
}
@media (max-width: 600px) {
  .lob .flickity-viewport { height: fit-content; }
  .spec_group{ padding: .5em;}
  .lob-body{
    width: 160px;
    height: 240px;
  }
  .lobby_banner .section-title h2 span{ display: none;}
  .game-brand h4{ font-size: 1rem;}
  .lob-body .btn{min-width: auto; width: 120px !important;}
}
/*--------------------------------------------------------------
# tab-pane-lob game-brand
--------------------------------------------------------------*/
.index-lobby{
  padding: 2em 0;
}
.index-lobby .nav-tabs .nav-link {
  width: 200px;
  color: #86b7fe;
  margin-bottom: -3px;
  background: 0 0;
  border: 3px solid transparent;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.index-lobby .nav-tabs .nav-item.show .nav-link, .index-lobby .nav-tabs .nav-link.active {
  color: #4c678f;
  background-color: #fff;
  border-color: #c6deff #86b7fe rgb(197 165 114 / 0%);
}
.index-lobby .nav-tabs .nav-link img {
  height: 30px;
  margin-bottom: 6px;
}
.index-lobby .nav-tabs {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border-bottom: 3px solid #86b7fe;
}
.tab-game-brand .lob-body {
  background: url(/action/assets/www/images/lobby/background_casino.jpg);
  background-size: cover !important;
  background-position: center !important;
}
.tab-game-brand #fishing .lob-body{
  width: 300px;
  /* background: url(/action/assets/www/images/lobby/lob_casino_bg.png); */
}

.tab-game-brand #fishing .game-brand-mini {
  position: relative;
  top: -17px;
  right: auto;
  left: 37%;
  width: 80px;
}

@media screen and (max-width: 767px) {
  .tab-game-brand .section-title{ display: none;}
  .index-lobby .nav-tabs .nav-link {
    width: 100%;
    margin-bottom: -4px;
    border-radius: 20px 20px 0px 0px;
  }
  .tab-content.tab-game-brand {
    padding: 0px 20px 0 0;
  }
  .tab-pane-lob {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .tab-pane-lob .spec_group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 0;
  }
  .tab-pane-lob .lob-body {
    width: 100%;
    height: 160px;
    margin: .5em;
    padding: 0;
    background-position: top !important;
  }
  #fishing .tab-pane-lob .lob-body {
    width: 45%;
    height: 300px;
  }
  .tab-pane-lob .spec_group .img {
    width: 50%;
    padding-left: 12px;
    height: 160px;
    padding-top: 10px;
    padding-left: 12px;
  }
  .tab-pane-lob .spec_group .img img{
    max-width: none;
    max-height: 100%;
  }
  .tab-pane-lob .describe {
    width: 50%;
    padding: 0px 12px;
    text-align: center;
  }
  #fishing .tab-pane-lob .describe {
    width: 100%;
    margin: auto;
  }
  .tab-pane-lob .describe .btn{min-width: auto; width: 210px !important;}
  #fishing  .tab-pane-lob {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
  }
  #fishing .tab-pane-lob .spec_group .img {
    margin-left: 0;
    width: 100%;
    padding: 10px;
  }
  #fishing  .tab-pane-lob .spec_group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 0;
  }
  .tab-game-brand #fishing .game-brand-mini {
    position: relative;
    top: 0;
    right: auto;
    left: 25%;
    width: 80px;
  }
}
@media screen and (min-width: 768px) {
  .tab-pane-lob {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .tab-pane-lob .spec_group .img img{
      max-width: 100%;
  }
  #fishing .tab-pane-lob .spec_group .img img,
  #slot .tab-pane-lob .spec_group .img img{
    max-width: 200px;
  }
}
@media screen and (min-width: 1440px) {
  .tab-pane-lob {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    justify-content: center;
  }
  #fishing .tab-pane-lob, #slot .tab-pane-lob {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
  }
  .tab-pane-lob .lob-body{
    height: 360px;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
section#faq {
  padding: 60px 20px;
}
#faq .section-title h2{
  color: #41464b;
}
.faq .container{
  max-width: 960px;
}
.faq .faq-list {
  padding: 0;
  list-style: none;
  color: #333;
}
.faq .faq-list h3{ 
  color: #41464b;
  padding: 12px 0 0 6px; }

.faq .faq-list li {
  padding: 10px;
  background: #f8f9fa;
  border: 4px solid #c6deff;
  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: #c6deff;
  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: #f44336;
}

.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: #ffc600;
  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
--------------------------------------------------------------*/
section.seo {
  padding: 60px 0;
  border-top: 1px solid #c6deff;
  background: url(/action/assets/www/images/home/jp_bg.jpg) #c6deff;
  background-size: cover;
}
.seo .section-title h2{
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 0;
  text-align: left;
}
.product-item h3{
  font-size: 1.2rem;
  font-weight: 600;
}

section.seo .container{
  padding-bottom: 0;
}
@media (max-width: 768px) {
  section.seo {
    font-size: smaller;
  }
}
/*--------------------------------------------------------------
# modal
--------------------------------------------------------------*/
.modal{
  top: 10%;
}
.modal-header {
  background: linear-gradient(0deg, #86b7fe 0%, #c6deff 100%);
  color: #FFF;
  font-weight: 900;
  border-bottom: 0;
}
.modal-header .close {
  color: #fff;
  font-size: 3rem;
  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 #fff;
  opacity: 1;
}
.modal-footer{
  border: 0;
}
h4.modal-title{
  color:#fff;
}
.modal-content {
  background-color: rgb(255 255 255 / 90%);
  color: #131824;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0 4px 2px rgb(50 80 133 / 51%);
}
#_register .modal-body {
  font-size: 14px;
  padding: 2rem;
}
#_register .modal-body {
  font-size: 14px;
  padding: 2rem;
  max-height: 60vh;
  overflow: scroll;
}
label.form-check-label a {
  color: #dc3545;
}
.modal-body
.login_form .form-control {
  font-size: 18px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid;
  background: 0 0;
}
.form-control.is-valid, .was-validated .form-control:valid{
  border-color: #2e2517;
}
.login_form label {
  margin: 10px 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
}
.login_form .button-red {
  color: #fff;
  letter-spacing: 2px;
  font-weight: 400 !important;
  text-shadow: none;
  margin: 0 -15px;
  background:linear-gradient(0deg, #86b7fe 0%, #c6deff 100%);
  border-radius: 40px;
  border: solid 1px #c6deff;
}
.login_form .button-red:hover {
  background: linear-gradient(0deg, #0a58ca 0%, #86b7fe 100%) !important;
  transition: all 0.4s;
}
.else-btn.disabled, .else-btn:disabled {
  pointer-events: none;
  opacity: .65;
}
#notice li{
  margin-bottom: 12px;
  border-bottom: 1px dotted #131824;
}

/*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/
section#register {
  min-height: 60vh;
  padding: 40px 40px 120px 40px;
}

/*-----------------------------------
    ft_menu
------------------------------------*/
.ft-navbar {
  background: linear-gradient(0deg, #4c8ae5 0%, #d6e7ff 100%);
  border-top: solid 1px #c6deff;
  padding: 8px 0 24px 0;
  box-shadow: 0 4px 10px -3px rgba(191, 191, 191, 0.5);
}

.ft-navbar ul {
  margin: auto;
  height: 40px;
  color: #d3def9;
}
.ft-navbar ul li {
  list-style: none;
  padding: 6px 10px;
  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: -8px 0px;
  max-width: 100%;
}
.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: #fff;
}
.ft-link img {
  margin-bottom: 10px;
  width: 28px;
  height: 28px;
}
a.ft-link div{
  margin: 4px auto;
    text-align: center;
}
/*======================mynav=====================*/
.overlay {
  height: 100%;
  width: 0%;
  position: fixed;
  z-index: 1029;
  top: 0;
  left: 0;
  background-color: rgb(255 255 255 / 55%);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  top: 0;
  position: relative;
  width: 70%;
  height: 100%;
  padding: 100px 12%;
  text-align: left;
  background: #fff;
  background: #86b7fe91;
  opacity: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.overlay a {
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
  border-radius: 12px;
  padding: 10px 30px;
  text-align: center;
  background: linear-gradient(179deg, #0048b0d6 0%, #002356 100%);
  color: #fff !important;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.overlay a:hover, .overlay a:focus {
  color: #e3ba94;
}
a.overlay-btn img {
  width: 25px;
  height: 25px;
  color: #fff;
  margin-right: 10px;
}

/* mobNav_focus */
a.mobNav_focus {
  width: 100%;
  height: 55px;
  border-radius: 12px;
  padding: 0px 25px;
  text-align: center;
  background: linear-gradient(180deg, #0d6efd 0%, #00275f 100%);
  color: #fff !important;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
a.mobNav_focus.color1{
  background: #478ec5;
}
a.mobNav_focus.color2{
  background: #478ec4;
}
.mobNav_focus img {
  width: 40px;
  padding: 7px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

/*======================login-els=====================*/
.login-else, .register_else{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-else h4, .register h4{
  color: #2e2517;
  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{
    padding: 0;
    background:linear-gradient( 127deg,
    #4285f4 0%, #4285f4 15%,
    #DB4437 15%, #DB4437 20%,
    #f4b400 20%, #f4b400 30%,
    #0f9d58 20%, #0f9d58 100%);
}
.google div{
  color: #DB4437;
  background: #ffffff;
  width: 272px !important;
  height: 47px;
  border-radius: 40px;
  padding: 6px 20px;
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.else-btn.line{
  background: #06c755;
  color: #fff;
  border: 2px solid #0ce762;
}
.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;
}

