@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300;500&display=swap");
:root {

  --header-bg-color: #0A0F1E;
  --menu-bg-color: #12192C;  
  --body-bg-color: #0A0F1E;
  --footer-bg-color: #171E30;
  --text-primary-color: #ffffff;
  --text-secondary-color: #e4c36e;
  --text-third-color: #e4c36e;
  --menu-border-color: #e4c36e;

}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  font-family: "Kanit", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
}

input,
button.select,
textarea,
label {
  font-family: "Kanit", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
}

html,
body {
  height: 100%;
  background:var(--body-bg-color);
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}


input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

a {
  text-decoration: none;
  color: #ffffff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.form-group label {
  font-size: 12px;
  color: #ffffff;
}
.form-group input {
  background: var(--input-color);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  padding: 0 10px;
  height: 30px;
}
.form-group input:focus {
  outline: none;
}

.flex {
  display: flex;
}

.show-mobile {
  display: none;
}

.form-button-group {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  height: 70px;
}

.btn-white,
.btn-login,
.btn-register,
.btn-outline {
  display: block;
  border: none;
  cursor: pointer;
  font-size: 12px;
  text-align: center;  
  background: linear-gradient(180deg, #0095FF 0%, #0855C4 100%);
  
  background-blend-mode: overlay, multiply, normal;
  
  border-radius: 8px;
  height: 28px;
  padding: 0 15px;
  line-height: 28px;
  font-weight: 300;
  margin: 0 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #ffffff;
}
.btn-white.lg,
.btn-login.lg,
.btn-register.lg,
.btn-outline.lg {
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  padding: 0 30px;
}
.btn-white:hover,
.btn-login:hover,
.btn-register:hover,
.btn-outline:hover {
  filter: contrast(1.5);
}

.btn-outline {
  background: none;
  display: inline-flex;  
  justify-content: center;

  border-radius: 5px;
  border: 1px solid #E4C36E;
  color: var(--text-primary-color);
  font-size: 12px;
  width: 100px;

}



.btn-register {
  color: #fff;   
  background: linear-gradient(180deg, #E4C36E 0%, #9E7707 100%);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}


.line-button.lg
{
  display: flex;
  padding: 0 20px;
}

.line-button {
  background: #167713;
  border-radius: 30px;  
  padding: 0 7px;
  color: #fff;
  vertical-align:middle;
}
.line-button img {
  margin: 0px 5px;
}
header .header-btn-mobile{
  display: none;
}
header #header {
  display: flex;
  justify-content: space-between;
  height: 120px;
}

header #header #logo {
  display: block;
  margin-top: -5px;
  margin-left: 10px;
  width: 80%;
  align-self: center;
}

header #header .btn {
  width: 10%;
} 

header #header #logo img {
  width: 147px;
  height: auto
}

header nav ul{  
  padding-inline-start: 0px;
}

header #login-form {
  width: calc(100%);
}

header #head_login{
  background:var(--header-bg-color);
  padding:5px 0px;
  padding: 0px;
}



header #login-form form {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;  
  max-width: 195px;
  margin-left: auto;  
}

header #login-form form .form-group {
  padding: 0 5px;
  width: 150px;
}

header nav {
  margin: 11px 10px 0 10px;
  height: 35px;
  background: var(--menu-bg-color);
}

header nav ul.main-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
header nav ul.main-nav li {
  list-style: none;
  width: 100%;
  display: block;
  position: relative;
}
header nav ul.main-nav li a {
  width: 100%;
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  height: 35px;
  line-height: 35px;
  border-right: 1px solid var(--header-bg-color);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header nav ul.main-nav li a:hover,
header nav ul.main-nav li a.active {
  color: var(--menu-border-color);
  border-bottom: 2px solid var(--menu-border-color);
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(231, 193, 85, 0.1) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(231, 193, 85, 0.1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(231, 193, 85, 0.1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#e7c155", GradientType=0);
}
header nav ul.main-nav li:last-child a {
  border-right: 0;
}
header nav ul.main-nav li:hover .sub-menu {
  display: block;
}
header nav ul.sub-menu {
  display: none;
  position: absolute;
  z-index: 2;
  background: var(--menu-bg-color);
  border-left: 1px solid var(--menu-border-color);
  border-right: 1px solid var(--menu-border-color);
  border-bottom: 1px solid var(--menu-border-color);
  margin-left: 0;
  padding: 10px;
  width: 200%;
  max-width: 200px;
}
header nav ul.sub-menu li {
  list-style: none;
}



#wpsm_accordion_1955 .ac_open_cl_icon{
  color: #7E3AE9 !important;
}

.top_container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-items: center;
  margin-bottom: 20px;
}




/* Slider */

#slider {
  padding:20px 10px 0px 10px;
  width: 759px;  
  margin: 0 auto;
  min-height:415px;
}

