/**
 * Star Rating
 * @version: 4.3.0
 * @author: Paul Ryley (http://geminilabs.io)
 * @url: https://github.com/pryley/star-rating.js
 * @license: MIT
 */

:root {
	--gl-star-color: #fdd835;
	--gl-star-color-inactive: #dcdce6;
	--gl-star-empty: url("../img/star-empty.svg");
	--gl-star-full: url("../img/star-full.svg");
	--gl-star-size: 24px;
	--gl-tooltip-background: rgba(17, 17, 17, 0.9);
	--gl-tooltip-border-radius: 4px;
	--gl-tooltip-color: #fff;
	--gl-tooltip-font-size: 0.875rem;
	--gl-tooltip-font-weight: 400;
	--gl-tooltip-line-height: 1;
	--gl-tooltip-margin: 12px;
	--gl-tooltip-padding: 0.5em 1em;
}

[data-star-rating] > select {
	-webkit-clip-path: circle(1px at 0 0) !important;
	clip-path: circle(1px at 0 0) !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	height: 1px !important;
	margin: 0 !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	top: 0 !important;
	visibility: visible !important;
	white-space: nowrap !important;
	width: 1px !important;
}

[data-star-rating] > select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	pointer-events: none;
}

[data-star-rating] > select::before,
[data-star-rating] > select::after {
	display: none !important;
}

[data-star-rating].gl-star-rating--ltr > select {
	left: 0 !important;
}

[data-star-rating].gl-star-rating--rtl > select {
	right: 0 !important;
}

[data-star-rating] {
	align-items: center;
	display: flex;
	position: relative;
}

.gl-star-rating:not([data-star-rating]) .gl-star-rating--stars {
	display: none;
}

[data-star-rating] .gl-star-rating--stars {
	align-items: center;
	cursor: pointer;
	display: flex;
	position: relative;
}

[data-star-rating]
	> select:focus
	+ .gl-star-rating--stars
	span:first-child::before {
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	box-shadow: 0 0 0 3px -webkit-focus-ring-color;
	box-shadow: 0 0 0 3px Highlight;
	content: "";
	display: block;
	height: 100%;
	outline: 1px solid transparent;
	pointer-events: none;
	position: absolute;
	width: 100%;
}

[data-star-rating] select[disabled] + .gl-star-rating--stars {
	cursor: default;
}

[data-star-rating] .gl-star-rating--stars > span {
	display: flex;
	height: 24px;
	height: 24px;
	height: var(--gl-star-size);
	margin: 0;
	width: 24px;
	width: 24px;
	width: var(--gl-star-size);
}

[data-star-rating] .gl-star-rating--stars[aria-label]::before,
[data-star-rating] .gl-star-rating--stars[aria-label]::after {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	bottom: auto;
	box-sizing: border-box;
	left: 100%;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform-origin: top;
	transform: translate3d(0, -50%, 0);
	white-space: nowrap;
	z-index: 10;
}

[data-star-rating] .gl-star-rating--stars[aria-label]::before {
	background: rgba(17, 17, 17, 0.9);
	background: rgba(17, 17, 17, 0.9);
	background: var(--gl-tooltip-background);
	-webkit-clip-path: path(
		"M6 14.998c0-3-6-5.499-6-7.499S5.999 3 5.999 0L6 14.998z"
	);
	clip-path: path("M6 14.998c0-3-6-5.499-6-7.499S5.999 3 5.999 0L6 14.998z");
	content: "";
	height: 15px;
	margin: 0 0 0 6px;
	width: 6px;
}

[data-star-rating] .gl-star-rating--stars[aria-label]::after {
	background: rgba(17, 17, 17, 0.9);
	background: rgba(17, 17, 17, 0.9);
	background: var(--gl-tooltip-background);
	border-radius: 4px;
	border-radius: 4px;
	border-radius: var(--gl-tooltip-border-radius);
	color: #fff;
	color: #fff;
	color: var(--gl-tooltip-color);
	content: attr(aria-label);
	font-size: 0.875rem;
	font-size: 0.875rem;
	font-size: var(--gl-tooltip-font-size);
	font-weight: normal;
	margin-left: 12px;
	margin-left: 12px;
	margin-left: var(--gl-tooltip-margin);
	padding: 0.5em 1em;
	padding: 0.5em 1em;
	padding: var(--gl-tooltip-padding);
	text-transform: none;
}

[data-star-rating].gl-star-rating--rtl
	.gl-star-rating--stars[aria-label]::before,
[data-star-rating].gl-star-rating--rtl
	.gl-star-rating--stars[aria-label]::after {
	left: auto;
	right: 100%;
}

[data-star-rating].gl-star-rating--rtl
	.gl-star-rating--stars[aria-label]::before {
	transform: scaleX(-1) translate3d(0, -50%, 0);
	margin: 0 6px 0 0;
}

[data-star-rating].gl-star-rating--rtl
	.gl-star-rating--stars[aria-label]::after {
	margin-left: 0;
	margin-right: 12px;
	margin-right: 12px;
	margin-right: var(--gl-tooltip-margin);
}

[data-star-rating] svg {
	height: 100%;
	width: 100%;
}

[data-star-rating] .gl-star-half {
	fill: none;
	stroke: none;
}

[data-star-rating] .gl-star-full {
	fill: #dcdce6;
	fill: #dcdce6;
	fill: var(--gl-star-color-inactive);
	stroke: #dcdce6;
	stroke: #dcdce6;
	stroke: var(--gl-star-color-inactive);
	transition: fill 0.15s ease-in-out, stroke 0.15s ease-in-out;
}

[data-star-rating] .gl-active .gl-star-full {
	fill: #fdd835;
	fill: #fdd835;
	fill: var(--gl-star-color);
	stroke: #fdd835;
	stroke: #fdd835;
	stroke: var(--gl-star-color);
}

/* Compatibilty with v3 */

.gl-star-rating--stars[class*=" s"] > span {
	background-image: url("../img/star-empty.svg") !important;
	background-image: url("../img/star-empty.svg") !important;
	background-image: var(--gl-star-empty) !important;
}

.gl-star-rating--stars[class*=" s"] > span {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 90%;
}

.gl-star-rating--stars[class*=" s"] > span.gl-active,
.gl-star-rating--stars[class*=" s"] > span.gl-active.gl-selected {
	background-image: url("../img/star-full.svg") !important;
	background-image: url("../img/star-full.svg") !important;
	background-image: var(--gl-star-full) !important;
}

/* --- Static Star Style for DataTables --- */
.star-rating-static {
	display: inline-flex;
	align-items: center;
	pointer-events: none; /* disable hover/click */
}

.star-rating-static span {
	display: inline-block;
	width: 11px;
	height: 11px;
	background-image: var(--gl-star-empty);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 90%;
}

/* Bintang aktif (terisi) */
.star-rating-static span.active {
	background-image: var(--gl-star-full);
}

/* Opsi kalau mau ukurannya lebih kecil di tabel */
.star-rating-static.small span {
	width: 16px;
	height: 16px;
}
