body {
	font-family: "Helvetica", sans-serif;
	margin: 0px;
	color: #3f3f3f;
	font-size: 90%
}

a {
	text-decoration: none;
	color: #0080d8;
}

svg {
	width: 20px;
}
img {
	vertical-align: middle;
}

li {
	min-width: 30px;
	min-height: 30px;
	border-left: 1px solid #d5d5d5;
}

h3 {
	text-align: center;
	font-weight: 400;
}

#header {
	position: relative;
	background: #eaf4f7;
	height: 5.5em;
	padding-left: 2em;
}

#logoContainer {
	position: relative;
	float: left;
	height: 100%;
	margin: 0em 0em 0em 0em;
}

#logo {
	float: left;
	object-fit: contain;
	height: 65%;
	margin: 1em 0em 0em 0em;
}

#winner {
	font-weight: bold;
	background-color: #44a41f;
	color: #fff;
}

/*no-wrap{
  flex: 0 0 auto; 
} */

.black {
	background-color: #282626;
}

.white {
	background-color: #fff;
}

.black a {
	color: #fff;
	text-decoration: underline;
}

.white a {
	color: #282626;
	text-decoration: underline;
}

.wrapper {
	margin: 0 2em;
}

.tournament-headers {
	flex-grow: 1;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	gap: 16px;
}

.tournament-headers h3 {
	width: 33%;
	margin: 0;
	
}
.tournament-header-round {
	background-color: #063359;
	color: #fff;
	border-radius: 10px;
	padding: 0.5em 0;
}
.tournament-header {
	display: none;
}

.tournament-brackets {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	background: #fdfdfd;
	margin-bottom: 50px;
}

.bracket {
	padding-left: 0;
	display: flex;
	margin: 0;
	padding: 10px 0;
	flex-grow: 1;
	flex-direction: column;
/*	justify-content: space-evenly; */
	list-style-type: none;
	flex: 1;
}

.round-item {
	background-color: #063359;
	color: #fff;
	border-radius: 10px;
	margin: 0.5rem 10px;
}

.round-header {
	margin: 0.5em;
}

.team-item {
	background-color: #f4f4f4;
	background-clip: content-box;
	display: block;
	margin: auto 10px;
	padding: 0.5em 0;
	position: relative;
	display: flex;
	flex-direction: column;
	line-height: 2;
	text-align: center;
	border-radius: 13px;
	border: none;
	min-width: fit-content;
}

.team-item:after {
	content: "";
	border-color: #a5a5a5;
	border-width: 1px;
	position: absolute;
	display: block;
	width: 10px;
	right: -11px;
}

.team-item:nth-of-type(even):after {
	border-right-style: solid;
	border-top-style: solid;
	height: 100%;
	top: 50%;
}

.team-item:nth-of-type(odd):after {
	border-right-style: solid;
	border-bottom-style: solid;
	height: 100%;
	top: -50%;
}

.team-item:before {
	content: "";
	border-top: 1px solid #a5a5a5;
	position: absolute;
	height: 2px;
	width: 10px;
	left: -10px;
	top: 50%;
}

.bracket-2 .team-item:nth-of-type(even):after {
	height: 100%;
	top: 50%;
}
.bracket-2 .team-item:nth-of-type(odd):after {
	height: 100%;
	top: -50%;
}

.bracket-3 .team-item:nth-of-type(even):after {
	height: 150%;
	top: 50%;
}
.bracket-3 .team-item:nth-of-type(odd):after {
	height: 150%;
	top: -100%;
}

.bracket:first-of-type .team-item:before {
	display: none;
}

.bracket:last-of-type .team-item:after {
	display: none;
}

.results {
	list-style: none;
	display: flex;
	height: 100%;
	padding-left: 10px;
}

.results li {
	display: flex;
	height: inherit;
	justify-content: center;
	align-items: center;
}

.results > li:nth-last-child(1) {
	border-left: none;
}

.height-100 {
	height: 100%;
}

.flex {
	display: flex;
}

.space-around {
	justify-content: space-around;
}

.space-between {
	justify-content: space-between;
}

.space-center {
	justify-content: center;
}
.align-center {
	align-items: center;
}

.gap-4 {
	gap: 4px;
}

.list-style-none {
	list-style: none;
}

.border-top-right-radius {
	border-top-right-radius: 8px;
}

.border-top-left-radius {
	border-top-left-radius: 8px;
}

.border-bottom-right-radius {
	border-bottom-right-radius: 8px;
}

.border-bottom-left-radius {
	border-bottom-left-radius: 8px;
}

.player {
	padding-left: 8px;
	min-height: 32px;
	border-left: 8px solid #e1e1e1;
	white-space: nowrap;
}

.player img {
    width: 20px;
}

.player a {
    text-align: left;
}

.player-win {
	border-left: 8px solid #44a41f;
}

.score {
	background-color: #e1e1e1;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.border-bottom {
	border-bottom: 1px solid #d5d5d5;
}

/*@media only screen and (max-width: 641px) {
	.tournament-headers {
		display: none;
	}
	.tournament-header {
		display: block;
	}
	.tournament-brackets {
		flex-direction: column;
		min-width: fit-content;
	}

	.bracket-3 .team-item:nth-of-type(even):after {
		height: 100%;
		top: 50%;
	}
	.bracket-3 .team-item:nth-of-type(odd):after {
		height: 100%;
		top: -50%;
	}

	.bracket {
		padding: 0;
	}

	.team-item:before {
		display: none;
	}
}*/
