.ysa-review-panel[hidden],
.ysa-review-panel [hidden] {
	display: none !important;
}

.review_stars.ysa-review-panel {
	--ysa-review-accent: #0e141f;
	--ysa-review-accent-text: #ffffff;
	position: fixed;
	z-index: 30;
	right: 10px;
	bottom: 0 !important;
	left: 10px;
	display: block;
	width: auto;
	max-width: 420px;
	max-height: calc(100vh - 20px);
	margin: 0 auto !important;
	padding: 28px 16px 16px;
	overflow-y: auto;
	border: 1px solid #e1e3e8;
	border-radius: 22px 22px 0 0;
	background: #ffffff;
	box-shadow: 0 -18px 48px rgba(14, 20, 31, .14);
	color: #0e141f;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	text-align: left;
	transform: translateY(calc(100% + 24px));
	opacity: 0;
	transition: transform 180ms cubic-bezier(.16, 1, .3, 1), opacity 180ms ease-out;
	overscroll-behavior: contain;
}

.review_stars.ysa-review-panel.is-open {
	transform: translateY(0);
	opacity: 1;
}

.ysa-review-panel__handle {
	position: absolute;
	top: 9px;
	left: 50%;
	width: 36px;
	height: 4px;
	border-radius: 999px;
	background: #c9ccd2;
	transform: translateX(-50%);
}

.review_stars.ysa-review-panel div,
.review_stars.ysa-review-panel section,
.review_stars.ysa-review-panel p,
.review_stars.ysa-review-panel fieldset {
	margin-top: 0;
	margin-bottom: 0;
}

.ysa-review-panel button,
.ysa-review-panel input {
	font: inherit;
}

.ysa-review-panel button:focus-visible,
.ysa-review-panel input:focus-visible + .ysa-review-panel__rating-card {
	outline: 3px solid #2563eb;
	outline-offset: 2px;
}

.ysa-review-panel__icon-button {
	position: absolute;
	top: 10px;
	right: 8px;
	display: grid;
	width: 44px;
	height: 44px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #6e7480;
	cursor: pointer;
}

.ysa-review-panel__icon-button:hover {
	background: #f6f7f8;
	color: #0e141f;
}

.review_stars.ysa-review-panel .ysa-review-panel__icon-button i.fas {
	margin: 0;
	color: inherit;
	font-size: 15px;
	opacity: 1;
}

.ysa-review-panel__question,
.ysa-review-panel__thank-you {
	margin: 0;
	padding-right: 42px;
	color: #0e141f;
	font-family: inherit;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.ysa-review-panel__eyebrow {
	padding-right: 42px;
	color: #0b6f68;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .09em;
	line-height: 1.2;
	text-transform: uppercase;
}

.ysa-review-panel__question {
	margin-top: 3px !important;
}

.ysa-review-panel__instruction {
	margin-top: 7px !important;
	color: #6e7480;
	font-size: 11px;
	line-height: 1.45;
}

.ysa-review-panel__ratings {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 6px;
	min-width: 0;
	margin-top: 14px !important;
	padding: 0;
	border: 0;
}

.ysa-review-panel__rating {
	display: block;
	min-width: 0;
	cursor: pointer;
}

.ysa-review-panel__rating input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	opacity: 0;
}

.ysa-review-panel__rating-card {
	display: grid;
	min-height: 68px;
	place-items: center;
	align-content: center;
	gap: 3px;
	border: 1px solid #c9ccd2;
	border-radius: 10px;
	background: #ffffff;
	color: #6e7480;
	transition: border-color 150ms ease-out, background 150ms ease-out, transform 150ms ease-out;
}

