html,
body {
	margin: 0;
	padding: 0;
}
body {
	background-color: #ffffff;
	color: #383838;
	overflow-y: scroll;
}
.webzilla {
	width: 5em;
	max-width: 8vh;
	height: 5em;
	max-height: 8vh;
	transform: translate(-50%, -50%);
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('https://webzilla.global/wp-content/uploads/2024/11/pin_new_front.png');
	background-size: 80%;
	cursor: pointer;
	pointer-events: all;
}
.earth-occluded .webzilla {
	background-image: url('https://webzilla.global/wp-content/uploads/2024/11/pin_new_back.png');
	opacity: 0.7;
}

#element::after {
	content: "";
	position: absolute;
	top: 9.85%;
	left: 9.85%;
	bottom: 9.85%;
	right: 9.85%;
	box-sizing: border-box;
	border: 1px #D0D0D0 solid;
	border-radius: 50%;
}


#earth-wrapper {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	
	position: relative;
	margin: 0 auto;
	width: 92%;
	max-width: 100em;
	font-family: sans-serif;
}

#earth-col {
	flex: 0 1 50vw;
}
#breaking-news {
	flex: 0 1 25vw;
	text-align: left;
}
#local-news {
	flex: 0 1 25vw;
}


.news {
	transition: color 0.2s ease;
	padding: 0.25em 0;
}
.news-highlight {
	color: red;
}

.news + .news {
	border-top: 1px #D0D0D0 solid;
}

p {
	line-height: 140%;
}
h3 {
	font-size: 1.1em;
	cursor: pointer;
	margin-bottom: -0.2em;
	line-height: 140%;
}
h3:hover {
	color: red;
}

.has-news #please-click {
	display: none;
}

#local-news .news {
	display: none;
}
#local-news.has-news .news {
	display: block;
}
#local-news.toggle-news .news:last-child {
	display: none;
}
#breaking-news ul li{
 line-height:2.5rem;
	list-style:none;
}
#breaking-news ul li .title{
 font-size:24px;
	font-weight:600;
	
}
#breaking-news ul li .clients{
 font-size:24px;
	color:#080096;
	font-weight:600;
	margin-right:10px;
}
@media (max-width: 1399px) {
	#breaking-news,
	#local-news {
		font-size: 0.9em;
	}
}

@media (max-width: 1199px) {
	#earth-wrapper {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		width: 100%;
	}
	#earth-col {
		-webkit-order: 0;
		order: 0;
		flex: 0 1 100vw;
		max-width: 50em;
	}
	#breaking-news,
	#local-news {
		font-size: 0.9em;
		flex: 0 1 46vw;
		width: 50vw;
		box-sizing: border-box;
	}
	#breaking-news {
		-webkit-order: 2;
		order: 1;
		padding: 0 1.5em 0 0.5em;
	}
	#local-news {
		-webkit-order: 0;
		order: 2;
		padding: 0 0.5em 0 1.5em;
	}
}
@media (max-width: 511px) {
	#earth-col {
		-webkit-order: 1;
		order: 1;
		flex: 0 1 100vw;
		max-width: 50em;
	}
	#breaking-news,
	#local-news {
		font-size: 0.9em;
		flex: 0 1 96vw;
		width: 100vw;
		box-sizing: border-box;
	}
	#breaking-news {
		-webkit-order: 2;
		order: 2;
		padding: 0 20px 50px;
		text-align:center;
	}
	#breaking-news h2{
			font-size:35px !important;
	}
	#local-news {
		-webkit-order: 0;
		order: 0;
		padding: 0 0.5em 0 1.5em;
	}
}