.section-bigbanner{
  display: flex;
}

.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;

  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
  border-radius: 10px;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;

  position: absolute;
  top: 50%;

  display: block;

  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);

  cursor: pointer;

  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;

  opacity: 0.75;
  color: white;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: "•";
  text-align: center;

  opacity: 0.25;
  color: black;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  position: relative;
}

.slick-slide div {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  padding: 10px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  font-size: 16px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: right;
  position: relative;
  bottom: 30px;
  padding-right: 10px;
}

.slick-dots li {
  width: 10px;
  height: 10px;
}

.slick-dots li.slick-active {
  width: auto;
  padding-right: 5px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
}

.slick-dots li button::before {
  color: #fff;
  opacity: 1;
  font-size: 30px;
  line-height: 11px;
}

.slick-dots li.slick-active button {
  width: 30px;
  height: 10px;
}

.slick-dots li.slick-active button::before {
  color: #fff;
  background-color: #fff;
  width: 38px;
  height: 10px;
  border-radius: 10px;
  left: 5px;
}

.slick-arrow.slick-hidden {
  display: none;
}

.banner_list_first{
  display: block;
  margin: 15px 0px; 
  width: 321px;
}

.banner_list_first .item{
  display: flex;
  align-items: center;
  width: 100%;
  margin: 5px 0px;
}

.banner_list_first .item .btn{ 
  width: 100%;
  padding: 20px;
}

.banner_list_first .item-2 .btn{ 
  padding: 0px !important;
}


.banner_list_first .item .btn p{
  
  color: #000000;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.banner_list_first .item .btn .txt1{
  margin-top: 50px;
  color: #000000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;

}

.banner_list_first .item .btn .txt2{
  color: #000000;
  font-size: 36px;  
  line-height: 35px;
}



.banner_list_first .item .btn .txt3{
  color: #ffffff;
  font-size: 74px;  
  line-height: 65px;
  margin-bottom: 50px;
}

.banner_list_first .item .btn a{
  margin-top: 10px;  
}

.btn-white{
  color: #000000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: #ffffff;  
  width: 120px;
  padding-top: 3px;
}


.banner_list_first .item img{     
  height: 120px;
  width: auto;    
}

