/*------------------------------------*/
/*------------- CIRCLES --------------*/
/*------------------------------------*/
.circle{
	display: inline-block;
	vertical-align: middle;
	width: 11px;
    height: 11px;
	border: 2px solid transparent;
	@include border-radius(50%);
	&.green-circle{
		border-color: #8DD321;
	}
	&.gray-circle{
		border-color: #E4EDF9;
	}
}

/*------------------------------------*/
/*------------- /CIRCLES -------------*/
/*------------------------------------*/
/**/