/*
 * MyBB: Cerulean Frontend Theme 
 *
 * File: memberlist.css
 * 
 * Author: Vintagedaddyo
 *
 * MyBB Version: 1.8
 *
 * Theme Version: 1.2
 * 
 */

.memberlistprofile {
	display: inline-table;
	box-sizing: border-box;
	width: 15rem;
	margin: 0.3rem;
	border: 1px solid #282828;
	text-align: center;
	color: #444;
    border-radius: .5rem;
	height: 6rem;
	background: #252525;
	padding-top: 10px;
	width: 23%;
}

.memberlistprofile:hover {
	background: #303030;
	color: #FFF;
}

.memberlistname {
    font-family: source-sans-pro, sans-serif;
	font-size: 14px;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	text-align: center;
	margin-top: -15px;
	cursor: pointer;
}

.memberlistbio {
	margin-bottom: 1rem;
	font-size: 1rem;
	font-family: Georgia, serif;
	color: #A0A0A0;
	margin-top: -10px;
}

.memberlistbio:hover {
	color: #FFF;
}

.usertitle {
	padding-top: 10px;
}

.userstar {
	padding-top: 3px; 
}

.memberlist_avatar {
	height: 115px;
	width: 115px;
	overflow: hidden;
	padding: 4px;
	background-color: #202020;
	border: 3px solid #ACACAC;
	margin-top: -15px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

.memberlist_avatar img {
	box-shadow: 0 4px 10px 0 rgba(0,0,0,0.1), 0 2px 10px 0 rgba(0,0,0,0.1);
	width: 130px;
	height: 130px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	margin-top: -8px;
	margin-left: -8px;
}

h4 {
	font-family: source-sans-pro, sans-serif;
	color: #6EE6E8;
	font-weight: 100;
	font: 2rem/4.5rem "Kite One";
	padding: 0 1.5rem;
	opacity: .5;
}

.infothead {
	background-color: #202020;
	color: #fff;
	padding: 6px;
	font-size: 12px;	
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
}

.infothead-date {
	padding: 6px;
	background-color: #202020;
	border: 1px solid #303030;
	color: #ACACAC;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

.infothead-date:hover {
	padding: 6px;
	background-color: #303030;
	border: 1px solid #202020;
	color: #ACACAC;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

 @media only screen and (max-width:728px) {
.memberlistprofile {
	float: left;
	width: 100%;
	text-align: center;
}
}

		
		
		
		
		
		