@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");

body,
html {
	height: 100%;
}

p#user {
	margin-bottom: 0;
	margin-top: 0;
}

.main-content::before {
	content: "";
	position: fixed;
	left: 0;
	right: 0;
	z-index: -1;
	/* The image used */
	background-image: url("../assets/background.jpg");

	/* Add the blur effect */
	filter: blur(8px);
	-webkit-filter: blur(8px);

	/* Full height */
	height: 100%;
	width: 100%;
	position: absolute;
	/* Center and scale the image nicely */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.main-content {
	z-index: 9999;
}

.titletext {
	padding-top: 100px;
}

.stat-card {
	background: #fff;
	padding: 25px;
	margin-bottom: 25px;
	border-radius: 5px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.2s;

}

h1 {
	z-index: 9999;
}

.stat-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-card__icon-circle {
	height: 60px;
	width: 60px;
	border-radius: 60px;
	background: rgba(0, 123, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.stat-card__icon-circle i {
	font-size: 30px;
	color: #007bff;
}

.stat-card__icon.stat-card__icon--success .stat-card__icon-circle {
	background: rgba(40, 167, 69, 0.2);
}

.stat-card__icon.stat-card__icon--success .stat-card__icon-circle i {
	color: #28a745;
}

.stat-card__icon.stat-card__icon--danger .stat-card__icon-circle {
	background: rgba(220, 53, 69, 0.2);
}

.stat-card__icon.stat-card__icon--danger .stat-card__icon-circle i {
	color: #dc3545;
}

.stat-card__icon.stat-card__icon--warning .stat-card__icon-circle {
	background: rgba(255, 193, 7, 0.2);
}

.stat-card__icon.stat-card__icon--warning .stat-card__icon-circle i {
	color: #ffc107;
}

.stat-card__icon.stat-card__icon--primary .stat-card__icon-circle {
	background: rgba(0, 123, 255, 0.2);
}

.stat-card__icon.stat-card__icon--primary .stat-card__icon-circle i {
	color: #007bff;
}

#sdp {
	visibility: visible;
	z-index: 99999;
}

.openbtn {
	visibility: hidden;
	position: absolute;
	display: block;
	background-color: transparent;
	border: none;
	right: 0;
	top: 0;
	z-index: 99999;
	width: 60px;
	height: 60px;
	font-size: 30px;
}

@media screen and (max-width: 785px) {
	.sdp {
		visibility: hidden;
	}

	.openbtn {
		visibility: visible;
	}
}