  
/*
 * Component: Card Widgets
 * -------------------------
 */
.box-widget {
	border: none;
	position: relative; 
	box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .25);
	background-color: #E5E5E5;
}

.box-widget:hover {
	box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, .35);
}

.widget-card .widget-card-header {
	padding: 15px;
	/* height: 200px; */
	color: white;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	background-position: center top;
	background-color:  #0077C8; 
	aspect-ratio: 75 / 40; 
}

widget-card .widget-card-header:hover {
	transform: scale(1.5);
	transition: all 2s ease-in;
}
.widget-card .widget-card-username {
	margin-top: 0;
	margin-bottom: 5px;
	font-size: 25px;
	font-weight: 300;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); 
}
.widget-card .widget-card-image > img {
	width: 90px;
	height: auto;
	border: 3px solid white; 
}
.widget-card .box-data {
	min-height: 50px;
	padding: 30px 15px 0px 15px;
	border-color: #0077C8;
	border-width: 0 0 0 0;
	border-style: solid;
	background-color: #E5E5E5; 
}
.widget-card .box-data h3 {	
	font-size: 20px;
	margin-top: -15px;}
.widget-card .box-data h5 {
	font-size: 12px;
	margin-top: -15px;}

.widget-card .box-data p {
	  padding: 0px 0px 5px 0px; 
}
.widget-card .box-footer {
	margin-bottom: 20px;
	min-height: 15px;
	padding: 10px 10px;
	text-aling: center;
	background-color: #E5E5E5;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px; 
}
.widget-card .box-footer a.btn {
	width: 100%; 
}
.box-widget.noResults, .box-widget.noResults:hover {
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);

}
	.box-widget.noResults .widget-card-header,  
	.box-widget.noResults .box-data,  
	.box-widget.noResults .box-footer  {
	background-color:  #fff; 
}

