.trendnews-adblock-overlay {
	align-items: center;
	background: rgba(0, 0, 0, 0.82);
	box-sizing: border-box;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 18px;
	position: fixed;
	z-index: 2147483647;
}

.trendnews-adblock-overlay[hidden] {
	display: none;
}

.trendnews-adblock-modal {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
	box-sizing: border-box;
	color: #202124;
	max-width: 500px;
	outline: none;
	padding: 34px 22px 28px;
	text-align: center;
	width: min(100%, 500px);
}

.trendnews-adblock-logo {
	display: block;
	height: auto;
	margin: 0 auto 20px;
	max-width: 170px;
	width: 55%;
}

.trendnews-adblock-modal h2 {
	color: #202124;
	font-size: 23px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.28;
	margin: 0 0 12px;
}

.trendnews-adblock-modal p {
	color: #464b52;
	font-size: 15px;
	line-height: 1.58;
	margin: 0 0 24px;
}

.trendnews-adblock-button {
	appearance: none;
	background: #990901bc;
	border: 0;
	border-radius: 7px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	justify-content: center;
	line-height: 1.25;
	min-height: 48px;
	padding: 14px 18px;
	text-align: center;
	text-decoration: none;
	width: 100%;
}

.trendnews-adblock-button:hover,
.trendnews-adblock-button:focus-visible {
	background: #007d31;
}

.trendnews-adblock-button:focus-visible {
	outline: 3px solid #8bc404;
	outline-offset: 3px;
}

.trendnews-adblock-body-locked {
	overflow: hidden !important;
}

@media (min-width: 600px) {
	.trendnews-adblock-modal {
		padding: 44px 36px 32px;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.trendnews-adblock-overlay {
		animation: trendnews-adblock-fade-in 140ms ease-out;
	}

	.trendnews-adblock-modal {
		animation: trendnews-adblock-rise-in 180ms ease-out;
	}
}

@keyframes trendnews-adblock-fade-in {
	from {
		opacity: 0;
	}
}

@keyframes trendnews-adblock-rise-in {
	from {
		transform: translateY(8px);
	}
}