/* Dashboard: Account */
.page-template-page-account .account{
	margin: 0 0 25px;
}

.page-template-page-account .account .subtitle{
	font-size: 30px;
}

.page-template-page-account .account .subtitle i{
	margin: 0 10px 0 0;
	padding: 10px;
}

.page-template-page-account .account .account-content{
	padding: 25px 0;
}

.page-template-page-account .account .grid-item{
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 300px;
	height: 250px;
	margin:0 15px 40px;
	text-align:center;
	background-color:#28292a;
	color:#ffffff;
	text-decoration:none;
	border-radius:5px;
	box-shadow:0 0 16px 5px rgba(0,0,0,0.15);
}

@media(max-width:400px){
	.page-template-page-account .account .grid-item{
		width: 100%;
	    margin: 0 0 40px;
	}
}

.page-template-page-account .account .grid-item .label{
	display: block;
	margin:0 auto 22px;
	width:90%;
	font-size:24px;
}

.page-template-page-account .account .grid-item .value i{
	margin: 0 5px 0 0;
}

.page-template-page-account .account .grid-item .action{
	position: absolute;
	bottom: 0;
	right: 0;
}

.page-template-page-account .account .grid-item .action a{
	display: block;
	padding: 10px;
}

.page-template-page-account .account .grid-item .info{
	position: absolute;
	top: 0;
	right: 0;
}

.page-template-page-account .account .grid-item .info a{
	display: block;
	padding: 10px;
}

.page-template-page-account .account .form{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	opacity: 0;

	transition: all 0.25s linear;
}

.page-template-page-account .account .form.hidden{
	display: none;
}

.page-template-page-account .account .form.show{
	opacity: 1;
}

.page-template-page-account .account .form .overlay{
	display: block;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.50);
}

.page-template-page-account .account .form .form-content{
	margin: 0 auto;
	width: 400px;
	text-align: center;
	background-color: #28292a;
	box-shadow: 0 0 16px 5px rgb(0 0 0 / 15%);
}

.page-template-page-account .account .form input{
	display: block;
}

.page-template-page-account .account .form .submit{
	text-decoration: none;
}