/*
*	Q2AM New Member Widget
*
*	Add newly registered members avatar widget.
*	File: Stylesheet
*	
*	@author			Q2A Market
*	@category		Plugin
*	@Version: 		1.1
*	@url			http://www.q2amarket.com
*	
*	@Q2A Version	1.5.3
*
*	Modify this file as per your choice. Make sure it can affect the default layout and look.
*/

.qa-new-members {
    margin: 0;
} 
.qa-new-members-grid {
    padding: 0;
    margin: 0;
    list-style: none;
}
.qa-new-members-grid li.qa-new-member-avatar {
	position: relative;
	display:inline-block;
}
.qa-new-members-grid li.qa-new-member-avatar a {
	margin: 0 !important;
}
.qa-new-members-grid li.qa-new-member-avatar img{
	vertical-align: bottom;
	border: 1px solid #eee;
	-webkit-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	-ms-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}
.qa-new-members-grid li.qa-new-member-avatar:hover img{
	border: 1px solid #fff;
	box-shadow: 0 0 5px 0 rgba(0,0,0,2);
	-webkit-transition: all ease-in-out 0.15s;
	-moz-transition: all ease-in-out 0.15s;
	-ms-transition: all ease-in-out 0.15s;
	-o-transition: all ease-in-out 0.15s;
	transition: all ease-in-out 0.15s;
}
.qa-new-members-grid li.qa-new-member-avatar .hover-cont {
	background:#000;
	display: none;
	position: absolute;
	top: -45px;
	left: -50px;
	color: #aaa;
	width:130px;
	height: auto;
	padding: 5px;
	z-index: 999;
	border-radius: 2px;
	border-style: solid;
	border-width: 1px 1px 0;
	border-color: #888 #666 #222;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
}
.qa-new-members-grid li.qa-new-member-avatar .hover-cont:after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 56px;
	width: 0; 
	height: 0; 
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;	
	border-top: 8px solid #222;
	border-top: 8px solid #000;
	z-index: 9999
}
.qa-new-members-grid li.qa-new-member-avatar .hover-cont .qa-user-link {
	color: #fff !important;
	line-height: 12px;
}
.qa-new-members-grid li.qa-new-member-avatar .hover-cont p {
	margin: 0;
	padding: 0;
	font-size: 10px;
	line-height: 11px
}
.qa-new-members-grid li.qa-new-member-avatar span.qa-user-points{
	font-size:10px;
	color:#fff;
}

/*--- LIST VIEW CSS ---*/
.qa-new-members-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.qa-new-members-list li.qa-new-member-avatar{
	padding:5px 0;
	border-bottom:1px solid #ddd;
	border-top:1px solid #fafafa;
}
.qa-new-members-list li.qa-new-member-avatar:first-child{
	border-top:none;
}
.qa-new-members-list li.qa-new-member-avatar:hover{
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjMwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjkiLz4KICAgIDxzdG9wIG9mZnNldD0iNzAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuOSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
	background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 30%, rgba(255,255,255,0.9) 70%, rgba(255,255,255,0) 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(30%,rgba(255,255,255,0.9)), color-stop(70%,rgba(255,255,255,0.9)), color-stop(100%,rgba(255,255,255,0)));
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.9) 30%,rgba(255,255,255,0.9) 70%,rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.9) 30%,rgba(255,255,255,0.9) 70%,rgba(255,255,255,0) 100%);
	background: -ms-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.9) 30%,rgba(255,255,255,0.9) 70%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.9) 30%,rgba(255,255,255,0.9) 70%,rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 );
	box-shadow:0 -10px 10px -10px rgba(0,0,0,0.15) inset;
}
.qa-new-members-list li.qa-new-member-avatar .qa-avatar-box{
	float:left;
	margin-right:10px;
}
.qa-new-members-list li.qa-new-member-avatar p.qa-details{
	margin:0;
	font-size:12px;
	line-height: 12px;
}
.qa-new-members-list li.qa-new-member-avatar p.qa-details span.qa-user-points{
	font-size:10px;
	color:#666;
}
.qa-new-members-list li.qa-new-member-avatar p.qa-details span.qa-user-date{
	display:block;
	font-size:10px;
	line-height: 11px;
	color:#666;
}
.qa-new-members-list li.qa-new-member-avatar a {
	margin:0 !important;
	line-height: 12px;
}