.banner_list_first .item-1{
  border-radius: 10px;
  background: linear-gradient(134deg, #F7DF73 0%, #F3BD44 100%);  
  height: 118px;
}
.banner_list_first .item-1 .bg_icon{
  background-image: url('../images/sub-banner-1.svg');
  background-repeat:no-repeat;
  background-size: contain;  
  background-position: bottom right;
  width: 100%;
  height: 100%;
}

.banner_list_first .item-2{  
  border-radius: 10px;
  background:linear-gradient(140deg, #C06BF7 0%, #89ABF6 100%);
  width: 100%;
  height: 334px;    
  padding: 20px 0px 0px 20px;  
  height: 287px;  
}

.banner_list_first .item-2 .bg_icon{
  background-image: url('../images/sub-banner-2.webp');
  background-repeat:no-repeat;
  background-size: contain;  
  background-position: bottom right;
  width: 100%;
  height: 100%;
}

.banner_list_first .item-2 img{    
  height: 287px;
  
}

.banner_list_second_mobile{
  display: none;
}

.banner_list_second{
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  margin: 20px 0px;  
}


.banner_list_second .item{  
  display: flex;
  align-items: center;
  width: 24.5%;
  height: 76px;  
  border-radius: 20px;
  background: linear-gradient(137deg, #182136 0%, #0E1526 100%);
  color: #ffffff;  
  text-align: left;
}

.banner_list_second .item .description{ 
  width: 70%;
  padding: 20px;
}

.banner_list_second .item .description .title{ 
  padding-top: 10px;
  font-size: 18px;
}

.banner_list_second .item .description .detail{ 
  font-size: 12px;
}

.banner_list_second .item img{    
  margin-right:auto;
  margin-left:auto;
  height: 63px;
  width: auto;  
  margin: 0px 5px;
}

.game_partner_logo_list{
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 20px 0px;
}

.game_partner_logo_list .item{  
  display: flex;
  align-items: center;
}
.game_partner_logo_list .item img{  
  margin: 0px 5px;
}


.game_partner_icon_list{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 20px 0px;
}

.game_partner_icon_list .item{  
  width: 100%;  
  border-radius: 12px;
  margin: 5px;
  /* border: 1px solid #00D1FF;
  box-shadow: 0px 4px 24px 0px rgba(9, 124, 150, 0.65); */
}

.game_partner_icon_list .item img{  
  max-width: 206px !important;
  width: 100%;
  height: auto;
}

.game_partner_icon_list .item .image_name{  
  text-align: left;;
}
.game_partner_icon_list .item .image_group{  
  text-align: left;
  color: rgba(255, 255, 255, 0.60) !important;  
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.top_container .content{
  border-radius: 20px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
}

.top_container h2{
  color: yellow;
  padding-bottom: 20px;
}

.banner_menu div{
  position: absolute;
  bottom: 0px;
  width: 125px;
  height: 43px;
  background: url("../images/menu5.png") top center no-repeat;
  left: 12%;
  padding:10px;  
}

.about {
  display: contents;    
  align-content: center;
  
}


.about div {
  box-sizing: border-box;
  width: 100%;        
  margin: 10px;  
  text-align: center;
}

.about .about-left .item{
  display: block;
  text-align: center;
  font-size: 14px;
  width: 100%;
  padding: 20px;
  
}

.about .about-left .item p{
  font-size: 14px;
}



.about .about-left .head{
  font-size: 12px;
  color: rgba(255, 255, 255, 0.50);
  text-transform: uppercase;

}

.about .about-left .title{
  padding-top:0px;
  font-size: 48px;
}

.about .about-right{
 display: flex;
}

.about .about-right .item{  
  display:block;
  margin: 10px;
  text-align: center;
  align-items: center;
  border-radius: 40px;
  background: linear-gradient(137deg, rgba(77, 77, 77, 0.80) 0%, rgba(61, 61, 61, 0.00) 100%);
  padding: 20px;
}
.about .about-right .item img{
  margin: 0px auto;
}

section {
  text-align: center;
  color: #ffffff;
  padding: 0px 10px 0px 10px;
  position: relative;    
}

section.section-category {
  padding :20px 0px;
  background:var(--body-bg-color);
  font-size: 20px;
  color: var(--text-primary-color);  
}
section.section-dark{
  background: #141A2D !important;
  padding: 0px 20px !important;
  border-radius: 10px ;
}

section.category-game-hits .game_partner_icon_list .item img {
  max-width: 183px !important;
  height: auto;
}


section.section-category .head-category{
  display: flex;
  align-items: center;
}

.head-category .title-line {
  content: " ";
  height: 1px;
  width: 100%;
  background-image: url(../images/line.svg);
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  top: 18px;
  z-index: -1;
}
.head-category .title-hit{
  display: inline-flex;
  padding: 5px 108px 6px 109px;
  justify-content: center;
  align-items: center;  
  background: radial-gradient(56% 40.03% at 50.00% 50.00%, #0A0F1E 59.50%, rgba(10, 15, 30, 0.00) 100%);
}

section .category-line{
  height: 4px;
  width: 98%;
  flex-shrink: 0;  
  background: var(--linear, linear-gradient(90deg, #00B5FF 0%, #C500FF 100%)); 
  margin: 10px auto; 
}


section.section-category .title {
 text-align: left;
 width: auto;
 text-wrap: nowrap;
 margin-right: 15px;
}

section.section-category .line {
  width: 100%;
  height: 1px;
  background: #EA0938;  
  margin-right: 15px;
}

section h1 {
  text-align: center;
  color: var(--text-secondary-color);
  font-size: 30px;
  margin: 0;
  padding: 0;
  position: relative;
}


section p {
  font-weight: 300;
  margin: 0 auto;
  /* margin-top: 5px; */
  font-size: 16px;
}
section p.mx {
  max-width: 700px;
}
section p.title {
  padding-top: 30px;
  color: var(--text-third-color);
  position: relative;
  font-size: 24px;
}

.list-icon {
  max-width: 550px;
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
}
.list-icon img {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 150px;
}

.list-hero {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  margin: 20px auto;
}
.list-hero div {
  text-align: center;
  padding: 20px;
}
.list-hero div img {
  display: block;
  height: auto;
  width: 244px;
  margin: 0 auto;
}
.list-hero p {
  margin-top: 10px;
  font-size: 14px;
}

#bank{
  display: inline;
  padding-bottom: 50px;
}

.mt-3 {
  margin-top: 30px;
}

.text-center {
  text-align: center;
}
.text-center img {
  margin: 0 auto;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.no-pb {
  padding-bottom: 0;
  margin-bottom: 0;
}

.list-news{
  margin:10px;
}

.list-news .item-news {
  background:var(--body-bg-color);  
  height:100%; 
}
.list-news .item-news img{
  display: block;
  max-width: 100%;
  max-height: 115px;
  height: auto;
  border-radius: 10px;
}
.list-news .item-news .news-detail{
  padding:5px;
  text-align: left;
}
.list-news .item-news .news-cate{
  padding-top:10px;
  text-align: left;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.60);
}

.list-news .item-highlight div{
  padding-top:15px;
}

.list-news .item-news a{
  font-size: 14px;  
}


.list-blog {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}
.list-blog .item-blog {
  background: #333333;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.45);
  border-radius: 12px;
  margin: 7px;
  overflow: hidden;
  width: calc(25% - 15px);
}
.list-blog .item-blog a:first-child {
  height: 140px;
}
.list-blog .item-blog a:first-child img {
  height: 140px;
  object-fit: cover;
}
.list-blog .item-blog a:last-child {
  display: block;
  padding: 10px;
}
.list-blog .item-blog a div {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin-top: 5px;
}
.list-blog .item-blog div {
  font-size: 12px;
  font-weight: 300;
  padding: 10px;
  text-align: left;
}


.head-line {
  color: var(--primary-color);
  text-align: left;
  font-size: 20px;
  margin-top: 20px;
  border-left: 2px solid var(--primary-color);
  padding-left: 10px;
}

.pb-30 {
  padding-bottom: 30px;
}

footer {
  background: var(--footer-bg-color);
  color: #ffffff;
  font-weight: 300;  
}
footer strong {
  color: var(--text-secondary-color);
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  display: block;
}

footer #footer-logo{
  display: flex;
  align-items: center;
}

footer .line{
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #7282A6 0%, rgba(114, 130, 166, 0.00) 100%);
}

footer .head-about{
  color: #B2BBC7;
  font-size: 12px;
  padding: 0 15px;
}
footer .detail-about{
  color: var(--text-primary-color);
  font-size: 12px;
  padding: 0 15px;
}


#footer-menu ul li {
  font-size: 14px;  
}

#footer-menu ul li a {
  display: block;
}
#footer-menu ul li:last-child {
  border-right: 0;
}

#footer-bank {  
  display: flex;
  justify-content: center;
  border-top: 1px solid #5A6582;
  border-bottom: 1px solid #5A6582;
  text-align: center;
  padding: 10px;
}



#footer-tags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

#footer-tags a {
  font-size: 14px;
  display: inline-flex;
  padding: 0px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #5A6582;
  margin: 3px;
}


