body {
	padding-top: 56px;
	margin: 0;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5;
	text-align:left;
	color: #fff;
	background-color: #131d26;
}

body, button, input {
	font-family: -apple-system, 'Inconsolata', Lato, sans-serif;
	font-size: 1rem;
}

button, input {
	outline: none;
}

button {
	text-transform: uppercase;
}

figure, p {
	margin: 0;
}

*, ::after, ::before {
   box-sizing: border-box;
}

.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 50;
}

.header:before {
	content: '';
	position: absolute;
	top: 0;
}

.navbar {
	display: flex;
	padding: 10px 15px;
	background-color: #070b0f;
	line-height: 1;
	align-items: center;
	min-height: 56px;
}

.header h1 {
	margin: 0;
}

.navbar a {
	color: #fff;
}

.text_red {
	color: #d9261c;
}

.navbar_brand {
	font-size: 1.5rem;
	font-family: 'Hammersmith One', arial;
	text-decoration-line: none;
	line-height: inherit; 
	text-transform: uppercase;
}

.container {
	position: relative;
	display: block;
	width: 100%;
	padding: 10px 15px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
}

.card_list {
	display: flex;
	flex-direction: column;
	margin-bottom: -10px;
}

.card {
	display: flex;
	padding: 15px 20px;
	margin-bottom: 10px;
	min-height: 100px;
	border-radius: 10px;
	background: linear-gradient(#3342a1, #003b79);
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.my_card {    
	background: linear-gradient(#e21567, #d9261c);
}

.avatar {
	width: 100%;
	max-height: 65px;
	max-width: 65px;
	padding: 2px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.45);
}

@media (min-width: 768px) {
	.avatar {
		border-width: 5px;
		max-height: 100px;
		max-width: 100px;
		padding: 3px;
	}
}

.card__player_info {
	margin-left: 10px;
	margin-right: 10px;
	line-height: 1.25rem;
	font-size: 1.25rem;
	flex-grow: 1;
}

.card__player_info .player_name {
	font-weight: 500;
}

.card__player_info .player_money {
	font-family: 'Hammersmith One', arial;
	font-weight: 600;
}

.card .player_money:before {
	display: inline-flex;
	content: '$';
	opacity: .5;
	margin-top: 3px;
	margin-left: -2px;
	transform: scale(.75);
}

.card__player_info .player_money:after {
	content: 'K';
	opacity: .5;
	font-size: 1rem;
	margin-left: 2px;
}

.card__transfer_btn {
	display: flex;
	width: 48px;
	height: 48px;
	background: transparent;
	border: 4px solid #7e92ef;
	border-radius: 14px;
	color: #fff;
	font-size: 0;
	justify-content: center;
}

.card__transfer_btn:hover {
	background-color: rgba(255, 255, 255, 0.05);
}
.card__transfer_btn:focus {
	background-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 0 0.15rem rgba(126, 146, 239, 0.45);
}

.my_card .card__transfer_btn {
	border-color: #ef7e7e;
}

.my_card .card__transfer_btn:focus {
	box-shadow: 0 0 0 0.15rem rgba(239, 126, 126, 0.45);
}

@media (min-width: 768px) {
	.card_list {
		margin-left: -5px;
		margin-right: -5px;
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		flex-wrap: wrap;
	}

	.card {
		margin-right: 5px;
		margin-left: 5px;
		background: linear-gradient(145deg, #3342a1, #003b79);
		border-radius: 20px;
		flex-direction: column;
		width: 225px;
	}

	.card > * {
		justify-content: center;
	}

	.my_card {
		background: linear-gradient(145deg, #e21567, #d9261c);
	}

	.card__player_info {
		margin: 15px 0 10px;
		text-align: center;
		line-height: 2.5rem;
	}

	.card__player_info .player_name {
		font-size: 1.75rem;
		line-height: 1.25rem;
	}

	.card__player_info .player_money {
		font-size: 2rem;
	}

	.card__player_info .player_money:after {
		font-size: 1.33rem;
	}

	.card__transfer_btn {
		width: 100%;
		font-size: 1.33rem;
	}

	.card__transfer_btn *:before {
		margin-right: 5px;
	}
}

.lobby_section__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 5px;
}

.lobby_section__title {
	font-size: 1.25rem;
	text-transform: uppercase;
}

.lobby_section__gameid {
	padding: 5px 10px;
	border-radius: 7px;
	border: 2px solid rgba(255, 255, 255, 0.25);
}

.lobby_section__gameid input {
	color: #7e92ef;
	background-color: transparent;
	text-align: center;
	border: none;
}

.lobby_section__gameid input::selection {
	background: #fff;
	color: #fff;
}

.lobby_section__gameid .clipboard {
	box-sizing: content-box;
	width: 15px;
	height: 15px;
	display: flex;
	align-items: center;
	fill: rgba(255, 255, 255, 0.55);
	padding: 5px;
	border-radius: 50%;
}

.lobby_section__gameid .clipboard:hover {
	background-color: rgba(255, 255, 255, 0.25);
}

@media (min-width: 768px) {
	.lobby_section__header {
		margin-bottom: 10px;
	}

	.lobby_section__title {
		font-size: 1.75rem;
	}

	.lobby_section__gameid input {
		font-size: 1.5rem;
	}

	.lobby_section__gameid .clipboard {
		width: 20px;
		height: 20px;
		padding: 5px;
	}
}

.lobby_section__gameid:focus {
	outline: none;
}

.lobby_section__rect {
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
}

.lobby_section__player {
	text-align: center;
}

.lobby_section__rect .row:not(:last-child) {
	margin-bottom: 15px;
}

.lobby_section__player .avatar {
	border-color: rgba(255, 255, 255, 0.15);
}

.lobby_section__player .player_name {
	font-size: 1rem;
	overflow: hidden;
}

*:hover {
	transition: background-color .5s ease-out 0s;
}

@media (min-width: 425px) {
	.lobby_section__player .player_name {
		font-size: 1.25rem;
	}
}

@media (min-width: 768px) {
	.lobby_section__player .player_name {
		font-size: 1.75rem;
	}
}

/*.lobby_section__create_game {
	display: flex;
	align-items: center;
	padding-left: 15px;
	padding-right: 15px;
	flex-direction: column;
}

.btn {
	padding: 5px 15px;
	border: none;
	line-height: 1.5;
	border-radius: 5px;
}

.lobby_section__create_game .create_button {
	width: 250px;
	background-color: #3f4d35;
	color: #8cc152;
	height: 35px;
}

.lobby_section__create_game .create_button:hover {
	background-color: #495c39;
}*/