/** Use this if you want a transition effects **/
/** Use this for the background of the body **/
/** Use this if the border is gradient **/
/** Use this if the border is not gradient **/
/** Use this if the background is gradient **/
.home .home__slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-height: 426px;
  margin: auto;
}
.home .home__slider .swiper-slide {
  cursor: pointer;
}
.home .home__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home .home__slider .swiper-pagination .swiper-pagination-bullet {
  background: transparent;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  opacity: 1;
}
.home .home__slider .swiper-pagination .swiper-pagination-bullet-active-main {
  background: #fff;
}
.home .home__slider .swiper-button-prev:after {
  color: var(--c-white);
  font-weight: 700;
  font-size: 20px;
}
.home .home__slider .swiper-button-next:after {
  color: var(--c-white);
  font-weight: 700;
  font-size: 20px;
}
.home .home__category {
  color: var(--primary-text);
  padding: 50px 0;
}
.home .home__category-cont {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  grid-gap: 20px;
}
.home .home__category-cont a {
  margin: 0 10px;
}
.home .home__category-cont a .category-item {
  text-align: center;
}
.home .home__category-cont a .category-item .item-icon {
  background: var(--primary-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: auto;
  width: 100px;
  height: 100px;
}
.home .home__category-cont a .category-item .item-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  object-position: center;
}
.home .home__category-cont a .category-item .item-name {
  font-size: 13px;
  font-weight: 600;
  background: var(--secondary-color);
  color: var(--c-black);
  border-radius: 5px;
  box-shadow: 0px 0px 35px rgba(255, 199, 0, 0.4);
  padding: 4px 8px;
  text-transform: uppercase;
}
.home .home__category-cont a .category-item:hover .item-icon {
  transform: translateY(-10px);
  box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.3);
}
.home .home__category-cont a .category-item:hover img {
  filter: grayscale(100%);
}
.home .home__game {
  margin-bottom: 20px;
}
.home .home__game .game-container__header {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.home .home__game .game-container__header .game-title h6 {
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 600;
  color: var(--c-white);
  white-space: nowrap;
}
.home .home__game .game-container__header .game-action {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.home .home__game .game-container__header .game-action .action-button {
  margin-right: 5px;
}
.home .home__game .game-container__header .game-action .action-button .btn-custom-sm {
  border-radius: 5px;
  font-size: 12px;
  padding: 3px 10px;
  font-weight: 700;
}
.home .home__game .game-container__header .game-action .action-navigation {
  display: flex;
  align-items: center;
}
.home .home__game .game-container__header .game-action .action-navigation .btn-custom-sm {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  border-radius: 25px;
}
.home .home__game .game-container__header .game-action .action-navigation .btn-custom-sm i {
  font-size: 16px;
}
.home .home__game .game-container__header .game-action .action-navigation .btn-custom-sm.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--page-text);
}
.home .home__game .game-container__list {
  margin-top: 5px;
}
.home .home__game .game-container__list .games-holder {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home .home__game .game-container__list .games-holder .games-img {
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.home .home__game .game-container__list .games-holder .games-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 8px;
  border-radius: 15px;
}
.home .home__game .game-container__list .games-holder .games-name {
  font-size: 14px;
  padding: 10px;
  font-weight: 700;
  color: var(--primary-text);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background: var(--primary-color);
  border-radius: 0 0 10px 10px;
}
.home .home__game .game-container__list .games-holder .hover-play {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  cursor: pointer;
}
.home .home__game .game-container__list .games-holder .hover-play .fas {
  color: var(--c-black);
  font-size: 23px;
  padding-left: 3px;
  background: linear-gradient(to bottom, #FFC700 0%, #FF7A00 100%);
  border-radius: 50px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .home__game .game-container__list .games-holder:hover .hover-play {
  transform: scale(1);
}
.home .home__game .game-container__category-list .slide-border {
  background: transparent;
  padding: 2px;
  border-radius: 10px;
}
.home .home__game .game-container__category-list .slide-border .slide-item {
  background: var(--primary-color);
  border-radius: 10px;
  position: relative;
}
.home .home__game .game-container__category-list .slide-border .slide-item .slide-img {
  position: relative;
  overflow: hidden;
}
.home .home__game .game-container__category-list .slide-border .slide-item .slide-img img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center;
}
.home .home__game .game-container__category-list .slide-border .slide-item .slide-img .hover-play {
  background: rgba(0, 0, 0, 0.5);
  color: var(--c-white);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: scale(0);
}
.home .home__game .game-container__category-list .slide-border .slide-item .slide-img .hover-play h6 {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 600;
  background: var(--secondary-color);
  color: #000;
  border-radius: 5px;
  padding: 5px 10px;
  max-width: 150px;
  min-width: 150px;
  text-align: center;
  position: absolute;
  top: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home .home__game .game-container__category-list .slide-border .slide-item .slide-img .hover-play .fas {
  color: var(--c-black);
  font-size: 23px;
  padding-left: 3px;
  background: linear-gradient(to bottom, #FFC700 0%, #FF7A00 100%);
  border-radius: 50px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .home__game .game-container__category-list .slide-border:hover .slide-item .hover-play {
  transform: scale(1);
}
.home .home__game .game-container__market-list .lotto-border {
  padding: 2px;
  background: transparent;
  border-radius: 10px;
}
.home .home__game .game-container__market-list .lotto-border .lotto-item {
  background: var(--lottery-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.home .home__game .game-container__market-list .lotto-border .lotto-item .lotto-flag img {
  width: 83px;
  height: 83px;
  object-fit: cover;
  object-position: left;
  border-radius: 10px 0 0 10px;
}
.home .home__game .game-container__market-list .lotto-border .lotto-item .lotto-info {
  color: var(--lottery-text);
  padding: 10px;
}
.home .home__game .game-container__market-list .lotto-border .lotto-item .lotto-info .lotto-country, .home .home__game .game-container__market-list .lotto-border .lotto-item .lotto-info .lotto-number, .home .home__game .game-container__market-list .lotto-border .lotto-item .lotto-info .lotto-date {
  line-height: 1;
}
.home .home__game .game-container__market-list .lotto-border .lotto-item .lotto-info .lotto-country {
  font-size: 16px;
}
.home .home__game .game-container__market-list .lotto-border .lotto-item .lotto-info .lotto-number {
  font-weight: 600;
  font-size: 25px;
  margin: 5px 0;
}
.home .home__game .game-container__market-list .lotto-border .lotto-item .lotto-info .lotto-date {
  font-size: 12px;
  color: #9698A1;
}
.home .home__game .game-container__market-list .lotto-border .lotto-item:hover .lotto-flag img {
  filter: grayscale(100%);
}
.home .home__game .game-container__market-list .lotto-border .lotto-item:hover .lotto-info .lotto-number {
  color: var(--secondary-color);
}
.home .home__game .game-container__bank-list {
  margin-bottom: 30px;
}
.home .home__game .game-container__bank-list .bank-border {
  padding: 2px;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
}
.home .home__game .game-container__bank-list .bank-border .bank-item {
  background: var(--primary-color);
  border-radius: 10px;
  padding: 10px 10px;
}
.home .home__game .game-container__bank-list .bank-border .bank-item img {
  width: 100%;
  height: 40px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0%) invert(1);
}
.home .home__game .game-container__bank-list .bank-border:hover img {
  filter: brightness(100%);
}
.home .home__seo {
  padding-bottom: 30px;
}
.home .home__seo .seo-content, .home .home__seo .mobile__seo .seo-mobile, .home .mobile__seo .home__seo .seo-mobile {
  background: var(--primary-color);
  border-radius: 10px;
  padding: 10px 15px;
  color: var(--primary-text);
  font-size: 14px;
}
.home .home__seo .seo-content table, .home .home__seo .mobile__seo .seo-mobile table, .home .mobile__seo .home__seo .seo-mobile table {
  color: var(--primary-text) !important;
}
.home .mobile__login {
  display: flex;
  align-items: center;
}
.home .mobile__login button {
  font-size: 14px;
  padding: 8px;
  font-weight: 600;
  border: 0;
  width: 100%;
}
.home .mobile__login .btn-login {
  background: linear-gradient(to bottom, #FFC700 0%, #FF7A00 100%);
  color: var(--c-black);
}
.home .mobile__login .btn-register {
  background: linear-gradient(to bottom, #F52A34 0%, #A11C1F 100%);
  color: var(--c-white);
}
.home .mobile__category {
  color: var(--primary-text);
  margin: 10px 0 15px;
}
.home .mobile__category .category-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .mobile__category .category-container a {
  margin: 10px 7px !important;
}
.home .mobile__category .category-container a .category-item {
  text-align: center;
  min-width: auto !important;
}
.home .mobile__category .category-container a .category-item .item-icon {
  background: var(--primary-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin: auto;
  width: 70px;
  height: 70px;
}
.home .mobile__category .category-container a .category-item .item-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
}
.home .mobile__category .category-container a .category-item .item-name {
  font-size: 10px;
  font-weight: 600;
  background: var(--secondary-color);
  color: var(--c-black);
  border-radius: 5px;
  box-shadow: 0px 0px 35px rgba(255, 199, 0, 0.4);
  padding: 4px;
  text-transform: uppercase;
}
.home .mobile__games {
  margin-bottom: 20px;
}
.home .mobile__games .games-container__header {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
.home .mobile__games .games-container__header .games-title h6 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-white);
  white-space: nowrap;
}
.home .mobile__games .games-container__header .games-action {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.home .mobile__games .games-container__header .games-action .action-button {
  margin-right: 5px;
}
.home .mobile__games .games-container__header .games-action .action-button .btn-custom-sm {
  border-radius: 5px;
  font-size: 10px;
  padding: 3px 10px;
  font-weight: 700;
}
.home .mobile__games .games-container .mobile-games-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-gap: 10px;
}
.home .mobile__games .games-container .mobile-games-list .games-holder {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home .mobile__games .games-container .mobile-games-list .games-holder .games-img {
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.home .mobile__games .games-container .mobile-games-list .games-holder .games-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 5px;
  border-radius: 10px;
}
.home .mobile__games .games-container .mobile-games-list .games-holder .games-name {
  font-size: 11px;
  padding: 7px 5px;
  font-weight: 700;
  color: var(--primary-text);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background: var(--primary-color);
  border-radius: 0 0 10px 10px;
}
.home .mobile__games .games-container .mobile-provider-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-gap: 10px;
}
.home .mobile__games .games-container .mobile-provider-list .item-holder {
  border-radius: 10px;
  background: var(--primary-color);
  padding: 5px;
}
.home .mobile__games .games-container .mobile-provider-list .item-holder .item-img img {
  width: 100%;
}
.home .mobile__games .games-container .mobile-provider-list .item-holder .item-title {
  background: var(--secondary-color);
  color: var(--c-black);
  font-size: 10px;
  border-radius: 5px;
  padding: 2px 10px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home .mobile__download-bannner {
  background-color: var(--primary-color);
  color: var(--c-white);
}
.home .mobile__download-bannner .mobile-download-container {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}
.home .mobile__download-bannner .mobile-download-container .download-icon {
  padding: 5px;
  background-color: #350808;
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.home .mobile__download-bannner .mobile-download-container .download-title {
  margin: 0 15px 0 10px;
}
.home .mobile__download-bannner .mobile-download-container .download-title h5 {
  font-size: 16px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 5px;
}
.home .mobile__download-bannner .mobile-download-container .download-title h6 {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}
.home .mobile__download-bannner .mobile-download-container .download-button {
  margin-left: auto;
}
.home .mobile__seo {
  background: var(--primary-color);
}
@media screen and (max-width: 768px) {
  .home .mobile__seo .container .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}
.home .mobile__seo .seo-content, .home .mobile__seo .seo-mobile {
  padding: 15px 0 30px;
  color: var(--primary-text);
  font-size: 14px;
}
.home .mobile__seo .seo-content table, .home .mobile__seo .seo-mobile table {
  color: var(--c-white) !important;
}
.home .mobile__seo .seo-content img, .home .mobile__seo .seo-mobile img {
  width: 100% !important;
}
.home .mobile__seo .seo-mobile .seo-mob-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.home .mobile__seo .seo-mobile .seo-mob-content {
  font-size: 12px;
  padding: 3px 0;
  text-align: justify;
}
.home .mobile__seo .seo-mobile h1 {
  font-size: 1.4rem;
}
.home .mobile__seo .seo-mobile h2 {
  font-size: 1.3rem;
}
.home .mobile__seo .seo-mobile h3 {
  font-size: 1.25rem;
}
.home .mobile__seo .seo-mobile h4 {
  font-size: 1.2rem;
}
.home .mobile__seo .seo-mobile h5 {
  font-size: 1.15rem;
}
.home .mobile__seo .seo-mobile h6 {
  font-size: 1rem;
}
.swiper-container-pointer-events {
    touch-action: pan-y
}
.games-holder {
  min-width: 195px; /* Ukuran minimal 180px untuk tampilan desktop */
  margin-right: -11px; /* Jarak kanan antar elemen */
  width: 100%; /* Lebar 100% agar responsif */
  height: auto; /* Sesuaikan tinggi berdasarkan konten */
  padding: 10px; /* Padding untuk ruang dalam */
  box-sizing: border-box; /* Agar padding tidak mempengaruhi lebar */
  overflow: hidden; /* Menyembunyikan elemen yang keluar dari batas */
  position: relative;
}

@media (max-width: 768px) {
  .games-holder {
    min-width: 130px; /* Ukuran minimum untuk layar lebih kecil (tablet) */
  }
}

@media (max-width: 576px) {
  .games-holder {
    min-width: 100px; /* Ukuran minimum untuk layar kecil (mobile) */
  }
}

.swiper-container {
  overflow: hidden; /* Membatasi elemen agar tidak keluar dari kontainer */
  width: 100%; /* Menggunakan lebar penuh */
}

.games-img {
  width: 100%; /* Membuat gambar responsif sesuai dengan lebar kontainer */
  max-width: 195px; /* Membatasi lebar gambar agar tidak terlalu besar */
  height: auto; /* Menjaga proporsi gambar */
  overflow: hidden; /* Memastikan gambar tidak keluar dari area kontainer */
  margin-bottom: 10px; /* Jarak antara gambar dan elemen berikutnya */
}
.games-img img {
  width: 100%; /* Membuat gambar mengikuti lebar kontainer */
  height: auto; /* Menjaga rasio aspek gambar */
  object-fit: cover; /* Menjaga gambar tetap sesuai ukuran tanpa mengganggu rasio */
}
/*# sourceMappingURL=home.css.map */
