/*# sourceMappingURL=product_widget.css.map */

:root {
	--r-prw-wrapper-bg-color: white;
	--r-prw-header-text-icon-color: #000;
	--r-prw-rating-icon-color: #fbbf24;
	--r-prw-btn-bg-color: #007bff;
	--r-prw-btn-color: #fff;
	--r-prw-btn-border-color: #007bff;
	--r-prw-btn-bg-hover-color: #0056b3;
	--r-prw-btn-hover-text-color: #fff;
	--r-prw-review-box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
	--r-prw-review-border-radius: 5px;
	--r-prw-review-color: #333;
	--r-prw-review-title-color: #333;
	--r-prw-review-bg-color: #fff;
	--r-prw-review-bg-hover-color: #f5f5f5;
	--r-prw-review-separator-color: #ccc;
	--r-prw-review-verified-color: green;
	--r-prw-review-replies-color: #222;
	--r-prw-review-replies-bg-color: #f9f9f9;
	--r-prw-progress-bg-color: #eee;
	--r-prw-progress-fill-color: #007bff;
	--r-prw-pagination-justify-content: center;
	--r-prw-pagination-placement: center;
	--r-prw-pagination-position: center;
}

.farp {
	color: var(--r-prw-rating-icon-color, "#FBBF24");
}

.wd_preview_content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	background-color: var(--r-prw-wrapper-bg-color, transparent);
	font-family: inherit;
	padding: 1.2rem 0 0;
}

.r_pw_main_header_wrapper {
	width: 100%;
	order: 1;
}

.r_pw_header_content_wrapper {
	display: grid;
	grid-template-columns: 30% 69%;
	gap: 1rem;
	width: 100%;
	order: 2;
}

.r_pw_empty_header_content_wrapper {
	width: 100%;
	order: 2;
}

.r_pw_header_layout_section {
	width: 100%;
}

