.map-result-leagueoflegends__container {
	color: white;
}

.map-result-leagueoflegends__row-header {
	display: flex;
	gap: 0.2rem;
	text-transform: uppercase;
}

.map-result-leagueoflegends__row-header div {
	height: 3rem;
	background: black;
	text-align: center;
	line-height: 3rem;
}

.map-result-leagueoflegends__row-header div:nth-child(1) {
	width: 73.4rem;
}

.map-result-leagueoflegends__row-header div:nth-child(2) {
	width: 21.8rem;
}

.map-result-leagueoflegends__row-header div:nth-child(3) {
	width: 15rem;
}

.map-result-leagueoflegends__row-header div:nth-child(4) {
	width: 5rem;
}

.map-result-leagueoflegends__row-header div:nth-child(5) {
	width: 8rem;
}

.map-result-leagueoflegends__row {
	margin-top: 0.2rem;
	display: flex;
	align-items: center;
	gap: 0.2rem;
}

.map-result-leagueoflegends__row.team-1,
.map-result-leagueoflegends__row.team-2 {
	position: relative;
	min-height: 5rem;
	width: 100%;
}

.map-result-leagueoflegends__row.team-1::before,
.map-result-leagueoflegends__row.team-2::before {
	content: '';
	opacity: 0.75;
	position: absolute;
	inset: 0;
	z-index: -1;
}

.map-result-leagueoflegends__row.team-1::before {
	background: var(--team1);
}

.map-result-leagueoflegends__row.team-2::before {
	background: var(--team2);
}

.map-result-leagueoflegends__keystone img {
	height: 3rem;
	width: 3rem;
	object-fit: contain;
}

.map-result-leagueoflegends__summoner-spells {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.map-result-leagueoflegends__summoner-spells img {
	height: 1.5rem;
	width: 1.5rem;
	object-fit: contain;
}

.map-result-leagueoflegends__level {
	width: 3rem;
	text-align: center;
	font-size: 2rem;
}

.map-result-leagueoflegends__name {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-basis: 65.5rem;
}

.map-result-leagueoflegends__name img {
	height: 4rem;
	width: 4rem;
	object-fit: contain;
}

.map-result-leagueoflegends__name .nickname {
	font-weight: 700;
	line-height: 2rem;
}

.map-result-leagueoflegends__name .character-name {
	line-height: 2rem;
}

.map-result-leagueoflegends__items {
	display: flex;
}

.map-result-leagueoflegends__items > div {
	border: 0.1rem solid white;
	border-left: transparent;
}

.map-result-leagueoflegends__items > div:first-child {
	border-left: 0.1rem solid white;
}

.map-result-leagueoflegends__items img {
	height: 3rem;
	width: 3rem;
	object-fit: contain;
}

.map-result-leagueoflegends__kda {
	width: 15rem;
	text-align: center;
	font-weight: 700;
}

.map-result-leagueoflegends__creep-score {
	width: 5rem;
	font-weight: 700;
	text-align: center;
}

.map-result-leagueoflegends__gold {
	width: 8rem;
	text-align: center;
	font-weight: 700;
}

.map-result-leagueoflegends__kda > div:first-child,
.map-result-leagueoflegends__creep-score > div:first-child,
.map-result-leagueoflegends__gold > div:first-child {
	font-weight: 300;
	text-transform: uppercase;
    display: none;
}

@media (max-width: 1279px) {
    .map-result-leagueoflegends__row {
        padding: .7rem;
        flex-wrap: wrap;
    }

    .map-result-leagueoflegends__row-header {
        display: none;
    }

    .map-result-leagueoflegends__name {
        flex-basis: 40rem;
    }

	.map-result-leagueoflegends__kda > div:first-child,
	.map-result-leagueoflegends__creep-score > div:first-child,
	.map-result-leagueoflegends__gold > div:first-child {
        display: block;
	}

    .map-result-leagueoflegends__kda,
	.map-result-leagueoflegends__creep-score,
	.map-result-leagueoflegends__gold {
        padding-right: 4rem;
        width: unset;
        display: flex;
        gap: .5rem;
	}
}

@media (max-width: 840px) {
    .map-result-leagueoflegends__name {
        flex-basis: 20rem;
    }

    .map-result-leagueoflegends__items {
        margin: .5rem 0;
        flex-basis: 100%;
    }

    .map-result-leagueoflegends__row.team-1::after,
	.map-result-leagueoflegends__row.team-2::after {
		content: '';
		position: absolute;
		inset: 0;
		background: black;
		z-index: -10;
	}
}