.cell {display: inline-block; width:100%; margin-bottom: 15px; margin-top: 15px;}
.circle {display: inline-block; width:75px; height:75px; padding: 2px; border-radius:var(--border-radius-50); border:1px dashed var(--secondary-color); overflow: hidden; background: whiteSmoke;}
.pulse { animation: pulse 1s infinite ease-in-out alternate;}
.circle img {border-radius:var(--border-radius-50);overflow: hidden;}
@keyframes pulse {
	from {
		transform: scale(0.9);
	}
	to {
		transform: scale(1.1);
	}
}