/* ===========================================
   GOLF 2026 · Template Styles
   Built on Webvolution (Tailwind + Flux)
   Elegant medical · Royal Blue / Gold palette
   =========================================== */

/* --- Template color palette --- */
:root {
	--accent-color: #d4a843;
	--accent-dark: #b8922e;
	--accent-darker: #9a7a1f;
	--accent-light: #fdf6e3;
	--surface-subtle: #f0f4fa;
	--surface-dotted: radial-gradient(
			circle at 1px 1px,
			color-mix(in srgb, var(--primary-color, #1a4b8c) 4%, transparent) 1px,
			transparent 0
		)
		0 0 / 28px 28px;
}

/* --- Text Selection --- */
::selection {
	background: var(--primary-color, #1a4b8c);
	color: #fff;
}
::-moz-selection {
	background: var(--primary-color, #1a4b8c);
	color: #fff;
}

/* ===========================================
   HEADER
   =========================================== */
.congress-header {
	position: relative;
	box-shadow: 0 1px 0 0 rgba(26, 75, 140, 0.06);
}

/* Gold accent line under header */
.congress-header::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--primary-color, #1a4b8c) 0%,
		var(--accent-color, #d4a843) 50%,
		var(--primary-color, #1a4b8c) 100%
	);
}

/* Nav active link → gold accent */
.congress-header .congress-nav-link--active {
	color: var(--primary-color, #1a4b8c);
	background: color-mix(in srgb, var(--primary-color, #1a4b8c) 8%, transparent);
}

/* Primary button → gold hover glow */
.congress-header .congress-nav-btn--primary:hover {
	box-shadow: 0 2px 8px color-mix(in srgb, var(--accent-color, #d4a843) 30%, transparent);
}

/* ===========================================
   HERO BANNER
   =========================================== */
.congress-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color, #1a4b8c);
	overflow: hidden;
}

/* Zoom cinématique à l'arrivée */
@keyframes heroZoomIn {
	from {
		transform: scale(1.04);
	}
	to {
		transform: scale(1);
	}
}

.congress-hero img.congress-hero-image {
	width: 100%;
	height: auto;
	display: block;
	animation: heroZoomIn 1.8s cubic-bezier(0.25, 0.1, 0.25, 1) both;
	transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.congress-hero:hover img.congress-hero-image {
	transform: scale(1.03);
}

/* Overlay : gradient vertical — transparent en haut, primary en bas pour fondre vers le content */
.congress-hero-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		transparent 0%,
		transparent 40%,
		color-mix(in srgb, var(--primary-color, #1a4b8c) 15%, transparent) 70%,
		color-mix(in srgb, var(--primary-color, #1a4b8c) 35%, transparent) 100%
	);
}

/* Filet gold en bas du hero */
.congress-hero-edge {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		var(--accent-color, #d4a843) 20%,
		var(--accent-color, #d4a843) 80%,
		transparent 100%
	);
	z-index: 2;
}

.congress-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 2.5rem 1.5rem;
	animation: congress-fadeInUp 0.8s ease-out;
	background: rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-radius: 16px;
	max-width: 700px;
	margin: 0 auto;
}

.congress-hero-title {
	font-size: 2.25rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0;
}

.congress-hero-subtitle {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.02em;
}

@media (max-width: 767px) {
	.congress-hero {
		min-height: 200px;
	}
	.congress-hero-title {
		font-size: 1.5rem;
	}
	.congress-hero-subtitle {
		font-size: 0.95rem;
	}
	.congress-hero-content {
		padding: 2rem 1rem;
	}
}

/* ===========================================
   FOOTER
   =========================================== */
.congress-footer {
	position: relative;
	background: var(--secondary-color, #1f2937);
	color: rgba(255, 255, 255, 0.7);
	overflow: hidden;
}

/* Accent bar on top */
.congress-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--accent-color, #d4a843),
		transparent
	);
}

/* Texture pattern */
.congress-footer::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--surface-dotted);
	opacity: 0.08;
	pointer-events: none;
}

.congress-footer a {
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.2s ease;
}

.congress-footer a:hover {
	color: var(--accent-color, #d4a843);
}

/* ===========================================
   MAIN CONTENT AREA
   =========================================== */
.congress-main {
	background: var(--surface-subtle, #f0f4fa);
}

/* Hero needs padding-bottom for card overlap */
.congress-hero {
	padding-bottom: 3rem;
}

@media (min-width: 640px) {
	.congress-hero {
		padding-bottom: 4rem;
	}
}

@media (min-width: 768px) {
	.congress-hero {
		padding-bottom: 5rem;
	}
}

/* ===========================================
   SECTIONS · Textures
   =========================================== */
.congress-section-textured {
	background: var(--surface-dotted), var(--surface-subtle);
}

.congress-section-dark {
	background: linear-gradient(
		160deg,
		var(--primary-color, #1a4b8c) 0%,
		color-mix(in srgb, var(--primary-color, #1a4b8c) 85%, #000) 100%
	);
	color: #fff;
}

.congress-section-gradient {
	background: linear-gradient(180deg, var(--surface-subtle) 0%, #fff 100%);
}

/* ===========================================
   PROSE · Semantic HTML auto-styling
   (within .congress-content only)
   =========================================== */
.congress-content h1 {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--primary-color, #1a4b8c);
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.congress-content h2 {
	font-size: 1.35rem;
	font-weight: 700;
	color: color-mix(in srgb, var(--primary-color, #1a4b8c) 85%, #000);
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	line-height: 1.35;
}

.congress-content h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: #374151;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

.congress-content h4 {
	font-size: 1rem;
	font-weight: 600;
	color: #4b5563;
	margin-top: 1.25rem;
	margin-bottom: 0.5rem;
}

.congress-content p:not([class]) {
	color: #374151;
	line-height: 1.75;
	margin-bottom: 1rem;
}

.congress-content a {
	color: var(--primary-color, #1a4b8c);
	font-weight: 500;
	text-decoration: underline solid var(--accent-color, #d4a843) 2px;
	text-underline-offset: 3px;
	transition:
		color 0.2s ease,
		text-decoration-color 0.2s ease;
}

.congress-content a:hover {
	color: var(--accent-darker, #9a7a1f);
	text-decoration-color: var(--accent-darker, #9a7a1f);
}

.congress-content ul,
.congress-content ol {
	margin-bottom: 1rem;
	padding-left: 0;
}

.congress-content ul {
	list-style: none;
}

.congress-content ul li {
	padding: 4px 0 4px 22px;
	position: relative;
	line-height: 1.75;
	color: #374151;
}

.congress-content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 13px;
	width: 6px;
	height: 6px;
	background: var(--accent-color, #d4a843);
	border-radius: 50%;
}

.congress-content ol {
	list-style: decimal;
	padding-left: 1.5rem;
}

.congress-content ol li {
	padding: 4px 0;
	line-height: 1.75;
	color: #374151;
}

.congress-content ol li::marker {
	color: var(--accent-color, #d4a843);
	font-weight: 600;
}

.congress-content blockquote {
	background: color-mix(in srgb, var(--primary-color, #1a4b8c) 6%, transparent);
	border-left: 3px solid var(--accent-color, #d4a843);
	padding: 12px 16px;
	border-radius: 0 8px 8px 0;
	margin: 1.5rem 0;
	font-style: italic;
	color: #4b5563;
	line-height: 1.7;
}

.congress-content table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 8px;
	overflow: hidden;
	margin: 1.5rem 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.congress-content table thead th {
	background: color-mix(in srgb, var(--primary-color, #1a4b8c) 10%, #fff);
	padding: 12px 16px;
	text-align: left;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--primary-color, #1a4b8c);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-bottom: 2px solid
		color-mix(in srgb, var(--primary-color, #1a4b8c) 20%, transparent);
}

.congress-content table td {
	padding: 12px 16px;
	font-size: 0.95rem;
	color: #374151;
	border-bottom: 1px solid #e5e7eb;
}

.congress-content table tr:last-child td {
	border-bottom: none;
}

.congress-content table tr:nth-child(even) {
	background: color-mix(in srgb, var(--primary-color, #1a4b8c) 3%, transparent);
}

.congress-content table tr:hover {
	background: color-mix(in srgb, var(--primary-color, #1a4b8c) 6%, transparent);
}

.congress-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	margin: 1rem 0;
}

.congress-content hr {
	border: none;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		color-mix(in srgb, var(--primary-color, #1a4b8c) 25%, transparent),
		transparent
	);
	margin: 2rem 0;
}

.congress-content strong {
	font-weight: 600;
	color: #1f2937;
}

/* ===========================================
   CARDS
   =========================================== */
.congress-card {
	background: #fff;
	border-radius: 12px;
	padding: 35px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.congress-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.congress-card-accent {
	border-left: 4px solid var(--accent-color, #d4a843);
}

.congress-card-dark {
	background: linear-gradient(
		160deg,
		var(--primary-color, #1a4b8c) 0%,
		color-mix(in srgb, var(--primary-color, #1a4b8c) 85%, #000) 100%
	);
	border-radius: 12px;
	padding: 35px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	color: rgba(255, 255, 255, 0.85);
}

/* ===========================================
   ICON CIRCLES
   =========================================== */
.congress-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--primary-color, #1a4b8c),
		color-mix(in srgb, var(--primary-color, #1a4b8c) 85%, #000)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-light, #fdf6e3);
	font-size: 20px;
	transition: transform 0.3s ease;
}

.congress-icon:hover {
	transform: scale(1.1);
}

/* ===========================================
   BADGES & LABELS
   =========================================== */
.congress-badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: var(--primary-color, #1a4b8c);
	background: linear-gradient(
		135deg,
		var(--accent-light, #fdf6e3) 0%,
		var(--accent-color, #d4a843) 100%
	);
	padding: 6px 18px;
	border-radius: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.congress-label {
	color: var(--accent-dark, #1a4b8c);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
}

/* ===========================================
   LINKS
   =========================================== */
.congress-link {
	color: var(--primary-color, #1a4b8c);
	font-weight: 600;
	text-decoration: underline solid var(--accent-color, #d4a843) 2px;
	text-underline-offset: 3px;
	transition:
		color 0.3s ease,
		text-decoration-color 0.3s ease;
}

.congress-link:hover {
	color: var(--accent-darker, #9a7a1f);
	text-decoration-color: var(--accent-darker, #9a7a1f);
}

.congress-link-light {
	color: var(--accent-color, #d4a843);
	font-weight: 600;
	text-decoration: underline solid rgba(212, 168, 67, 0.4) 1px;
	text-underline-offset: 3px;
	transition: color 0.3s ease;
}

.congress-link-light:hover {
	color: var(--accent-light, #fdf6e3);
}

/* ===========================================
   BUTTONS
   =========================================== */
.congress-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: all 0.3s ease;
	background: var(--primary-color, #1a4b8c);
	color: #fff;
}

.congress-btn:hover {
	background: linear-gradient(
		135deg,
		var(--accent-darker, #9a7a1f) 0%,
		var(--accent-dark, #1a4b8c) 50%,
		var(--accent-color, #d4a843) 100%
	);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px
		color-mix(in srgb, var(--primary-color, #1a4b8c) 30%, transparent);
}

.congress-btn-accent {
	background: linear-gradient(
		135deg,
		var(--accent-darker, #9a7a1f) 0%,
		var(--accent-dark, #1a4b8c) 50%,
		var(--accent-color, #d4a843) 100%
	);
}

.congress-btn-accent:hover {
	background: linear-gradient(
		135deg,
		var(--accent-dark, #1a4b8c) 0%,
		var(--accent-color, #d4a843) 50%,
		var(--accent-light, #fdf6e3) 100%
	);
	color: var(--primary-color, #1a4b8c);
}

/* ===========================================
   LISTS
   =========================================== */
.congress-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.congress-list li {
	padding: 4px 0 4px 20px;
	position: relative;
	line-height: 1.8;
}

.congress-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	width: 6px;
	height: 6px;
	background: var(--accent-color, #d4a843);
	border-radius: 50%;
}

/* ===========================================
   HIGHLIGHT BOXES
   =========================================== */
.congress-highlight {
	background: linear-gradient(
		135deg,
		color-mix(in srgb, var(--primary-color, #1a4b8c) 6%, transparent),
		color-mix(in srgb, var(--primary-color, #1a4b8c) 10%, transparent)
	);
	border-left: 3px solid var(--primary-color, #1a4b8c);
	padding: 12px 16px;
	border-radius: 0 8px 8px 0;
	font-size: 14px;
	line-height: 1.7;
}

.congress-highlight-accent {
	background: color-mix(in srgb, var(--accent-color, #d4a843) 8%, transparent);
	border-left: 3px solid var(--accent-color, #d4a843);
	padding: 12px 16px;
	border-radius: 0 8px 8px 0;
	font-size: 14px;
	line-height: 1.7;
}

/* ===========================================
   GRID LAYOUTS
   =========================================== */
.congress-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

@media (max-width: 991px) {
	.congress-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.congress-grid-3 {
		grid-template-columns: 1fr;
	}
}

/* ===========================================
   TABLES (class-based, for explicit use)
   =========================================== */
.congress-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 8px;
	overflow: hidden;
}

.congress-table tr {
	border-bottom: 1px solid #e2e8f0;
	transition: background 0.2s ease;
}

.congress-table tr:last-child {
	border-bottom: none;
}

.congress-table tr:nth-child(even) {
	background: color-mix(in srgb, var(--primary-color, #1a4b8c) 3%, transparent);
}

.congress-table tr:hover {
	background: color-mix(in srgb, var(--primary-color, #1a4b8c) 6%, transparent);
}

.congress-table td {
	padding: 12px 16px;
	font-size: 15px;
}

.congress-table .period-active {
	border-left: 4px solid var(--accent-color, #d4a843);
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes congress-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes congress-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes congress-slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes congress-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

@keyframes congress-shimmer {
	0% {
		background-position: -200% center;
	}
	100% {
		background-position: 200% center;
	}
}

.congress-animate-in {
	animation: congress-fadeInUp 0.6s ease-out both;
}

.congress-animate-in-delay-1 {
	animation: congress-fadeInUp 0.6s ease-out 0.1s both;
}

.congress-animate-in-delay-2 {
	animation: congress-fadeInUp 0.6s ease-out 0.2s both;
}

.congress-animate-in-delay-3 {
	animation: congress-fadeInUp 0.6s ease-out 0.3s both;
}

.congress-shimmer {
	background: linear-gradient(
		90deg,
		var(--primary-color, #1a4b8c) 0%,
		var(--accent-color, #d4a843) 50%,
		var(--primary-color, #1a4b8c) 100%
	);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: congress-shimmer 3s linear infinite;
}

/* ===========================================
   FORM SECTIONS · Cards with depth
   =========================================== */

/* Form overlap on hero → slightly more than default */
.congress-form-overlap {
	margin-top: -3.5rem;
}
@media (min-width: 640px) {
	.congress-form-overlap {
		margin-top: -4.5rem;
	}
}
@media (min-width: 768px) {
	.congress-form-overlap {
		margin-top: -6rem;
	}
}

/* Form container → tinted background (overrides bg-white from Blade) */
.congress-form {
	background: var(--surface-subtle, #f0f4fa) !important;
}

/* Header stays white */
.congress-form .congress-form-header {
	background: #fff;
}

/* Each category section → barely tinted card */
.congress-form-section {
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--primary-color, #1a4b8c) 7%, transparent);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.04),
		0 2px 8px rgba(0, 0, 0, 0.03);
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.congress-form-section:hover {
	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.05),
		0 6px 20px rgba(0, 0, 0, 0.05);
	border-color: color-mix(in srgb, var(--primary-color, #1a4b8c) 12%, transparent);
}

/* Inputs + radios white */
.congress-form-section input:not([type="checkbox"]):not([type="file"]),
.congress-form-section select,
.congress-form-section textarea,
.congress-form-section label:has(input[type="radio"].sr-only:not(:checked)) span {
	background-color: #fff !important;
}

/* Section title inside card — adjust spacing */
.congress-form-section h2[data-form-title] {
	margin-top: 0;
}

/* Spacing between form sections */
.congress-form form.space-y-5 > .congress-form-section + .congress-form-section {
	margin-top: 1.25rem;
}

/* Navigation buttons row → no card style, keep transparent */
.congress-form form.space-y-5 > .flex.justify-between {
	padding-top: 0.5rem;
}

/* ===========================================
   FORM ENRICHMENT
   =========================================== */
.congress-form-divider {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		color-mix(in srgb, var(--primary-color, #1a4b8c) 20%, transparent),
		transparent
	);
	margin: 2rem 0;
}

/* ===========================================
   BACK TO TOP
   =========================================== */
.congress-back-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--primary-color, #1a4b8c);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	border: none;
	box-shadow: 0 2px 12px
		color-mix(in srgb, var(--primary-color, #1a4b8c) 30%, transparent);
	transition: all 0.3s ease;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
}

.congress-back-top.visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.congress-back-top:hover {
	background: linear-gradient(
		135deg,
		var(--accent-darker, #9a7a1f) 0%,
		var(--accent-dark, #1a4b8c) 50%,
		var(--accent-color, #d4a843) 100%
	);
	transform: translateY(-3px);
	box-shadow: 0 4px 16px
		color-mix(in srgb, var(--primary-color, #1a4b8c) 40%, transparent);
}

/* ===========================================
   PARTNER BOXES
   =========================================== */
.congress-partner-box {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 180px;
	width: 100%;
	border-radius: 10px;
	background: color-mix(in srgb, var(--primary-color, #1a4b8c) 4%, #fff);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	overflow: hidden;
	padding: 20px;
}

.congress-partner-box:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.congress-partner-box img {
	max-height: 80%;
	max-width: 80%;
	object-fit: contain;
}

/* ===========================================
   SCROLL PROGRESS BAR
   =========================================== */
/* Masquer la scrollbar native */
html {
	scrollbar-width: none; /* Firefox */
}
html::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Edge */
}

.congress-scroll-progress {
	position: fixed;
	top: 0;
	right: 0;
	width: 6px;
	height: 100%;
	z-index: 999;
	background: color-mix(in srgb, var(--primary-color, #1a4b8c) 10%, transparent);
	pointer-events: none;
}

.congress-scroll-progress-fill {
	width: 6px;
	height: 0%;
	background: linear-gradient(
		180deg,
		var(--primary-color, #1a4b8c),
		var(--accent-color, #d4a843)
	);
	transition: height 0.1s linear;
	border-radius: 0 0 3px 3px;
	box-shadow: 0 0 8px color-mix(in srgb, var(--accent-color, #d4a843) 40%, transparent);
}

@media (max-width: 991px) {
	.congress-scroll-progress {
		display: none;
	}
}

/* ===========================================
   PRINT
   =========================================== */
@media print {
	.congress-header,
	.congress-footer,
	.congress-hero,
	.congress-back-top,
	.congress-scroll-progress {
		display: none !important;
	}
	.congress-main {
		background: #fff !important;
	}
}
