
.wf-popup-widget {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999999;
	width: 340px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: opacity 400ms ease, transform 400ms ease, visibility 400ms ease;
}

.wf-popup-widget.wf-popup-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.wf-popup-content {
	padding: 1.25rem 1rem 1.5rem;
	position: relative;
}

.wf-popup-close {
	position: absolute;
	top: 8px;
	right: 10px;
	padding: 5px 5px !important;
	line-height: .5 !important;
	background: transparent;
	border: none;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	color: var(--cta-color);
	padding: 0;
	transition: color 250ms;
}

.wf-popup-close:hover {
	color: #000;
}

.wf-popup-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	margin: .5rem 0 1rem;
	text-transform: uppercase;
	text-align: center;
	color: var(--primary-text);
}

.wf-popup-title .highlight {
	color: var(--cta-color);
}

.wf-download-btn {
	display: block;
	font-size: var(--btn-font-size);
	line-height: var(--btn-line-height);
	font-weight: var(--btn-font-weight);
	text-transform: var(--btn-text-transform);
	color: var(--btn-font-color);
	background: var(--btn-background-color);
	padding: .65rem 1rem;
	width: 100%;
	text-align: center;
	border: var(--btn-border);
	border-color: var(--btn-border-color);
	border-radius: 200px;
	transition: var(--transition);
}

.wf-download-btn:hover {
	color: var(--secondary-text);
	background: var(--secondary-background);
	border-color: var(--secondary-background);
}

@media (max-width: 575px) {
	.wf-popup-widget {
		width: calc(100vw - 30px);
		right: 15px;
		bottom: 15px;
	}
	
	.wf-popup-title {
		font-size: 15px !important;
	}
}
