.admin-top {
	text-align: center;
	margin-bottom: 40px;
}
.admin-top .admin-top-logo {
	height: 100px;
}
.admin-top > p {
	font-size: 24px;
}
#main-admin {
	display: flex;
	flex-wrap: wrap;
}
#main-admin *  {
	font-family: 'Roboto Condensed', sans-serif;
	color: #212121;
}
#main-admin > li {
	list-style-type: none;
	width: calc(50% - 20px);
	padding: 30px;
	margin: 0 10px;
	background: #ffffff;
	transition: .5s ease-in-out;
	margin-bottom: 20px;
	height: 250px;
	cursor: pointer;
	box-shadow: 0 0 10px #fff;
	position: relative;
	overflow: hidden;
}
#main-admin > li.only-top {
	display: none;
}
#main-admin > li.only-main {
	width: 100%;
	height: 160px;
	padding: 10px 0;
}
#main-admin > li::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(200,200,200,0) 0%, rgba(200,200,200,.3) 100%);
	background: linear-gradient(to right, rgba(200,200,200,0) 0%, rgba(200,200,200,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
#main-admin > li:hover::before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

#main-admin > li:hover {
	transform: scale(0.97);
}
#main-admin > li > a {
	text-align: center;
	color: #000;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 24px;
	text-decoration: none;
}
#main-admin > li > a > div {
	justify-content: space-between;
	height: 100%;
}
#main-admin > li > a img.menu-icon {
	height: 150px;
    width: 150px;
	margin: 0 auto 20px;
}
#main-admin > li.only-main > a img.menu-icon {
	height: 100px;
    width:100px;
	margin-bottom: 0;
}
#main-admin > li > ul {
	display: none;
}



@media (max-width: 767px) {
	.admin-top .admin-top-logo {
		margin-bottom: 20px;
	}
	.admin-top > p {
		font-size: 22px;
		line-height: 24px;
		text-transform: uppercase;
	}
	#main-admin {
		flex-direction: column;
	}
	#main-admin > li {
		width: 100%;
		margin: 0 0 20px;
	}
	#main-admin > li > a img.menu-icon {
		height: 100px;
        width:100px;
		margin: 0 auto;
	}
	#main-admin > li > a {
		font-size: 20px;
	}
	#main-admin > li {
		height: 220px;
		padding: 20px;
	}
}