.r_pw_tabs_content_section {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.r_pw_tab {
	font-family: inherit;
}

.r_pw_reviews-append {
	width: 100%;
	margin-top: 0;
}

@media (max-width: 768px) {
	.r_pw_header_content_wrapper {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
	
	.r_pw_tabs_content_section {
		width: 100%;
	}
}

.wd_preview_content.r_pw_header_horizontal .r_pw_header_content_wrapper {
	grid-template-columns: 100%;
}

.r_pw_all_reviews_container {
	position: relative;
}

.r_pw_main_container {
	padding: .5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: start;
}

.r_pw_r_container_empty {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	position: relative;
}

.r_pw_r_container_empty--content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
	width: 100%;
}

.r_pw_r_container_empty--content .r_fpw-close_icon {
	padding: .5rem;
}

.r_pw_no_reviews-text-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.r_pw_empty_review_text {
	font-weight: bold;
	font-size: 1.5rem;
}

.r_pw_empty_review_text--sub-text {
	font-weight: 700;
	margin: 0;
	font-size: 22px;
	font-style: italic;
	color: var(--r-prw-header-text-icon-color);
	text-align: center;
}

.r_pw_empty_review_description--text {
	margin: 0;
	color: var(--r-prw-review-replies-color);
	text-align: center;
}

.r_pw_loading_text, .r_pw_empty_review_text {
	color: var(--r-prw-header-text-icon-color);
	text-align: center;
}

.r_pw_main_toggle_loading_container, .r_pw_main_toggle_empty_review_container {
	position: relative;
	padding: 1.75rem;
}

.r_pw_empty_review--btn {
	all: unset;
	text-align: center;
	cursor: pointer;
	border-radius: 8px;
	padding: .5rem 1.5rem;
	background-color: var(--r-prw-btn-bg-color);
	color: var(--r-prw-btn-color);
	height: 30px;
	width: 200px;
}

.r_pw_store_review--btn {
	all: unset;
	text-align: center;
	cursor: pointer;
	border-radius: 8px;
	padding: .5rem 1.5rem;
	background-color: var(--r-prw-btn-bg-color);
	color: var(--r-prw-btn-color);
	height: 25px;
	width: 200px;
}

.r_pw_r_g_container--reply-container {
	font-style: italic;
}

.r_w_pagination-load-more:disabled, .r_w_pagination-load-more.r_w_pagination-load-more-loading {
	cursor: not-allowed;
	opacity: .7;
}

.r_pw_tab_content--store_reviews {
	width: 100%;
}

.r_pw_g_all_reviews_container {
	width: calc(100% - 2rem);
	position: relative;
	transition: all 1s ease-in;
	margin: 0 1rem;
}

.r_pw_r_g_container {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
	width: calc(25% - 11.25px);
}

.r_pw_r_g_container--review-details {
	display: flex;
	flex-direction: column;
}

.r_pw_r_g_container--review-details>*:not(.r_pw_r_g_container--review-details--image) {
	padding: 1rem;
}

.r_pw_r_g_container--review-info {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.r_pw_r--review-is-verified {
	color: var(--r-prw-review-verified-color);
}

.r_pw_r_g_container--review-rating-details {
	display: flex;
	flex-direction: row;
	justify-content: start;
}

.r_pw_r_g_container--review_title {
	font-weight: 600;
	font-size: 15px;
	line-height: 1.4;
	color: var(--r-prw-review-title-color);
	margin-top: .5rem;
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-word;
}

.r_pw_r_g_container--review_content_container {
	margin-top: .5rem;
	display: flex;
	align-items: start;
	width: 100%;
	gap: .5rem;
}

.r_pw_r_g_container--reply-container {
	padding: .75rem;
}

.r_pw_r_container--reply--reviewer_name {
	font-weight: 700;
	color: var(--r-prw-review-replies-color);
	font-style: inherit;
	font-size: 14px;
}

.r_pw_r_container--reply--content {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.r_pw_r_g_container--product_container {
	display: flex;
	flex-direction: row;
	gap: .5rem;
	align-items: center;
	padding: .75rem;
}

.r_pw_r_g_container--review-details--image {
	border-top-left-radius: var(--r-prw-review-border-radius);
	border-top-right-radius: var(--r-prw-review-border-radius);
}

.r_pw_r_g_container--review-info {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.r_pw_r_g_container--review-date {
	color: var(--r-prw-review-color);
	font-size: 13px;
}

.r_pw_r_g_container--review-content {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 8;
	overflow: hidden;
}

.r_pw_r_g_container--reply-container {
	padding: .75rem;
}

.r_pw_r_container--reply--content {
	font-size: 14px;
}

.r_pw_r_g_container--product_container {
	display: flex;
	flex-direction: row;
	gap: .5rem;
	align-items: center;
	padding: .75rem;
	flex-wrap: wrap;
}

.r_pw_r_g_container--review_details-review_verfied {
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 18px;
	white-space: nowrap;
}

.r_pw_r_g_container--product_container--product_name a {
	color: inherit;
	text-decoration: none;
}

.r_pw_r_g_container--product_container--product_name a:hover {
	text-decoration: none;
}

.r_pw_r_g_container--product_container--product_name a:visited {
	color: inherit;
}

.r_pw_r_l_container {
	display: flex;
	flex-direction: column;
}

.r_pw_r_l_preview_container {
	width: calc(100% - 2rem);
	display: flex;
	flex-direction: column;
	gap: .5rem;
	margin-block: .5rem;
	margin-inline: 1rem;
}

.r_pw_r_l_container-review-info {
	display: grid;
	grid-template-columns: 2fr 1fr;
}

.r_pw_r_l_container-review-info.only-text {
	grid-template-columns: 1fr;
}

.r_pw_r_container>div:not(:first-child) {
	border-top: .1px solid var(--r-prw-review-separator-color, "#ccc");
}

.r_pw_r_l_container--review_content_img {
	max-width: 100%;
	height: auto;
}

.r_pw_r_l_container {
	display: flex;
	flex-direction: column;
}

.r_pw_r_l_container--review_details {
	display: flex;
	flex-direction: column;
	justify-content: start;
	gap: .75rem;
	padding: .75rem;
	padding-bottom: 0;
}

.r_pw_r_l_container--review_details-overview {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.r_pw_r_l_container--review_details-overview-header {
	display: flex;
	flex-direction: row;
	gap: .5rem;
	align-items: center;
	font-size: 16px;
	font-weight: bold;
}

.r_pw_r_l_container--review_details-review_title {
	padding: .25rem;
}

.r_pw_r_l_container--review_details-reviewer_name {
	font-weight: bold;
}

.r_pw_r_l_container--review_details--rating_details {
	display: flex;
	flex-direction: column;
}

.r_pw_r_l_container--review_details--review-date {
	font-size: 13px;
	color: var(--r-prw-review-color);
}

.r_pw_r_l_container--review_details--rating_details_icons {
	display: flex;
	justify-content: start;
	gap: .5rem;
}

.r_pw_r_l_container--review_title {
	font-weight: 600;
	font-size: 15px;
	line-height: 1.4;
	color: var(--r-prw-review-title-color);
	margin-top: .5rem;
}

.r_pw_r_l_container--review_content_container {
	border: none !important;
	margin-top: 1.25rem;
	display: flex;
	justify-content: space-between;
	padding: .75rem;
	padding-top: 0;
}

.r_pw_r_l_container--review_details-review_verfied {
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 18px;
	white-space: nowrap;
}

.r_pw_r_l_container--review_content_img {
	border-radius: 10px;
	object-fit: cover;
	max-height: 215px;
	height: 100%;
}

.r_pw_r_l_container--reply_container {
	padding: .75rem;
}

.r_pw_r_l_container--reply_content_img_container {
	display: flex;
	flex-direction: row;
}

.r_pw_r_l-product_container {
	display: flex;
	gap: .75rem;
	padding: .75rem;
}

.r_pw_r_l-product_container-img {
	border-radius: 5px;
}

.r_pw_r_l-container--product_container--product_name a {
	color: inherit;
	text-decoration: none;
}

.r_pw_r_l-container--product_container--product_name a:hover {
	text-decoration: none;
}

.r_pw_r_l-container--product_container--product_name a:visited {
	color: inherit;
}

@media (max-width: 768px) {
	.r_pw_r_l_container-review-info {
		grid-template-columns: 1fr;
	}
}

.r_pw_r_m_all_reviews_container {
	width: calc(100% - 2rem);
	position: relative;
	margin: 0 1rem;
	transition: all 1s ease-in;
}

.r_pw_r_m_container {
	width: calc(50% - 7.5px);
	margin-bottom: 1rem;
}

.r_pw_r_m_review-details-container {
	display: flex;
	flex-direction: row;
}

.r_pw_r_m_review-details {
	display: flex;
	flex-direction: row;
	gap: .5rem;
	padding: 1rem;
}

.r_pw_r_m_review-details--images-container {
	display: flex;
}

.r_pw_r_m_container--review_details-overview-header {
	font-weight: 700;
}

.r_pw_r_m_review-details--images-container img {
	min-width: 100%;
	height: auto;
}

.r_pw_r_m_review-details--review-icons {
	display: flex;
	flex-direction: row;
	justify-content: start;
	gap: .5rem;
	margin-top: .5rem;
}

.r_pw_r_m_container--review_title {
	font-weight: 600;
	font-size: 15px;
	line-height: 1.4;
	color: var(--r-prw-review-title-color);
	margin-top: .5rem;
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-word;
}

.r_pw_r_m_container--review-date {
	color: var(--r-prw-review-color);
	font-size: 13px;
}

.r_pw_r_m_review-details--reply-container {
	padding: .75rem;
}

.r_pw_r_m_review-details--product_container {
	display: flex;
	flex-direction: row;
	gap: .5rem;
	align-items: center;
	padding: .75rem;
}

.r_pw_r_m_review-details--product_img_container {
	padding: .5rem;
}

.r_pw_r_m_container--review_details-review_verfied {
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}

.r_pw_r_m_review-details--product_container .r_pw_r_container_text a {
	color: inherit;
	text-decoration: none;
}

.r_pw_r_m_review-details--product_container .r_pw_r_container_text a:hover {
	text-decoration: none;
}

.r_pw_r_m_review-details--product_container .r_pw_r_container_text a:visited {
	color: inherit;
}

.r_pw_h_rd_detail {
	padding: 0 .25rem;
	cursor: pointer;
}

.r_pw_header_button {
	padding: .5rem;
	border-radius: 5px;
	border-style: solid;
	background-color: var(--r-prw-btn-bg-color);
	color: var(--r-prw-btn-color);
	border-color: var(--r-prw-btn-border-color);
	cursor: pointer;
}

.r_pw_header_button {
	font-family: inherit;
}

.r_pw_write_a_review_btn {
	width: 100%;
	border-radius: .7rem;
	font-size: inherit;
	padding: 12px 24px;
}

.r_pw_ask_a_question_btn {
	width: 100%;
	border-radius: .7rem;
	font-size: inherit;
	padding: 12px 24px;
	color: var(--r-qdw-button-text-color);
	background-color: var(--r-qdw-button-bg-color);
	border: 1px solid var(--r-qdw-button-border-color);
}

.r_pw_ask_a_question_btn:hover {
	color: var(--r-qdw-button-hover-text-color);
	background-color: var(--r-qdw-button-hover-bg-color);
}

.r_pw_header_rating_container {
	color: var(--r-prw-header-text-icon-color);
	position: relative;
}

.r_pw_h_container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: start;
	font-family: inherit;
}

.r_pw_main_header_container {
	padding: 1.5rem 0;
	margin: 0;
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
}

@media (max-width: 480px) {
	.r_pw_main_header_container {
		padding: 20px 0;
	}
}

.r_pw_main_header_content {
	margin: 0 auto;
	text-align: center;
}

@media (max-width: 768px) {
	.r_pw_main_header_content {
		max-width: 100%;
	}
}

.r_pw_main_header_title {
	font-size: 28px;
	font-weight: 700;
	color: var(--r-prw-header-text-icon-color);
	margin: 0 0 16px 0;
	line-height: 1.2;
	letter-spacing: -.02em;
}

@media (max-width: 768px) {
	.r_pw_main_header_title {
		font-size: 24px;
		margin: 0 0 12px 0;
	}
}

@media (max-width: 480px) {
	.r_pw_main_header_title {
		font-size: 20px;
		margin: 0 0 10px 0;
		line-height: 1.3;
	}
}

.r_pw_main_header_description {
	font-size: 16px;
	font-weight: 400;
	color: var(--r-prw-header-text-description-color);
	line-height: 1.9;
	margin: 0;
	text-align: center;
	width: 100%;
}

@media (max-width: 768px) {
	.r_pw_main_header_description {
		font-size: 15px;
		line-height: 1.5;
	}
}

@media (max-width: 480px) {
	.r_pw_main_header_description {
		font-size: 14px;
		line-height: 1.4;
	}
}

@media (max-width: 480px) {
	.r_pw_main_header_title {
		word-break: break-word;
		hyphens: auto;
	}
	
	.r_pw_main_header_description {
		word-spacing: .1em;
	}
}

.r_pw_ch_container {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: start;
	margin: 0 .5rem;
	padding: .25rem;
	gap: 1rem;
	width: 300px;
}

.r_pw_ch_rating_container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: .5rem;
	color: var(--r-prw-header-text-icon-color);
}

.r_pw_ch_rating {
	display: flex;
	color: var(--r-prw-header-text-icon-color);
	justify-content: center;
	width: 100%;
	align-items: start;
	font-size: 15px;
	flex-direction: column;
	gap: 1.2rem;
	max-height: 260px;
	max-width: 100%;
}

.r_pw_ch_rating>* {
	width: 100%;
}

.r_pw_ch_rd_detail {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.r_pw_ch_rd_detail_progress_bar {
	width: 100px;
	height: 5px;
}

.r_pw_ch_actions_sorting_container_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	color: var(--r-prw-progress-fill-color);
	background-color: var(--r-prw-progress-bg-color);
	border-radius: 8px;
}

.r_pw_ch_rating_container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: .5rem;
}

.r_pw_separator {
	border: none;
	border-top: 2px solid var(--r-prw-btn-border-color);
	width: 100%;
}

.r_pw_ch_rd_container {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	width: 100%;
}

.r_pw_ch_rd_detail_icon {
	display: flex;
	gap: .5rem;
}

.r_pw_ch_rd_detail_progress_bar {
	height: 10px;
	flex: 1;
}

.r_pw_ch_rd_detail_progress_bar_count {
	min-width: 8px;
}

.r_pw_ch_actions {
	position: relative;
	display: flex;
	flex-direction: row;
	gap: 12px;
	width: 100%;
	align-items: center;
}

.r_pw_ch_actions_new_review_btn_container {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	font-size: 16px;
	max-height: 100%;
	max-width: 100%;
}

.r_pw_ch-average_rating {
	font-size: 28px;
	font-weight: 700;
}

.r_pw_h_ch-average_rating_info {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.r_pw_h_ch-average_rating_info--stars>* {
	padding-right: .4rem;
}

.r_pw_sorting_icon {
	max-width: 50px;
	max-height: 50px;
}

.r_pw_mh_container {
	display: flex;
	align-items: center;
	flex-direction: var(--r-prw-layout-direction, column);
	justify-content: space-between;
	padding: 1.25rem;
	gap: 1rem;
}

.r_pw_mh_filter_icon_closed {
	rotate: 270deg;
}

.r_pw_mh_filter_icon_opened {
	rotate: 90deg;
}

.r_pw_mh_container {
	display: flex;
	align-items: center;
	flex-direction: var(--r-prw-layout-direction, column);
	justify-content: space-between;
	padding: 1.25rem;
	gap: 1rem;
}

.r_pw_mh_rating {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 28px;
	font-weight: 700;
}

.farp-caret-left {
	color: var(--r-prw-header-text-icon-color);
}

.r_pw_mh_rating_container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .5rem;
	min-width: 275px;
}

.r_pw_mh_rating_details {
	display: flex;
	gap: .75rem;
}

.r_pw_mh_overall_reviews {
	display: flex;
	gap: .75rem;
	align-items: center;
	position: relative;
}

.r_pw_mh_rd_container {
	transition: all 1s ease-in;
	position: absolute;
	top: 1.5rem;
	z-index: 100;
	background-color: #fff;
	padding: .5rem;
	display: flex;
	gap: .5rem;
	box-shadow: 2.2px 4.3px 4.3px rgba(0, 0, 0, .43);
}

.r_pw_mh_rd_detail {
	display: flex;
	flex-direction: row;
	gap: .5rem;
	align-items: center;
	border-radius: 2px;
	padding: 0 .25rem;
	cursor: pointer;
}

.r_pw_mh_rd_detail:hover {
	background-color: var(--r-prw-btn-bg-color);
}

.r_pw_mh_rd_detail_icon {
	display: flex;
	gap: .75rem;
}

.r_pw_mh_rd_detail_progress_bar {
	width: 100px;
	height: 5px;
}

.r_pw_mh_actions_container {
	display: flex;
	gap: .5rem;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	position: relative;
}

.r_pw_mh_actions_container--btn_container {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1 1 200px;
	max-width: 100%;
}

.r_pw_mh_actions_container--sorting_container {
	position: relative;
	flex-shrink: 0;
}

.r_pw_mh_actions_container--sorting_container-btn {
	padding: .5rem;
}

.r_pw_mh_actions_container--btn_container-btn {
	max-width: 100%;
	max-height: 42px;
}

.r_pw_mh_actions_sorting_container_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	color: var(--r-prw-progress-fill-color);
	background-color: var(--r-prw-progress-bg-color);
	border-radius: 8px;
}

.r_pw_mh_progress_bar {
	display: flex;
	font-size: 15px;
	flex-direction: column-reverse;
	gap: .8rem;
	max-height: 260px;
	max-width: 260px;
}

.r_pw_eh_container {
	display: flex;
	flex-direction: var(--r-prw-container-layout-direction, column);
	justify-content: space-between;
	margin: 0 .5rem;
	padding: .25rem;
	gap: 1rem;
}

.r_pw_eh_rating_container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: .5rem;
}

