@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap');
@font-face {
	font-family: 'heading';
	src: url('../css/heading.otf');
}
@font-face {
	font-family: 'subheading';
	src: url('../css/subheading.ttf');
}
@font-face {
	font-family: 'text';
	src: url('../css/text.ttc');
}
:root {
	--font-heading: 'heading', 'Source Sans Pro', 'Roboto', 'Helvetica', 'Arial', 'sans-serif';
	--font-subheading: 'subheading', 'Source Sans Pro', 'Roboto', 'Helvetica', 'Arial', 'sans-serif';
	--font-text: 'text', 'Source Sans Pro', 'Roboto', 'Helvetica', 'Arial', 'sans-serif';
	--color1: #564b3b;
	--color2: #f7f2e5;
	--white: #ffffff;
	--borderradius: 20px;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-weight: 400;
}
html,
body {
	font-family: var(--font-text);
	-webkit-tap-highlight-color: transparent !important;
	font-size: 16px !important;
}
body {
	width: 100% !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
	background: var(--color2) !important;
}
* {
	outline: 0 !important;
}
img {
	width: 100%;
}
#toast-container {
	top: auto !important;
	bottom: 0 !important;
	left: 0 !important;
	max-width: 100% !important;
	width: 100% !important;
}
#toast-container .toast {
	display: block;
	text-align: center;
	height: 50px;
	border-radius: 0;
	min-height: 50px;
	line-height: 50px;
	padding: 0 10px;
}
.progress {
	background: #ccc;
	z-index: 1001;
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
}
.progress .indeterminate {
	background: var(--color1);
}
.loaderwrapper {
	top: 0;
	left: 0;
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 1000;
	display: block;
	background: rgba(255, 255, 255, 0.75);
}
.container {
	padding-bottom: 80px;
}
.banner {
	margin: 20px auto;
	max-width: 240px;
	text-align: center;
}
.leaderboard {
	margin: 0 auto;
	max-width: 720px;
}
::placeholder,
.input-group span,
.input-group input,
.input-group .select-wrapper {
	font-family: var(--font-subheading) !important;
	font-size: 1.5rem !important;
	letter-spacing: 1px !important;
}
.input-group {
	background: var(--white);
	border: 2px solid var(--color1);
	border-radius: var(--borderradius);
	padding: 0 20px;
	margin-bottom: 20px;
	display: block;
	position: relative;
	cursor: pointer;
	width: 100%;
}
.input-group input {
	width: 100%;
	margin: 0 !important;
	border: 0 !important;
	padding: 0 !important;
	box-shadow: none !important;
	height: 60px !important;
	line-height: 60px !important;
}
.input-group > i {
	height: 60px !important;
	line-height: 60px !important;
	font-size: 1rem !important;
	position: absolute;
	right: 20px;
	top: 0;
}
.input-group > *,
.dropdown-content li > a,
.dropdown-content li > span {
	color: var(--color1) !important;
}
.dropdown-content {
	background: var(--white);
	border-radius: var(--borderradius);
}
.input-group .select-wrapper input {
	text-align: left !important;
	padding-left: 0 !important;
}

.select-wrapper .caret {
	display: none !important;
}
.board-card {
	background: var(--color1);
	color: var(--color2);
	padding: 20px;
	border-radius: var(--borderradius);
}
.board-header {
	display: flex;
	justify-content: space-between;
	font-size: 1.5rem;
	margin-bottom: 20px;
	padding: 0 5px;
}
.club-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.club-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px;
	font-size: 1rem;
}
.name {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 20px;
}
.points {
	text-align: right;
	min-width: 80px;
}
.no-results,
.no-clubs {
	justify-content: center !important;
}
