#leaderboard-container{
	display:flex;
}

.leaderboard{
	font-family: 'Roboto Condensed', sans-serif;
	width: 100%;
}

.lboard_title::before{
	content:"YOUR RANK";
}
.lboard_title{
	padding-top: 2rem;
	text-align: center;
	font-weight: 700;
	font-size: 5rem;
	color: #91F4EB;
}

.wrapper{
	width: 95%;
	margin: auto;
	padding: 1rem;
}
.wrapper::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}
.lboard_section{
	width: 100%;
	overflow: auto;
	height: 50%;
	background-color: #FFC566;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.lboard_item{
	position: relative;
	counter-reset: section;
}

.lboard_mem{
	counter-increment: section;
	display: flex;
	align-items: center;
	background: white;
	border-radius: 2rem;
	border: 0.2rem solid #003;
	margin: 1rem 2rem;
	line-height: 0;
}

.lboard_mem .no_bar{
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 2rem;
	width: 20%;
	font-size:2rem;
}

.lboard_mem .no_bar #no-suffix{
	font-size:1.2rem;
	padding-top: 0.5rem;
	align-self: flex-start;
}
.lboard_mem .name_bar{
	font-size:2rem;
	font-weight: 700;
	color: #3a3d51;
	padding: 0 2rem;
	width: calc(100% - 150px);
}

.lboard_mem.highlight{
	color:#0B1135;
	background-color: #91F4EB;
}

.lboard_mem.highlight .name_bar{
	font-weight: 700;
	color: #2D7CFB;
	text-shadow:
	  0rem 0.25rem 0 #0B1135,
	  -0.1rem -0.1rem 0 #0B1135,  
	  0.1rem -0.1rem 0 #0B1135,
	  -0.1rem 0.15rem 0 #0B1135,
	  0.15rem 0.1rem 0 #0B1135;
}

.lboard_mem .points{
	font-weight: 400;
	width: calc(50% - 150px);
	color: #3a3d51;
	font-size:1.5rem;
}


.button-lb {
	background-color: #FC738C !important;
  }
.button-lb:active {
	background-color: #EC637C !important;
  }

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
		padding: 20px;
	z-index:10;
  }
  .zoomEffect{
	animation-name: zoom;
	animation-duration: 0.5s;
	animation-timing-function: ease-out;
  }

  .insertEffect{
	animation-name: insert;
	animation-duration: 0.5s;
	animation-timing-function: ease-out;
  }
  @keyframes zoom {
	0% {
		box-shadow: 0;
		transform: scale(1);
		z-index:8;
	}
	50% {
		box-shadow: 10px 10px 5px grey;
		transform: scale(1.25);
	}
	100% {
		box-shadow: 0;
		transform: scale(1);
		z-index:5;
	}
  }

  @keyframes insert {
	0% {
		opacity: 0;
		box-shadow: 10px 10px 5px grey;
		transform: scale(1.25);
		z-index:8;
	}
	100% {
		box-shadow: 0;
		transform: scale(1);
		z-index:5;
	}
  }

@media (min-width: 768px) {
	.wrapper{
		width: 80%;
	}
}
  


/*
UNTUK LOADING AJA
*/
.loading-disabled{
	display:none;
	}

.loading {
	position: absolute;
	z-index: 9999;
	height: 2em;
	width: 2em;
	overflow: visible;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;

  }

.loading:before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
  }

.loading:not(:required) {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
  }

.loading:not(:required):after {
	content: '';
	display: block;
	font-size: 10px;
	width: 1em;
	height: 1em;
	margin-top: -0.5em;
	animation: spinner 1500ms infinite linear;
	border-radius: 0.5em;
	box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  }

  @keyframes spinner {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }


/*
UNTUK LOADING AJA END
*/
