.widget-popup {
	max-width: 256px;
	position: fixed;
	background: var(--green-shade);
	z-index: 9999;
	right:20px;
	bottom:20px;
	border:2px solid var(--white);
	padding: 0 0 8px 0;
	display: none;
}

.widget-popup.active {
	display: block;
}

.widget-popup .top-text {
	position: relative;
	top:0;
	background: var(--green-shade);
	display: block;
	width: 100%;
	z-index: 1;
	color: var(--white);
}

.widget-popup .top-text h3 {
	color: var(--white);
	padding: 4px;
	text-align: center;
	font-family:var(--font-body);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.2;
	text-transform: capitalize;
}

.widget-popup .close {
	position: absolute;
	top: 5px;
	right: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	color: var(--green-shade);
	background: var(--green-grass);
	width: 19px;
	height: 19px;
	text-align: center;
	border-radius: var(--rounded-full);
}

.widget-popup .close .fa {
	display: inline-block;
	line-height: 0;
	font-weight: 900;
}

.widget-popup .close .fa::before {
	display: inline-block;
	line-height: 0;
}

.widget-popup .bottom-text {
	position: relative;
	bottom:0;
	background: var(--green-shade);
	color: var(--white);
	padding: 4px;
	text-align: center;
}

.widget-popup .block-image img {
	position: relative;
}

.widget-popup .bottom-text .description p {
	font-family: var(--font-body);
	font-size: var(--text-base);
	color: var(--white);
	padding: 4px;
}

.widget-popup .bottom-text .link a {
	cursor: pointer;
	font-family:var(--font-body);
	font-size: var(--text-sm);
	text-transform: uppercase;
	border-radius: 4px;
	color: var(--white);
	background: var(--green-grass);
	border: 0;
	padding: 2px 8px;
}

@media (max-width: 40em) {
	.widget-popup {
		bottom: 76px;
	}
}