/*---------------------------------------------------------------*/
/*------------------------- address.css -------------------------*/
/*---------------------------------------------------------------*/
address {
	display: flex;
	flex-direction: column;
}

address a {
	text-decoration: none;
	font-style: initial;
	font-size: 1.1rem;
	position: relative;
	padding-left: 2rem;
	display: flex;
	align-items: center;
    line-height: 2rem;
}

address a:before {
	position: absolute;
	content: "";
	min-width: 1rem;
	min-height: 1.1rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	left: 0;
}

address a[type="tel"]:before {
	background-image: url('../../images/mobile.svg');
}

address a[type="email"]:before {
	background-image: url('../../images/mail.svg');
}

address a[type="address"]:before {
	background-image: url('../../images/location.svg');
}