* {
	font-family: sans-serif;
	box-sizing: border-box;
}

p {
	margin: 0;
}

.link-container {
	display: flex;
	justify-content: center;
	font-size: var(--x-large-font);
	padding: 0;
	width: 100%
}

.register-button {
	margin: 5px;
	background-color: #362F5E;
	color: #0c0002;
	border-color: #c90;
	border-radius: 5px;
}

.login-button {
	margin: 5px;
	background-color: #D819B9;
	color: #fedc3d;
	border-color: #e72d13;
	border-radius: 5px;
}

body {
	background: #560458;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: top center;
	background-size: contain;
	background-size: 100%;
}

a:hover {
	text-decoration: none;
	color: white;
}

.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.adv {
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
}

img {
	vertical-align: middle;
	border-style: none;
}

.title {
	display: flex;
	justify-content: center;
}

.title-text {
	color: white;
	font-size: 2.5rem;
}

.slot {
	display: block;
}

.slot .slot-sidebar {
	padding-right: 10px;
	padding-left: 0;
	margin-top: 5px;
	background-color: black;
	float: none !important;
	width: 100% !important;
	flex: none !important;
	max-width: 100% !important;
	padding-right: 0 !important;
}

button:hover,
button:focus {
	outline: none;
}

.btn-provider:hover {
	/* background-color: #398489; */
}

.slot-sidebar-nav {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: nowrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.slot-sidebar-nav>li {
	border-bottom: 1px solid #0092b1;
	width: 100%;
	position: relative;
	display: block;
	border-bottom: none;
	padding: 6px;
	background: #90cace;
}

.slot-sidebar-nav>li>a {
	color: #fff;
	font-size: 13px;
	padding: 7px 10px;
	display: block;
	background-color: #276165;
}

.btn-provider {
	text-align: center;
	display: block;
}

.enter {
	display: none;
}

.btn-provider span {
	position: unset;
}


.active {

	/* background: url("/assets/img/setting/shadow.png"); */
	/* background-size: 85px; */
	/* background-position: -15px; */
	/* background-color: #00c8f3; */
	background-image: linear-gradient( 106.4deg,#3162bf 11.1%, #00c8f3 81.3% );
	border-radius: 8px;
}

.slot .content {
	float: none;
	width: 100%;
	padding: 0;
	flex: 0 0 100%;
	max-width: 100%;
	background-color: #190E2C;
}

/* .wrapper {
	width: 100%;
	padding: 5px;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	z-index: 2;
} */

/* animation loading */

.loader {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    perspective: 800px;
    padding-top: 50px;
}

.loader .loader-item {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.loader .loader-item:nth-child(1) {
    border-bottom: 6px solid #f13a8f;
    transform: rotateX(35deg) rotateY(-45deg);
    animation: rotate-one 1s linear infinite;
}

.loader .loader-item:nth-child(2) {
    border-right: 6px solid #4bc8eb;
    transform: rotateX(50deg) rotateY(10deg);
    animation: rotate-two 1s linear infinite;
}

.loader .loader-item:nth-child(3) {
    border-top: 6px solid #36f372;
    transform: rotateX(35deg) rotateY(55deg);
    animation: rotate-three 1s linear infinite;
}

@keyframes rotate-one {
    to {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes rotate-two {
    to {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes rotate-three {
    to {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}
/* end animation loading */

.card {
	float: left;
	width: 25%;
	background: transparent;
	border: none;
	text-align: center;
	position: relative;
	margin: 5px 0;
}

/* .card-content {

	border-radius: 10px;
	margin: 5px;
	color:white;
	border: none;
	overflow: hidden;
	position: relative;
	background-color: #eee;
	/* background-color: #000000; */
	/* box-shadow: rgba(50, 50, 93, .25) 0 6px 12px -2px, rgba(0, 0, 0, .3) 0 3px 7px -3px; */
/* }*/ 

.percent {
	height: 27px;
	display: flex;
	overflow: hidden;
	line-height: 0;
	font-size: 0.75rem;
	background-color: #e9ecef;
	/* border-radius: .25rem; */
	position: relative;
	z-index: 1;
	margin: 0 auto;
}

.percent p {
	z-index: 15;
	position: absolute;
	text-align: center;
	width: 100%;
	font-size: 14px;
	font-weight: bold;
	transform: translateY(14px);
	color: black;
}

.percent-bar {
	/* background-color: #ffc107; */
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.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: #007bff; */
	transition: width 0.6s ease;
	-webkit-animation: progress-bar-stripes 1s linear infinite;
	animation: progress-bar-stripes 1s linear infinite;
	/* animation: ; */
	z-index: 10;
}

.yellow {
	background-color: #ffc107;
}

.green {
	background-color: #28a745;
}

.red {
	background-color: #dc3545;
}

.hover-btn {
	position: absolute;
	opacity: 0;
	background-color: rgba(119, 188, 192, 0.8);
	transition: all 0.1s ease-in-out;
	z-index: 10;
	width: 100%;
	height: 51%;
}

.maintenance {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10;
	width: 100%;
	height: 100%;
	color: white;
	text-align: center;
	margin: -6px;
}

.maintenance p {
	position: relative;
	top: 40%;
	font-size: 13px;
}

.play-btn {
	font-size: 15px;
	text-decoration: none;
	color: white;
	text-align: center;
	align-items: center;
	/* width: 100%; */
	margin-top: 42%;
	padding: 8px;
	display: block;
	margin-left: 30px;
	margin-right: 30px;
	margin: 42% 30px 42% 30px;
	background-image: linear-gradient(to bottom, #ffab00 0%, #ec700a 47%);
	color: #000;
	border-radius: 18px;
	transition: all 0.3s ease;
}

.play-btn:hover {
	background: #ec700a;
}

/* pola css */

/* .products-preview{
    position: fixed;
    top:0; left:0;
    min-height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-preview .preview{
    display: none;

}

.products-preview .preview.active{
    display: inline-block;
    
} */

/* .popup{
	width: 400px;
	background: #fff;
	border-radius: 6px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	padding: 0 30px 30px;
	color: #333;
	visibility: hidden;
	z-index: 15;
	
}
.active{
	visibility: visible;
} */

.buy{
	display: none;
}


/* end */

.img-zoom {
	transition: all 0.45s ease-in-out;
	margin: 7px !important;
}

.ygg-img {
	border: 5px solid #2f2f2f;
}

.hover-btn:hover {
	opacity: 100%;
}

.hover-btn:hover~.img-zoom {
	/* transform: scale(1.2); */
	position: relative;
}

.short {
	display: none;
}

.next-btn {
	/* display: none; */
	background: #90cace;
	width: 15%;
}

.mySlides {
	display: none;
}

.next-btn {
	/* background-color: #292a2b; */
	border: none;
	color: #fff;
}



.progress {
	height: fit-content;
}

.pola {
	width: 100%;
	
}

p.thick {
	font-weight: bold;
  }

  h5.thick {
	font-weight: bold;
  }


.jam {
	/* margin-bottom: 7px;
	padding: 8px;
	color: #000;
	font-weight: bold; */
	/* margin-bottom: -94px; */
    padding: 55px;
    color: #000;
    font-weight: bold;
	margin-top: -58px;
}

.logortp{
margin-top: -80px;
}

.jam h5 {
	font-size: 1.3em;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

.jamBg {
	width: 100%;
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	transition: width 0.6s ease;
	-webkit-animation: progress-bar-stripes 1s linear infinite;
	animation: progress-bar-stripes 1s linear infinite;
	background-size: 1rem 1rem;
}

img#rtp-image-slot{
	/* position: fixed; */
	position: relative;
	right: 3px;
}

.rtpimg{
    position: relative;
    max-width: 116%;
    right: 39px;
	
}


@media(max-width: 500px){

	.rtpimg{
		/* position: relative; */
		max-width: 160%;
		right: 55px;
		
	}
}

@media(max-width: 400px){

	.rtpimg{
		/* position: relative; */
		max-width: 166%;
		right: 43px;
		
	}
}


@media(max-width: 366px){

	.rtpimg{
		/* position: relative; */
		max-width: 188%;
		right: 43px;
		
	}
}

.bg{
	background: #3162bf;
}
.bgg{
	background: #00c8f3;
}
.bggg{
	background: linear-gradient( 109.6deg, #00c8f3 11.2%, #3162bf 100.2% );
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

@media (max-width: 992px) {
	.slot-sidebar-nav {
		flex-wrap: nowrap;
	}

	.slot-sidebar {
		float: none !important;
		width: 100% !important;
		flex: none !important;
		max-width: 100% !important;
		padding-right: 0 !important;
	}

	.content {
		float: none !important;
		width: 100% !important;
		flex: none !important;
		max-width: 100% !important;
	}

	.card {
		width: 33.3% !important;
	}

	.hover-btn {
		display: none;
	}

	.hover-btn:hover~.img-zoom {
		transform: scale(1);
		position: relative;
	}

	.btn-provider {
		text-align: center;
		display: block;
	}

	.enter {
		display: block;
	}

	.btn-provider span {
		position: unset;
	}

	.btn-provider i {
		margin: 0;
	}

	.slot-sidebar-nav li {
		border-bottom: none;
	}

	.slot-sidebar-nav li a p {
		font-size: 5px;
	}

	.img-zoom {
		height: auto;
	}

	.slot-sidebar-nav li a img {
		height: 17.5px !important;
	}

	.maintenance p {
		font-size: 5px;
	}

	.jamgacor>h5 {
		font-size: 1em;
        
	}

	.pola>p {
		font-size: 0.9em;
	}

	.text-small {
		font-size: 0.8em;
	}
}

/* @media (max-width: 600px) {
	.pola>p {
		font-size: 2.8vw;
	}

	.jamgacor>h5 {
		font-size: 3.5vw;
	}

	.game-name {
		font-size: 1.5vw;
	}

} */



/*
modal
-----
*/
@-webkit-keyframes modalZoom {
	from {
	  transform: translate(-50%, -50%) scale(0); }
	to {
	  transform: translate(-50%, -50%) scale(1); } }
  @keyframes modalZoom {
	from {
	  transform: translate(-50%, -50%) scale(0); }
	to {
	  transform: translate(-50%, -50%) scale(1); } }
  .modalBox {
	display: none;
	position: fixed;
	z-index: 99;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: rgba(0, 0, 0, 0.6); }
	.modalBox .modalContent {
	  background: #fff;
	  padding: 40px 40px 20px;
	  width: 30%;
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  animation-name: modalZoom;
	  animation-duration: 0.3s; }
	  @media only screen and (max-width: 1199px) {
		.modalBox .modalContent {
		  width: 50%; } }
	  @media only screen and (max-width: 767px) {
		.modalBox .modalContent {
		  width: 80%;
		  padding: 40px 25px 20px; } }
	.modalBox .close {
	  color: #000;
	  position: absolute;
	  top: 2px;
	  right: 10px;
	  font-size: 24px;
	  cursor: pointer;
	  transition: color 0.3s linear; }
	  .modalBox .close:hover, .modalBox .close:focus {
		color: #e31c25; }
	.modalBox .formHolder h2 {
	  font-size: 24px; }
	  @media only screen and (max-width: 767px) {
		.modalBox .formHolder h2 {
		  font-size: 20px; } }
	.modalBox .formHolder .row {
	  margin: 0 0 20px; }
	.modalBox .formHolder label {
	  display: block;
	  margin: 0 0 10px; }
	.modalBox .formHolder input[type="text"],
	.modalBox .formHolder input[type="password"] {
	  width: 100%;
	  margin: 0 0 10px; }
	.modalBox .formHolder .error {
	  color: #e31c25;
	  font-size: 14px; }
  
/* Slider */
.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;
}
.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;
}

.bgwar{
	background-image: linear-gradient( 106.4deg,#3162bf 11.1%, #00c8f3 81.3% );
}

.bgdaftar{
	box-shadow: 0px 0px 8px 2px #000000;
    background: linear-gradient( 106.4deg,#1717b37a 11.1%, #00c6f3d2 81.3% );
}


.games{
	display: flex;
}

/* neon */
:root {
	--clr-neon: hwb(197 3% 4%);
	--clr-bg: hsl(323 21% 16%);
  }
  
  *,
  *::before,
  *::after {
	box-sizing: border-box;
  }
  
  /* body {
	min-height: 100vh;
	display: grid;
	place-items: center;
	background: var(--clr-bg);
	font-family: "Balsamiq Sans", cursive;
	color: var(--clr-neon);
	padding-right: 10rem;
  }
   */
  .neon-button {
	font-size: 1rem;
  
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
	color: #eaeaea;
	border: var(--clr-neon) 0.125em solid;
	padding: 0.25em 1em;
	border-radius: 0.25em;
  
	text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em currentColor;
  
	box-shadow: inset 0 0 0.5em 0 var(--clr-neon), 0 0 0.5em 0 var(--clr-neon);
  
	position: relative;
  }
  
  .neon-button::before {
	/* pointer-events: none;
	content: "";
	position: absolute;
	background: var(--clr-neon);
	top: 120%;
	left: 0;
	width: 100%;
	height: 100%; */
  
	/* transform: perspective(1em) rotateX(40deg) scale(1, 0.35);
	filter: blur(1em);
	opacity: 0.7; */
  }
  
  .neon-button::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	box-shadow: 0 0 2em 0.5em var(--clr-neon);
	opacity: 0;
	background-color: var(--clr-neon);
	z-index: -1;
	transition: opacity 100ms linear;
  }
  
  .neon-button:hover,
  .neon-button:focus {
	color: var(--clr-bg);
	text-shadow: none;
  }
  
  .neon-button:hover::before,
  .neon-button:focus::before {
	opacity: 1;
  }
  .neon-button:hover::after,
  .neon-button:focus::after {
	opacity: 1;
  }
  