:root {
	--color-primary: #526aff;
  --color-primary-hover: #569dff;
  --color-secondary: #c0c0c0;
  --color-secondary-hover: #9e9a9a;
  --gradient-primary: linear-gradient(132deg, rgb(0 134 252) 0%, rgb(0 220 255) 100%);
}
body {
	margin: 0;
	font-family: 'Ubuntu', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	background: #111;
	color: #c0c0c0;
	scroll-behavior: smooth;
}
img {
	width: 100%;
	border-radius: 0.8rem;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}
h1 {
	font-size: 30px;
}
h2 {
	font-size: 27px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 21px;
}
h5 {
	font-size: 19px;
}
h6 {
	font-size: 17px;
}
a {
	color: var(--color-primary);
	text-decoration: none;
}
a:hover {
	color: var(--color-primary-hover);
}
table th {
	color: #fff;
}
table td{
	color: #c0c0c0;
}
.text-primary {
	color: var(--color-primary) !important;
}
.text-secondary {
	color: var(--color-secondary-hover) !important;
}
.btn {
	border-radius: .6rem;
}
.btn:focus, .btn:focus-within, .btn:focus-visible {
	color: unset;
	box-shadow: none !important;
}
.btn-primary {
	color: white;
	font-family: 'Exo', sans-serif;
	font-weight: 800;
	border: none;
	background: var(--gradient-primary);
	transition: all .3s;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:visited {
	color: #212121;
	border: none;
	box-shadow: 0px 0px 7px 0px var(--color-primary);
}
.btn-secondary {
	color: #c0c0c0;
	background: #272727;
	border: none;
}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:visited {
	background: #393939;
	border: none;
	box-shadow: none;
}
hr {
	opacity: 1;
	height: 2px;
	background: #484848;
}
hr.primary {
	background: #FFD700;

}
nav {
	padding: 1rem 0;
}
.logo a {
	color: #fff;
	display: flex;
	font-family: 'Exo', sans-serif;
	align-items: center;
	width: fit-content;
}
.logo a span {
	line-height: 27px;
	font-size: 30px;
	font-weight: 800;
}
.logo img {
	max-width: 200px;
	margin-right: .5rem;
}
.menu {
	font-weight: 700;
}
.menu ul {
	display: flex;
	align-items: center;
	justify-content: end;
	list-style: none;
	padding: 0;
	margin: 0;
}
.menu ul li {
	padding: 0 .5rem;
}
.menu ul li a:not(.btn) {
	color: var(--color-secondary);
	vertical-align: middle;
}
.menu ul li a:hover:not(.btn) {
	color: var(--color-secondary-hover);
}
.menu ul li i {
	font-size: 20px;
	vertical-align: sub;
}
.menu ul li:first-child {
	padding-left: 0;
}
.menu ul li:last-child {
	padding-right: 0;
}
.fixed-menu {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}
.fixed-menu .fixed-menu-cont {
	background: #191919;
	padding: 0 12px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 43%);
}
.fixed-menu .fixed-menu-item {
	padding: .7rem 0;
	font-weight: 700;
	display: block;
	text-align: center;
	align-self: center;
	color: var(--color-secondary);
}
.fixed-menu .fixed-menu-item:not(:last-child) {
	border-right: 1px solid #111111;
}
.fixed-menu .fixed-menu-item:hover {
	color: var(--color-secondary-hover);
}
.fixed-menu .fixed-menu-icon i {
	font-size: 25px;
}
.fixed-menu .fixed-menu-text {
	font-size: 12px;
}
.search_input input, .search_input .input-group-text {
	background: #272727 !important;
	border: none !important;
	border-radius: 0.6rem;
	color: #c0c0c0 !important;
}
.search_input .input-group-text {
	font-size: 21px;
}
.search_input input::placeholder {
  color: #656565;
  opacity: 1;
}
.search_input input:focus {
	box-shadow: none;
}
.team-container {
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: .5rem;
}
.league-cont {
	margin-bottom: .5rem;
}
.league-cont .team-logo {
	display: flex;
	max-width: 30px;
	border-radius: 3px;
	height: auto;
	margin-right: .5rem;
}
.team-name .team-logo {
	min-width: 30px;
	min-height: 30px;
}
.team-container .league-title {
	color: #fff;
	font-weight: 700;
}
.team-container .league-country {
	font-size: 13px;
}
.match-container {
	display: flex;
	align-items: center;
	background: #272727;
	border-radius: .8rem;
	padding: .7rem;
	margin-bottom: .5rem;
	cursor: pointer;
	transition: all .3s;
}
.match-container:hover {
	box-shadow: 0px 0px 7px rgb(123 123 123 / 69%);
}
.match-container .status {
	text-align: center;
	justify-content: center;
	margin-right: .8rem;
	min-width: 36px;
}
.match-container .match-team {
	overflow: hidden;
	flex: 1 1;
}
.match-container .team-cont {
	display: flex;
	flex: 1 1;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.match-container .team-cont:first-child {
	margin-bottom: 7px;
}
.match-container .team-name {
	display: flex;
	align-items: center;
	overflow: hidden;
}
.match-container .team-name > div {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.match-container .team-score {
	min-width: 3px;
	color: #fff;
	font-weight: 700;
}
.promotion-container {
	display: flex;
	align-items: center;
	background: var(--gradient-primary);
	color: #111;
	border-radius: .8rem;
	padding: .7rem 1rem;
	margin-bottom: .5rem;
	cursor: pointer;
	transition: all .3s;
}
.promotion-container, .promotion-container a {
	color: #111;
}
.promotion-container:hover, .promotion-container a:hover {
	color: #212121;
	border: none;
	box-shadow: 0px 0px 7px 0px var(--color-primary);
}
.back-top {
	position: fixed;
	z-index: 100;
	bottom: 20px;
	right: 20px;
}
.back-top button {
	padding: 0.375rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, .8);
}
.back-top button i {
	font-size: 25px;
}
footer {
	margin-bottom: 1rem;
}
.label-tags {
	display: inline-block;
	background: #414141;
	color: #bbbbbb;
	padding: 2px 5px;
	border-radius: 6px;
	margin-right: 3px;
	margin-bottom: 3px;
}
.label-tags:hover {
	background: #272727;
	color: #9b9494;
}
.prediksi-container {
	background: #272727;
	text-align: center;
	border-radius: 0.8rem;
	margin-bottom: 1rem;
	cursor: pointer;
	transition: all .3s;
	overflow: hidden;
}
.prediksi-title, .prediksi-main, .prediksi-btn, .prediksi-detail {
	padding: 0.7rem;
}
.prediksi-main {
	background: #191919;
	background-image: url(../img/bg-prediksi.html);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.prediksi-main.bg2 {
	background-image: url(../img/bg-prediksi2.html);
	padding: 1.6rem;
}
.prediksi-main .angka-main {
	color: var(--color-primary);
	font-size: 30px;
	line-height: 28px;
	font-weight: 700;
	letter-spacing: 5px;
	text-shadow: 0 0 9px #000;
	margin-bottom: .3rem;
}
.prediksi-main .shio {
	font-size: 17px;
	letter-spacing: 2px;
	font-weight: 500;
	text-transform: uppercase;
	text-shadow: 0 0 9px #000;
}
.prediksi-detail table {
	text-align: left;
	margin-bottom: 0;
}
.prediksi-detail th, .prediksi-detail td {
	border: 1px solid #434343;
}
.prediksi-detail table th {
	max-width: 60px;
}
.slot-container {
	background: #272727;
	padding: .5rem;
	border-radius: 0.8rem;
	margin-bottom: 1rem;
	cursor: pointer;
	transition: all .3s;
	overflow: hidden;
}
.slot-title {
	margin: .5rem 0;
}
.slot-title h6 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.slot-title div {
	margin-bottom: 3px;
}
.slot-stats {
	background: #1b1b1b;
	padding: .5rem;
	border-radius: 0.5rem;
	margin: .8rem 0;
}
.slot-stats .stats-title {
	text-align: center;
	font-weight: 700;
	border-bottom: 1px solid #272727;
	padding-bottom: 0.5rem;
	margin-bottom: .5rem;
}
.slot-stats .stats-list {
	display: flex;
	font-weight: 700;
	font-size: 13px;
}
.slot-stats .stats-list:not(:last-child) {
	border-bottom: 1px solid #272727;
	padding-bottom: 0.5rem;
	margin-bottom: .5rem;

}
.slot-stats .stats-list div {
	width: 50%;
}
.slot-stats .stats-list div:first-child {
	text-align: left;
}

.slot-stats .stats-list div:last-child {
	text-align: right;
}
@media(max-width: 768px) {
    .logo a {
    	margin: auto;
    }
	.prediksi-main.bg2 {
		background-image: url(../img/bg-prediksi.html);
	}
	.prediksi-detail table th {
		max-width: 130px;
	}
	footer {
		margin-bottom: 85px;
	}
}
@media(max-width: 645px) {
	.back-top {
		bottom:85px;
		right: 12px;
	}
}
.text-gradient {
  text-align: center;
  background: linear-gradient(to right, #ffea00 20%, #ffb300 40%, #ffa200  60%, #ff8c00 80%);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  animation: shine 1.2s linear infinite;
}
@keyframes shine {
	to {
		background-position: 200% center;
	}
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 10px 10px;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  margin: auto;
  width: 70px;
  height: 17px;
}
.lds-ellipsis div {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a0a0a0;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