.r_pw_eh_rating_overview {
	display: flex;
	justify-content: center;
	gap: .5rem;
	align-items: center;
}

.r_pw_eh_rating_details_container {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	align-items: center;
}

.r_pw_eh_rating_details {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	align-items: center;
}

.r_pw_eh_rating_details--icons-info {
	display: flex;
	gap: .75rem;
}

.r_pw_eh_rating_details--progress_bar_container {
	width: 100px;
	height: 10px;
}

.r_pw_eh_actions_container {
	display: flex;
	flex-direction: row;
	gap: .5rem;
	align-items: center;
	justify-content: center;
}

.r_pw_eh_actions_container--btn_container-btn {
	padding: .5rem;
}

.r_pw_eh_actions_container--sorting_container {
	position: relative;
}

.r_pw_eh_actions_container--sorting_container-btn {
	padding: .5rem;
}

.r_pw_hh_container {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 1.25rem;
	align-items: center;
}

.r_pw_hh_summary {
	display: flex;
	flex-direction: column;
	gap: .35rem;
	color: var(--r-prw-header-text-icon-color);
}

.r_pw_hh_summary--stars>* {
	padding-right: .35rem;
}

.r_pw_hh_bars {
	display: flex;
	flex-direction: column !important;
	gap: .75rem;
	min-width: 260px;
}

.r_pw_hh_rd_detail {
	display: flex;
	align-items: center;
	gap: .75rem;
}

.r_pw_hh_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
}

.r_pw_hh_v_divider {
	display: block;
	width: 1px;
	background-color: var(--r-prw-review-separator-color, #e5e7eb);
	align-self: stretch;
	opacity: 1;
	margin: 0 16px;
}

.r_pw_hh_summary {
	min-width: 300px;
	color: var(--r-prw-header-text-icon-color);
}

.r_pw_hh_summary--row {
	display: flex;
	align-items: center;
	gap: .75rem;
}

.r_pw_hh_summary--stars>* {
	padding-right: .35rem;
}

.r_pw_hh_summary--avg {
	font-size: 20px;
	font-weight: 700;
}

.r_pw_hh_summary--count {
	margin-top: .25rem;
}

.r_pw_hh_bars {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	max-width: 520px;
	width: 100%;
}

.r_pw_hh_rd_detail {
	display: flex;
	align-items: center;
	gap: .75rem;
}

.r_pw_hh_rd_detail_icon {
	display: flex;
	gap: .15rem;
	min-width: 96px;
}

.r_pw_hh_rd_detail_progress_bar {
	flex: 1;
	height: 10px;
}

.r_pw_hh_rd_detail_progress_bar_count {
	text-align: right;
	min-width: 18px;
	color: var(--r-prw-header-text-icon-color);
}

.r_pw_hh_actions_btn {
	max-width: 300px;
	min-width: 240px;
	padding: 14px 28px;
	border-radius: 14px;
}

.r_pw_hh_rd_detail_icon {
	display: flex;
	gap: .35rem;
}

.r_pw_hh_rd_detail_progress_bar {
	flex: 1;
	height: 10px;
}

.r_pw_hh_rd_detail_progress_bar_count {
	min-width: 10px;
	text-align: right;
}

.r_pw_hh_actions {
	display: flex;
	flex-direction: row;
	gap: 12px;
	align-items: center;
	position: relative;
}

.r_pw_hh_actions_buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.r_pw_hh_actions_write_review {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.r_pw_hh_actions_ask_question {
	width: 100%;
}

.r_pw_hh_actions_btn {
	max-width: 320px;
	width: 100%;
}

.r_pw_ch_actions_sorting_container {
	position: relative;
	display: flex;
	align-items: center;
}

.r_pw_ch_actions_sorting_container_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	color: var(--r-prw-progress-fill-color);
	background-color: var(--r-prw-progress-bg-color);
	border-radius: 8px;
}

.r_pw_ch_actions_sorting_container_btn:hover {
	color: var(--r-prw-progress-bg-color);
	background-color: var(--r-prw-progress-fill-color);
}

.r_pw_h_popover-container {
	position: relative;
	display: inline-block;
}

.r_pw_h_popover-container li {
	cursor: pointer;
}

.r_pw_h_popover-trigger {
	color: #fff;
	border: none;
	cursor: pointer;
	border-radius: 4px;
}

.r_pw_h_popover-container {
	position: relative;
	display: inline-block;
}

.r_pw_h_popover-content {
	color: var(--r-prw-review-color);
	top: 100%;
	margin-top: 2px;
	width: 100%;
	height: max-content;
	white-space: nowrap;
	transition: all .3s ease-in-out;
}

.r_pw_mh_rd_container .r_pw_h_popover-content {
	position: relative;
}

.r_pw_h_sorting_list-container {
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 255, .2);
}

.r_pw_ch_container {
	position: relative;
}

.r_pw_ch_container .r_pw_h_popover-content {
	position: absolute;
	margin-top: 0;
	z-index: 9999999;
	background: #fff;
	top: 50px;
}

.r_pw_hh_container {
	position: relative;
}

.r_pw_hh_container .r_pw_h_popover-content {
	position: absolute;
	margin-top: 0;
	z-index: 9999999;
	background: #fff;
	top: 50px;
	right: 0;
	min-width: 200px;
}

.r_pw_hh_actions .r_pw_h_popover-content {
	position: absolute;
	margin-top: 0;
	z-index: 9999999;
	background: #fff;
	top: 50px;
	right: 0;
	min-width: 200px;
}

.r_pw_h_popover-content li:hover {
	color: var(--r-prw-review-color);
}

.r_pw_h_rd_detail.active {
	background-color: var(--r-prw-review-bg-color);
}

.r_pw_h_popover-content * {
	list-style: none;
	padding: 0;
}

.r_pw_h_popover-content ul {
	margin: 0;
}

.r_pw_h_popover-content li {
	list-style: none;
	padding: .6rem 1rem;
	cursor: pointer;
}

.r_pw_h_popover-content li:not(.r_pw_h_popover-sort-by-text):hover {
	background-color: var(--r-prw-progress-bg-color);
	border-radius: .5rem;
}

.r_pw_h_popover-sort-by-text {
	font-size: 18px;
	font-weight: 700;
	padding: 1rem;
}

.r_pw_sort_separator {
	border: none;
	margin: auto;
	text-align: center;
	border-top: 2px solid var(--r-prw-btn-border-color);
	width: 98%;
}

.r_pw_sort_ul {
	display: flex;
	flex-direction: column;
	padding: 0rem .6rem .6rem;
	gap: .3rem;
}

.r_pw_h_sorting-link.active {
	background-color: var(--r-prw-progress-bg-color);
	border-radius: .5rem;
	position: relative;
	padding-right: 2rem;
}

.r_pw_h_sorting-link .r_pw_h_tick {
	position: absolute;
	right: 1rem;
	top: 70%;
	transform: translateY(-50%);
	font-size: 1.2rem;
	color: var(--r-prw-progress-fill-color);
	display: none;
}

.r_pw_h_sorting-link.active .r_pw_h_tick {
	display: inline-block;
}

.r_pw_progress_bar_bg {
	background-color: var(--r-prw-progress-bg-color);
	height: 100%;
	width: 100%;
	border-radius: 50px;
}

.r_pw_progress_bar_fill {
	background-color: var(--r-prw-progress-fill-color);
	height: 100%;
	width: 50%;
	border-radius: inherit;
	text-align: right;
}

.r_pw_progress_bar_label {
	padding: 5px;
	color: #fff;
	font-weight: bold;
}

.r_pw_progress_bar_bg {
	background-color: var(--r-prw-progress-bg-color);
	height: 100%;
	width: 100%;
	border-radius: 50px;
}

.r_pw_progress_bar_fill {
	background-color: var(--r-prw-progress-fill-color);
	height: 100%;
	width: 50%;
	border-radius: inherit;
	text-align: right;
}

.r_pw_progress_bar_label {
	padding: 5px;
	color: #fff;
	font-weight: bold;
}

.r_pw_ratings-row-progress-bar-details {
	flex-direction: column-reverse;
	width: 100%;
	gap: 14px;
}

.r_pw_load-more--container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.r_w_pagination-load-more {
	padding: .7rem 2rem;
	background-color: var(--r-prw-btn-bg-color);
	color: var(--r-prw-btn-color);
	border: 1px solid var(--r-prw-btn-border-color);
	border-radius: 5px;
	cursor: pointer;
	font-family: inherit;
}

.r_w_pagination-load-more:hover {
	color: var(--r-prw-btn-hover-text-color);
	background-color: var(--r-prw-btn-bg-hover-color);
}

.r_pw_q_load-more--container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.r_pw_q_pagination-load-more {
	padding: .7rem 2rem;
	background-color: var(--r-qdw-button-bg-color);
	color: var(--r-qdw-button-text-color);
	border: 1px solid var(--r-qdw-button-border-color);
	border-radius: 5px;
	cursor: pointer;
	font-family: inherit;
}

.r_pw_q_pagination-load-more:hover {
	color: var(--r-qdw-button-hover-text-color);
	background-color: var(--r-qdw-button-hover-bg-color);
}

.r_pw_sr_load-more--container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.r_pw_sr_pagination-load-more {
	padding: .7rem 2rem;
	background-color: var(--r-prw-btn-bg-color);
	color: var(--r-prw-btn-color);
	border: 1px solid var(--r-prw-btn-border-color);
	border-radius: 5px;
	cursor: pointer;
	font-family: inherit;
	transition: all .3s ease;
}

.r_pw_sr_pagination-load-more:hover {
	color: var(--r-prw-btn-hover-text-color);
	background-color: var(--r-prw-btn-bg-hover-color);
}

.r_pw_sr_pagination-load-more:disabled, .r_pw_sr_pagination-load-more.r_pw_sr_pagination-load-more-loading {
	opacity: .6;
	cursor: not-allowed;
	pointer-events: none;
}

.r_pw_sr_pagination-load-more-loading::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 8px;
	border: 2px solid currentColor;
	border-top-color: rgba(0, 0, 0, 0);
	border-radius: 50%;
	animation: spin .8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.r_pw_r_container {
	box-shadow: var(--r-prw-review-box-shadow);
	border-radius: var(--r-prw-review-border-radius);
	color: var(--r-prw-review-color);
	background-color: var(--r-prw-review-bg-color);
	cursor: pointer;
	overflow: hidden;
}

.r_pw_r_review-content-wrapper {
	position: relative;
}

.r_pw_r_review-text-container {
	max-height: max-content;
	position: relative;
	overflow: hidden;
}

.r_pw_r_review-text-container p {
	line-height: 22px;
	margin: 0;
}

.r_pw_r_container_text {
	font-size: 15px;
}

.r_pw_r_container_icon_gap {
	gap: 4px;
}

.r_pw_r_review-text {
	margin: 0;
	line-height: 1.5;
	font-size: 14px;
	color: #333;
	height: auto;
}

.r_pw_r_review-text.truncated {
	height: auto;
}

.r_pw_r_read-more-toggle {
	background: none;
	border: none;
	color: var(--r-prw-btn-color);
	cursor: pointer;
	padding: 0;
	font-size: 14px;
	margin-top: 5px;
	display: none;
}

.r_pw_r_read-more-toggle:hover {
	text-decoration: underline;
	color: #c45500;
}

.r_pw_r_image_container {
	display: flex;
	justify-content: center;
	margin: 1rem 0;
}

.r_pw_r_container .r_pw_r_review-text {
	color: inherit;
	letter-spacing: .5px;
}

.r_pw_r_container:hover {
	background-color: var(--r-prw-review-bg-hover-color);
	border: .1px solid var(--r-prw-btn-bg-color);
}

.r_pw_r_reply_container {
	color: var(--r-prw-review-replies-color);
	background-color: var(--r-prw-review-replies-bg-color);
	letter-spacing: .5px;
	font-style: italic;
}

.r_pw_r--product_container img {
	--r-prw-review-product-img-size: 50px;
	--r-prw-review-product-img-object-fit: cover;
	width: var(--r-prw-review-product-img-size);
	height: var(--r-prw-review-product-img-size);
	object-fit: var(--r-prw-review-product-img-object-fit);
	border-radius: 5px;
}

.r_pw_r_l-product_container {
	display: flex;
	align-items: center;
	gap: .5rem;
}

.r_pw_reviewer_name_container {
	display: flex;
	flex-direction: row;
	gap: .5rem;
	font-size: 18px;
}

.r_pw_h_ch-average_rating_info--count {
	color: var(--r-prw-header-text-icon-color);
	font-size: 15px;
}

.r_pw_r_read-more-toggle {
	color: var(--r-prw-btn-bg-color);
	text-decoration: underline;
}

.r_pw_r_read-more-toggle:hover {
	color: var(--r-prw-btn-bg-color);
	text-decoration: underline;
}

.r_pw_r--review-is-verified {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: .2rem;
	color: var(--r-prw-review-verified-color);
}

.r_pw_tabs {
	display: flex;
	gap: 24px;
	align-items: flex-end;
	padding: 10px 1rem;
}

.r_pw_tabs_container {
	width: 100%;
	margin: 0 0 12px 0;
}

.r_pw_tab {
	background: rgba(0, 0, 0, 0);
	border: none;
	color: var(--r-prw-header-text-icon-color);
	cursor: pointer;
	padding: 6px 0;
	font-size: 15px;
	font-weight: 600;
}

.r_pw_tab:focus {
	outline: none;
}

.r_pw_tab_label {
	position: relative;
	display: inline-block;
	padding-bottom: 6px;
}

.r_pw_tab_underline {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: rgba(0, 0, 0, 0);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease, background-color .25s ease;
}

.r_pw_tab--active .r_pw_tab_underline {
	background: var(--r-prw-btn-bg-color);
	transform: scaleX(1);
}

.r_pw_qna_list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.r_pw_qna_card {
	border-radius: 8px;
	color: var(--r-qdw-layout-text-color);
	background-color: var(--r-qdw-layout-bg-color);
	overflow: hidden;
	transition: background-color .15s ease, border-color .15s ease;
	border: .1px solid rgba(0, 0, 0, 0);
	padding: 16px;
	margin-bottom: 5px;
}

.r_pw_tab_content--questions {
	position: relative;
	width: 100%;
}

.r_pw_yuko-question-loader {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
}

.r_pw_empty_question--btn {
	all: unset;
	text-align: center;
	cursor: pointer;
	border-radius: 8px;
	border: 1px solid var(--r-qdw-button-border-color);
	padding: .5rem 1.5rem;
	background-color: var(--r-qdw-button-bg-color);
	color: var(--r-qdw-button-text-color);
	height: 30px;
	width: 200px;
}

.r_pw_empty_question--btn:hover {
	color: var(--r-qdw-button-hover-text-color);
	background-color: var(--r-qdw-button-hover-bg-color);
}

.r_pw_qna_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.r_pw_qna_profile {
	display: flex;
	align-items: center;
	gap: 12px;
}

.r_pw_header_ask_a_question_btn {
	width: 250px;
	border-radius: .7rem;
	font-size: inherit;
	padding: 12px 24px;
	color: var(--r-qdw-button-text-color);
	background-color: var(--r-qdw-button-bg-color);
	border: 1px solid var(--r-qdw-button-border-color);
	min-height: max-content;
}

.r_qdw_question_button_header {
	display: flex;
	justify-content: center;
	padding: 20px 0;
}

.r_pw_qna_avatar {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background-color: var(--r-qdw-reply-bg-color);
	display: grid;
	place-items: center;
	color: var(--r-prw-header-text-icon-color);
}

.r_pw_qna_name {
	font-weight: 700;
	color: var(--r-qdw-layout-text-color);
}

.r_pw_qna_date {
	color: var(--r-qdw-date-color);
	font-size: 12px;
}

.r_pw_qna_question {
	color: var(--r-qdw-layout-text-color);
	font-size: 16px;
	line-height: 1.5;
}

.r_pw_qna_reply {
	margin-top: 12px;
	background: var(--r-qdw-reply-bg-color);
	border-radius: 8px;
	padding: 12px;
}

.r_pw_qna_reply_title {
	color: var(--r-qdw-reply-title-color);
}

