/* WIDGET: SIMPLE ICON
-------------------------------------------- */

.vlt-simple-icon {
	display: inline-flex;
	line-height: 1;
	color: var(--vlt-accent-1);

	img {
		display: block;
		width: auto;
		height: 1em !important;
	}

	svg {
		height: 1em;
	}

	&--circle {
		align-items: center;
		justify-content: center;
		width: px2rem(80px);
		height: px2rem(80px);
		color: var(--vlt-color-white);
		background-color: var(--vlt-accent-1);
		border-radius: 50%;
	}

	&--text {
		@include vlt_primary_medium_18;
	}

}