@charset "utf-8";
/* Morton Dental - full-review dialog for the Google review cards.
   The feed clamps each review to two lines; these styles add the "read more"
   affordance and the dialog that shows the whole thing. */

.feedback-row3.xd-review--clipped {
	cursor: pointer;
}

.feedback-row3 .xd-review__more {
	display: inline-block;
	font-family: "Jost", serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.2px;
	color: #94a068;
	background: none;
	border: 0;
	border-bottom: 1px solid rgba(148, 160, 104, 0.45);
	border-radius: 0;
	margin: 2px 0 0;
	padding: 0 0 1px;
	cursor: pointer;
	transition: all 0.2s ease-out 0s;
}
.feedback-row3 .xd-review__more:hover,
.feedback-row3.xd-review--clipped:hover .xd-review__more {
	color: #6f7a4c;
	border-bottom-color: #6f7a4c;
}
.feedback-row3 .xd-review__more:focus-visible {
	outline: 2px solid #94a068;
	outline-offset: 3px;
}

/* ---------- dialog ---------- */
.xd-reviewbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(29, 32, 20, 0.72);
}
.xd-reviewbox[hidden] {
	display: none !important;
}
html.xd-reviewbox-open {
	overflow: hidden;
}

.xd-reviewbox__panel {
	position: relative;
	width: 100%;
	max-width: 620px;
	max-height: 80vh;
	overflow-y: auto;
	background: #ffffff;
	border-radius: 14px;
	padding: 42px 40px 34px;
	text-align: left;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.xd-reviewbox__close {
	position: absolute;
	top: 10px;
	right: 14px;
	width: 34px;
	height: 34px;
	font-size: 26px;
	line-height: 1;
	color: #6f6f6f;
	background: none;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.2s ease-out 0s;
}
.xd-reviewbox__close:hover {
	color: #403d39;
	background: #f1f3ea;
}
.xd-reviewbox__close:focus-visible {
	outline: 2px solid #94a068;
	outline-offset: 2px;
}

.xd-reviewbox__stars {
	font-size: 17px;
	letter-spacing: 3px;
	color: #f2b01e;
	margin: 0 0 14px;
}

.xd-reviewbox__text {
	font-family: "Jost", serif;
	font-size: 17px;
	font-weight: 400;
	color: #504f50;
	line-height: 1.62;
	margin: 0 0 18px;
	white-space: pre-line;
}

.xd-reviewbox__name {
	font-family: "Jost", serif;
	font-size: 15px;
	font-weight: 600;
	color: #94a068;
	margin: 0;
}
.xd-reviewbox__name a {
	color: #94a068;
	text-decoration: none;
}
.xd-reviewbox__name a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 600px) {
	.xd-reviewbox {
		padding: 16px;
	}
	.xd-reviewbox__panel {
		max-height: 86vh;
		padding: 38px 22px 26px;
	}
	.xd-reviewbox__text {
		font-size: 16px;
	}
}
