html,
body {
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(4, 3, 29) 100%) !important;
  font-family: "kanit-Regular" !important;
}

a {
  display: block;
  text-decoration: none !important;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
  line-height: 1.5;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

@font-face {
  font-family: "kanit-Regular";
  src: url("../../assets/fonts/Kanit/Kanit-Regular.ttf");
}
@font-face {
  font-family: "kanit-Italic";
  src: url("../../assets/fonts/Kanit/Kanit-Italic.ttf");
}
@font-face {
  font-family: "kanit-Light";
  src: url("../../assets/fonts/Kanit/Kanit-Light.ttf");
}
.header_sec {
  position: fixed;
  display: block;
  z-index: 999;
  width: 100%;
  padding: 20px 0;
}
.header_sec .header_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_sec .header_box .logo_img {
  width: 200px;
  transition: 0.3s;
}
.header_sec .header_box .menu_list {
  display: flex;
  align-items: center;
}
.header_sec .header_box .menu_list .menu_item {
  margin: 0 0 0 20px;
  text-align: center;
}
.header_sec .header_box .menu_list .menu_item .th,
.header_sec .header_box .menu_list .menu_item .en {
  transition: 0.3s;
  color: #fff;
}
.header_sec .header_box .menu_list .menu_item .en {
  font-size: 0.9rem;
  margin-bottom: 0;
  text-transform: uppercase;
  font-family: "kanit-Light";
}
.header_sec .header_box .menu_list .menu_item:hover .th,
.header_sec .header_box .menu_list .menu_item:hover .en {
  color: #009cff;
}

.header_main {
  background: linear-gradient(180deg, rgb(11, 32, 50) 8%, rgb(0, 23, 42) 82%, rgb(0, 0, 0) 100%);
}

.header_sec.darkHeader {
  background: linear-gradient(180deg, rgb(11, 32, 50) 8%, rgb(0, 23, 42) 82%, rgb(0, 0, 0) 100%);
  transition: 0.3s;
  padding: 5px 0;
}
.header_sec.darkHeader .header_box .logo_img {
  width: 170px;
}

.header_sec_mobile {
  position: fixed;
  display: none;
  z-index: 999;
  width: 100%;
  padding: 32px 0;
  background-color: #101112;
}
.header_sec_mobile .header_box {
  /* menu */
  /* menu icon */
  /* menu btn */
}
.header_sec_mobile .header_box .logo_img {
  width: 130px;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -65px;
}
.header_sec_mobile .header_box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: transparent;
}
.header_sec_mobile .header_box li a {
  display: block;
  padding: 30px 20px 10px 20px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
}
.header_sec_mobile .header_box li a:hover,
.header_sec_mobile .header_box .header .menu-btn:hover {
  color: #0024bc;
}
.header_sec_mobile .header_box .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}
.header_sec_mobile .header_box .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}
.header_sec_mobile .header_box .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 20px 0 20px 20px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.header_sec_mobile .header_box .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 4px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 30px;
  border-radius: 5px;
}
.header_sec_mobile .header_box .menu-icon .navicon:before,
.header_sec_mobile .header_box .menu-icon .navicon:after {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  transition: all 0.2s ease-out;
  width: 40px;
  border-radius: 5px;
}
.header_sec_mobile .header_box .menu-icon .navicon:before {
  top: 10px;
}
.header_sec_mobile .header_box .menu-icon .navicon:after {
  top: -10px;
}
.header_sec_mobile .header_box .menu-btn {
  display: none;
}
.header_sec_mobile .header_box .menu-btn:checked ~ .menu {
  max-height: 384px;
}
.header_sec_mobile .header_box .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.header_sec_mobile .header_box .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.header_sec_mobile .header_box .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.header_sec_mobile .header_box .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header_sec_mobile .header_box .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.header_sec_mobile.darkHeader {
  transition: 0.3s;
  padding: 24px 0;
}
.header_sec_mobile.darkHeader .logo_img {
  width: 110px;
  position: absolute;
  top: 5px;
  left: 50%;
  margin-left: -55px;
  transition: 0.3s;
}

.btn_back {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  position: fixed;
  top: 5px;
  left: 15px;
  padding: 0px 15px;
  font-size: 18px;
  border-radius: 5px;
}

.button_main {
  width: 200px;
  display: inline-block;
  background: #0055b9;
  border: 0.7px solid #2020dd;
  padding: 7px 10px;
  font-size: 26px;
  border-radius: 30px;
  box-shadow: inset 0 0 10px #02010a;
  color: #fff;
  text-align: center;
  transition: 0.3s;
}
.button_main:hover {
  box-shadow: 0 2px 10px #049cfc;
  color: #fff;
}

.button_second {
  width: 200px;
  display: inline-block;
  background: #ff3ecc;
  border: 0.7px solid #2020dd;
  padding: 7px 10px;
  font-size: 26px;
  border-radius: 30px;
  box-shadow: inset 0 0 10px #02010a;
  color: #fff;
  text-align: center;
  transition: 0.3s;
}
.button_second:hover {
  box-shadow: 0 2px 10px #049cfc;
  color: #031d50;
}

