.ranking-fullscreen { 
	width: 100%; 
	height: 100%;
	font-family: TaiwanPearl-Regular;
}
.ranking-fullscreen img {
	width: 100%; height: 100%;
	object-fit: contain;
	object-position: center;
}

.return-box {
	width: 5.625em; height: 5.625em;
	margin: 1.25em;
	display: inline-block;
}

.game-icon {
	height: 7.5em; width: 7.5em;
	margin: 1.25em;
	display: inline-block;
	vertical-align: top;
}
.game-title {
	font-family: 'sneakersscriptwide';
	font-size: 5em;
	display: inline;
}


.ranking-layout {
	width: 70%;
	height: 80%;
	margin: auto;
	overflow: hidden;
	display: flex;
	flex-flow: column;
}

.ranking-tabs {
	display: flex;
	place-content: center;
	gap: 3em;
}

.ranking-tab {
	background-color: #f1f8d7;
	min-width: 8em;
	font-size: 2.5em;
	font-weight: bold;
	border: .125em #ffffff solid;
	border-bottom: none;
	border-radius: .5em .5em 0 0;
	padding: .25em;
}
.ranking-tab.active {
	background-color: #c4dbb9;
	border-color: #999999;
	position: relative;
}
.ranking-tab.active::after {
	background: #c4dbb9;
	content: '';
	width: 100%; height:.25em;
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
}

.ranking-page {
	background-color: #c4dbb9;
    border-radius: 1.25em;
    border: 2px #999999 solid;
    padding: 1.25em 3.75em 3em;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-flow: column;
	gap: 1em;
}

.ranking-item.heads {
	color: #fff;
	font-size: 2em;
	font-weight: normal;
}

.ranking-list { 
	background-color: #fff;
	border-radius: 1em;
    flex: 1;
	overflow: auto;
}

.ranking-item {
	font-size: 3em;
	text-align: center;
	display: flex;
	place-content: space-around;
	align-items: center;
}

.ranking-item .rank { width: 10%; }
.ranking-item .rank img { 
	height: 2em;
    position: relative;
    top: .25em;
}

.ranking-item .name { flex: 1; }

.ranking-item .score { width: 20%; }

.ranking-item.self {
	background-color: #f1f8d7;
	font-weight: bold;
	border-radius: 1em;
	padding: .5em;
}