.ysa-review-panel__rating-label {
	display: block;
	max-width: 100%;
	min-height: 10px;
	overflow: hidden;
	color: #6e7480;
	font-size: 8px;
	font-weight: 400;
	line-height: 1.15;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ysa-review-panel__rating-card:hover {
	border-color: var(--ysa-review-accent);
	background: #f6f7f8;
}

.ysa-review-panel__rating-card:active {
	transform: translateY(1px);
}

.review_stars.ysa-review-panel .ysa-review-panel__rating-card i.fas {
	margin: 0;
	color: #a4a9b2;
	font-size: 15px;
	opacity: 1;
}

.ysa-review-panel__rating-card strong {
	color: #0e141f;
	font-size: 17px;
	line-height: 1;
}

.ysa-review-panel__rating.is-selected .ysa-review-panel__rating-card {
	border-color: var(--ysa-review-accent);
	background: #f4f5f7;
	box-shadow: 0 0 0 1px var(--ysa-review-accent);
}

.review_stars.ysa-review-panel .ysa-review-panel__rating.is-selected i.fas,
.ysa-review-panel__rating.is-selected .ysa-review-panel__rating-card strong,
.ysa-review-panel__rating.is-selected .ysa-review-panel__rating-label {
	color: var(--ysa-review-accent);
}

.ysa-review-panel__status {
	display: flex;
	min-height: 42px;
	align-items: center;
	margin-top: 10px !important;
	padding: 8px 11px;
	border: 1px solid #e1e3e8;
	border-radius: 9px;
	background: #fbfbfc;
	color: #6e7480;
	font-size: 10px;
	justify-content: space-between;
	gap: 8px;
}

.ysa-review-panel__status.has-rating {
	border-color: var(--ysa-review-accent);
	color: #0e141f;
}

.ysa-review-panel__status strong {
	font-size: 11px;
}

.ysa-review-panel__status > span:last-child {
	margin-left: auto;
	font-size: 9px;
	white-space: nowrap;
}

.ysa-review-panel__error {
	margin-top: 9px !important;
	padding: 8px 10px;
	border-radius: 8px;
	background: #fae8e5;
	color: #8c2824;
	font-size: 10px;
}

.ysa-review-panel__primary,
.ysa-review-panel__secondary,
.ysa-review-panel__text-button {
	min-height: 46px;
	border-radius: 10px;
	font-weight: 700;
	cursor: pointer;
	transition: background 150ms ease-out, border-color 150ms ease-out, transform 150ms ease-out;
}

.ysa-review-panel__primary {
	width: 100%;
	margin-top: 10px;
	border: 1px solid var(--ysa-review-accent);
	background: var(--ysa-review-accent);
	color: var(--ysa-review-accent-text);
}

.ysa-review-panel__primary:hover:not(:disabled) {
	filter: brightness(.92);
}

.ysa-review-panel__primary:active:not(:disabled),
.ysa-review-panel__secondary:active,
.ysa-review-panel__text-button:active {
	transform: translateY(1px);
}

.ysa-review-panel__primary:disabled {
	border-color: #e1e3e8;
	background: #eef0f2;
	color: #9298a2;
	cursor: not-allowed;
}

.ysa-review-panel__text-button {
	display: block;
	min-width: 96px;
	margin: 2px auto -6px;
	border: 0;
	background: transparent;
	color: #6e7480;
	font-size: 11px;
}

.ysa-review-panel__text-button:hover {
	color: #0e141f;
}

.ysa-review-panel__success {
	padding-top: 4px;
	text-align: center;
}

.ysa-review-panel__success-icon {
	display: grid;
	width: 42px;
	height: 42px;
	margin: 0 auto 10px;
	place-items: center;
	border-radius: 50%;
	background: #e8f6f4;
	color: #0b6f68;
}

.review_stars.ysa-review-panel .ysa-review-panel__success-icon i.fas {
	margin: 0;
	color: inherit;
	font-size: 15px;
	opacity: 1;
}

.ysa-review-panel__thank-you {
	padding: 0 34px;
	font-size: 20px;
}

.ysa-review-panel__thank-you:focus {
	outline: none;
}

.ysa-review-panel__saved-score {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	margin-top: 10px !important;
	color: var(--ysa-review-accent);
}

.ysa-review-panel__saved-score strong {
	font-size: 19px;
}

.ysa-review-panel__saved-score span {
	font-size: 12px;
}

.ysa-review-panel__success-actions {
	display: grid;
	grid-template-columns: 1fr minmax(92px, auto);
	gap: 8px;
	margin-top: 16px !important;
}

.ysa-review-panel__secondary {
	border: 1px solid #c9ccd2;
	background: #ffffff;
	color: #0e141f;
}

.ysa-review-panel__secondary:hover {
	background: #f6f7f8;
}

.ysa-review-panel__primary--compact {
	width: auto;
	min-width: 92px;
	margin-top: 0;
}

.ysa-review-panel__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 360px) {
	.review_stars.ysa-review-panel {
		right: 6px;
		left: 6px;
		padding-right: 12px;
		padding-left: 12px;
	}

	.ysa-review-panel__ratings {
		gap: 4px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.review_stars.ysa-review-panel,
	.ysa-review-panel__rating-card,
	.ysa-review-panel__primary,
	.ysa-review-panel__secondary,
	.ysa-review-panel__text-button {
		transition-duration: .01ms !important;
	}
}