.banner_bg {
  height: 610px;
  display: flex;
  align-items: flex-end;
  background-image: url("../../assets/img/1st-BG.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner_bg .text_box {
  width: 60%;
  padding-bottom: 80px;
  text-align: center;
}
.banner_bg .text_box .head {
  font-family: "kanit-Italic";
  text-transform: uppercase;
  font-size: 90px;
  color: #fff;
  margin-bottom: 0;
  -webkit-text-stroke: 3px #002c72;
  text-shadow: 0px 3px 10px rgba(72, 230, 244, 0.16);
}
.banner_bg .text_box .title {
  color: #fff;
  margin-bottom: 0;
}
.banner_bg .text_box .img_cas {
  width: 80%;
  margin: 0 auto;
}
.banner_bg .button_main {
  display: none;
}
.banner_bg .girl_box {
  width: 40%;
}
.banner_bg .girl_box .img_girl {
  width: 70%;
}

.games_sec {
  background-image: url("../../assets/img/2rd-BG.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 50px;
}
.games_sec .games_box {
  border-radius: 20px;
  border: 2px solid #1e26f4;
  box-shadow: 0 2px 10px #4ddef8;
  border-radius: 20px;
  z-index: 98;
  padding: 0 10px 0 10px;
  position: relative;
}
.games_sec .games_box .menu_games_list {
  position: absolute;
  z-index: 98;
  top: -35px;
  left: 50%;
  margin-left: -45%;
  width: 90%;
  height: 70px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-bottom: none;
}
.games_sec .games_box .menu_games_list .menu_games_items {
  width: calc(24% - 30px);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 5px solid #090fa2;
  background: #000;
  border-radius: 50px;
  padding: 0px 0px 0px 20px;
  margin: 0 15px;
  box-shadow: 0 2px 6px #0024bc;
  transition: 0.3s;
}
.games_sec .games_box .menu_games_list .menu_games_items .text_box {
  width: 60%;
}
.games_sec .games_box .menu_games_list .menu_games_items .text_box .th {
  font-size: 28px;
  margin-bottom: 0;
}
.games_sec .games_box .menu_games_list .menu_games_items .text_box .en {
  font-size: 18px;
  margin-bottom: 0;
  text-transform: uppercase;
  font-family: "kanit-Light";
}
.games_sec .games_box .menu_games_list .menu_games_items .text_box .th,
.games_sec .games_box .menu_games_list .menu_games_items .text_box .en {
  color: #fff;
  text-shadow: 0px 3px 6px #299ff5;
}
.games_sec .games_box .menu_games_list .menu_games_items .img_box {
  width: 40%;
}
.games_sec .games_box .menu_games_list .menu_games_items:hover {
  box-shadow: 0 2px 10px #049cfc;
}
.games_sec .games_box .menu_games_list .menu_games_items.active {
  background-color: #090fa2;
}
.games_sec .games_box .menu_games_list .menu_games_items.blue .text_box .th,
.games_sec .games_box .menu_games_list .menu_games_items.blue .text_box .en {
  color: #dae1fe;
}
.games_sec .games_box .menu_games_list .menu_games_items.pink .text_box .th,
.games_sec .games_box .menu_games_list .menu_games_items.pink .text_box .en {
  color: #f5cdfc;
}
.games_sec .games_box .games_list {
  width: 100%;
  padding: 100px 10px 50px 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.games_sec .games_box .games_list .games_item {
  width: 20%;
  padding: 10px;
  text-align: center;
}
.games_sec .games_box .games_list .games_item .img_game {
  width: 100%;
}
.games_sec .games_box .games_list .games_item .text_game_name {
  font-size: 18px;
  margin-top: 10px;
  color: #9f9f9f;
}

.promotion_sec {
  background-image: url("../../assets/img/3rd-BG.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 50px 0;
}
.promotion_sec .img_head {
  width: 30%;
  margin: 0 auto 50px auto;
}
.promotion_sec .img_line {
  margin-top: 50px;
}
.promotion_sec .lSPager.lSpg {
  margin-top: 50px !important;
}
.promotion_sec .lSSlideOuter .lSPager.lSpg > li a {
  height: 5px;
  width: 50px;
  background: transparent;
  border: 1px solid #fff;
}
.promotion_sec .lSSlideOuter .lSPager.lSpg > li:hover a,
.promotion_sec .lSSlideOuter .lSPager.lSpg > li.active a {
  background: #009cff;
  border-color: #009cff;
}

.footer_sec {
  padding: 50px 0;
}
.footer_sec .about {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_sec .about .img_footer {
  width: 200px;
  margin-right: 30px;
}
.footer_sec .about .text_footer {
  width: calc(100% - 200px);
  color: #9f9f9f;
}
.footer_sec .menu_footer_list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.footer_sec .menu_footer_list .menu_footer_item {
  margin: 0 10px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}
.footer_sec .menu_footer_list .menu_footer_item .th,
.footer_sec .menu_footer_list .menu_footer_item .en {
  color: #fff;
}
.footer_sec .menu_footer_list .menu_footer_item .en {
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-family: "kanit-Light";
}
.footer_sec .menu_footer_list .menu_footer_item:hover .th,
.footer_sec .menu_footer_list .menu_footer_item:hover .en {
  color: #009cff;
}
.footer_sec .menu_bank_list {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer_sec .menu_bank_list .menu_bank_item {
  margin: 10px;
}
.footer_sec .menu_bank_list .menu_bank_item .img_bank {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
}
.footer_sec .copyright {
  text-align: center;
  color: #9f9f9f;
  text-transform: uppercase;
  font-family: "kanit-Light";
}

.main_sec {
  min-height: calc(100vh - 300px);
  padding: 230px 0 50px 0;
  background-image: url("../../assets/img/2rd-BG.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main_sec .member_box {
  width: 80%;
  margin: 0 auto;
  border-radius: 20px;
  border: 2px solid #049cfc;
  box-shadow: 0 2px 10px #049cfc;
}
.main_sec .member_box.white {
  background: #fff;
  overflow: hidden;
}
.main_sec .member_box.white .head_box {
  width: 100%;
  background-color: #004fae;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 24px;
}
.main_sec .member_box.white .detail_box {
  padding: 30px 60px;
}
.main_sec .member_box.white .txt_head {
  text-align: center;
  margin-bottom: 20px;
}
.main_sec .member_box.white .input-group .input-group-text {
  width: 40px;
  justify-content: center;
}
.main_sec .member_box.white .form_affiliate {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}
.main_sec .member_box.white .form_affiliate .text_h {
  width: 20%;
  text-align: center;
  color: #016697;
}
.main_sec .member_box.white .form_affiliate .text_h .main {
  margin-bottom: 0;
}
.main_sec .member_box.white .form_affiliate .text_h .submain {
  margin-bottom: 0;
}
.main_sec .member_box.white .form_affiliate .form_control {
  width: calc(60% - 40px);
  margin: 0 20px;
  padding: 5px 15px;
  color: #016697;
  font-size: 18px;
  border: 1px solid #016697;
}
.main_sec .member_box.white .form_affiliate .button_third {
  width: 20%;
  text-align: center;
  background-color: #004fae;
  color: #fff;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 20px;
  transition: 0.3s;
}
.main_sec .member_box.white .form_affiliate .button_third i {
  margin-right: 5px;
}
.main_sec .member_box.white .form_affiliate .button_third:hover {
  box-shadow: 0 2px 10px #049cfc;
}
.main_sec .member_box.white .form_affiliate .button_third.main {
  width: 50%;
  margin: 10px auto;
}
.main_sec .member_box.white .text_detail {
  width: 70%;
  margin: 0 auto;
  color: #707070;
}
.main_sec .member_box.white .table {
  font-family: "kanit-Light";
}
.main_sec .member_box.white .table thead th,
.main_sec .member_box.white .table thead td,
.main_sec .member_box.white .table tbody th,
.main_sec .member_box.white .table tbody td {
  padding: 10px 20px;
  white-space: nowrap;
}
.main_sec .member_box.black {
  background: #000;
  padding: 20px;
}
.main_sec .member_box.black .head_spin_box {
  width: 50%;
  margin: 0 auto;
  background: linear-gradient(180deg, rgb(24, 36, 46) 0%, rgb(0, 0, 0) 100%);
  border: 1px solid #049cfc;
  border-radius: 20px;
  padding: 10px 20px;
  text-align: center;
  color: #fff;
}
.main_sec .member_box.black .spin_box {
  width: 40%;
  margin: 50px auto 10px auto;
}
.main_sec .member_box.black .button_play {
  width: 200px;
  margin: 0 auto;
  border-radius: 20px;
  transition: 0.3s;
}
.main_sec .member_box.black .button_play:hover {
  box-shadow: 0 2px 10px #049cfc;
}
.main_sec .member_box.black .member_menu_list {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-top: 30px;
}
.main_sec .member_box.black .member_menu_list .member_menu_item {
  width: 25%;
  color: #fff;
  text-align: center;
  margin: 20px 0px;
}
.main_sec .member_box.black .member_menu_list .member_menu_item .img_icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid #0055b9;
  margin: 0px auto;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.main_sec .member_box.black .member_menu_list .member_menu_item .img_icon img {
  width: 70%;
  transition: 0.3s;
}
.main_sec .member_box.black .member_menu_list .member_menu_item .img_icon:hover {
  background: #fff;
}
.main_sec .member_box.black .member_menu_list .member_menu_item .img_icon:hover img {
  width: 80%;
}
.main_sec .member_box.black .button_close {
  width: 25%;
  color: #fff;
  text-align: center;
  margin: 20px auto;
}
.main_sec .member_box.black .button_close .img_icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid #0055b9;
  margin: 0px auto;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.main_sec .member_box.black .button_close .img_icon img {
  width: 70%;
  transition: 0.3s;
}
.main_sec .member_box.black .button_close .img_icon:hover {
  background: #fff;
}
.main_sec .member_box.black .button_close .img_icon:hover img {
  width: 80%;
}
.main_sec .member_box.black .credit_user_box {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: #0055b9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 50px auto 10px auto;
}
.main_sec .member_box.black .credit_user_box .credit {
  color: #fff;
  text-align: center;
}
.main_sec .member_box.black .credit_user_box .credit .subhead {
  margin-bottom: 0;
  font-family: "kanit-Light";
}
.main_sec .member_box.black .credit_user_box .credit .head {
  font-size: 50px;
  margin: 5px 0;
}
.main_sec .member_box.black .credit_user_box .play {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #02010a;
  border: 1px solid #002c72;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  color: #fff;
  transition: 0.3s;
}
.main_sec .member_box.black .credit_user_box .play .img_play {
  width: 30px;
  margin: 0 auto;
  margin-bottom: 5px;
}
.main_sec .member_box.black .credit_user_box .play:hover {
  background: #031d50;
}
.main_sec .member_box.gray {
  background: linear-gradient(180deg, rgb(46, 46, 46) 0%, rgb(16, 29, 50) 73%, rgb(15, 15, 16) 100%);
  overflow: hidden;
}
.main_sec .member_box.gray .head_box {
  width: 100%;
  background: linear-gradient(180deg, rgb(24, 36, 46) 0%, rgb(0, 0, 0) 100%);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 22px;
  border-bottom: 2px solid #049cfc;
}
.main_sec .member_box.gray .head_box .subhead {
  font-family: "kanit-Light";
}
.main_sec .member_box.gray .detail_box {
  padding: 30px 60px;
}
.main_sec .member_box.gray .credit_box {
  background-color: #000;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 20px;
  padding: 20px;
}
.main_sec .member_box.gray .credit_box .credit {
  width: 50%;
  color: #fff;
  text-align: center;
}
.main_sec .member_box.gray .credit_box .credit .txt {
  margin-bottom: 0;
}
.main_sec .member_box.gray .credit_box .credit .price {
  font-size: 50px;
  margin-bottom: 0;
}
.main_sec .member_box.gray .credit_box .commit_box {
  width: 50%;
  border-left: 1px solid #707070;
  text-align: center;
}
.main_sec .member_box.gray .credit_box .commit_box .button .button_deposit {
  display: inline-block;
  background: #0055b9;
  border: 0.7px solid #2020dd;
  padding: 7px 40px;
  font-size: 26px;
  border-radius: 30px;
  box-shadow: inset 0 0 10px #02010a;
  color: #fff;
  transition: 0.3s;
}
.main_sec .member_box.gray .credit_box .commit_box .button .button_deposit:hover {
  box-shadow: 0 2px 10px #4b73b7;
}
.main_sec .member_box.gray .credit_box .commit_box .button .button_withdraw {
  display: inline-block;
  background: #ffffff;
  border: 0.7px solid #2020dd;
  padding: 7px 40px;
  font-size: 26px;
  border-radius: 30px;
  box-shadow: inset 0 0 10px #02010a;
  color: #031d50;
  transition: 0.3s;
}
.main_sec .member_box.gray .credit_box .commit_box .button .button_withdraw:hover {
  box-shadow: 0 2px 10px #4b73b7;
}
.main_sec .member_box.gray .credit_box .commit_box .detail {
  font-family: "kanit-Light";
  color: #fff;
  margin-bottom: 0;
  margin-top: 10px;
}
.main_sec .member_box.gray .bank_list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 20px 0;
}
.main_sec .member_box.gray .bank_list .bank_item {
  width: calc(33.33% - 20px);
  background: #fff;
  border-radius: 50px;
  margin: 10px;
  box-shadow: 0 2px 10px #4b73b7;
}
.main_sec .member_box.gray .user_box {
  background-color: #000;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 20px;
  padding: 20px;
}
.main_sec .member_box.gray .user_box .txt_detail {
  width: 50%;
  color: #fff;
  text-align: center;
}
.main_sec .member_box.gray .user_box .txt_detail .head {
  margin-bottom: 0;
}
.main_sec .member_box.gray .button_box {
  margin: 20px 0;
}
.main_sec .member_box.gray .button_box .button_reward {
  width: 100%;
  background: linear-gradient(180deg, #0055b9 0%, #263a5c 100%);
  border: 0.7px solid #2020dd;
  padding: 7px 40px;
  font-size: 26px;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  transition: 0.3s;
}
.main_sec .member_box.gray .button_box .button_reward:hover {
  box-shadow: 0 2px 10px #4b73b7;
}
.main_sec .member_box.gray .button_box .button_history {
  width: 200px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}
.main_sec .member_box.gray .button_sec {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  margin-top: 30px;
}
.main_sec .member_box.gray .button_sec .wrap_btn {
  width: calc(40% - 15px);
  margin-right: 15px;
}
.main_sec .member_box.gray .button_sec .button_play {
  padding: 30px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.main_sec .member_box.gray .button_sec .button_play .play {
  font-size: 22px;
  text-align: center;
}
.main_sec .member_box.gray .button_sec .button_play .play .img_play {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  background: #0055b9;
  border: 10px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_sec .member_box.gray .button_sec .button_play .play .img_play img {
  padding-left: 10px;
  width: 60%;
}
.main_sec .member_box.gray .button_sec .button_play.bg-b {
  background: #0055b9;
  transition: 0.3s;
  box-shadow: inset 0 0 10px #02010a;
}
.main_sec .member_box.gray .button_sec .button_play.bg-b .play {
  color: #fff;
}
.main_sec .member_box.gray .button_sec .button_play.bg-b:hover {
  box-shadow: 0 2px 10px #4b73b7;
}
.main_sec .member_box.gray .button_sec .button_play.bg-w {
  background: #ffffff;
  transition: 0.3s;
  box-shadow: inset 0 0 10px #02010a;
}
.main_sec .member_box.gray .button_sec .button_play.bg-w .play {
  color: #000000;
}
.main_sec .member_box.gray .button_sec .button_play.bg-w:hover {
  box-shadow: 0 2px 10px #4b73b7;
}
.main_sec .member_box.gray .button_sec .menu_list {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.main_sec .member_box.gray .button_sec .menu_list .menu_item {
  width: calc(50% - 15px);
  background: #02010a;
  border-radius: 20px;
  border: 2px solid #002c72;
  margin: 2px 0px 2px 15px;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  transition: 0.3s;
}
.main_sec .member_box.gray .button_sec .menu_list .menu_item:hover {
  box-shadow: 0 2px 10px #4b73b7;
}
.main_sec .member_box.gray .button_sec .menu_list .menu_item.reward {
  width: calc(100% - 15px);
}
.main_sec .member_box.gray .button_sec .menu_list .menu_item.logout {
  width: calc(100% - 15px);
  background: rgb(244, 25, 25);
  border-color: rgb(244, 25, 25);
}
.main_sec .member_box.transparent {
  background: transparent;
}
.main_sec .member_box.transparent .games_box .menu_games_list {
  width: 100%;
  margin: 30px 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-bottom: none;
}
.main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items {
  width: calc(24% - 30px);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 5px solid #090fa2;
  background: #000;
  border-radius: 50px;
  padding: 0px 0px 0px 20px;
  margin: 0 15px;
  transition: 0.3s;
}
.main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items:hover {
  box-shadow: 0 2px 10px #049cfc;
}
.main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items .text_box {
  width: 60%;
}
.main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items .text_box .th {
  font-size: 28px;
  margin-bottom: 0;
}
.main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items .text_box .en {
  font-size: 18px;
  margin-bottom: 0;
  text-transform: uppercase;
  font-family: "kanit-Light";
}
.main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items .text_box .th,
.main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items .text_box .en {
  color: #fff;
  text-shadow: 0px 3px 6px #299ff5;
}
.main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items .img_box {
  width: 40%;
}
.main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items.active {
  background-color: #090fa2;
}
.main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items.blue .text_box .th,
.main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items.blue .text_box .en {
  color: #dae1fe;
}
.main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items.pink .text_box .th,
.main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items.pink .text_box .en {
  color: #f5cdfc;
}
.main_sec .member_box.transparent .games_box .wrap_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
}
.main_sec .member_box.transparent .games_box .wrap_box .img_box {
  width: 50%;
}
.main_sec .member_box.transparent .games_box .wrap_box .detail_box {
  width: 50%;
  padding-left: 20px;
}
.main_sec .member_box.transparent .games_box .wrap_box .detail_box .head {
  color: #fff;
  margin-bottom: 5px;
}
.main_sec .member_box.transparent .games_box .wrap_box .detail_box .desc {
  color: #fff;
  margin-bottom: 5px;
  font-family: "kanit-Light";
}
.main_sec .member_box.transparent .games_box .wrap_box .detail_box .line_btween {
  width: 100%;
  height: 1px;
  background: #fff;
  margin-bottom: 5px;
}
.main_sec .member_box.transparent .games_box .wrap_box .detail_box .button_click {
  width: 100px;
  background: linear-gradient(180deg, #4b73b7 0%, #263a5c 100%);
  color: #fff;
  border: 2px solid #4b73b7;
  border-radius: 20px;
  padding: 3px 10px;
  text-align: center;
  transition: 0.3s;
}
.main_sec .member_box.transparent .games_box .wrap_box .detail_box .button_click:hover {
  box-shadow: 0 2px 6px #4b73b7;
}
.main_sec .play_games {
  width: 70%;
  margin: 0 auto;
  margin-top: 80px;
}
.main_sec .play_games .play_list {
  height: 600px;
  overflow-y: auto;
}
.main_sec .play_games .play_list .play_item {
  margin: 20px 0;
}
.main_sec .head_commission {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.main_sec .head_commission .head {
  color: #fff;
  text-align: center;
}
.main_sec .head_commission .reward-pill .box {
  width: 33.33% !important;
}
.main_sec .head_commission .reward-pill .box .history_box {
  justify-content: center;
}
.main_sec .head_commission .reward-pill .box .history_box .txt_hist .main {
  margin-bottom: 0;
}
.main_sec .head_commission .his-pill {
  width: 100% !important;
}
.main_sec .head_commission .his-pill .box {
  width: 16.66% !important;
}
.main_sec .head_commission .com_box {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
}
.main_sec .head_commission .com_box .box {
  width: calc(50% - 1px);
  padding: 10px;
  padding-bottom: 0;
  text-align: center;
}
.main_sec .head_commission .com_box .box .price {
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
.main_sec .head_commission .com_box .box .text_box {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  border-radius: 20px;
  padding: 5px 10px;
}
.main_sec .head_commission .com_box .box .history_box:hover {
  background-color: #0055b9 !important;
  box-shadow: 0 2px 10px #049cfc !important;
}
.main_sec .head_commission .com_box .box.box1 .text_box {
  background-color: #049cfc;
}
.main_sec .head_commission .com_box .box.box1 .history_box {
  background-color: #009cff;
}
.main_sec .head_commission .com_box .box.box1 .history_box:hover {
  box-shadow: 0 2px 10px #049cfc;
}
.main_sec .head_commission .com_box .box.box2 .text_box {
  background-color: #049cfc;
}
.main_sec .head_commission .com_box .box.box2 .history_box {
  background-color: #009cff;
}
.main_sec .head_commission .com_box .box.box2 .history_box:hover {
  box-shadow: 0 2px 10px #049cfc;
}
.main_sec .head_commission .com_box .line-btween {
  width: 2px;
  height: 120px;
  background-color: #fff;
}
.main_sec .head_commission .com_box .box.active .text_box {
  background-color: #016697;
}
.main_sec .head_commission .com_box .box.active .history_box {
  background-color: #0055b9 !important;
  box-shadow: 0 2px 10px #049cfc;
}
.main_sec .head_commission .com_box .box.active .history_box:hover {
  background-color: #0055b9 !important;
  box-shadow: 0 2px 10px #049cfc !important;
}
.main_sec .head_commission .com_box .history_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  padding: 10px;
  transition: 0.3s;
}
.main_sec .head_commission .com_box .history_box .img_hist {
  width: 40px;
  background: #fff;
  border-radius: 50%;
}
.main_sec .head_commission .com_box .history_box .txt_hist {
  color: #fff;
}
.main_sec .head_commission .com_box .history_box .txt_hist .main {
  font-size: 18px;
  margin-bottom: 5px;
}
.main_sec .head_commission .com_box .history_box .txt_hist .submain {
  font-size: 14px;
  font-family: "kanit-Light";
  margin-bottom: 0px;
}

.main_sec_2 {
  min-height: calc(100vh - 100px);
  padding: 0px 0 0px 0;
  background-image: url("../../assets/img/2rd-BG.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.line_contact {
  width: 120px;
  margin: 0 auto;
}

.menu_footer {
  display: block;
  position: fixed;
  z-index: 94;
  bottom: 0;
  width: 600px;
  left: 50%;
  margin-left: -300px;
  height: 70px;
  background-color: #dae1fe;
  border-radius: 5px;
}
.menu_footer .menu_footer_list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.menu_footer .menu_footer_list .menu_footer_item {
  width: 20%;
  text-align: center;
  background-color: transparent !important;
  padding: 0.5rem !important;
}
.menu_footer .menu_footer_list .menu_footer_item .main {
  position: absolute;
  z-index: 96;
  top: -20px;
  left: 50%;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #dae1fe;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
}
.menu_footer .menu_footer_list .menu_footer_item .main i {
  font-size: 28px;
  color: #000;
}
.menu_footer .menu_footer_list .menu_footer_item i {
  font-size: 22px;
  color: #000;
}
.menu_footer .menu_footer_list .menu_footer_item .txt_icon {
  font-size: 14px;
  font-family: "kanit-Light";
  color: #000;
}
.menu_footer .menu_footer_list .menu_footer_item.active .main {
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0055b9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu_footer .menu_footer_list .menu_footer_item.active .main i {
  font-size: 28px;
  color: #fff;
}
.menu_footer .menu_footer_list .menu_footer_item.active i {
  font-size: 22px;
  color: #0055b9;
}
.menu_footer .menu_footer_list .menu_footer_item.active .txt_icon {
  font-size: 14px;
  font-family: "kanit-Light";
  color: #0055b9;
}

.pd-120 {
  padding-bottom: 120px;
}

.deposit_box,
.withdraw_box {
  position: fixed;
  z-index: 9;
  width: 600px;
  left: 50%;
  margin-left: -300px;
  height: auto;
  background: linear-gradient(180deg, #0055b9 0%, #263a5c 100%);
  border-radius: 5px;
  transition: 0.5s;
  bottom: -500px;
  padding-bottom: 90px;
}
.deposit_box .head_box,
.withdraw_box .head_box {
  text-align: center;
  color: #fff;
  padding: 10px;
  font-size: 20px;
}
.deposit_box .detail_box,
.withdraw_box .detail_box {
  padding: 10px;
}
.deposit_box .detail_box .wrap_box,
.withdraw_box .detail_box .wrap_box {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #dae1fe;
  border-radius: 5px;
  padding: 5px 10px;
  margin: 0 auto;
}
.deposit_box .detail_box .wrap_box .img_bank,
.withdraw_box .detail_box .wrap_box .img_bank {
  width: 40px;
}
.deposit_box .detail_box .wrap_box .text,
.withdraw_box .detail_box .wrap_box .text {
  color: #fff;
  margin: 0 10px;
}
.deposit_box .detail_box .wrap_box .text h6,
.withdraw_box .detail_box .wrap_box .text h6 {
  margin-bottom: 0;
}
.deposit_box .detail_box .wrap_box .button_link,
.withdraw_box .detail_box .wrap_box .button_link {
  background: #fff;
  padding: 5px 20px;
  border-radius: 5px;
  margin-left: auto;
}

.deposit_box.up,
.withdraw_box.up {
  bottom: 0px;
}

.login_sec {
  width: 100%;
  height: 100vh;
  background-image: url("../../assets/img/2rd-BG.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login_sec .login_box {
  width: 400px;
  margin: 0 auto;
}
.login_sec .login_box .img_logo {
  margin-bottom: 30px;
}
.login_sec .login_box .form-label {
  color: #fff;
  font-size: 20px;
  font-family: "kanit-Light";
}

.button_login {
  padding: 10px 20px;
  border-radius: 20px;
  background: #004fae;
  text-align: center;
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}
.button_login:hover {
  background: #016697;
  color: #fff;
  box-shadow: 0 2px 10px #049cfc;
}

.notyet {
  text-align: center;
  color: #fff;
  margin: 20px 0;
}

.button_register {
  padding: 10px 20px;
  border-radius: 20px;
  background: transparent;
  border: 2px solid #016697;
  text-align: center;
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}
.button_register:hover {
  background: #016697;
  box-shadow: 0 2px 10px #049cfc;
  color: #fff !important;
}

.chat_box .chatbox__header {
  background: #0055b9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 3em;
  cursor: pointer;
  width: 80px;
  font-size: 30px;
  box-shadow: 0px 0px 5px #000;
}
.chat_box .chatbox__header .chatbox__header-cta-text {
  color: #fff;
  font-size: 24px;
  margin-bottom: 0;
  margin-right: 10px;
}
.chat_box .chatbox__header .chatbox__header-cta-icon {
  color: #fff;
  margin-right: 0.75em;
}
.chat_box .chatbox__header .chatbox__header-cta-btn {
  background: none;
  border: none;
  color: #fff;
  margin: auto;
  transition: all 300ms ease;
}
.chat_box .chatbox {
  box-shadow: inset 0 0 10px #02010a;
  bottom: 160px;
  position: fixed;
  z-index: 999;
  right: -20em;
  transition: all 300ms ease;
  width: 20em;
  border-radius: 0.5em;
  overflow: hidden;
}
.chat_box .chatbox .chatbox__header {
  width: 100%;
  position: relative;
  right: 0;
  bottom: 0;
  padding: 10px;
  border-radius: 0;
}
.chat_box .chatbox--is-visible {
  right: 1em;
}
.chat_box .chatbox__display {
  background: #ededed;
  height: 20em;
  overflow: auto;
  padding: 0.75em;
}
.chat_box .chatbox__display-chat {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  border-radius: 0.5em;
  padding: 0.75em;
  margin-bottom: 12px;
}
.chat_box .chatbox__display .right__chat {
  align-items: flex-end;
  background: #dbdbdb;
}
.chat_box .chatbox__display .left__chat {
  align-items: flex-start;
  background: #fff;
}
.chat_box .chatbox__form {
  display: flex;
}
.chat_box .chatbox__form-input {
  border: none;
  color: #222;
  font-size: 0.9rem;
  padding: 1.25em 1em;
  width: 100%;
}
.chat_box .chatbox__form-input:focus {
  box-shadow: none;
  outline: none;
}
.chat_box .chatbox__form-input:required {
  box-shadow: none;
}
.chat_box .chatbox__form-submit {
  background: #fff;
  border: none;
  color: #0055b9;
  padding: 1em;
}

.show_games {
  position: relative;
  width: 100%;
  display: flex;
}
.show_games .games_tabs_main {
  width: 25%;
  padding-right: 20px;
}
.show_games .games_tabs_main .nav-pills .nav-link {
  background: #000;
  color: #fff;
  text-align: left;
  margin-bottom: 5px;
  padding: 10px 25px;
  border: 0.7px solid rgba(32, 32, 221, 0.5);
}
.show_games .games_tabs_main .nav-pills .nav-link svg {
  fill: #fff;
  margin-right: 10px;
}
.show_games .games_tabs_main .nav-pills .nav-link:hover {
  transition: 0.3s;
  border-left: 5px solid #0055b9;
}
.show_games .games_tabs_main .nav-pills .nav-link.active {
  background: #0055b9;
  box-shadow: inset 0 0 10px #02010a;
}
.show_games .games_tabs_main .nav-pills .nav-link.active svg {
  fill: #fff;
}
.show_games .games_tabs_content {
  width: 75%;
}
.show_games .games_tabs_content2 {
  width: 100%;
}
.show_games .show_games_box .games_tabs_second .nav-tabs {
  border-bottom: none;
  overflow-x: auto;
  flex-wrap: nowrap;
}
.show_games .show_games_box .games_tabs_second .nav-tabs::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.8);
}
.show_games .show_games_box .games_tabs_second .nav-tabs::-webkit-scrollbar {
  width: 0px;
  height: 8px;
  border-radius: 10px;
  background-color: #f5f5f5;
}
.show_games .show_games_box .games_tabs_second .nav-tabs::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 3px #02010a;
  background-color: #ff3ecc;
}
.show_games .show_games_box .games_tabs_second .nav-tabs .nav-link {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px 15px;
  border: none;
  margin-right: 5px;
  border: 0.7px solid rgba(32, 32, 221, 0.5);
  white-space: nowrap;
}
.show_games .show_games_box .games_tabs_second .nav-tabs .nav-link:hover {
  transition: 0.3s;
  border-left: 5px solid #ff3ecc;
}
.show_games .show_games_box .games_tabs_second .nav-tabs .nav-link.active {
  background: #ff3ecc;
  color: #fff;
  box-shadow: inset 0 0 10px #02010a;
}
.show_games .show_games_box .tab-content {
  overflow: auto;
  overflow-x: hidden;
  height: calc(100vh - 300px);
  border: 2px solid rgba(32, 32, 221, 0.5);
  padding: 24px;
  border-radius: 0 10px 10px 10px;
}
.show_games .show_games_box .tab-content .tab-pane {
  border-bottom: 2px solid rgba(32, 32, 221, 0.5);
  margin-bottom: 24px;
}
.show_games .show_games_box .tab-content::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.8);
}
.show_games .show_games_box .tab-content::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
  background-color: #f5f5f5;
}
.show_games .show_games_box .tab-content::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 3px #02010a;
  background-color: #ff3ecc;
}
.show_games .show_games_box .tab-content .img_head {
  width: 90px;
  margin-bottom: 24px;
}
.show_games .show_games_box .tab-content .show_games_item {
  margin-bottom: 24px;
}
.show_games .show_games_box .tab-content .show_games_item .img_games {
  overflow: hidden;
  border-radius: 15px;
}
.show_games .show_games_box .tab-content .show_games_item .title {
  font-size: 18px;
  color: #fff;
  margin-top: 10px;
  text-align: center;
  font-family: "kanit-Light";
}
.show_games .show_games_box .tab-content .show_games_item:hover .img_games img {
  transform: scale(1.1);
  transition: 0.3s;
}
.show_games .show_games_box .tab-content .show_games_item:hover .title {
  color: #009cff;
  transition: 0.3s;
}
.show_games .show_games_box .tab-content .tab-pane:last-child {
  border-bottom: none;
  margin-bottom: 0px;
}

.accordion-button::after {
  background-image: url("../../assets/img/icon/down.png") !important;
}

.table-scroll {
  position: relative;
  z-index: 1;
  height: 535px;
}
.table-scroll table {
  border-collapse: separate;
  border-spacing: 0;
}
.table-scroll th,
.table-scroll td {
  border: none;
  vertical-align: middle;
  height: 5.9vh;
}
.table-scroll thead th {
  background: #0055b9;
  color: #fff;
  position: sticky;
  top: 0;
}

.img_cycle {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 5px;
}
.img_cycle img {
  width: auto;
  height: 100%;
}

.react-confirm-alert-overlay {
  background: rgba(0, 0, 0, 0.9) !important;
}

.custom-ui {
  padding: 40px 40px;
  background: #fff;
  text-align: center;
  border-radius: 20px;
  border: 2px solid rgb(4, 156, 252);
  box-shadow: 0px 2px 10px rgb(4, 156, 252);
}

#fields .numberfield {
  padding: 0 !important;
  height: 76px;
}
#fields .numberfield span {
  height: auto !important;
  width: auto !important;
}

.btn-otp {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0 0.25rem 0.25rem 0 !important;
}

.button-prc {
  background-color: #016697;
  width: 100%;
  padding: 10px 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s;
}
.button-prc:hover {
  color: #fff;
  background-color: #0055b9;
}

.input-show {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
}
.input-show:focus {
  outline: none !important;
  box-shadow: none !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner_bg .girl_box .img_girl {
    width: 80%;
  }
}
@media only screen and (min-width: 1150px) and (max-width: 1399px) {
  .games_sec .games_box .menu_games_list .menu_games_items .text_box .th {
    font-size: 24px;
  }
  .games_sec .games_box .menu_games_list .menu_games_items .text_box .en {
    font-size: 15px;
  }
  .games_sec .games_box .games_list {
    padding-top: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1399px) {
  .main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items .text_box .th {
    font-size: 22px;
  }
  .main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items .text_box .en {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1399px) {
  .main_sec .member_box.black .member_menu_list .member_menu_item .img_icon {
    width: 80px;
    height: 80px;
  }
  .main_sec .member_box.black .button_close .img_icon {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1149px) {
  .games_sec .games_box .menu_games_list {
    width: 100%;
    margin-left: -50%;
  }
  .games_sec .games_box .menu_games_list .menu_games_items .text_box .th {
    font-size: 22px;
  }
  .games_sec .games_box .menu_games_list .menu_games_items .text_box .en {
    font-size: 14px;
  }
  .games_sec .games_box .games_list {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 1199px) {
  .header_sec .header_box .button_main {
    display: none;
  }
  .banner_bg .button_main {
    display: inline-block;
  }
  .banner_bg .text_box .img_cas {
    width: 100%;
  }
  .banner_bg .girl_box .img_girl {
    width: 100%;
  }
  .main_sec .member_box.white {
    width: 100%;
  }
  .main_sec .member_box {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .header_sec {
    display: none;
  }
  .header_sec_mobile {
    display: block;
  }
  .banner_bg {
    height: 610px;
    position: relative;
    align-items: center;
  }
  .banner_bg .text_box {
    width: 100%;
    padding-bottom: 0px;
    text-align: center;
  }
  .banner_bg .text_box .head {
    font-size: 70px;
  }
  .banner_bg .text_box .img_cas {
    width: 100%;
  }
  .banner_bg .button_box {
    width: 40%;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -20%;
    z-index: 97;
  }
  .banner_bg .button_main,
  .banner_bg .button_second {
    width: 100%;
    margin-bottom: 20px;
    font-size: 22px;
    padding: 7px 10px;
  }
  .banner_bg .button_main {
    display: block;
  }
  .banner_bg .girl_box {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
  }
  .banner_bg .girl_box .img_girl {
    width: 35%;
  }
  .games_sec {
    padding-top: 150px;
  }
  .games_sec .games_box {
    border-radius: 20px;
    border: 2px solid #1e26f4;
    box-shadow: 0 2px 10px #4ddef8;
  }
  .games_sec .games_box .menu_games_list {
    width: 90%;
    margin-left: -45%;
    top: -140px;
  }
  .games_sec .games_box .menu_games_list .menu_games_items {
    width: calc(45% - 20px);
    margin: 10px;
  }
  .games_sec .games_box .menu_games_list .menu_games_items .text_box .th {
    font-size: 24px;
  }
  .games_sec .games_box .menu_games_list .menu_games_items .text_box .en {
    font-size: 15px;
  }
  .games_sec .games_box .games_list {
    padding-top: 70px;
  }
  .games_sec .games_box .games_list .games_item {
    width: 50%;
  }
  .games_sec .games_box .games_list .games_item .text_game_name {
    font-size: 16px;
  }
  .main_sec .member_box {
    border: none;
    box-shadow: none;
  }
  .main_sec .member_box.white .detail_box {
    padding: 15px;
  }
  .main_sec .member_box.white .form_affiliate {
    margin: 20px 0;
  }
  .main_sec .member_box.white .form_affiliate .text_h {
    width: 100%;
  }
  .main_sec .member_box.white .form_affiliate .form_control {
    width: 100%;
    margin: 15px 0;
    text-align: center;
  }
  .main_sec .member_box.white .form_affiliate .button_third {
    width: 150px;
  }
  .main_sec .member_box.white .form_affiliate .button_third.main {
    width: 100%;
  }
  .main_sec .member_box.white .overflow_box {
    height: 170px;
    padding-right: 7px;
    overflow: auto;
    padding-bottom: 0;
  }
  .main_sec .member_box.white .overflow_box::-webkit-scrollbar {
    width: 5px;
  }
  .main_sec .member_box.white .overflow_box::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #e2e2e2;
    border-radius: 10px;
  }
  .main_sec .member_box.white .overflow_box::-webkit-scrollbar-thumb {
    background: #004fae;
    border-radius: 10px;
  }
  .main_sec .member_box.white .overflow_box::-webkit-scrollbar-thumb:hover {
    background: #004fae;
  }
  .main_sec .member_box.gray .head_box {
    border: none;
  }
  .main_sec .member_box.gray .head_box .head {
    font-size: 18px;
  }
  .main_sec .member_box.gray .head_box .subhead {
    font-size: 14px;
  }
  .main_sec .member_box.gray .bank_list {
    flex-wrap: wrap;
  }
  .main_sec .member_box.gray .bank_list .bank_item {
    width: calc(50% - 20px);
  }
  .main_sec .member_box.gray .button_box .button_reward {
    font-size: 18px;
  }
  .main_sec .member_box.gray .credit_box .credit {
    width: 100%;
  }
  .main_sec .member_box.gray .credit_box .credit .price {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .main_sec .member_box.gray .credit_box .commit_box {
    width: 100%;
    border-top: 1px solid #707070;
    border-left: none;
    padding-top: 20px;
  }
  .main_sec .member_box.gray .credit_box .commit_box .button .button_deposit,
  .main_sec .member_box.gray .credit_box .commit_box .button .button_withdraw {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .main_sec .member_box.gray .user_box .txt_detail {
    width: 100%;
    margin: 10px 0;
  }
  .main_sec .member_box.gray .detail_box {
    padding: 15px;
  }
  .main_sec .member_box.transparent .games_box .menu_games_list {
    margin-top: 0;
  }
  .main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items {
    width: calc(50% - 30px);
    margin-bottom: 20px;
  }
  .main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items .text_box .th {
    font-size: 20px;
  }
  .main_sec .member_box.transparent .games_box .menu_games_list .menu_games_items .text_box .en {
    font-size: 12px;
  }
  .main_sec .head_commission .com_box1 {
    width: 100%;
  }
  .main_sec .head_commission .com_box .box .history_box {
    justify-content: center;
  }
  .show_games .games_tabs_main .nav-pills .nav-link {
    display: grid;
    text-align: center;
    padding: 10px 10px;
    height: 80px;
  }
  .show_games .games_tabs_main .nav-pills .nav-link svg {
    margin: 0 auto;
    margin-bottom: 5px;
  }
}
.carousel-indicators {
  bottom: -50px !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main_sec .member_box.black .head_spin_box {
    width: 100%;
  }
  .main_sec .member_box.black .spin_box {
    width: 100%;
  }
  .main_sec .member_box.black .member_menu_list {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 820px) {
  .banner_bg .girl_box .img_girl {
    width: 40%;
  }
}
@media only screen and (max-width: 768px) {
  .promotion_sec {
    background-position: left;
    background-size: cover;
  }
  .promotion_sec .img_head {
    width: 80%;
  }
  .footer_sec {
    margin-bottom: 70px;
  }
  .footer_sec .about {
    width: 100%;
    flex-wrap: wrap;
  }
  .footer_sec .about .img_footer {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .footer_sec .about .text_footer {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }
  .footer_sec .menu_footer_list {
    display: none;
  }
  .main_sec .head_commission .com_box .box {
    width: 100%;
  }
  .main_sec .head_commission .com_box .line-btween {
    display: none;
  }
  .pd-120 {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .main_sec {
    padding: 120px 0 50px 0;
  }
  .main_sec .head_commission .com_box1 {
    width: 100% !important;
  }
  .main_sec .head_commission .com_box1 .box {
    width: 33.33% !important;
  }
  .main_sec .head_commission .com_box1 .history_box {
    padding: 10px 10px;
  }
  .main_sec .head_commission .com_box1 .history_box .img_hist {
    width: 30px;
    margin-bottom: 5px;
  }
  .main_sec .head_commission .com_box1 .history_box .txt_hist {
    width: 100%;
  }
  .main_sec .head_commission .com_box1 .history_box .txt_hist .main {
    font-size: 16px;
    margin-bottom: 3px;
  }
  .main_sec .head_commission .com_box1 .history_box .txt_hist .submain {
    font-size: 12px;
  }
  .main_sec .head_commission .reward-pill .box .history_box .txt_hist .main {
    font-size: 14px;
  }
  .main_sec .member_box {
    width: 100%;
  }
  .main_sec .member_box.bg_tran {
    background: transparent !important;
  }
  .main_sec .member_box.bg_tran .detail_box .txt_head {
    color: #fff;
    margin-bottom: 20px;
  }
  .main_sec .member_box.bg_tran .detail_box .txt_head .subhead {
    font-size: 13px;
  }
  .main_sec .member_box.black .head_spin_box {
    width: 100%;
  }
  .main_sec .member_box.black .spin_box {
    width: 100%;
  }
  .main_sec .member_box.black .member_menu_list {
    width: 100%;
  }
  .main_sec .member_box.black .member_menu_list .member_menu_item {
    width: 33.33%;
    font-size: 14px;
  }
  .main_sec .member_box.black .member_menu_list .member_menu_item .img_icon {
    width: 80px;
    height: 80px;
  }
  .main_sec .member_box.black .credit_user_box {
    width: 280px;
    height: 280px;
  }
  .main_sec .member_box.black .credit_user_box .credit .head {
    font-size: 32px;
  }
  .main_sec .member_box.black .credit_user_box .play {
    width: 80px;
    height: 80px;
    font-size: 10px;
  }
  .main_sec .member_box.black .credit_user_box .play .img_play {
    width: 20px;
  }
  .main_sec .member_box.black .button_close {
    font-size: 14px;
  }
  .main_sec .member_box.black .button_close .img_icon {
    width: 80px;
    height: 80px;
  }
  .main_sec .member_box.gray .button_sec .wrap_btn {
    width: 100%;
    margin-right: 0;
  }
  .main_sec .member_box.gray .button_sec .button_play {
    width: 100%;
  }
  .main_sec .member_box.gray .button_sec .menu_list {
    width: 100%;
  }
  .main_sec .member_box.gray .button_sec .menu_list .menu_item {
    width: calc(50% - 10px);
    margin: 0 5px;
    margin-bottom: 10px;
    padding: 5px;
    font-size: 14px;
  }
  .main_sec .play_games {
    width: 100%;
    margin-top: 30px;
  }
  .main_sec .member_box.transparent .games_box .row {
    padding: 30px 0 !important;
  }
  .main_sec .member_box.transparent .games_box .wrap_box .img_box {
    width: 100%;
  }
  .main_sec .member_box.transparent .games_box .wrap_box .detail_box {
    width: 100%;
  }
  .hhs-txt {
    font-size: 12px;
  }
  .menu_footer {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .deposit_box,
  .withdraw_box {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .show_games .games_tabs_main {
    padding-right: 0;
  }
  .show_games .games_tabs_main .nav-pills .nav-link {
    font-size: 14px;
    padding: 5px 5px 0 5px;
    height: 65px;
  }
  .show_games .show_games_box .games_tabs_second .nav-tabs {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
  }
  .show_games .show_games_box .games_tabs_second .nav-tabs .nav-link {
    font-size: 14px;
    padding: 5px 10px;
    margin-top: 5px;
    white-space: nowrap;
  }
}
@media only screen and (min-width: 560px) and (max-width: 767px) {
  .banner_bg .girl_box .img_girl {
    width: 40%;
  }
}
@media only screen and (max-width: 559px) {
  .banner_bg .girl_box .img_girl {
    width: 60%;
  }
  .games_sec .games_box .menu_games_list {
    width: 100%;
    margin-left: -50%;
    margin-top: 20px;
    padding: 0 10px;
  }
  .games_sec .games_box .menu_games_list .menu_games_items {
    width: calc(50% - 20px);
    margin: 5px 10px;
  }
  .games_sec .games_box .menu_games_list .menu_games_items .text_box {
    width: 55%;
  }
  .games_sec .games_box .menu_games_list .menu_games_items .text_box .th {
    font-size: 18px;
  }
  .games_sec .games_box .menu_games_list .menu_games_items .text_box .en {
    font-size: 12px;
  }
  .games_sec .games_box .menu_games_list .menu_games_items .img_box {
    width: 45%;
  }
  .main_sec .member_box.white .head_box {
    font-size: 18px;
  }
  .main_sec .member_box.white .text_detail {
    width: 100%;
  }
  .login_sec .login_box {
    width: 100%;
  }
}
@media only screen and (max-width: 290px) {
  .hhs-txt {
    font-size: 10px;
  }
}
.nav-tabs-select {
  background-color: #fff !important;
  border-radius: 10px 10px 0 0;
}
.nav-tabs-select .nav-link.active {
  background-color: #164cb0 !important;
  color: #ffffff !important;
}
.nav-tabs-select .nav-link {
  background-color: #fff !important;
  color: #000 !important;
  font-size: 18px;
}

.nav-tabs-number {
  border: none !important;
}
.nav-tabs-number .nav-link.active {
  color: #fff !important;
  background-color: transparent !important;
}
.nav-tabs-number .nav-link.active .btn__number {
  color: #fff !important;
  background-color: #164cb0 !important;
  border: 1px solid #164cb0 !important;
}
.nav-tabs-number .nav-link {
  color: #7b7b7b !important;
  background-color: transparent !important;
}
.nav-tabs-number .nav-link .btn__number {
  color: #7b7b7b !important;
  background-color: #fff !important;
  border: 1px solid #164cb0 !important;
  border-radius: 5px;
}
.nav-tabs-number .nav-link .btn__number:hover {
  color: #fff !important;
  background-color: rgba(22, 76, 176, 0.3) !important;
}

@font-face {
  font-family: "kanit-Regular";
  src: url("../../assets/fonts/Kanit/Kanit-Regular.ttf");
}
@font-face {
  font-family: "kanit-Italic";
  src: url("../../assets/fonts/Kanit/Kanit-Italic.ttf");
}
@font-face {
  font-family: "kanit-Light";
  src: url("../../assets/fonts/Kanit/Kanit-Light.ttf");
}
@font-face {
  font-family: "kanit-Medium";
  src: url("../../assets/fonts/Kanit/Kanit-Medium.ttf");
}
@font-face {
  font-family: "kanit-Bold";
  src: url("../../assets/fonts/Kanit/Kanit-Bold.ttf");
}
.t-bold {
  font-family: "kanit-Bold";
}

.t-medium {
  font-family: "kanit-Medium";
}

.t-medium.txts-16 {
  font-family: "kanit-Medium" !important;
}

.t-bold.txts-18 {
  font-family: "kanit-Bold" !important;
}

.main_sec {
  color: #fff;
}

.bg-black-op1.txtc-b {
  color: #000;
}

.bg-white-op8.box-number {
  color: #000000;
}

.bg-black-op1 {
  background-color: rgba(0, 157, 255, 0.3);
}

.bg-black-op2 {
  background-color: rgba(0, 157, 255, 0.4);
}

.bg-black-op3 {
  background-color: rgba(0, 157, 255, 0.5);
}

.bg-black-op4 {
  background-color: rgba(0, 157, 255, 0.6);
}

.bg-black-op5 {
  background-color: rgba(0, 157, 255, 0.7);
}

.bg-black-op6 {
  background-color: rgba(0, 157, 255, 0.8);
}

.bg-black-op7 {
  background-color: rgba(0, 157, 255, 0.9);
}

.bg-black-op8 {
  background-color: rgb(0, 157, 255);
}

.bg-theme-op8_disable {
  background-color: #97a0af;
}

.bg-theme-op8_enable {
  background: linear-gradient(90deg, #19335a, #8fc8eb);
}

.bg-theme-op7 {
  background-color: rgb(22, 76, 176);
}

.bg-theme-op6 {
  background-color: rgba(22, 76, 176, 0.9);
}

.bg-theme-op5 {
  background-color: rgba(22, 76, 176, 0.8);
}

.bg-theme-op4 {
  background-color: rgba(22, 76, 176, 0.7);
}

.bg-theme-op3 {
  background-color: rgba(22, 76, 176, 0.6);
}

.bg-theme-op2 {
  background-color: rgba(22, 76, 176, 0.5);
}

.bg-theme-op1 {
  background-color: rgba(22, 76, 176, 0.4);
}

.bg-white-op8 {
  background-color: hsla(0, 0%, 100%, 0.8);
}

.bg-white-op5 {
  background-color: hsla(0, 0%, 100%, 0.5);
}

.bg-white-op4 {
  background-color: hsla(0, 0%, 100%, 0.4);
}

.bg-white-op3 {
  background-color: hsla(0, 0%, 100%, 0.3);
}

.bg-white-op2 {
  background-color: hsla(0, 0%, 100%, 0.2);
}

.bg-white-op1 {
  background-color: hsla(0, 0%, 100%, 0.1);
}

.bg-header-hl-op1 {
  background: linear-gradient(90deg, rgba(7, 17, 33, 0.8), rgba(58, 116, 152, 0.8));
}

.bg-graylight {
  background-color: #ffffff;
  color: #000;
}

.bg-gray {
  background-color: #7b7b7b;
}

.bg-gray2 {
  background-color: #818493;
}

.bg-gray-dark {
  background-color: #444549;
}

.bg_dark {
  background: linear-gradient(60deg, #164cb0, #000000, #164cb0, #000000);
  border: 1px solid #1f78e2;
  background-size: 100% 100%;
}

.bg-gradient-primary {
  background: linear-gradient(60deg, #164cb0, #000000, #164cb0, #000000);
  border: 1px solid #1f78e2;
  background-size: 100% 100%;
}

.btn_h_link {
  width: 100%;
  border-radius: 5px;
  text-align: center;
  padding: 5px 10px;
  transition: all 0.3s;
}

button {
  border: none;
  transition: all 0.3s;
}
button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.btn_h_link.bgc-2 {
  background: #0055b9;
  border: 0.7px solid #2020dd;
  box-shadow: inset 0 0 10px #02010a;
  color: #fff;
  text-align: center;
  transition: 0.3s all;
}
.btn_h_link.bgc-2:hover {
  box-shadow: 0 2px 10px #049cfc;
  color: #fff;
}

.btn_h_link.bgc-5 {
  background-color: #009b00;
}
.btn_h_link.bgc-5:hover {
  background-color: rgba(0, 155, 0, 0.8);
}

.btn_h_link.bgc-7 {
  background-color: #fd7b17;
}
.btn_h_link.bgc-7:hover {
  background-color: rgba(253, 123, 23, 0.8);
  color: #fff;
}

.btn_h_link.bgc-11 {
  background-color: #d70000;
}
.btn_h_link.bgc-11:hover {
  background-color: rgba(215, 0, 0, 0.8);
  color: #fff;
}

.btn_h_link.bgc-9 {
  background: #ffffff;
  border: 0.7px solid #2020dd;
  box-shadow: inset 0 0 10px #02010a;
  color: #031d50;
}
.btn_h_link.bgc-9:hover {
  color: #0a58ca;
  box-shadow: 0 2px 10px #4b73b7;
}

.btn_h_link.bgc-orange {
  background: linear-gradient(90deg, #164cb0, rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), #164cb0);
}
.btn_h_link.bgc-orange:hover {
  background-color: linear-gradient(90deg, #164cb0, rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), #164cb0);
  color: #fff;
  border: 1px solid rgb(31, 120, 226) !important;
  border-radius: 0.3rem !important;
}

.btn_h_link.bgc-header-h {
  background: #93a3be;
  border: 0.7px solid #4e5765;
  box-shadow: inset 0 0 10px #02010a;
  color: #fff;
  text-align: center;
  transition: 0.3s all;
}
.btn_h_link.bgc-header-h:hover {
  box-shadow: 0 2px 10px #049cfc;
  color: #fff;
}

.btn_h_link.bgc-header-h.active {
  background-color: #536687;
  color: #fff;
  box-shadow: 0 2px 10px #b5c2d9;
}

.link_prc {
  cursor: pointer;
  transition: all 0.3s;
}
.link_prc:hover {
  opacity: 0.7;
}

.bgc-inp {
  background-color: #fff;
  border: 1px solid #e5e5e5;
}
.bgc-inp:focus {
  outline: none !important;
  box-shadow: none !important;
}

.txts-18 {
  font-size: 18px;
  font-family: "kanit-Light";
}

.txts-16 {
  font-size: 16px;
  font-family: "kanit-Light";
}

.txts-14 {
  font-size: 14px;
  font-family: "kanit-Light";
}

.txts-12 {
  font-size: 12px;
}

.txtc-1 {
  color: #fff;
}

.txtc-b {
  color: #ffffff;
}

.txtc-g {
  color: #ffffff;
}

.txtc-r {
  color: #d70000;
}

.txtc-gg {
  color: #164cb0;
}

.txtc-black {
  color: #000;
}

.txtc-g.txts-14 {
  font-size: 12px;
}

.btn-link-bg {
  background-size: 100% 100%;
  padding: 2px;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-link-bg:hover {
  background: linear-gradient(90deg, #009dff, #009dff);
}

.btn-link-bg1 .link-bg {
  background-color: #164cb0;
}
.btn-link-bg1 .link-bg .btn__select {
  color: #ffffff;
}
.btn-link-bg1 .bgcg-2 {
  background: linear-gradient(90deg, #164cb0, rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), #164cb0);
}
.btn-link-bg1:hover .link-bg {
  background-color: rgba(22, 76, 176, 0.8);
}

.btn-link-bg2 .link-bg {
  background-color: #045459;
}
.btn-link-bg2 .link-bg .btn__select {
  color: #fff;
}
.btn-link-bg2 .bgcg-2 {
  background: linear-gradient(90deg, #164cb0, rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), #164cb0);
}
.btn-link-bg2:hover .link-bg {
  background-color: rgba(3, 67, 71, 0.8);
}

.btn-link-bg3 .link-bg {
  background-color: #1cd8d8;
}
.btn-link-bg3 .link-bg .btn__select {
  color: #ffffff;
}
.btn-link-bg3 .bgcg-2 {
  background: linear-gradient(90deg, #164cb0, rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), #164cb0);
}
.btn-link-bg3:hover .link-bg {
  background-color: rgba(23, 162, 184, 0.8);
}

.btn-link-bg4 .link-bg {
  background-color: #02acbb;
}
.btn-link-bg4 .link-bg .btn__select {
  color: #ffffff;
}
.btn-link-bg4 .bgcg-2 {
  background: linear-gradient(90deg, #164cb0, rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), #164cb0);
}
.btn-link-bg4:hover .link-bg {
  background-color: rgba(2, 172, 187, 0.8);
}

.btn-link-bg5 .link-bg {
  background-color: #009dff;
}
.btn-link-bg5 .link-bg .btn__select {
  color: #ffffff;
}
.btn-link-bg5 .bgcg-2 {
  background: linear-gradient(90deg, #164cb0, rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), #164cb0);
}
.btn-link-bg5:hover .link-bg {
  background-color: rgba(0, 157, 255, 0.8);
}

.btn-link-bg6 .link-bg {
  background-color: #009dff;
}
.btn-link-bg6 .link-bg .btn__select {
  color: #ffffff;
}
.btn-link-bg6 .bgcg-2 {
  background: linear-gradient(90deg, rgba(38, 153, 158, 0), #164cb0, #164cb0, #164cb0, rgba(38, 153, 158, 0));
}
.btn-link-bg6:hover .link-bg {
  background-color: rgba(0, 157, 255, 0.8);
  background-color: rgba(0, 157, 255, 0.8);
}

.btn-link-bg7 .link-bg {
  background-color: #f6f6f6;
}
.btn-link-bg7 .link-bg .btn__select {
  color: #000000;
}
.btn-link-bg7 .bgcg-2 {
  background: transparent;
}

.btn-link-bg8 .link-bg {
  background-color: #f6f6f6;
}
.btn-link-bg8 .link-bg .btn__select {
  color: #000000;
}
.btn-link-bg8 .bgcg-2 {
  background: rgba(0, 0, 0, 0.1);
}

.btn-link-bg9 .link-bg {
  background-color: #f6f6f6;
}
.btn-link-bg9 .link-bg .btn__select {
  color: #000000;
}
.btn-link-bg9 .bgcg-2 {
  background: rgba(0, 0, 0, 0.2);
}

.btn-link-bg10 .link-bg {
  background-color: #ffffff;
}
.btn-link-bg10 .link-bg .btn__select {
  color: #000000;
}
.btn-link-bg10 .bgcg-2 {
  background: linear-gradient(90deg, #164cb0, rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), #164cb0);
}

.btn__select {
  position: relative;
  min-height: 36px;
  max-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn__select_dis {
  filter: grayscale(100%);
  pointer-events: none;
}
.btn__select_dis:hover {
  filter: grayscale(100%);
  background: none;
}

.btn-link-bg.active {
  background: linear-gradient(90deg, #009dff, #009dff);
}

.box-rtt {
  background-color: #fff;
  position: absolute;
  width: 12px;
  height: 32px;
  right: 0;
  top: 50%;
  transform: translate(-2px, -50%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.txt-rtt {
  transform: rotate(-90deg);
  font-size: 10px;
  color: #164cb0;
  text-align: center;
}

.bgc-1.p-2.rounded-1 {
  border: 1px solid #1f78e2;
  border-radius: 0.3rem !important;
}

.p-2.rounded-1 .txt__18.text-center.mt-2.mb-0 {
  color: #fff;
}

.g-0.bgc-1 {
  border: 1px solid #1f78e2;
  border-radius: 0.3rem;
}

.bgc-1.txtc-r.txts-14 {
  background-color: #fff;
}

.bgc-1.txtc-b.txts-14 {
  background-color: #fff;
  color: #000;
}

.bgc-1 {
  background-color: #000000;
}

.bgc-2 {
  background-color: #0055b9;
}

.bgc-3 {
  background-color: hsla(0, 0%, 100%, 0.8);
}

.bgc-4 {
  background-color: #000;
}

.bgc-4-n {
  background: linear-gradient(90deg, #1c365d, #8cc5e8);
}

.bgc-4-n2 {
  background: linear-gradient(90deg, #19335a, #8fc8eb);
}

.bgc-4-n3 {
  background: linear-gradient(90deg, #8a9fab, #77a5c1);
}

.bgc-4-n3L {
  background: linear-gradient(90deg, #19335a, #8fc8eb);
  border: 1px solid #4f4e4e;
}

.bgc-4-n3R {
  background: linear-gradient(90deg, #8fc8eb, #19335a);
  border: 1px solid #4f4e4e;
}

.bgc-5 {
  background-color: #009b00;
}

.bgc-5-n {
  background: linear-gradient(90deg, #009b00, #f6f2f2, #f6f2f2, #f6f2f2, #009b00);
}

.bgc-6 {
  background-color: #e2af1f;
}

.bgc-7 {
  background-color: #fd7b17;
}

.bgc-8 {
  background: linear-gradient(90deg, #164cb0, rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), #164cb0);
}

.bgc-9 {
  background-color: #164cb0;
}

.bgc-9-n {
  background: linear-gradient(90deg, #19335a, #697a98);
  background-size: 0% 100%;
  border: 1px solid #707070;
}

.bgc-10 {
  background: #fff;
  color: #000;
  border: 1px solid rgb(31, 120, 226);
}
.bgc-10 .txtc-1 {
  color: #000;
}

.bgc-11 {
  background: #d70000;
}

.bgc-12 {
  background: #0055b9;
}

.bgc-13 {
  background: linear-gradient(90deg, #0055b9, #000, #0055b9, #000);
  background-size: 400% 400%;
  animation: Gradient 5s ease infinite;
}

.bgc-14 {
  background: linear-gradient(90deg, #0055b9, #000, #0055b9, #000);
  background-size: 100% 100%;
}

.bgc-15 {
  background: #2f334e;
}

.bgc-16 {
  background: linear-gradient(90deg, #4f5f7d, #000, #172f54, #000);
}

.bgc-17 {
  background-color: #6d6e79;
}

.bgc-18 {
  background-color: #536687;
}

.bgc-19 {
  background-color: #1d304f;
}

.bgc-20 {
  background-color: #555a63;
}

.bgc-21 {
  background-color: #777e90;
}

.bgc-22 {
  background-color: #213e65;
}

.bgc-23 {
  background-color: #375da2;
}

.bgc-24 {
  background-color: rgb(12, 23, 43);
}

.bgc-25 {
  background-color: #566da8;
}

.bgc-26 {
  background-color: #c3cbd8;
}

.bgc-27 {
  background-color: #b5c0d3;
}

.bgc-header-h {
  background-color: #93a3be;
}

.bgc-bg-h {
  background-color: #161730;
}

.bgc-result-h {
  background: linear-gradient(90deg, #19335a, #697a98);
}

.bgc-choose-h {
  background: linear-gradient(90deg, #1e2a78, #49bcf6);
}

.bgc-back-button {
  background: linear-gradient(90deg, #d5d5d5, #bbbaba, #fcfcfc, #bbbaba);
}

.bgc-delete_gray-button {
  background: linear-gradient(90deg, #778499, #bbbaba, #b3d1e4, #bbbaba);
}

.bg-gradient-opacity-invert {
  background: linear-gradient(90deg, #009dff, #164cb0, #164cb0, #164cb0, #009dff);
  background-size: 100% 100%;
}

.bgc-black {
  background: linear-gradient(90deg, transparent, #000, #000, #000, transparent);
  background-size: 100% 100%;
}

.bgc-blue {
  background: linear-gradient(90deg, #000, transparent, transparent, transparent, #000);
  background-size: 100% 100%;
}

.bgc-orange {
  background: linear-gradient(90deg, #164cb0, rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), rgba(38, 153, 158, 0), #164cb0);
  background-size: 100% 100%;
}

.bdc-1 {
  border: 1px solid #1f78e2;
}

.bdc-2 {
  border: 2px solid #d2d2d2;
}

.bdc-3 {
  border: 2px solid #164cb0;
}

.bdbc-2 {
  border-bottom: 2px solid #164cb0;
}

.asl-box {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.text-h.bgc-1 {
  background-color: #fff;
  color: #000;
}

.text-h.bgc-6 {
  color: #ffffff;
}

.text-h.bgc-5 {
  color: #ffffff;
}

.hh-flag {
  max-width: 24px;
  min-width: 24px;
  max-height: 24px;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hhs-flag {
  max-width: 16px;
  min-width: 16px;
  max-height: 16px;
  min-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hh-box {
  transition: all 0.3s;
}
.hh-box:hover {
  box-shadow: 0 -10px 20px -20px rgb(0, 0, 0);
}

.bgcg-1.txtc-2 {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}

.h-huay {
  background: url("../../assets/img/cover-glo.a931d90.jpg") repeat 50%;
  background-size: cover;
}
.h-huay .bgcg-1 {
  background: linear-gradient(-45deg, #164cb0, #00a8a3, rgba(38, 153, 158, 0.5), rgba(0, 168, 163, 0.3));
  background-size: 100% 100%;
}
.h-huay .txtc-2 {
  color: #000;
}
.h-huay .txtc-3 {
  color: #164cb0;
}

.h-yk {
  background: url("../../assets/img/cover-yikee.19eb558.jpg") repeat 50%;
  background-size: cover;
}
.h-yk .bgcg-1 {
  background: linear-gradient(-45deg, #c600c6, #710071, rgba(198, 0, 198, 0.3), rgba(113, 0, 113, 0.5));
  background-size: 100% 100%;
}
.h-yk .txtc-2 {
  color: #ffffff;
}
.h-yk .txtc-3 {
  color: #431359;
}

.h-egov {
  background: url("../../assets/img/cover-egov.89bdefe.jpg") repeat 50%;
  background-size: cover;
}
.h-egov .bgcg-1 {
  background: linear-gradient(-45deg, #27a945, #055014, rgba(39, 169, 69, 0.3), rgba(5, 80, 20, 0.5));
  background-size: 100% 100%;
}
.h-egov .txtc-2 {
  color: #ffffff;
}
.h-egov .txtc-3 {
  color: #148241;
}

.h-gsb {
  background: url("../../assets/img/cover-gsb.5088a28.jpg") repeat 50%;
  background-size: cover;
}
.h-gsb .bgcg-1 {
  background: linear-gradient(-45deg, #ec068d, #ff8cc8, rgba(236, 6, 141, 0.3), rgba(255, 140, 200, 0.5));
  background-size: 100% 100%;
}
.h-gsb .txtc-2 {
  color: #000;
}
.h-gsb .txtc-3 {
  color: #ec068d;
}

.h-inter {
  background: url("../../assets/img/cover-inter.3a6cf63.jpg") repeat 50%;
  background-size: cover;
}
.h-inter .bgcg-1 {
  background: linear-gradient(-45deg, #fdeb9a, #b07e10, rgba(253, 235, 154, 0.3), rgba(176, 126, 16, 0.5));
  background-size: 100% 100%;
}
.h-inter .txtc-2 {
  color: #000;
}
.h-inter .txtc-3 {
  color: #ef1218;
}

.h-set {
  background: url("../../assets/img/cover-set.929239d.jpg") repeat 50%;
  background-size: cover;
}
.h-set .bgcg-1 {
  background: linear-gradient(-45deg, #00a8ff, #00a8ff, rgba(0, 81, 216, 0.3), rgba(0, 81, 216, 0.5));
  background-size: 100% 100%;
}
.h-set .txtc-2 {
  color: #000;
}
.h-set .txtc-3 {
  color: #4267b2;
}

.h-inter-vip {
  background: url("../../assets/img/cover-inter.3a6cf63.jpg") repeat 50%;
  background-size: cover;
}
.h-inter-vip .bgcg-1 {
  background: linear-gradient(-45deg, #fdeb9a, #b07e10, rgba(253, 235, 154, 0.3), rgba(176, 126, 16, 0.5));
  background-size: 100% 100%;
}
.h-inter-vip .txtc-2 {
  color: #000;
}
.h-inter-vip .txtc-3 {
  color: #4267b2;
}

.h-inter-stock {
  background: url("../../assets/img/cover-stock.4fb43f2.jpg") repeat 50%;
  background-size: cover;
}
.h-inter-stock .bgcg-1 {
  background: linear-gradient(-45deg, #27a945, #055014, rgba(39, 169, 69, 0.3), rgba(5, 80, 20, 0.5));
  background-size: 100% 100%;
}
.h-inter-stock .txtc-2 {
  color: #ffffff;
}
.h-inter-stock .txtc-3 {
  color: #009b00;
}

.h-th-stock {
  background: url("../../assets/img/cover-thai.f9e8428.jpg") repeat 50%;
  background-size: cover;
}
.h-th-stock .bgcg-1 {
  background: linear-gradient(-45deg, #9b4601, #ffa130, rgba(155, 70, 1, 0.3), rgba(255, 161, 48, 0.5));
  background-size: 100% 100%;
}
.h-th-stock .txtc-2 {
  color: #000000;
}
.h-th-stock .txtc-3 {
  color: #fd7b17;
}

.h-yeekee {
  background: url("../../assets/img/cover-yikee.19eb558.jpg") repeat 50%;
  background-size: cover;
}
.h-yeekee .bgcg-1 {
  background: linear-gradient(-45deg, #164cb0, #00a8a3, rgba(38, 153, 158, 0.5), rgba(0, 168, 163, 0.3));
  background-size: 100% 100%;
}
.h-yeekee .txtc-2 {
  color: #000000;
}
.h-yeekee .txtc-3 {
  color: #164cb0;
}

.h-close {
  filter: grayscale(100%);
}

.timeout .hhs-flag,
.timeout .hhs-txt {
  animation: blinkblink 1s linear infinite;
}

.bgcg-select {
  background: linear-gradient(90deg, #164cb0, #000, #000, #000, #164cb0);
  border: 1px solid rgb(31, 120, 226);
}

.nip-wrap {
  width: 410px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nip-wrap .nip-box {
  width: 20%;
  height: 76px;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 2px;
  margin: 5px;
  text-align: center;
  color: #1f1f1f;
}
.nip-wrap .nip-box input {
  width: 100%;
  border-radius: 4px;
  font-size: 36px;
  text-align: center;
  border: none;
}
.nip-wrap .nip-box input:focus {
  box-shadow: none !important;
  outline: none !important;
}

@keyframes blinkblink {
  50% {
    opacity: 0;
  }
}
.ck-content p {
  font-family: "kanit-Light";
  margin-bottom: 0;
}

.btn__number {
  margin: 1px;
  min-height: 48px;
  max-height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
  transition: all 0.3s;
}

.btn__number.active {
  color: #fff;
  background-color: #164cb0;
}

.btn__number_bluelight {
  margin: 1px;
  min-height: 48px;
  max-height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
  transition: all 0.3s;
}

.btn__number_bluelight.active {
  color: #fff;
  background: linear-gradient(90deg, #19335a, #8fc8eb);
}

.txt__24 {
  font-size: 24px;
}

.txt__18 {
  font-size: 18px;
}

.txt__16 {
  font-size: 16px;
}

.txt__14 {
  font-size: 14px;
}

.box-number {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-number.bg-theme-op1 {
  background-color: rgba(22, 76, 176, 0.5);
}

.bdc__gray {
  color: #000000;
  background-color: #fff;
  border-color: #1f78e2;
}
.bdc__gray:hover {
  background-color: #f6f6f6;
}

.bgc__red {
  color: #ffffff;
  background-color: #d70000;
  border-color: #1f78e2;
}
.bgc__red:hover {
  color: #ffffff;
  background-color: rgba(215, 0, 0, 0.8);
}

.bgc__green {
  color: #ffffff;
  background-color: #009b00;
  border-color: #1f78e2;
}
.bgc__green:hover {
  color: #ffffff;
  background-color: rgba(0, 155, 0, 0.8);
}

.bgc__orange {
  color: #ffffff;
  background-color: #fd7b17;
  border-color: #1f78e2;
}
.bgc__orange:hover {
  color: #ffffff;
  background-color: rgba(253, 123, 23, 0.8);
}

.bgc__blue {
  color: #ffffff;
  background-color: #164cb0;
  border-color: #1f78e2;
}
.bgc__blue:hover {
  color: #ffffff;
  background-color: rgba(38, 153, 158, 0.8);
}

.bdc__blue {
  color: #7b7b7b;
  background-color: #fff;
  border-color: #164cb0;
}
.bdc__blue:hover {
  color: #fff;
  background-color: rgba(22, 76, 176, 0.3);
}

.bdc__bluelight {
  color: #7b7b7b;
  background-color: #fff;
  border-color: #19335a;
}
.bdc__bluelight:hover {
  color: #fff;
  background: linear-gradient(90deg, #19335a, #8fc8eb);
}

.col__2 {
  width: 20%;
}

.col_10 {
  width: 10%;
}

.px_1 {
  padding: 1px;
}

.co01m {
  width: 10%;
}

.co02m {
  width: 15%;
}

.co03m {
  width: 25%;
}

.co04m {
  width: 35%;
}

.w_6 {
  width: 16.66%;
}

.inp-number {
  background-color: #164cb0;
  padding: 1px;
  display: flex;
  align-items: center;
  border-radius: 5px;
}
.inp-number .inp {
  width: 70%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.inp-number .inp input {
  width: 100%;
  height: 20px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  text-align: center;
  padding: 2px;
}
.inp-number .pls {
  width: 30%;
  text-align: center;
  color: #fff;
}

.inp-yk-nmb {
  border: 2px solid #164cb0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  border-radius: 5px;
}
.inp-yk-nmb input {
  width: 100%;
  height: 54px;
  border-radius: 5px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  text-align: center;
  padding: 2px;
  font-size: 36px;
  font-family: "kanit-Bold";
  color: #164cb0;
}

.tkt-search {
  background-color: #000;
  border: 1px solid rgb(31, 120, 226);
  padding: 5px;
  display: flex;
  align-items: center;
  border-radius: 5px;
}
.tkt-search .inp {
  width: 80%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.tkt-search .inp input {
  width: 100%;
  height: 40px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 2px 10px;
}
.tkt-search .srch {
  width: 20%;
  text-align: center;
  color: #fff;
  padding-left: 5px;
}
.tkt-search .srch .btn_h_link {
  height: 40px;
}

.box_show_prc {
  background: linear-gradient(90deg, #0055b9, #000, #0055b9, #000);
  border: 0.7px solid #2020dd;
  background-size: 400% 400%;
  animation: Gradient 5s ease infinite;
  padding: 10px 20px;
  position: fixed;
  right: 28px;
  bottom: 96px;
  z-index: 9;
}

@keyframes Gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.swal2-icon {
  position: relative;
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 2.5em auto 0.6em;
  border-radius: 50%;
  font-family: inherit;
  line-height: 5em;
  cursor: default;
  animation: swal2-animate-error-icon 0.5s;
}
.swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 2.5em;
  animation: swal2-animate-i-mark 0.5s;
}

.swal2-warning {
  color: #f8bb86;
  border: 0.25em solid #facea8;
}

.swal2-success {
  color: #009b00;
  border: 0.25em solid #009b00;
}

.swal2-danger {
  color: #d70000;
  border: 0.25em solid #d70000;
}

@keyframes swal2-animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes swal2-animate-i-mark {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  25% {
    transform: rotate(-25deg);
    opacity: 0.4;
  }
  50% {
    transform: rotate(15deg);
    opacity: 0.8;
  }
  75% {
    transform: rotate(-5deg);
    opacity: 1;
  }
  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}
.nav_ticket {
  display: flex;
  background: transparent;
  border: none !important;
}
.nav_ticket .nav-link.active {
  background: #5c5d62 !important;
  border: transparent !important;
  box-shadow: 0 0 10px rgba(134, 150, 237, 0.5) !important;
}
.nav_ticket .nav-link {
  width: calc(25% - 10px);
  margin: 5px;
  padding: 0.5rem 0rem !important;
  border-radius: 5px !important;
  background: #b1b6bf !important;
}

.asl-tck {
  display: flex;
  align-items: center;
  justify-content: end;
}

.set__box {
  background: linear-gradient(90deg, #0055b9, #000, #0055b9, #000);
  border: 0.7px solid #2020dd;
  background-size: 100% 100%;
  border-radius: 5px;
  overflow: hidden;
}
.set__box .bg__h {
  background: linear-gradient(90deg, #0055b9, #000, #0055b9, #000);
  background-size: 100% 100%;
  color: #fff;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  padding: 5px;
}
.set__box .bg__b {
  color: #000;
  padding: 10px 0;
}
.set__box .bg__b h6 {
  margin-bottom: 0 !important;
}
.set__box .bg__b .b__prc {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.set__box .bg__b .b__prc h1 {
  font-size: 36px;
  line-height: 32px;
  margin: 0 5px !important;
}
.set__box .bg__f {
  background: linear-gradient(90deg, #ff3ecc, #ff3ecc, #ff3ecc, #ff3ecc);
  box-shadow: inset 0 0 10px #02010a;
  background-size: 400% 400%;
  animation: Gradient 5s ease infinite;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  padding: 5px;
}

.h-result {
  display: block !important;
  flex-wrap: wrap;
  width: auto !important;
}
.h-result .txt__16 {
  font-size: 15px;
}

.btn_nmb_set {
  background-color: #ff3ecc;
  padding: 2px;
}
.btn_nmb_set .bg {
  text-align: center;
  background: linear-gradient(90deg, transparent, #ff3ecc, #ff3ecc, #ff3ecc, transparent);
  box-shadow: inset 0 0 10px #02010a;
  background-size: 100% 100%;
  padding: 15px 0;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}
.btn_nmb_set .bg:hover {
  opacity: 0.7;
}

.btn_nmb_set_2 {
  background-color: #19335a;
  padding: 2px;
}
.btn_nmb_set_2 .bg {
  text-align: center;
  background: linear-gradient(90deg, transparent, #19335a, #8fc8eb);
  box-shadow: inset 0 0 10px #02010a;
  background-size: 100% 100%;
  padding: 15px 0;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}
.btn_nmb_set_2 .bg:hover {
  opacity: 0.7;
}

.inp_prc {
  display: flex;
  align-items: center;
  background-color: #fff;
}

.btn__ {
  width: 20px;
  border-radius: 3px;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
}

.btn__.btn__dlt {
  background-color: #d70000;
}

.btn__.btn__add {
  background-color: #009b00;
}

.btn_nmb_set_save {
  background-color: #19335a;
  padding: 2px;
}
.btn_nmb_set_save .bg {
  text-align: center;
  background: linear-gradient(90deg, transparent, #19335a, #8fc8eb);
  box-shadow: inset 0 0 10px #02010a;
  background-size: 100% 100%;
  padding: 15px 0;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}
.btn_nmb_set_save .bg:hover {
  opacity: 0.7;
}

.btn_nmb_set_save_2 {
  background-color: #19335a;
  padding: 2px;
}
.btn_nmb_set_save_2 .bg {
  text-align: center;
  background: linear-gradient(90deg, #8fc8eb, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0), #8fc8eb);
  background-size: 100% 100%;
  padding: 15px 0;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}
.btn_nmb_set_save_2 .bg:hover {
  opacity: 0.7;
}

.btn_nmb_set_delete {
  background-color: #bcb9b9;
  padding: 2px;
}
.btn_nmb_set_delete .bg {
  text-align: center;
  background: linear-gradient(90deg, #fff, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0), #fff);
  background-size: 100% 100%;
  padding: 15px 0;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}
.btn_nmb_set_delete .bg:hover {
  opacity: 0.7;
}

.box_nmb_set {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px px solid #164caf;
  padding: 2px;
  border-radius: 5px;
  overflow: hidden;
}
.box_nmb_set .icon_nmb_set {
  width: 30px;
  height: 30px;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7b7b7b;
}
.box_nmb_set input {
  width: calc(100% - 30px);
  min-height: 30px;
  max-height: 30px;
  border: none !important;
  color: #707070;
}
.box_nmb_set input:focus {
  outline: none !important;
  box-shadow: none !important;
}
.box_nmb_set select {
  width: calc(100% - 30px);
  min-height: 30px;
  max-height: 30px;
  border: none !important;
}
.box_nmb_set select:focus {
  outline: none !important;
  box-shadow: none !important;
}

.inp-setgame input {
  width: 100%;
  font-size: 36px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  background: transparent;
  border: none !important;
}
.inp-setgame input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.btn_win {
  position: relative;
}

.btn_win.active {
  background-color: #164cb0;
}
.btn_win.active .txtc-b {
  color: #fff;
}
.btn_win.active::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 22px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translate(0, -50%);
  color: #fff;
}

.result-search {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #034347, #000, #034347, #000);
  background-size: 400% 400%;
  animation: Gradient 5s ease infinite;
  cursor: pointer;
}
.result-search .inp {
  width: calc(80% - 8px);
  margin-right: 8px;
  display: flex;
  align-items: center;
  background-color: #fff;
  cursor: pointer;
}
.result-search .inp input {
  width: calc(100% - 37px);
  height: 30px;
  background-color: #fff;
  border: none !important;
  padding-left: 10px;
  cursor: pointer;
}
.result-search .inp input:focus {
  outline: none !important;
  box-shadow: none !important;
}
.result-search .inp .icn {
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-search .srch {
  width: 20%;
}
.result-search .srch .btn_h_link {
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#main {
  transition: margin-right 0.5s;
  position: relative;
  z-index: 2;
}

#mySidenav {
  height: 100%;
  width: 50%;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  overflow: scroll;
  transition: 0.5s;
}

.closebtn {
  position: absolute;
  top: 80px;
  z-index: 4;
  right: 0;
  padding: 3px 8px;
  border-radius: 10px 0 0 10px;
  font-size: 23px;
  color: #fff;
  background: linear-gradient(90deg, #0055b9, #000, #0055b9, #000);
  border: 0.7px solid #2020dd;
  background-size: 400% 400%;
  animation: Gradient 5s ease infinite;
}
.closebtn:hover {
  color: #fff;
}

.btn_h_link.tth {
  font-size: 16px;
  padding: 5px 0px;
  font-family: "kanit-Light";
}

.nav-pills-number2 .nav-link {
  padding: 2px !important;
}
.nav-pills-number2 .nav-link .head {
  padding: 10px 0px;
  border-radius: 5px;
  background-color: #0055b9;
  color: #fff;
  text-align: center;
}
.nav-pills-number2 .nav-link.active {
  background: linear-gradient(90deg, #009dff, #009dff);
}

@media only screen and (max-width: 767px) {
  .txts-18 {
    font-size: 14px;
  }
  .txt__14 {
    font-size: 12px;
  }
  .btn_h_link.tth {
    font-size: 14px;
    padding: 5px 0px;
    font-family: "kanit-Light";
  }
  .nip-wrap {
    width: 100%;
  }
  .asl-tck {
    width: 100%;
  }
  .col_10 {
    width: 20%;
  }
}
@media only screen and (max-width: 290px) {
  .txts-18 {
    font-size: 10px;
  }
  .txts-16 {
    font-size: 12px;
  }
  .txts-14 {
    font-size: 10px;
  }
  .hh-wrap .hh-flag {
    max-width: 18px;
    min-width: 18px;
    max-height: 18px;
    min-height: 18px;
  }
  .hh-wrap h5 {
    font-size: 14px;
  }
  .txt__14 {
    font-size: 10px;
  }
  .btn_h_link.tth {
    font-size: 10px;
    padding: 5px 0px;
  }
  .txtc-g.txts-14 {
    font-size: 10px;
  }
  .txt__16 {
    font-size: 10px;
  }
  .btn_nmb_set_delete .bg,
  .btn_nmb_set_save .bg {
    font-size: 14px;
  }
  .hhs-flag {
    max-width: 12px;
    min-width: 12px;
    max-height: 12px;
    min-height: 12px;
  }
  .hhs-txt {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */