@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&family=Kanit:wght@400;700&display=swap');
:root {
	--bg-primary:  #87CEEB;
	--bg-secondary: #27496D;
	--bg-third: #263b52;
	--color-main:  #EEEEEE;
	--color-primary: #ffc741;
	--color-primary-hover: #c98e01;
	--color-secondary:  #14a4c3;
	--color-secondary-hover:  #0a748b;
}
body {
	font-family: 'Titillium Web', sans-serif;
	background: var(--bg-primary);
	color: var(--color-main);
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: var(--color-primary);
}
a {
	color: var(--color-primary);
	text-decoration: none;
}
a:hover, .nav-link:hover, .nav-link:focus  {
	color: var(--color-primary-hover);
	text-decoration: none;
}
img {
	width: 100%;
	height: auto;
}
.text-primary {
	color: var(--color-primary) !important;
}
.text-secondary {
	color: var(--color-secondary) !important;
}
.bg-primary {
	background: var(--color-primary) !important;
}
.bg-third {
	background: var(--bg-third) !important;
}
.btn {
	border: none;
	font-weight: 700;
	border-radius: 8px;
}
.btn-primary {
	background: var(--color-primary);
	color: #111;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
	background: var(--color-primary-hover);
	color: #fff;
	box-shadow: none !important;
}
.btn-glow {
	position: relative;
	background: var(--color-secondary);
	border: 1px solid var(--color-primary);
	color: #fff;
	z-index: 0;
}
.btn-glow:before {
    content: '';
    background: var(--bg-btn-glow);
    position: absolute;
    top: 0;
    left: 0;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: 100%;
    height: 100%;
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 8px;
}
.btn-glow:after {
	z-index: -1;
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: var(--color-secondary);
	left: 0;
	top: 0;
	border-radius: 8px;
}
.btn-glow:hover {
	color: var(--color-primary) !important;
}
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
.form-control, .form-control:focus, .form-control:active {
	color: var(--color-main);
	background: var(--bg-secondary);
	border-color: var(--bg-secondary);
	box-shadow: none;
}
.form-control, .input-group-text {
	border-radius: 8px;
	color: var(--color-main);
	background: var(--bg-secondary);
	border-color: var(--bg-secondary);
}
.navbar {
	border-bottom: 1px solid var(--bg-secondary);
}
.nav-link {
	font-weight: 700;
	color: var(--color-main);
}
.dropdown-menu {
	background: var(--bg-secondary);
}
.dropdown-item {
	font-weight: 700;
	color: var(--color-main);
}
.dropdown-item:focus, .dropdown-item:hover {
	background: var(--bg-third);
	color: #fff;
}
.navbar-brand {
	font-size: 25px;
	font-weight: 700;
}
.navbar-toggler {
	padding: 0;
	font-size: 30px;
	color: var(--color-main);
}
.card {
	display: block;
	background: var(--bg-secondary);
	border-radius: 8px;
	padding: .5rem;
}
.game-cont {
	text-align: center;
}
.game-cont img {
	max-width: 150px;
}
.analis {
	background: var(--bg-third);
	padding: .5rem;
	border-radius: 8px;
	position: relative;
}
.progress {
	border-radius: 6px;
}
.progress-bar {
	transition: width .6s ease;
}
.progress-bar-animated {
    -webkit-animation: 1s linear infinite progress-bar-stripes;
    animation: 1s linear infinite progress-bar-stripes;
}
.analis .collapse {
	position: absolute;
    width: 100%;
    left: 0;
    margin-top: .5rem;
    z-index: 999;
}
.analis .collapse .card {
	border: 1px solid var(--bg-secondary);
	box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 47%);
}
.analis table {
	width: 100%;
	border-collapse: collapse;
}
.analis table th, analis table td {
	padding: 5px;
}
.analis table th {
	border-right: 1px solid var(--bg-secondary);
}
.analis table tr:not(:last-child) th, .analis table tr:not(:last-child) td {
	border-bottom: 1px solid var(--bg-secondary);
}
.jp-cont {
	position: relative;
	border: 2px solid var(--bg-secondary);
	overflow: hidden;
	background-image: url(../img/bg-jackpot-min.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}
.jp-cont:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	z-index: 0;
}
.jp-cont > .row {
	position: relative;
	z-index: 1;
}
.jackpot-amount-cont {
	font-size: 40px;
	font-weight: 700;
	font-family: 'Kanit', sans-serif;
	text-align: center;
	align-items: center;
}
footer {
	border-top: 1px solid var(--bg-secondary);
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.page-link {
	font-weight: 700;
	color: var(--bg-third);
	background: var(--color-secondary);
	border-color: var(--color-secondary);
}
.page-link:focus {
	box-shadow: none;
}
.page-link:hover {
	font-weight: 700;
	color: var(--color-secondary);
	background: var(--bg-third);
	border-color: var(--bg-third);
}
.page-item.active .page-link {
	color: #111;
	background: var(--color-primary);
	border-color: var(--color-primary);
}
.page-link .bx {
	vertical-align: middle;
}
.page-item:last-child .page-link {
	border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.page-item.disabled .page-link {
	color: var(--color-main);
	background: var(--bg-third);
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	border-color: var(--bg-third);
}
article img, figure img {
	border-radius: 8px;
}
article .featured-img {
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 1rem;
}
article .featured-img:before {
    display: block;
    padding-top: calc(9 / 16 * 100%);
    content: "";
}
article .post-detail a .post-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}
.post-title-wrap {
	min-height: 58px;
    padding-bottom: .5rem;
    margin-bottom: .5rem;
	border-bottom: 1px solid var(--bg-third);
}
article .post-detail a:hover .post-title {
	color: var(--color-primary-hover);
}
article .post-detail .post-date {
	color: var(--color-main);
}
.post-kategori {
	margin-bottom: .5rem;
}
.post-kategori .post-cat {
	color: var(--color-secondary);
	background: var(--bg-third);
	padding: 1px 5px;
	border-radius: 5px;
}
.post-kategori .post-cat:hover {
	color: var(--color-secondary-hover);
}
.share-sosmed {
	background: var(--bg-third);
	padding: 1px 5px;
	border-radius: 5px;
}
.share-sosmed:not(:last-child) {
	margin-right: 5px;
}
.toast {
	background: rgb(26 51 102 / 90%);
}
.toast-header {
	background: #24417c;
	color: #b0c4d5;
}
@media (max-width: 768px) {
	.jackpot-cont .game-name {
		padding: 2px 6px;
		background: var(--bg-secondary);
		border-radius: 8px;
		margin-right: 3px;
	}
	.jackpot-amount-cont {
		font-size: 30px;
	}
}