#bhb-review-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(31, 62, 107, 0.62);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.24s ease, visibility 0.24s ease;
}

#bhb-review-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

#bhb-review-popup {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	width: min(860px, 100%);
	overflow: hidden;
	background: #e9f4f8;
	box-shadow: 0 24px 80px rgba(31, 62, 107, 0.32);
}

.bhb-popup-close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #1f3e6b;
	font-size: 30px;
	line-height: 38px;
	cursor: pointer;
}

.bhb-popup-media {
	min-height: 360px;
	background-color: #bae1e6;
	background-position: center;
	background-size: cover;
}

.bhb-popup-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 42px 38px;
	color: #1f3e6b;
}

.bhb-popup-kicker {
	margin: 0 0 10px;
	color: #12909d;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.bhb-popup-content h2 {
	margin: 0 0 14px;
	color: #1f3e6b;
	font-size: 30px;
	line-height: 1.15;
}

.bhb-popup-content p {
	margin: 0 0 20px;
	color: #879fb4;
	font-size: 16px;
	line-height: 1.55;
}

.bhb-popup-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 46px;
	padding: 0 24px;
	background: #12909d;
	color: #fff !important;
	font-weight: 700;
	text-decoration: none !important;
}

.bhb-popup-button:hover,
.bhb-popup-button:focus {
	background: #1f3e6b;
	color: #fff !important;
}

.bhb-popup-content .bhb-popup-small {
	margin: 16px 0 0;
	color: #1f3e6b;
	font-size: 13px;
}

@media (max-width: 720px) {
	#bhb-review-popup {
		grid-template-columns: 1fr;
		max-height: calc(100vh - 40px);
		overflow-y: auto;
	}

	.bhb-popup-media {
		min-height: 210px;
	}

	.bhb-popup-content {
		padding: 28px 24px;
	}

	.bhb-popup-content h2 {
		font-size: 24px;
	}

	.bhb-popup-button {
		width: 100%;
	}
}
