/*------------------------------------------------------------------

[Dashboard Stylesheet]

	Project:		Adminia Admin
	Version:		1.0
	Last change:	05/11/2012
	Assigned to:	Rod Howard (rh)



[Table of contents]

	1. Stats / .stat-container

-------------------------------------------------------------------*/





/*------------------------------------------------------------------
[1. Stats / .stat-container]
*/

.stat-container {
	display: table;
	
	margin-bottom: 1.5em;
	
	width: 100%;
}

.stat-holder {
	display: table-cell;
	
	width: 25%;
}

.stat span {
	display: block;
	margin-bottom: .4em;
	font-size: 32px;
	font-weight: 600;
	font-style: normal;
	color: #fff;
}

.stat {
	height: 100px;
	width: 150px;
	padding-top: 50px;
	margin-right: 1em;
	
	font-size: 12px;
	font-style: italic;
	text-align: center;
	vertical-align: middle;
	line-height: 20px;
	color: #fff;
	
	background: #51B746;
	
	border-radius: 50%;
	
	
	/*text-shadow: 1px 1px 2px rgba(0,0,0,.3);*/
}

.stat:hover{
	-webkit-transition: all .5s linear;
	-moz-transition: all .5s linear;
	-o-transition: all .5s linear;
	transition: all .5s linear;
	background-color: #42973A;
	box-shadow: inset 5px 5px 5px #2F6C29, 1px 1px 0 #ddd;
	cursor: default;

}
.stat:hover span{
	cursor: default;

}

.stat-container .stat-holder:last-child .stat {
	margin: 0;
}


@media (max-width: 767px) {
	
	.stat-container {
		float: left;
		display: block;
		
		margin-bottom: 1em;
	}
	
	.stat-holder {
		float: left;
		display: block;
		
		width: 50%;
		margin-bottom: 1em;
	}
	
	.stat {
		margin: 0 1em;
	}
	
	.stat-container .stat-holder:last-child .stat {
		margin: 0 1em;
	}
	
}