.gep-sticky-note {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 99999;
	width: min(360px, calc(100vw - 30px));
	padding: 14px 40px 14px 14px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	font-size: 14px;
	line-height: 1.5;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.gep-sticky-note a {
	color: inherit;
	text-decoration: underline;
}

.gep-sticky-note.is-hidden {
	opacity: 0;
	transform: translateY(10px);
	visibility: hidden;
	pointer-events: none;
}

.gep-sticky-note__close {
	position: absolute;
	top: 6px;
	right: 8px;
	background: transparent;
	border: 0;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	padding: 2px 4px;
	opacity: 0.9;
}

.gep-sticky-note__close:hover,
.gep-sticky-note__close:focus {
	opacity: 1;
}

.gep-sticky-note__message p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.gep-sticky-note {
		right: 12px;
		bottom: 12px;
		width: calc(100vw - 24px);
	}
}
