/* Main Wizard Styles */
.bold-voting-wizard {
	background: #fff;
	transition: all 0.3s ease;
}

.bold-voting-wizard .step {
	display: none;
	animation: fadeIn 0.5s ease-out;
}

.bold-voting-wizard .step.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Custom Range Slider Styling */
.slider-wrapper {
	padding: 10px 0 20px 0;
}

.slider-container {
	position: relative;
	width: 100%;
}

.slider-labels {
	display: flex;
	justify-content: space-between;
	padding: 0 0px;
	margin-top: 15px;
	color: #6c757d;
	font-size: 0.85rem;
	font-weight: 500;
}

.slider-labels span {
	width: 20px;
	text-align: center;
	position: relative;
	transition: all 0.2s ease;
}

.slider-labels span.active {
	color: #000;
	font-weight: bold;
	transform: scale(1.4);
}

.slider-labels span::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 50%;
	width: 1px;
	height: 6px;
	background: #dee2e6;
}

.custom-slider {
	height: 12px;
	background: #f1f3f5;
	border-radius: 10px;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	position: relative;
	z-index: 2;
}

.slider-value-bubble {
	position: absolute;
	top: -45px;
	left: 50%;
	transform: translateX(-50%);
	background: #0d6efd;
	color: #fff;
	padding: 5px 12px;
	border-radius: 20px;
	font-weight: bold;
	font-size: 0.95rem;
	pointer-events: none;
	transition: left 0.1s ease-out, background-color 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 10;
	min-width: 35px;
	text-align: center;
}

.slider-value-bubble::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #0d6efd;
	transition: border-top-color 0.3s ease;
}


.custom-slider::-webkit-slider-runnable-track {
	height: 20px;
	background: #ccc;
	border-radius: 20px;
}

.custom-slider::-moz-range-track {
	height: 20px;
	background: #ccc;
	border-radius: 20px;
}

/*
.custom-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #0d6efd;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.2s ease;
}

.custom-slider::-moz-range-thumb {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #0d6efd;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.2s ease;
} */
.slider-impact::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 30px;
}

.slider-impact::-moz-range-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 30px;
}

.slider-scalability::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 30px;
}

.slider-scalability::-moz-range-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 30px;
}

.slider-transparency::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 30px;
}

.slider-transparency::-moz-range-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 30px;
}

.slider-hfactor::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 30px;
}

.slider-hfactor::-moz-range-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 30px;
}

.custom-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 24px;
	width: 24px;
	background-color: #fff !important;
	border-radius: 50%;
	border: 3px solid #0d6efd;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	cursor: grab;
	position: relative;
	z-index: 5;
}

.custom-slider::-moz-range-thumb {
	height: 24px;
	width: 24px;
	background-color: #fff !important;
	border-radius: 50%;
	border: 3px solid #0d6efd;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	cursor: grab;
}

/* Color Specific Sliders */
/* Color Specific Sliders */
.slider-impact::-webkit-slider-thumb {
	border-color: #efb114;
}

.slider-scalability::-webkit-slider-thumb {
	border-color: #4285f4;
}

.slider-transparency::-webkit-slider-thumb {
	border-color: #0f9d58;
}

.slider-hfactor::-webkit-slider-thumb {
	border-color: #ff0000;
}

#bubble-impact {
	background: #efb114;
}

#bubble-impact::after {
	border-top-color: #efb114;
}

#bubble-scalability {
	background: #4285f4;
}

#bubble-scalability::after {
	border-top-color: #4285f4;
}

#bubble-transparency {
	background: #0f9d58;
}

#bubble-transparency::after {
	border-top-color: #0f9d58;
}

#bubble-hfactor {
	background: #ff0000;
}

#bubble-hfactor::after {
	border-top-color: #ff0000;
}

/* Ripple Effect for Buttons */
.ripple {
	position: relative;
	overflow: hidden;
}

/* Badge Styling */
.badge {
	font-size: 0.9rem;
	padding: 0.5em 1em;
}

