.team-cards-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.leaderboard {
	max-width: 300px;
	width: 100%;
	border-radius: 12px;
	margin: 5px;
/* From https://css.glass */
background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);	
}

.leaderboard header {
	--start: 15%;
	display: flex;
	height: 64px;
	background-image: repeating-radial-gradient(circle at var(--start), transparent 0%, transparent 10%, rgba(54, 89, 219, 0.33) 10%, rgba(54, 89, 219, 0.33) 17%), linear-gradient(to right, #ffffff, #3659db);
	color: #fff;
	position: relative;
	border-radius: 12px 12px 0 0;
	overflow: hidden;

	img.fed-logo {
		width: 56px;
		height: 52px;
		margin: 6px 6px 10px 20px;
	}
	img.fed-flag {
		width: 50px;
		margin: 13px 13px 13px 20px;
	}
}


.leaderboard header .leaderboard__title {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: calc(var(--start) * .75);
	transform: translateY(-50%);
	text-transform: uppercase;
	margin: 0;
}

.leaderboard header .leaderboard__title span {
	display: inline-flex;
	flex-grow: 1;
}

.leaderboard header .leaderboard__title--top {
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 6.5px;
	line-height: 1em;
	text-align: end;
	width: 80%;
    margin-left: 65px;
}

.leaderboard header .leaderboard__title--bottom {
	font-size: 1rem;
	text-align: right;
	color: white;
	font-weight: 500;
	letter-spacing: 3.55px;
	opacity: 0.65;
	transform: translateY(-2px);
}

.leaderboard header .leaderboard__icon {
	fill: #fff;
	opacity: 0.35;
	width: 50px;
	position: absolute;
	top: 50%;
	left: var(--start);
	transform: translate(-50%, -50%);
}

.leaderboard__profiles {
	background-color: #fff;
	border-radius: 0 0 12px 12px;
	padding: 15px 15px 20px;
	display: grid;
	row-gap: 8px;
}

.leaderboard__profile {
	display: grid;
	grid-template-columns: 1fr 3fr 1fr;
	align-items: center;
	padding: 10px 10px 10px 10px;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 5px 7px -1px rgba(51, 51, 51, 0.23);
	cursor: pointer;
	transition: transform 0.25s cubic-bezier(0.7, 0.98, 0.86, 0.98), box-shadow 0.25s cubic-bezier(0.7, 0.98, 0.86, 0.98);
	background-color: #fff;
}

.leaderboard__profile:hover {
	transform: scale(1.2);
	box-shadow: 0 9px 47px 11px rgba(51, 51, 51, 0.18);
}

.leaderboard__picture {
	max-width: 100%;
	width: 32px;
	border-radius: 50%;
	/*box-shadow: 0 0 0 10px #ebeef3, 0 0 0 22px #f3f4f6;*/
}

.leaderboard__logo_container {
	background-color: white;
	border-radius: 50%;
}
.leaderboard__flag {
	max-width: 100%;
	width: 25px;
	/*box-shadow: 0 0 0 10px #ebeef3, 0 0 0 22px #f3f4f6;*/
}

.leaderboard__name {
	color: #979cb0;
	font-weight: 600;
	font-size: 1.2rem;
	letter-spacing: 0.64px;
	margin-left: 0px;
	line-height:1rem;
}

.leaderboard__title {
	color: #979cb0;
	font-weight: 600;
	font-size: 1.0rem;
	letter-spacing: 0.64px;
	margin-left: 0px;

}


.leaderboard__value {
	color: #35d8ac;
	font-weight: 700;
	font-size: 34px;
	text-align: right;
}

.leaderboard__value>span {
	opacity: 0.8;
	font-weight: 600;
	font-size: 13px;
	margin-left: 3px;
}

.rating-list {
	font-size: 1rem;
	line-height: 0.9rem;
}

/*  
  body {
	margin: 0;
	background-color: #eaeaea;
	display: grid;
	height: 100vh;
	place-items: center;
	font-family: "Source Sans Pro", sans-serif;
  }
*/
.leaderboard {
	box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.4);
}