/* popup */
.woocommerce_review_rating-overlay {
	top:0;
	left:0;
	height: 100vh;
	width: 100vw;
	position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 99999999;
	background-color: rgba(20, 20, 20, 0.80);
}
.woocommerce_review_rating-popup {
	height: auto;
	width: 56rem;
	max-width:90%;
	max-height: 90%;
	overflow-y: auto;
	position:relative;
	box-shadow: 0 0 20px rgb(0 0 0 / 80%);
	background-color: var(--Background-Primary);
	border: 1px solid var(--Stroke-Primary);
	color: #fff;
}
@supports not selector(::-webkit-scrollbar) {
  .woocommerce_review_rating-popup {
      scrollbar-width: thin;
      scrollbar-color: var(--Background-Primary) var(--Stroke-Primary);
  }
}
.woocommerce_review_rating-popup::-webkit-scrollbar {
    width: 3px;
}
.woocommerce_review_rating-popup::-webkit-scrollbar-track {
    border-radius: 2px;
    background-color: var(--Stroke-Primary);
}
.woocommerce_review_rating-popup::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: var(--Background-Primary);
}


.woocommerce_review_rating-close {
	position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
	width: 2.75rem;
	height: 2.75rem;
    /* padding: .825rem; */
	display: flex;
	align-items: center;
	justify-content: center;
    line-height: 1;
	z-index: 1;
	border: 1px solid var(--Stroke-Primary);
	background: var(--Background-Secondary);
	transition: background-color .5s
}
.woocommerce_review_rating-close:hover {
	background: var(--Background-Primary);
}
.woocommerce_review_rating-close svg {
	fill:#fff;
	width: .875rem;
    height: .875rem;
}
