/* =================================
 Temlate Name : Miscoo
 Author Name : autworks
 Date: 08/10/2020
 Version: 1.0
 =================================

/* =================================
 css index
 =================================
 *. typography
 *. section title
 *. preloader
 *. scroll to top button
 *. normalize
 1. header
 2. Breadcrump
 3. banner
 4. limelight feature
 5. About
 6. Service
 7. Portfolio
 8. Call to action
 9. Testimonial
 10. Team
 11. News
 12. Brand
 13. Contact
 14. Footer & copyright
 15. About second part
 16. Service page
 17. Service Details
 18. Sidebar
 19. Blog
 20. Contact
 21. Appointment

================================= */
/*==========================================
    typography
===========================================*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&amp;display=swap");
html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
}

a {
  display: inline-block;
  transition: 0.3s;
}

.overflow-hidden {
  overflow: hidden;
}

/*==========================================
    template default button
==========================================*/
.def-btn {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  padding: 0 35px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in;
  border-radius: 15px;
}
.def-btn.def-small {
  height: auto;
  line-height: 1.5;
  padding: 0 45px;
}

.heading {
  text-align: center;
  margin-bottom: 70px;
}
.heading h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.heading p {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  margin-bottom: -8px;
}

.c-white {
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .row.reorder-xs {
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: rotate(180deg);
    direction: rtl;
  }

  .row.reorder-xs > [class*=col-] {
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: rotate(-180deg);
    direction: ltr;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row.homepage-about-xs {
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: rotate(180deg);
    direction: rtl;
  }

  .row.homepage-about-xs > [class*=col-] {
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: rotate(-180deg);
    direction: ltr;
  }
}
/*==========================================
    Preloader
==========================================*/
.preloader {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background: #000000;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.preloader img {
  width: 400px;
}

/*==========================================
    normalize
==========================================*/
html {
  font-family: sans-serif;
  font-weight: 600;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  background-image: url("/assets/gunung303-background.webp");
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, a {
  line-height: 1.2;
  font-weight: 600;
}

p {
  line-height: 1.6;
  font-family: sans-serif;
  font-weight: 600;
}

a {
  color: #000000;
  text-decoration: none;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

/*input and button type focus outline disable*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ffffff;
}

/**
 * 5.0 - Alignments
 */
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@keyframes rubber {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rubber-2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-3 {
  0% {
    transform: translateX(5px) translateY(5px);
  }
  50% {
    transform: translateX(-5px) translateY(-5px);
  }
  100% {
    transform: translateX(5px) translateY(5px);
  }
}
@keyframes animation-4 {
  0% {
    transform: translateX(5px) translateY(-5px);
  }
  50% {
    transform: translateX(-5px) translateY(5px);
  }
  100% {
    transform: translateX(5px) translateY(-5px);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes popping-up {
  0% {
    width: 90px;
    height: 90px;
  }
  50% {
    width: 65px;
    height: 65px;
  }
  100% {
    width: 90px;
    height: 90px;
  }
}
.header {
	z-index: 11;
	padding: 0 100px;
	transition: all 0.3s ease-in;
	background: #042462;
}
*/
.header .logo {
/*  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; */
  position: relative;
  max-width: 400px;
  margin: .5rem auto;
}
.header .logo a {
	padding: 3px 0;
}
.tanggal {
	text-align: center;
	font-size: 15px;
	color: #ffffff;
	margin-bottom: 15px;
}
.tanggal span {
	display: block;
	margin: 0 5px;
  padding: .25rem 2rem;
  border-radius: 5px;
  font-size: 14px;
  color: #ffffff;
}
/*
.header .logo:after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 500px;
  background: #fff;
  opacity: 0.1;
}
*/
.header .logo img {
  transition: all 0.3s ease-in;
}
.header .top-header {
	padding: 15px 0;
}
.header .top-header .top-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.header .top-header .top-right form.part-searchBar {
  border-left: 1px solid #000000;
  padding: 15px 0 15px 30px;
}
.header .top-header .top-right form.part-searchBar input {
  border: none;
  background: transparent;
  color: #999;
  font-family: sans-serif;
  font-weight: 600;
}
.header .top-header .top-right form.part-searchBar input:placeholder {
  color: #999;
}
.header .top-header .top-right form.part-searchBar input:focus ~ button {
  color: #ff0000;
}
.header .top-header .top-right form.part-searchBar button {
  background: transparent;
  border: none;
  color: #999;
  transition: all 0.3s ease-in;
}
/*
.header .top-header .top-right .buttons {
  margin-right: 30px;
}
*/
.header .top-header .top-right .buttons a {
  font-size: 15px;
/*  line-height: 100%; */
  margin-left: 25px;
  font-weight: 300;
  color: #000000;
  padding: 7px;
  border-radius: 5px;
  width: 100px;
  text-align: center;
}
.header .top-header .top-right .buttons a:hover {
  background-color: #FFD700;
}
.header .bottom-header .navbar {
  padding: 0;
}
.header .bottom-header .navbar .navbar-nav {
  position: relative;
}
.header .bottom-header .navbar .navbar-nav:after {
  position: absolute;
  content: "";
  left: -100px;
  top: 0;
  width: 9999px;
  background: #fff;
  opacity: 0.1;
  height: 1px;
}
.header .bottom-header .navbar .navbar-nav .nav-item {
  padding: 25px 20px;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .nav-link {
  margin-right: 30px;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .nav-link:after {
  border: none;
  width: 12px;
  height: 12px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  top: 50%;
  margin-top: -5px;
  position: absolute;
  margin-left: 10px;
  -webkit-clip-path: polygon(100% 28%, 100% 54%, 50% 100%, 0 55%, 0 26%, 50% 74%);
          clip-path: polygon(100% 28%, 100% 54%, 50% 100%, 0 55%, 0 26%, 50% 74%);
  transition: all 0.3s ease-in;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  border: none;
  border-radius: 0;
  margin-top: 0;
  transition: all 0.3s ease-in;
  padding: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  margin-top: 30px;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover, .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:active {
  color: #fff;
  background: #fff;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover:after, .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:active:after {
  opacity: 1;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown:hover .nav-link:after {
  transform: rotate(180deg);
}
.header .bottom-header .navbar .navbar-nav .nav-item:last-child {
  padding-right: 0;
}
.header .bottom-header .navbar .navbar-nav .nav-item .nav-link {
  padding: 5px 0;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
}
.header .bottom-header .navbar .navbar-nav .nav-item .nav-link:before {
  position: absolute;
  content: "";
  left: -22px;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  width: 2px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  border-radius: 50px;
  transition: all 0.3s ease-in;
}
.header .bottom-header .navbar .navbar-nav .nav-item .nav-link.active:before {
  width: 30px;
}
.header .bottom-header .navbar .navbar-nav .nav-item:hover .nav-link:before {
  width: 30px;
}
.header .bottom-header .navbar .nav-btn {
  height: 40px;
  line-height: 38px;
  margin-left: 10px;
  background: #000000;
}
.header .bottom-header .navbar .nav-btn:hover {
  background: transparent;
}

.main-content {
	background: linear-gradient(to bottom, #042462, #58cbea);
	background-repeat: no-repeat;
	background-position: 0 -25px;
}

.banner {
  background: url("../img/banner-bg-2.html") center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
}
.banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.8);
  z-index: -1;
}
.banner .banner-txt {
  text-align: center;
  padding-top: 200px;
}
.banner .banner-txt h4 {
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 18px;
  letter-spacing: 3px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  font-weight: 700;
}
.banner .banner-txt h1 {
  font-size: 70px;
  line-height: 90px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 37px;
}

.page-title {
  color: #fff;
  text-align: center;
  margin-top: 10px;
}
.games.game-page {
	max-width: 1060px;
	margin: 0 auto;
}

.games.game-page .games-filter-area {
  padding: 0px;
}
.games.game-page .games-filter-area .blog-search {
  margin-bottom: 30px;
  margin-top: 30px;
}
.games.game-page .games-filter-area .blog-search form {
  position: relative;
}
.games.game-page .games-filter-area .blog-search form input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 50px;
  width: 100%;
  padding: 0 30px;
  font-family: sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  background: #242424;
  letter-spacing: 0.5px;
}
.games.game-page .games-filter-area .blog-search form input::placeholder {
  font-weight: 400;
}
.games.game-page .games-filter-area .blog-search form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  border: none;
  color: #fff;
  cursor: pointer;
  outline: none;
}
.games.game-page .games-filter-area .filtering:last-child .dropdown button {
  border-bottom: none;
}
.games.game-page .games-filter-area .filtering .dropdown button {
  background: #242424;
  border: none;
  color: #fff;
  font-family: sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-weight: 400;
  outline: none;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 50px;
  width: 100%;
  text-align: left;
  font-size: 15px;
  padding-left: 30px;
  font-weight: 400;
}
.games.game-page .games-filter-area .filtering .dropdown button:after {
  display: none;
}
.games.game-page .games-filter-area .filtering .dropdown button:before {
  width: 14px;
  height: 14px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -7px;
  -webkit-clip-path: polygon(100% 28%, 100% 54%, 50% 100%, 0 55%, 0 26%, 50% 74%);
          clip-path: polygon(100% 28%, 100% 54%, 50% 100%, 0 55%, 0 26%, 50% 74%);
}
.games.game-page .games-filter-area .filtering .dropdown .dropdown-menu {
  border-radius: 0;
  padding: 0;
  margin-top: 0;
  border: 0;
  margin-left: 2px;
}
.games.game-page .games-filter-area .filtering .dropdown .dropdown-menu .dropdown-item {
  letter-spacing: 0.5px;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  transition: 0s;
}
.games.game-page .games-filter-area .filtering .dropdown .dropdown-menu .dropdown-item:active {
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  color: #fff;
}
.games.game-page .miscoo-row {
  margin: 0;
  margin: -10px;
}
.games.game-page .miscoo-row div[class*=col] {
  padding: 10px;
}
/*
.games.game-page .all-games {
  margin-bottom: 50px;
}
*/
.games.game-page .all-games:last-child {
  margin-bottom: 0;
}
.games.game-page .all-games .single-game {
  margin-bottom: 0;
  border-width: 2px 2px 0;
  border-style: solid;
  border-radius: 15px;
}
.games .game-menu .nav .nav-item .nav-link {
/*  background: #242424; */
  color: #fff;
  line-height: 100%;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  position: relative;
  transition: all 0.3s ease-in;
  padding: 0;
}
.games .game-menu .nav.nav-mobile .nav-item .nav-link:hover, .games .game-menu .nav.nav-mobile .nav-item .nav-link.active {
	border: 2px solid #FFD700;
	border-radius: 12px;
}

.games .game-menu .nav .nav-item .nav-link span {
  display: inline-block;
  margin-right: 10px;
}

.games .game-menu .nav .nav-item:last-child .nav-link {
  border-bottom: none;
}
.games .all-games {
  position: relative;
  transition: all 0.3s ease-in;
  opacity: 0;
  transform: scale(0.99);
}
.games .all-games.anim-change {
  opacity: 1;
  transform: scale(1);
}
.games .all-games .title-cover {
  overflow: hidden;
  position: relative;
}
.games .all-games .title-cover .games-title {
  font-size: 28px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  margin: -4px 0 26px;
}
.games .all-games .title-cover .games-title:after {
  position: absolute;
  content: "";
  left: calc(100% + 30px);
  top: 50%;
  width: 999px;
  height: 1px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  opacity: 0.3;
}
.games .all-games .title-cover .games-title .icon {
  color: #ff0000;
  position: relative;
  top: -3px;
}
.games .all-games .title-cover .games-title .icon svg {
  height: 25px;
  width: 40px;
}
.games .all-games .single-game {
  background: #202124;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in;
}
.games .all-games .single-game a {
	display: block;
  background: #000000;
}
.games .all-games .single-game .part-img {
  position: relative;
	transition: all 0.4s ease-in;
}
.games .all-games .single-game .part-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.games .all-games .single-game .part-img:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.1) 60%, rgba(0,0,0,1) 100%);
  border-radius: 0 0 10px 10px;
}
.games .all-games .single-game .part-img .icon-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  transform: translateY(-50%) translateX(-50%);
  filter: drop-shadow(7px 7px 9px #000);
  opacity: 1;
  display: none;
}

.games .all-games .single-game .part-text {
  text-align: center;
/*  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease-in; */
}
.games.game-page .all-games .single-game .part-text {
  position: relative;
	display: flex;
  flex-direction: column;
	align-items: center;
	justify-content: center;
}
.games.game-page .all-games .single-game.gacor .part-text {
  background: linear-gradient(to bottom, #ffd700, #F67105);
}
.games.game-page .all-games .single-game.gacor {
  background: #000000;
}
.games.game-page .all-games .single-game.gacor .part-text .def-btn {
  background: #000000;
}
.games.game-page .all-games .single-game.gacor .part-text:before,
.games.game-page .all-games .single-game.gacor .part-text:after {
  position: absolute;
  content: '';
  background-image: url('/assets/bintang-gacor.png');
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  background-size: cover;
}
.games.game-page .all-games .single-game.gacor .part-text:before {
  left: 5px;
bottom: 20px;
}
.games.game-page .all-games .single-game.gacor .part-text:after {
  right: 5px;
  bottom: 20px;
}
.games.game-page .all-games .pop-games .single-game.gacor .part-text::before, 
.games.game-page .all-games .pop-games .single-game.gacor .part-text::after {
  width: 30px;
  height: 30px;
}
.games.game-page .all-games .pop-games .single-game.gacor .part-text::before {
  left: 5px;
}
.games.game-page .all-games .pop-games .single-game.gacor .part-text::after {
  right: 5px;
}
/*
.games .all-games .single-game .part-text:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: -1;
}

.games .all-games .single-game .part-text:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 80%;
  height: 150%;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  z-index: -1;
  transform: rotate(25deg) translateY(-15%) translateX(120%);
  transition: all 0.3s ease-in;
}
*/
.games .all-games .single-game .part-text h4.game-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: -7px;
  margin-bottom: 15px;
  padding: 0 15px;
  position: relative;
}
.games .all-games .game-title {
	font-size: 13px;
	color: #fff;
	text-align: center;
	position: absolute;
	left: 0;
	z-index: 3;
	bottom: -8px;
	width: 100%;
/*	background: rgba(0,0,0,0.7); */
	padding: 10px;
}
/*
.games .all-games .single-game:hover .part-img {
	transform: scale(1.2);
}
.games .all-games .single-game:hover .part-text {
  opacity: 1;
}
*/
/*
.games .all-games .single-game .part-text a {
  position: relative;
  left: 0;
  transition: all 0.3s ease-in;
  transition-delay: 0.4s;
  opacity: 0;
}
.games .all-games .single-game:hover {
  border-color: transparent;
}
.games .all-games .single-game:hover .part-text h4.game-title, .games .all-games .single-game:hover .part-text a {
  left: 0;
  opacity: 1;
}
.games .all-games .single-game:hover .part-text:after {
	left: 0;
	opacity: 1;
}
*/

.footer .copyright-area {
  background: #000000;
  text-align: center;
  padding: 15px 0;
}
.footer .copyright-area img {
  width: 30px;
}
.footer .copyright-area p {
  color: #999;
  margin-bottom: 0;
  line-height: 28px;
}
.footer .copyright-area p a {
  color: #ffd700;
  font-family: sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

/*
.runningtext {
	max-width: 1060px;
	margin: 0px auto;
}
*/
.simple-marquee-container {
	background: linear-gradient(to bottom, #ffd700, #F67105);
	padding: 0px;
}
.simple-marquee-container .marquee-sibling {
	background: linear-gradient(to bottom, #ffd700, #F67105);
	width: 50px;
	color: #fff;
}
.simple-marquee-container .fa, .simple-marquee-container .fas {
	font-family: sans-serif;
}
.simple-marquee-container .marquee-content-items li {
  font-family: sans-serif;
  font-weight: 600;
	color: #000000;
}
.simple-marquee-container .marquee-content-items li:after {
	display: none;
}
	
.marquee-after {
	position: absolute;
	width: 0px;
	height: 100%;
	right: 0;
	z-index: 33;
	background: linear-gradient(to bottom, #ffd700, #F67105);
}

.logo_provider {
	display: inline-block;
	background-position: center;
	background-repeat: no-repeat;
	height: 25px;
}
.logo_provider_pp {
	background-image: url('../images/slot-pragmatic-play.html');
	background-size: 125px;
}
.logo_provider_hb {
	background-image: url('../images/habanero.png');
	background-size: 100px;
}
.logo_provider_mg {
	background-image: url('../images/microgaming.png');
	background-size: 100px;
}
.logo_provider_pgsoftslot {
	background-image: url('../images/PGSOFT.html');
	background-size: 30px;
}
.logo_provider_live22 {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/LIVE22.png');
	background-size: 60px;
}
.logo_provider_slot88 {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/SLOT88.png');
	background-size: 60px;
}
.logo_provider_ionslot {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/PGS.png');
	background-size: 60px;
}
.logo_provider_joker {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/JOKER.png');
	background-size: 60px;
}
.logo_provider_advantplay {
	background-image: url('../images/advantplay.html');
	background-size: 90px;
}
.logo_provider_spadegaming {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/SPADEGAMING.png');
	background-size: 90px;
}
.logo_provider_gamatron {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/GAMATRON.png');
	background-size: 70px;
}
.logo_provider_jdb {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/JDB.png');
	background-size: 40px;
}
.logo_provider_playtech {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/PLAYTECH.png');
	background-size: 40px;
}
.logo_provider_cq9 {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/SBOCQ9.png');
	background-size: 40px;
}
.logo_provider_ygg {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/YGGDRASIL.png');
	background-size: 80px;
}
.logo_provider_playngo {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/PLAYNGO.png');
	background-size: 70px;
}
.logo_provider_onetouch {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/ONETOUCH.png');
	background-size: 90px;
}
.logo_provider_rtg {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/SBOREALTIMEGAMING.png');
	background-size: 60px;
}
.logo_provider_flow {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/SBOFLOWGAMING.png');
	background-size: 60px;
}
.logo_provider_astro {
	background-image: url('../../../nx-cdn.trgwl.com/Images/nexus-alpha/dark-green/desktop/providers/tabs/slots/ICONICGAMING.png');
	background-size: 60px;
}

.logo_provider_newgames {
	background-image: url('../images/slots-icons.html');
	background-position: -34px 0;
	height: 26px;
	width: 31px;
}

@media(max-width: 768px) {
	.logo_provider_pp {
		background-size: 80px;
	}
	.logo_provider_hb {
		background-size: 70px;
	}
	.logo_provider_mg {
		background-size: 70px;
	}
	.logo_provider_advantplay {
		background-size: 70px;
	}
	.logo_provider_spadegaming {
		background-size: 70px;
	}
	.logo_provider_onetouch {
		background-size: 80px;
	}
}

/*
.percent {
	position: relative;
	background: linear-gradient(180deg, rgba(255,255,255,1) -36%, rgba(255,255,255,1) 0%, rgba(182,182,182,1) 100%);
	border-radius: 10px;
}
*/
.percent p {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0;
}
.percent-bar {
  background-color: #ffd700;
  background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-size: 1rem 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #ff0000;
  transition: width .6s ease;
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
  z-index: 1;
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 10px 0 0 10px;
}
.karusel-items {
	padding-right: 15px;
}
.karusel-text {
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: center;
}
.karusel-text .karusel-buton {
	margin-left: 15px;
	border: none;
	color: #fff;
    background: #ff0000;
	font-size: 20px;
	padding: 7px 5px;
	border-radius: 150px;
	text-align: center;
	width: 100px;
}
.popular .games {
	padding: 0;
}
/*
.pop-games .owl-nav {
	font-size: 15px;
	color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	background: #007C11;
	padding: 2px 5px; 
}
*/
.pop-games.owl-carousel .owl-nav button.owl-prev, .pop-games.owl-carousel .owl-nav button.owl-next {
	font-size: 15px;
	color: #fff;
	position: absolute;
	top: -32px;
	background: #ff0000;
	padding: 2px 5px !important;
}
.pop-games .owl-prev {
	right: 24px;
}
.pop-games .owl-next {
	right: 5px;
}
.pop-games .owl-dots {
	text-align: center;
}
.pop-games .owl-dot span {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 90px;
	margin: 0 3px;
}
.pop-games .owl-dot.active span {
  background: #ffd700;
}

.purple {
  background-color: #8f23ac;
}
.oren {
  background-color: #ffd700;
}
.red {
  background-color: #ff0000;
}
.yellow {
  background-color: #ffd700;
}
.biru {
  background: #ff0000;
}
.kuning {
  background: linear-gradient(to bottom, #ffd700, #F67105);
}
.green {
  background-color: linear-gradient(to bottom, #1B3D3C, #00FF00);
}
.dark-green {
    background: linear-gradient(to bottom, #1B3D3C, #00FF00);
}
.blue {
	background-color: #7366f0;
}
.red {
	background-color: #ff0000;
}
.orange {
	background: #ff8c00;
}
.blue-grade {
  background: #F40FBB;
}
.orange-grad {
  background: linear-gradient(to bottom, #ffd700, #F67105);
}
.green-grad {
  background: linear-gradient(to bottom, #1B3D3C, #00FF00);
}
.purple-grad {
  background: linear-gradient(0deg, rgba(111,0,133,1) 0%, rgba(190,57,227,1) 100%)
}
.percent-text {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 5px;
	font-size: 13px;
	font-weight: 600;
}
.single-game-wrapper {
	margin-bottom: 5px;
}
.game_title {
	text-align: center;
}
.game_title h4 {
	font-size: 20px;
}


.nav-desktop, .ct-desktop, .nav-desktop.owl-carousel.owl-loaded {
	display: none;
}
.nav-desktop {
	margin-bottom: 50px;
}
.nav_mobile {
	display: flex;
	align-items: center;
}
.nav_text {
	font-size: 28px;
	font-weight: 600;
	color: #fff;
	margin-right: 15px;
}
.mbl-menu {
	background: #fff;
	padding: 0 15px;
	border-radius: 5px;
	width: 60%;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.mbl-menu .fas {
	margin-right: 10px;
}
.current-provider {
	display: flex;
	flex-direction: row-reverse;
	justify-content: end;
	align-items: center;
	width: 100%;
}

.nav.nav-mobile {
}
.nav_mobile .icon_provider {
	margin-left: 5px;
}
.nav_mobile .icon_provider img {
	height: 30px;
}
.nav-mobile .owl-nav {
	color: #ffd700;
}
.games .game-menu {
	border-radius: 7px;
}
.games .game-menu .nav-mobile .nav-item .nav-link {
	flex-direction: column;
	justify-content: center;
  padding: .5rem;
}
.games .game-menu .nav-mobile .nav-item .nav-link h6 {
  font-size: .6rem;
}
.games .game-menu .nav-mobile .nav-item .nav-link.active:after {
	width: 0;
}
.games .game-menu .nav-mobile .nav-item .nav-link span.icon {
	margin-right: 0;
}
/*
.games .game-menu .nav.nav-mobile .nav-item .nav-link span {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	content: '';
	margin: 0;
	background-color: rgba(0,0,0,0.75);
	transition: all 0.3s linear;
	border-radius: 0 0 7px 7px;
}
*/
.games .game-menu .nav-mobile .nav-item .nav-link span.text {
	font-size: 18px;
}
.nav-desktop.owl-carousel .owl-nav .owl-prev, .nav-desktop.owl-carousel .owl-nav .owl-next {
	background-color: #222;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255,255,255,0.05) 50%, rgba(0, 0, 0, 0.5) 100%);
	position: absolute;
	top: 0;
	width: 30px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.4);
}
.nav-desktop.owl-carousel .owl-nav .owl-prev {
	left: -30px;
}
.nav-desktop.owl-carousel .owl-nav .owl-next {
	right: -30px;
}
.nav-mobile .owl-prev, .nav-mobile .owl-next {
	background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
	position: absolute;
	top: 0;
	height: 100%;
	display: flex;
	align-items: center;
	width: 20px;
	justify-content: center;
}
.nav-mobile .owl-prev {
	left: -20px;
}
.nav-mobile .owl-next {
	right: -20px;
}

.buttons {
	text-align: center;
	margin: 15px -15px;
}
.buttons a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	margin: .5%;
	color: #000000;
	padding: 7px;
	width: 30%;
	text-align: center;
}
.buttons a:hover {
  background-color: #ffd700;
}
.sec-title {
	text-align: center;
	margin: 0 0 30px;
	color: #fff;
}
.games .all-games .single-game.gacor {
  border-color: #000000;
}
/*
.mantap a:before {
	background-image: url('../images/gacor-icon.png');
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 60px;
	height: 60px;
	z-index: 5;
}
*/
.games.game-page .all-games .single-game .part-img img {
	border-radius: 10px;
}
.pop-single-game-wrapper .single-game .part-img img {
	border-radius: 10px;
}
.popular {
	background-image: url('../images/BG-full.html');
	background-size: cover;
	padding: 30px 0 15px;
	margin: 0 -15px;
}
.popular h3 {
	font-size: 50px;
	color: #fff;
	text-align: left;
	margin-bottom: 15px;
	padding-left: 15px;
}
.pop-games {
	margin-bottom: 0;
}
.ct-mobile.buttons {
	margin-bottom: 30px;
}

@media(max-width: 599px) {
/*	.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
		font-size: 30px;
	} 
	.pop-single-game-wrapper {
		background: #161D30;
	}
/*	.karusel-wrapper {
		max-width: 300px;
		margin: 0 auto 30px;
	}
	.pop-games .owl-item.active.center {
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
		z-index: 3;
	}
	.pop-games.owl-carousel .owl-stage-outer {
		overflow: visible;
	} */
	.games.game-page .all-games .pop-game .single-game {
		margin-bottom: 0;
	}
}
	
@media(min-width: 768px) {
	.col-md-2.col_5 {
		width: 20%;
	}
	.nav_mobile, .ct-mobile {
		display: none;
	}
	.nav-desktop, .ct-desktop, .nav-desktop.owl-carousel.owl-loaded {
		display: block;
	}
	.tanggal span {
		display: inline-block;
	}
}
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .games .all-games .title-cover .games-title {
    font-size: 22px;
  }

  .games.game-page {
    padding: 0 0 60px;
  }

  .games.game-page .games-filter-area {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .games .all-games .title-cover .games-title {
    font-size: 22px;
  }

/*  .games.game-page {
    padding: 60px 0;
  } */

  .games.game-page .games-filter-area {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .games .all-games .title-cover .games-title {
    font-size: 22px;
  }
/*
  .games.game-page {
    padding: 60px 0;
  } */

  .games.game-page .games-filter-area {
    margin-bottom: 40px;
  }
}

/* Chart Percentage */
.percentArea {
  position: relative;
  width: 104px;
  height: 50px;
/*  width: 134px;
  height: 65px; */
  overflow: hidden;
}

.chart {
  margin: 2px auto;
  padding: 0;
  list-style-type: none;
}
.percentArea:before {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: inherit;
  height: inherit;
  border: 25px solid #fff;
  border-bottom: none;
  border-top-left-radius: 75px;
  border-top-right-radius: 75px;
}

.chart *,
.chart::before {
  box-sizing: border-box;
}

.chart {
  position: relative;
  width: 100px;
  height: 50px;
/*  width: 130px;
  height: 65px; */
  overflow: hidden;
}

.chart::before,
.chart::after {
  position: absolute;
  left: 0;
  top: 0;
}

.chart::before {
  content: '';
  width: inherit;
  height: inherit;
  border: 10px solid #fff;
  border-bottom: none;
  border-top-left-radius: 75px;
  border-top-right-radius: 75px;
}

.chart .percentBar {
  position: absolute;
  top: 100%;
  left: 0;
  width: inherit;
  height: inherit;
  border: 20px solid #fff;
  border-top: none;
  border-bottom-left-radius: 75px;
  border-bottom-right-radius: 75px;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  animation-fill-mode: forwards;
  animation-duration: .4s;
  animation-timing-function: linear;
/*  background: #f1f1f1; */
}

.gacor .chart .percentBar {
  border-color: #04DF0A;
}
.semi .chart .percentBar {
  border-color: #F67105;
}
.rungkad .chart .percentBar {
  border-color: #ff0000;
}

.percentTxt {
  position: relative;
  color: #fff;
  font-weight: 600;
  margin: 1.5rem;
  font-size: 16px;
}

.chart div:nth-child(1) {
  z-index: 4;
  border-color: orange; 
  transition: all 2s;
  transform: rotate(calc(var(--percentageRotate) * 1deg));
}

.chart span {
  position: absolute;
  font-size: 18px;
  backface-visibility: hidden;
  color: white;
  animation: fade-in .4s linear forwards;
}

.chart .candidate-one-percentage {
  top: 10px;
  left: -35px;
  transform: rotate(-90deg);
}

.chart .candidate-two-percentage {
  top: -35px;
  left: -35px;
  transform: rotate(-90deg);
}

.nav-mobile.owl-carousel .owl-item .navImg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
  margin: .5rem;
  display: flex;
  align-items: center;
  padding: .25rem;
}
.nav-mobile.owl-carousel .owl-item img {
  display: block;
  width: 100%;
/*  border-radius: 50%;
  background: #000;
  margin: .5rem; */
}

@keyframes rotate-one {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(calc(--percentageRotate * 1deg));
  }
} 
@media(min-width: 768px) {
  .percentArea {
    width: 134px;
    height: 65px;
  }
  .chart {
    width: 130px;
    height: 65px;
  }
  .chart::before {
    border: 25px solid #fff;
    border-bottom: none;
  }
  .chart .percentBar {
    border: 22px solid #fff;
    border-top: none;
  }
  .percentTxt {
    margin: 2rem 0;
    font-size: 18px;
  }
  #polaGacorModal .percentTxt {
    margin: 3rem 0;
  }
  /*
  .games.game-page .all-games .single-game.gacor .part-text::before {
    left: 30px;
  }
  .games.game-page .all-games .single-game.gacor .part-text::after {
    right: 30px;
  }
  */
  .games.game-page .all-games .single-game.gacor .part-text::before, 
  .games.game-page .all-games .single-game.gacor .part-text::after {
    width: 50px;
    height: 50px;
  }
  .games .all-games .single-game .part-img img {
    height: 215px;
  }
  .buttons a {
    padding: 15px 7px;
    font-size: 25px;
  }
  .games .game-menu .nav-mobile .nav-item .nav-link h6 {
    font-size: .85rem;
  }
}

.play-button .btn {
  background: linear-gradient(180deg, #45e8f9 0%, #2665cf 100%);
  border: 0;
  border-radius: 30px;
  color: #000000;
  font-family: sans-serif;
  font-weight: 600;
}
.gacor .play-button .btn {
  background: linear-gradient(to bottom, #00ff00, #0E9E1E);
}
.semi .play-button .btn {
  background: linear-gradient(to bottom, #ffd700, #F67105);
}
.rungkad .play-button .btn {
  background: linear-gradient(to bottom, #F67105, #ff0000);
}

.home-artikel {
  color: #fff;
}
.sosmed li {
  display: inline-block;
}
.sosmed li a {
  color: #fff;
}

#polaGacorModal .game-img img {
  width: 80%;
  border-radius: 20px;
}
#polaGacorModal .modal-header {
  background: linear-gradient(to bottom, #00ff00, #0E9E1E);
  border: none;
}
#polaGacorModal.semi .modal-header {
  background: linear-gradient(to bottom, #ffd700, #F67105);
}
#polaGacorModal.rungkad .modal-header {
  background:linear-gradient(to bottom, #F67105, #ff0000);
}
#polaGacorModal .modal-title { 
  color: #000000;
  font-weight: 600;
}
#polaGacorModal .modal-body {
  background: #202124;
}
#polaGacorModal.rungkad .modal-body {
  background: #202124;
}
.polaClose {
  background: #ff0000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}
.rungkad .polaClose {
  background: #fff;
  color: #ff0000;
}
.polaTime {
  position: relative;
  width: 80%;
  margin: 0 auto;
  font-weight: 600;
  color: #fff;
}
.polaTime h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.rungkad .polaTime h3 {
  color: #fff;
}
.gacor .polaTime:before, .gacor .polaTime:after {
  position: absolute;
  content: '';
  background-image: url('/assets/bintang-gacor.png');
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  background-size: cover;
  top: 2px;
}
.gacor .polaTime:before {
  left: 5px;
}
.gacor .polaTime:after {
  right: 5px;
}
#polaGacorModal .percentArea {
  width: 150px;
  height: 74px;
}

#polaGacorModal .percentArea:before {
  border-width: 30px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}
#polaGacorModal .chart {
  width: 144px;
  height: 72px;
}

#polaGacorModal .chart:before {
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-width: 28px;
}
#polaGacorModal .chart .percentBar {
  border-width: 25px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
#polaGacorModal .percentTxt {
  margin: 3rem 0;
}
.polaMdlSection {
  height: 100%;
}
.polaMdlSection h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}
.rungkad .polaMdlSection h4 { 
  color: #ffffff;
}
.polaContent {
  height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pola {
  color: #fff;
  font-size: 14px;
}
.pola p {
  color: #fff;
  line-height: 1.5;
}
.pola .notes {
  font-size: 11px;
}
.gameSearch .input-group-text, .gameSearch input {
  background: #fff;
  border: none;
}
#polaGacorModal .modal-footer {
  background: #202124;
  border: none;
}
#polaGacorModal.rungkad .modal-footer {
  background: #202124;
}
.bacaPolaLink a {
  border: none;
  border-radius: 30px;
  color: #000000;
}
.bacaPolaLink a:hover {
  color: #000000;
}

@media(min-width: 768px) {
  #polaGacorModal .percentArea {
    width: 174px;
    height: 85px;
  }
  #polaGacorModal .percentArea:before {
    border-width: 40px;
  }
  #polaGacorModal .chart {
    width: 170px;
    height: 85px;
  }
  #polaGacorModal .chart .percentBar {
    border-width: 34px;
  }
  .polaContent {
    height: 85px;
  }
  .pola {
    font-size: 16px;
  }
  .pola .notes {
    font-size: 14px;
  }
}
.modalfooterLink a {
  display: block;
  height: 100%;
  font-size: 32px;
  color: #000000;
  line-height: 34px;
}
.gacor .modalfooterLink a.main {
  background: linear-gradient(to bottom, #00ff00, #0E9E1E);
}
.rungkad .modalfooterLink a.main {
  background: linear-gradient(to bottom, #F67105, #ff0000);
}
.semi .modalfooterLink a.main {
  background: linear-gradient(to bottom, #ffd700, #F67105);
}