#lifestyle-grid-wrapper{
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: space-around;
	line-height: 1.25rem;
	margin: 2rem 0 3rem 0;
	}
#lifestyle-grid-wrapper > div{
	width: 8rem;
	text-align: center;
	cursor: pointer;
	position: relative;
	}	
#lifestyle-grid-wrapper img{
	width: 100%;
	background-color: #efefef;
	border-radius: 50%;
	padding: .5rem;
	}	

#lifestyle-grid-wrapper > div.active::before{
	right: 0;
	content: "";
	background-color: #00bb3e;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	position: absolute;
	pointer-events: none;
	animation: pulse-scale 1s ease-in-out infinite alternate;
	background-image: url('../images/icons/upgrade-check-white.svg');
	background-size: 60%;
	background-repeat: no-repeat;
	background-position: center;
	}	
@keyframes pulse-scale {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); } 
    } 

#global-top-summary{
	display: grid;
	gap: 1rem;
	grid-template-columns: 5rem auto;
	align-items: center;
	margin: 1rem 0 0 0;
	}
#global-top-summary img{ width: 100%; }	



@media print, (min-width:580px) {

	#global-top-summary{
		gap: 2rem;
		grid-template-columns: 9rem auto;
		margin: 1.5rem 0;
	}

	#lifestyle-grid-wrapper > div{
		width: 10rem;
	}
}	