/* Feedback Styling */
.voting-feedback.alert {
	padding: 1.25rem;
	font-weight: 500;
}

/* Public Votes List Styling */
.bold-public-votes-list .table {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bold-public-votes-list thead th {
	background: #f8f9fa;
	color: #495057;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
	border-bottom: 2px solid #dee2e6;
}

.bold-public-votes-list tbody tr:hover {
	background-color: #f1f3f5;
	transition: background-color 0.2s;
}

/* List Circular Scores */
.score-circle-sm {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/*width: 40px;
	height: 40px;
	border: 1px solid #dee2e6; */
	border-radius: 50%;
	font-size: 1rem;
}

.score-circle-overall-sm {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: bold;
	font-size: 1.2rem;
	width: 50px;
	height: 50px;
	/*	border: 3px solid #000;*/
}

/* Mobile Responsive Table to Cards */
@media (max-width: 768px) {
	.bold-public-votes-list thead {
		display: none;
	}

	.bold-public-votes-list tbody tr {
		display: block;
		margin-bottom: 1.5rem;
		border: 1px solid #dee2e6;
		border-radius: 16px;
		background: #fff;
		padding: 1rem;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
	}

	.bold-public-votes-list td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0.75rem 0.5rem !important;
		border: none !important;
	}

	.bold-public-votes-list td::before {
		content: attr(data-label);
		font-weight: 600;
		color: #6c757d;
		font-size: 0.9rem;
	}

	.bold-public-votes-list td:first-child {
		border-bottom: 1px solid #f1f3f5 !important;
		margin-bottom: 0.5rem;
		padding-bottom: 1rem !important;
	}

	.bold-public-votes-list td:first-child::before {
		content: "Voter";
	}

	.bold-public-votes-list .d-sm-table-cell {
		display: flex !important;
	}
}

/* Circular Stats */
.project-stats-container .stat-card {
	transition: transform 0.3s;
	border: none;

}

.project-stats-container .stat-card:hover {
	transform: translateY(-5px);
}

.project-stats-container .stat-card .h6 {
	font-size: 0.8rem !important;
}

.stats-row-scroll-wrapper {
	overflow-x: auto;
	padding-bottom: 10px;
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
}

.stats-row-scroll-wrapper::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari and Opera */
}

.stats-flex-row {
	display: flex;
	gap: 1rem;
	/* min-width: max-content; */
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;

}

.stat-item {
	flex: 0 0 calc(20% - 0.8rem);
	min-width: 150px;
}

.stat-circle {
	display: inline-block;
	position: relative;
	width: 100px;
	height: 100px;
}

.stat-circle svg {
	transform: rotate(-90deg);
}

.stat-circle .bg {
	fill: none;
	stroke: #eee;
	stroke-width: 8;
}

.stat-circle .progress {
	fill: none;
	stroke: #0d6efd;
	stroke-width: 8;
	stroke-linecap: round;
	transition: stroke-dashoffset 1s ease-out;
}

.stat-circle .percentage {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.25rem;
	font-weight: 800;
	color: #333;
}

@media (max-width: 768px) {
	.stat-item {
		min-width: 140px;
	}
}

/* Review Step */
.review-item {
	transition: all 0.2s ease;
	background: #fff;
}

.review-item:hover {
	background: #f8f9fa;
	transform: translateX(5px);
}



.slider-impact {
	background: linear-gradient(to right, #efb114 0%, #efb114 50%, #f1f3f5 50%, #f1f3f5 100%);
}

.slider-scalability {
	background: linear-gradient(to right, #4285f4 0%, #4285f4 50%, #f1f3f5 50%, #f1f3f5 100%);
}

.slider-transparency {
	background: linear-gradient(to right, #0f9d58 0%, #0f9d58 50%, #f1f3f5 50%, #f1f3f5 100%);
}

.slider-hfactor {
	background: linear-gradient(to right, #ff0000 0%, #ff0000 50%, #f1f3f5 50%, #f1f3f5 100%) !important;
}