:root {
	--post-color: #2e5ac4;
	--post-color-light: rgba(46, 90, 196, 0.4);
	--post-color-dark: rgba(46, 90, 196, 0.9);
	--post-color-lighter: rgba(46, 90, 196, 0.2);
	--post-color-text: rgba(46, 90, 196, 0.8);
	--post-color-icon: rgba(46, 90, 196, 0.6);
}

.unit-rating {
	width: 8.75rem;
	height: 1.75rem;
	font-size: 1px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23CACEC9' d='M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z'/%3E%3C/svg%3E");
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 1;
}

.unit-rating,.unit-rating li a:hover,.unit-rating li.current-rating {
	background-size: auto 100%;
}

.unit-rating li {
	text-indent: -9000px;
	padding: 0;
	margin: 0;
	float: left;
	width: 20%;
	height: 100%;
}

.unit-rating li a {
	width: 20%;
	height: 100%;
	text-decoration: none!important;
	text-indent: -9000px;
	z-index: 17;
	position: absolute;
}
/* 
.unit-rating li a:hover {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232e5ac4' d='M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z'/%3E%3C/svg%3E");
	z-index: 2;
	left: 0;
}
 */
.unit-rating a.r1-unit {
	left: 0;
}

.unit-rating a.r1-unit:hover {
	width: 20%;
}

.unit-rating a.r2-unit {
	left: 20%;
}

.unit-rating a.r2-unit:hover {
	width: 40%;
}

.unit-rating a.r3-unit {
	left: 40%;
}

.unit-rating a.r3-unit:hover {
	width: 60%;
}

.unit-rating a.r4-unit {
	left: 60%;
}

.unit-rating a.r4-unit:hover {
	width: 80%;
}

.unit-rating a.r5-unit {
	left: 80%;
}

.unit-rating a.r5-unit:hover {
	width: 100%;
}

.unit-rating li.current-rating {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232e5ac4' d='M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z'/%3E%3C/svg%3E");
	position: absolute;
	height: 100%;
	text-indent: -9000px;
	z-index: 1;
}
/* Toast Notification Styles */
.toast-notification {
	position: fixed;
	bottom: 20px;
	right: 20px;
	min-width: 280px;
	max-width: 350px;
	background-color: #333;
	color: white;
	padding: 1rem;
	border-radius: 0.5rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	z-index: 9999;
	display: flex;
	align-items: center;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease-out, transform 0.3s ease-out;
	visibility: hidden;
}

.toast-notification.show {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.toast-icon {
	margin-right: 0.75rem;
	flex-shrink: 0;
}

.toast-icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.toast-content {
	flex-grow: 1;
}

.toast-title {
	font-weight: bold;
	margin-bottom: 0.25rem;
}

.toast-message {
	font-size: 0.875rem;
}

.toast-close {
	margin-left: 1rem;
	background: transparent;
	border: none;
	color: white;
	cursor: pointer;
	padding: 0.25rem;
	border-radius: 0.25rem;
}

.toast-close:hover {
	background-color: rgba(255,255,255,0.1);
}

.toast-notification.success {
	background-color: #22C55E;
	color: white;
}

.toast-notification.error {
	background-color: #EF4444;
	color: white;
}

.toast-notification.info {
	background-color: #3B82F6;
	color: white;
}

.toast-notification.warning {
	background-color: #F59E0B;
	color: white;
}

.dark .info-grid-container-custom {
	background-color: rgb(39, 61, 82) !important;
}

.dark .info-grid-card-custom {
	background-color: #1e293b !important;
 /* slate-800 */
	border-color: #334155 !important;
 /* slate-700 */;
}
