<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

.address-box {
	display:grid;
	grid-template-columns:1fr 1fr;
	padding:30px 50px;
	border:1px solid #ddd;
	border-radius:20px;
	margin-bottom:70px;
}
.address-box &gt; li {
	position:relative;
	padding-left:80px;
}
.address-box &gt; li:after {
	content:'';
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
	width:60px;
	height:60px;
	border-radius:50%;
	background-repeat:no-repeat;
	background-position:center;
	background-color:#9ab92d;	
}
.address-box &gt; li:nth-of-type(1):after{
	background-image:url('/thema/Basic/img/icon_address.png');
}
.address-box &gt; li:nth-of-type(2):after{
	background-image:url('/thema/Basic/img/icon_call.png');
}

.address-box &gt; li &gt; h4 {
	color:#9ab92d;
	margin-bottom:10px;
}
.address-box &gt; li &gt; p {
	font-size:20px;
}

@media all and (max-width:991px) {
	.address-box {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}
@media all and (max-width:480px) {
	.address-box {
		padding:30px;
	}
	.address-box &gt; li &gt; p {
		font-size:16px;
	}
}</pre></body></html>