.cr-help-popup {
	position: fixed;
	right: 28px;
	bottom: 28px;
	z-index: 99990;
	width: min(340px, calc(100vw - 32px));
	padding: 28px 28px 24px;
	background: #e6faed;
	border-radius: 22px;
	box-shadow: 0 10px 32px rgba(23, 52, 69, 0.14);
	color: #222;
	font-family: "proxima-nova", sans-serif;
	opacity: 0;
	transform: translateY(16px);
	pointer-events: none;
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.cr-help-popup.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.cr-help-popup.is-preview {
	position: relative;
	right: auto;
	bottom: auto;
	margin: 12px 0 24px;
	z-index: 1;
}

.cr-help-popup[hidden] {
	display: none;
}

.cr-help-popup .cr-help-popup__close {
	position: absolute;
	top: -10px;
	right: -10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px !important;
	height: 28px !important;
	min-width: 28px;
	padding: 0 !important;
	border: 1px solid #c8c8c8 !important;
	border-radius: 50% !important;
	background: #fff !important;
	color: #3a3a3a !important;
	font-family: inherit !important;
	font-size: 20px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.cr-help-popup .cr-help-popup__close:hover,
.cr-help-popup .cr-help-popup__close:focus {
	background: #fff !important;
	color: #111 !important;
}

.cr-help-popup__heading {
	margin: 0 0 10px;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.25;
}

.cr-help-popup__text,
.cr-help-popup__contact {
	margin: 0;
	font-size: 1rem;
	line-height: 1.45;
}

.cr-help-popup__contact {
	margin-top: 4px;
}

.cr-help-popup__line {
	display: block;
}

.cr-help-popup a {
	color: #11a540;
	font-weight: 600;
	text-decoration: underline;
}

.cr-help-popup a:hover {
	color: #0d8533;
}

.cr-help-popup-preview {
	max-width: 380px;
	padding: 18px 16px 8px 4px;
}

@media screen and (max-width: 600px) {
	.cr-help-popup:not(.is-preview) {
		right: 16px;
		bottom: 16px;
		left: 16px;
		width: auto;
	}

	.cr-help-popup:not(.is-preview) .cr-help-popup__close {
		right: 6px;
		top: -12px;
	}
}