#footer-sponsor {
  padding-bottom: 30px;
}

#footer-menu {
  /* border-top: 1px solid #BF9A5D; */
  background: var(--footer-bg-color);
}

#footer-menu .container {
  /* display: flex; */
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 20px 10px;
}
#footer-menu ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;  
  padding-inline-start: 20px;
}


#footer-credit {
  text-align: center;
  background: var(--primary-color);
  font-size: 14px;
  height: 32px;
  line-height: 32px;
}

.footer-social{
  text-align: center;
  margin: 5px 15px;
}

article {
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 300;
  text-align: left;
}
article h1,
article h2,
article h3,
article h4,
article h5,
article h6 {
  font-weight: 500;
  color: var(--text-primary-color) !important;
  margin-bottom: 5px;
  margin-top: 10px;
}
article h1 strong,
article h2 strong,
article h3 strong,
article h4 strong,
article h5 strong,
article h6 strong {
  font-weight: 600;
  color: var(--text-primary-color) !important;
}
article p,
article p span,
article p strong {
  /* font-family: Tahoma, sans-serif; */
  color: #ffffff !important;
  /* font-weight: 600; */
}
article a {
  color: #7E3AE9 !important;
  /* font-weight: 600; */
  /* text-decoration: underline; */
}
article a strong,
article a span {
  color: #7E3AE9 !important;
  /* font-weight: 600; */
  /* text-decoration: underline; */
}
article img {
  max-width: 100%;
}

