#onlinelist{
	width: calc(100% - 40px);
    margin-left: 20px;
    margin-bottom: 30px;
    color: #5A2800;
    font-family: Arial, Helvetica, sans-serif;
}

#online_header{
	width:100%;
	height:32px;
	margin-top:10px;
	text-align:center;
	font-family: Martel, Tahoma, Geneva, sans-serif;
	font-size:32px;
}

.online_section{
	width:calc(100% - 42px);
	border:solid 1px #d9c5a6;
	border-radius:1px;
	margin-top:20px;
	padding:20px;
	position:relative;
}
.online_section:first-child{
	margin-top:0;
}

.online_section_header{
	height:14px;
	position:absolute;
	padding-left:10px;
	padding-right:10px;
	top:-7px;
	left:10px;
	background-color:#fef0d9;
	font-size:12px;
	font-weight:bold;
}

#online_server_info{
	width:279px;
	margin:0 auto;
	margin-top:20px;
}

#online_players{
	width:calc(100% - 122px);
	margin-left:40px;
}

.online_info{
	width:calc(100% - 16px);
	padding:8px;
}

.online_info:nth-child(odd) {
    background-color: #d4c0a1;
}
.online_info:nth-child(even) {
    background-color: #f1e0c6;
}

.online_player{
	width:100%;
	padding:8px 0;
	display: flex;
    justify-content: center;
    align-items: center;
}

.online_player_header{
	width:100%;
	padding:10px 0;
	display: flex;
    justify-content: center;
    align-items: center;
}

.online_player:nth-child(odd) {
    background-color: #d4c0a1;
}
.online_player:nth-child(even) {
    background-color: #f1e0c6;
}

.online_player_image{
	width:94px;
	position:relative;
}
.online_player_image img{
	width:64px;
	height:64px;
}

.online_player_name{
	width:calc(100% - 394px);
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.online_player_resets{
	width:80px;
	text-align:center;
}

.online_player_level{
	width:80px;
	text-align:center;
}

.online_player_vocation{
	width:120px;
	text-align:center;
}

.online_player_flag{
	width:18px;
	height:12px;
	position:absolute;
	left:0;
	top:0;
}

.online_player_flag img{
	width:18px;
	height:12px;
}

@media screen and (max-width: 576px) {
	.online_section{
		width:calc(100% - 10px);
		padding:20px 5px;
	}
	#online_server_info{
		width:calc(100% - 10px);
		margin-left:0;
	}
	#online_players{
		width:calc(100% - 10px);
		margin-left:0;
	}
	.online_player_image{
		width:84px;
	}
	.online_player_level{
		display:none;
	}
	.online_player_resets{
		width:60px;
	}
	.online_player_vocation{
		width:80px;
	}
	.online_player_name{
		width:calc(100% - 204px);
	}
}