:root {
	--ab-bg-color: whitesmoke;
	--ab-text-color: #1e1e1e;
	--ab-gradient-start: whitesmoke;
	--ab-gradient-end: #ffffff00;	
	--ab-border-color: #1e1e1e;
	--ab-shadow-color: #000000;
	--ab-accent: #a2c7e2;
}

.ab_banner {
	position: fixed;
	width: 620px;
	display: inline-block;
	right: 10px;
	bottom: 10px;
	z-index: 111111111111;
	background-color: var(--ab-bg-color);
	color: var(--ab-text-color);
	padding: 18px;
	border-radius: 0px;
	box-shadow: 0 0 21px -3px var(--ab-shadow-color);
}

.ab_cross {
	position: absolute;
	right: 9px;
	top: 5px;
}

.ab_cross i {
	font-style: normal;
}

.ab_text p,
.ab_cross a {
	color: var(--ab-text-color);
}

.ab_head {
	font-size: 18px;
	margin-bottom: 8px;
	font-weight: 900;
}

.ab_text {
	margin-bottom: 20px;
	transition: all 0.3s;
}

.ab_text.ab_text_min {
	height: 96px;
	overflow: hidden;
	position: relative;
}

.ab_text.ab_text_min:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 43px;
	background: var(--ab-bg-color);
	background: linear-gradient(
		0deg,
		var(--ab-gradient-start) 0%,
		var(--ab-gradient-end) 100%
	);
}

.ab_text p {
	text-align: justify;
	margin-bottom: 10px;
}

.ab_text a {
	font-size: 15px;
	color: var(--ab-text-color);
	border-bottom: 1px dashed;
	margin-bottom: 6px;
}

.ab_btn {
	background-color: var(--ab-accent);
	float: right;
}

.ab_more {
	color: var(--ab-text-color);
	border-color: var(--ab-border-color);
}

.ab_more:hover {
	background-color: var(--ab-accent);
}

@media (max-width: 768px) {
	.ab_banner {
		width: auto;
		right: 0;
		bottom: 0;
		margin: 10px;
	}

	.ab_head {
		font-size: 17px;
	}
}