#relation-news {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  padding-bottom: 20px;
}
#relation-news ul li {
  color: var(--secondary-color);
}
#relation-news ul li a {
  color: var(--secondary-color);
}

#tags {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  padding-bottom: 20px;
}
#tags h4 {
  color: #bdbdbd;
  font-size: 12px;
}
#tags div {
  display: flex;
  flex-wrap: wrap;
}
#tags a {
  color: #ffffff;
  display: block;
  margin: 5px;
  padding: 0 10px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 30px;
  font-size: 14px;
  line-height: 30px;
}
#tags a:hover {
  background: var(--secondary-color);
}

#sponsor {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
#sponsor div {
  width: 25%;
  text-align: center;
}
#sponsor div img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.cat-title {
  font-weight: 400;
  color: #fff500;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}
.cat-title::after {
  content: none;
}

#hamburger,
#bottom-nav {
  display: none;
}

#overLayMobile {
  display: none;
}

#service-menu {
  display: none;
}

#center-register-blog {
  /* margin-top: 20px; */
  /* background: var(--body-color-light); */
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
}

#center-register-blog a{
  padding: 5px 10px;
  background: radial-gradient(56.27% 87.5% at 50% 0%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), url(Rectangle@3x.png), #7E3AE9;
  background-blend-mode: overlay, multiply, normal;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3), inset 0px -1px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  border:none;
  margin: 3px;
}



#share {
  display: flex;
  float: right;
  font-weight: 300;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
#share a {
  margin: 3px;
}

#single-share {
  display: flex;
  float: none;
  font-weight: 500;
  margin-top: 0;
  padding-bottom: 2em;
}
#single-share a {
  margin: 3px;
}

.more-button {
  float: right;
  color: var(--secondary-color);
  display: block;
  padding: 0 10px;
  height: 30px;
  background: #535353;
  border-radius: 30px;
  font-size: 14px;
  line-height: 30px;
  margin: -29px -120px 0 0;
}
.more-button:hover {
  background: #434343;
}

.clear {
  clear: both;
}


.table {
  padding-top: 20px;
  margin-bottom: 20px;
}
.table h3 {
  background: #b00c13;
  color: #ffffff;
  padding: 5px 0;
  border-radius: 10px 10px 0 0;
}
.table table {
  border: 0;
  width: 100%;
  border-spacing: 0;
  background: #1a1a1a;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.table table th {
  background: #000000;
  font-size: 12px;
  padding: 5px 0;
  border: 0;
}
.table table tr td {
  padding: 5px 0;
  border-bottom: 1px solid #000;
}
.table table tr td small {
  color: #969696;
}
.table table tr td:first-child {
  padding-left: 5px;
}
.table table tr td img {
  height: 50px;
  width: auto;
  display: inline-block;
}
.table table tr:last-child td {
  border-bottom: 0;
}

#player {
  margin: 20px auto;
  max-width: 960px;
  width: 100%;
  padding-top: 37.7%;
  position: relative;
  max-height: 540px;
}

.s-m {
  display: none;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.wp-pagenavi{
  margin-bottom: 10px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  border: 1px solid #bfbfbf;
  padding: 3px 5px;
  margin: 2px;
  min-width: 32px;
  display: inline-block !important;
  border-radius: 10px;
  font-size:14px;

}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  border-color: #808080;
  background: #464646;
}

#content img {
  max-width: 100%;
  height: auto;
  margin: 5px auto;
  display: block;
}

#content .wp-caption {
  margin: 10px auto;
  text-align: center;
}

#content div {
  width: 100% !important;
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 0;
  --bs-breadcrumb-divider-color: #6c757d;
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
  color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}

/*# sourceMappingURL=style.css.map */
article iframe {
  width: 100%;
  height: 460px;
  max-width: 720px;
  margin: 10px auto;
  display: block;
}
#section-tags{
  background: #1E1E1E;
  padding: 20px 0px;
}


/* Style the tab */
.tab {
  overflow: hidden;  
  text-align: left;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  font-size: 14px;
  display: inline-flex;
  padding: 5px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #2D3850;
  margin: 5px 3px;
  color: var(--text-primary-color);
}

/* Change background color of buttons on hover */
.tab button{
  border-style: none;
}
.tab button:hover {
  background-color:  var(--text-third-color);
  color: #000000;
  cursor: pointer;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: var(--text-third-color);
  color:#000000;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  /* border: 1px solid #ccc; */
  border-top: none;
}