.r_pw_qna_reply_content {
	color: var(--r-qdw-reply-text-color);
}

.r_pw_qna_card:hover {
	background-color: var(--r-qdw-layout-hover-bg-color);
	border: .1px solid var(--r-qdw-layout-border-color);
}

.r_pw_qna_reply strong {
	display: inline-block;
	margin-bottom: 6px;
}

.r_pw_qna_reply_date {
	margin-bottom: 7px;
}

.r_pw_powered_by, .r_rfw_powered_by, .r_qna_powered_by {
	font-size: 14px;
	text-align: end;
	padding: 5px 0;
	color: #666;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	bottom: 0;
}

.r_pw_powered_by a, .r_rfw_powered_by a, .r_qna_powered_by a {
	display: flex;
	align-items: center;
	text-decoration: none;
	font-weight: 500;
	color: inherit;
}

.r_pw_powered_by img, .r_rfw_powered_by img, .r_qna_powered_by img {
	height: 30px;
	width: 30px;
}

.r_pw_powered_by p, .r_rfw_powered_by p, .r_qna_powered_by p {
	display: inline-block;
	background-color: #000;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	padding: 3px 8px;
	border-radius: 999px;
	margin: 0;
}

@media screen and (max-width: 480px) {
	.r_pw_powered_by, .r_rfw_powered_by, .r_qna_powered_by {
		font-size: 11px;
	}
	
	.r_pw_powered_by img, .r_rfw_powered_by img, .r_qna_powered_by img {
		height: 20px;
		width: 20px;
	}
	
	.r_pw_powered_by p, .r_rfw_powered_by p, .r_qna_powered_by p {
		font-size: 11px;
	}
}

@media screen and (max-width: 1200px) {
	.r_pw_r_g_container {
		width: 31%;
	}
	
	.r_pw_r_m_all_reviews_container {
		margin: 0 auto;
	}
}

@media screen and (max-width: 992px) {
	.r_pw_hh_container {
		flex-direction: column;
		align-items: stretch;
	}
	
	.r_pw_hh_bars {
		max-width: 100%;
		flex-direction: column;
	}
	
	.r_pw_hh_actions {
		flex: unset;
	}
	
	.r_pw_hh_actions_btn {
		width: 100%;
	}
	
	.r_pw_hh_v_divider {
		display: block;
		height: 1px;
		width: 100%;
		margin: 12px 0;
	}
}

@media screen and (max-width: 992px) {
	.r_pw_hh_container {
		grid-template-columns: 1fr;
		align-items: stretch;
	}
	
	.r_pw_hh_bars {
		min-width: 100%;
	}
	
	.r_pw_hh_actions_btn {
		width: 100%;
	}
}

@media screen and (max-width: 992px) {
	.r_pw_h_container {
		display: flex;
		justify-content: center;
	}
	
	.wd_preview_content {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
	
	.r_pw_r_g_container {
		width: 31%;
	}
	
	.wd_preview_content {
		flex-direction: column;
	}
	
	.r_pw_eh_container {
		flex-direction: column;
	}
	
	.r_pw_r_m_all_reviews_container {
		margin: 0 auto;
	}
	
	.r_pw_g_all_reviews_container {
		margin: 0 auto;
	}
	
	.r_pw_r_m_all_reviews_container {
		margin: 0 auto;
	}
}

@media screen and (max-width: 556px) {
	.r_pw_r_g_container {
		width: 48%;
	}
}

@media screen and (max-width: 400px) {
	.r_pw_r_g_container {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	.r_pw_r_m_container {
		width: 98%;
	}
}

@media screen and (max-width: 600px) {
	.r_pw_ch_container {
		width: 100%;
	}
}

.r_pw_disabled {
	pointer-events: none;
	opacity: .5;
	cursor: not-allowed;
}

.r_pw_hide {
	display: none;
}

.r_pw_responsive_picture {
	width: 100%;
	padding: 0 !important;
	margin: 0;
}

.r_pw_responsive_image {
	width: 100%;
	object-fit: cover;
}

.shrink-animation {
	transform: scale(0);
	transition: transform .5s ease-out;
}

.shrink-animation.shrinked-in {
	transform: scale(1);
}

.r_pw_floating_powered_by {
	position: sticky;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	padding: 10px 15px;
	margin: 10px;
	z-index: 100;
}

.r_fpw_floating_product_close_icon {
	position: absolute;
	top: .4rem;
	left: .4rem;
	font-size: 16px;
	color: var(--r-prw-btn-color);
	cursor: pointer;
	z-index: 10;
	transition: background-color .2s ease, color .2s ease, opacity .2s ease;
	border-radius: 50%;
	background-color: var(--r-prw-btn-bg-color);
	border: 1.5px solid var(--r-prw-btn-border-color);
	font-weight: bold;
	padding: .4rem;
	display: flex;
	clip-path: circle(50%);
}

.r_fpw-close_icon {
	color: var(--r-prw-btn-color);
}

.r_pw_yuko-loader {
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: hsla(0, 0%, 100%, .6);
	z-index: 9999;
}

.r_pw_yuko-loader-fixed {
	height: 250px;
	position: relative;
}

.r_pw_yuko-loader-spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid var(--r-prw-progress-fill-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
}

.r_pw_yuko-store-review-loader {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
