/* ==========================================================================
   ANIMATIONS - Keyframes réutilisables pour effet waouh
   ========================================================================== */

/* Fade & Slide Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale & Bounce Animations */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* Glow & Pulse Effects */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor;
  }
  50% {
    box-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Rotation & 3D Effects */
@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes flip {
  from {
    transform: perspective(400px) rotateY(0);
  }
  to {
    transform: perspective(400px) rotateY(180deg);
  }
}

@keyframes swing {
  20% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  60% { transform: rotate(5deg); }
  80% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

/* Counter & Number Animations */
@keyframes countUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes digitFlip {
  0%, 100% { transform: rotateX(0deg); }
  50% { transform: rotateX(90deg); }
}

/* Loading & Progress */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes progressBar {
  from { width: 0%; }
  to { width: 100%; }
}

@keyframes skeleton {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Ripple Effect */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Heartbeat */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(0.9); }
  20%, 40% { transform: scale(1.1); }
}

/* Shake */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Wave */
@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Gradient Animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Float */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ==========================================================================
   UTILITY CLASSES - Animations prêtes à l'emploi
   ========================================================================== */

.animate-fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-bounce-in {
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-rotate {
  animation: rotate360 20s linear infinite;
}

.animate-heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite;
}

/* Delays pour animations en cascade */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }

/* ==========================================================================
   TRANSITION UTILITIES
   ========================================================================== */

.transition-smooth {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-bounce {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.transition-slow {
  transition: all 0.6s ease-in-out;
}

/* ==========================================================================
   HOVER EFFECTS - Micro-interactions
   ========================================================================== */

.hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
}

.hover-glow:hover {
  animation: glow 1s ease-in-out;
}

.hover-scale:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.hover-rotate:hover {
  transform: rotate(5deg) scale(1.05);
  transition: transform 0.3s ease;
}
@tailwind base;
@tailwind components;
@tailwind utilities;

/* ==========================================================================
   DESIGN SYSTEM — AFCV "Sport Editorial" (Sang & Or, RC Lens vibe)
   Display: Bayon · Body: Archivo · Data: JetBrains Mono
   Palette: warm off-white, deep charcoal, sang #b3122a, or #f4c430
   ========================================================================== */

:root {
  /* Palette club */
  --sang:       #b3122a;
  --sang-2:     #8a0c1f;
  --sang-3:     #d62a3f;
  --or:         #f4c430;
  --or-2:       #ffd54a;

  /* Backwards-compat (CSS legacy utilise ces noms) */
  --sang-dark:  #8a0c1f;
  --sang-light: #d62a3f;
  --or-dark:    #d4a01a;
  --or-light:   #ffd54a;
  --noir:       #14130f;
  --noir-light: #1a1815;
  --noir-medium:#3a3833;
  --blanc:      #fbf9f3;
  --gris:       #6e6a60;

  /* Editorial neutrals */
  --bg:         #f6f3ec;
  --bg-2:       #efeae0;
  --paper:      #fbf9f3;
  --ink:        #14130f;
  --ink-2:      #3a3833;
  --ink-3:      #6e6a60;
  --line:       #d9d2c2;
  --line-2:     #e6e0d1;

  /* Light theme vars (legacy) */
  --page-bg:        #f6f3ec;
  --section-bg:     #efeae0;
  --card-bg:        #fbf9f3;
  --text-primary:   #14130f;
  --text-secondary: #3a3833;
  --text-muted:     #6e6a60;
  --border-light:   #d9d2c2;

  --display: "Bayon", "Anton", "Helvetica Neue", sans-serif;
  --sans:    "Archivo", "Helvetica Neue", system-ui, sans-serif;
  --mono:    "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
}

@layer base {
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  a            { text-decoration: none !important; }
  a:hover      { text-decoration: none !important; }
  ::selection  { background: var(--or); color: var(--ink); }
}

@layer components {
  /* Atoms éditoriaux — partagés entre le redesign et l'existant */
  .display { font-family: var(--display); font-weight: 400; letter-spacing: 0.01em; line-height: 0.92; text-transform: uppercase; }
  .mono    { font-family: var(--mono); font-feature-settings: "tnum"; }
  .tnum    { font-variant-numeric: tabular-nums; }
  .over    { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
  .eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); display: inline-flex; align-items: center; gap: 10px; }
  .eyebrow .num { color: var(--sang); font-weight: 600; }
  .eyebrow .bar { width: 28px; height: 1px; background: var(--ink-3); display: inline-block; }

  /* Wraps */
  .wrap        { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 28px; }
  .wrap-narrow { width: 100%; max-width: 980px; margin: 0 auto; padding: 0 28px; }

  /* Pulse pour live indicator */
  @keyframes afcv-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
  .afcv-pulse { animation: afcv-pulse 1.6s ease-in-out infinite; }

  /* Page fade — pour les transitions Turbo */
  @keyframes afcv-page-fade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .page-fade { animation: afcv-page-fade 0.35s ease both; }

  /* === Composants legacy conservés (utilisés ailleurs dans l'app) === */
  .section-header-premium {
    @apply py-16 px-4 relative overflow-hidden;
    background: var(--ink);
  }

  .section-header-premium::after {
    content: '';
    @apply absolute bottom-0 left-0 w-full h-1;
    background: linear-gradient(to right, var(--sang), var(--or));
  }

  .section-title-bar {
    @apply flex items-center gap-4 mb-8;
  }

  .section-title-bar::before {
    content: '';
    @apply w-1 h-8 rounded-full flex-shrink-0;
    background: var(--sang);
  }

  /* Bouton premium or — legacy */
  .btn-or {
    @apply inline-flex items-center justify-center gap-2 px-6 py-3 font-bold rounded-lg transition-all duration-300;
    background: var(--or);
    color: var(--ink);
  }

  .btn-or:hover {
    background: var(--or-light);
    @apply shadow-lg scale-105;
  }

  /* Bouton outline blanc — legacy */
  .btn-outline-blanc {
    @apply inline-flex items-center justify-center gap-2 px-6 py-3 font-bold rounded-lg transition-all duration-300 border-2 border-white text-white;
  }

  .btn-outline-blanc:hover {
    background: var(--paper);
    color: var(--ink);
  }

  /* === Nouveaux composants — header, hero, footer === */

  /* Topbar live (au-dessus du header) */
  .topbar {
    background: var(--sang);
    color: #fff5e8;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .topbar-inner { @apply flex justify-between items-center h-8 gap-6; }
  .topbar .live { @apply inline-flex items-center gap-2; color: var(--or); }
  .topbar .live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--or);
    box-shadow: 0 0 8px var(--or);
    animation: afcv-pulse 1.6s ease-in-out infinite;
  }
  .topbar .tb-link { opacity: 0.75; transition: opacity 0.2s; cursor: pointer; }
  .topbar .tb-link:hover { opacity: 1; }

  /* Brand mark — carré sang avec slash or et initiales AF */
  .brand-mark {
    width: 44px; height: 44px;
    background: var(--sang);
    color: var(--or);
    display: grid; place-items: center;
    font-family: var(--display);
    font-size: 22px;
    letter-spacing: 0.04em;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .brand-mark::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 58%, var(--or) 58% 62%, transparent 62%);
    opacity: 0.95;
  }
  .brand-mark > span { position: relative; z-index: 1; }

  /* Editorial CTAs — sang / or / ink / ghost */
  .cta-btn {
    @apply inline-flex items-center justify-center gap-2 transition-all duration-150;
    background: var(--ink);
    color: var(--paper);
    padding: 11px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .cta-btn:hover { background: var(--noir-light); transform: translateY(-1px); }
  .cta-btn.cta-sang { background: var(--sang); color: var(--or); }
  .cta-btn.cta-sang:hover { background: var(--sang-2); }
  .cta-btn.cta-or { background: var(--or); color: var(--ink); }
  .cta-btn.cta-or:hover { background: var(--or-2); }
  .cta-btn.cta-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
  .cta-btn.cta-ghost:hover { background: var(--bg-2); border-color: var(--ink); }

  /* Hero éditorial — sang dominant avec accents or */
  .hero-edit {
    background: var(--sang);
    color: #fff5e8;
    position: relative;
    overflow: hidden;
  }
  .hero-edit::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 80% 20%, rgba(244,196,48,0.14), transparent 50%),
      radial-gradient(circle at 10% 90%, rgba(0,0,0,0.30), transparent 60%);
    pointer-events: none;
  }
  .hero-edit > * { position: relative; }
  .hero-edit h1 .or { color: var(--or); }
  .hero-edit-tag {
    @apply inline-flex items-center gap-3;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--or);
  }
  .hero-edit-tag .bar { width: 32px; height: 2px; background: var(--or); display: inline-block; }
  .hero-edit-stat .n { font-family: var(--display); font-size: 56px; line-height: 1; color: #fff5e8; }
  .hero-edit-stat .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,245,232,0.65); margin-top: 6px; }

  /* Matchday card — or sur fond sang */
  .matchday {
    background: var(--or);
    color: var(--ink);
    padding: 28px 32px;
    border-radius: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
  }
  .matchday-crest {
    width: 72px; height: 72px;
    background: var(--paper);
    color: var(--sang);
    display: grid; place-items: center;
    font-family: var(--display);
    font-size: 28px;
    margin: 0 auto 10px;
    border-radius: 4px;
    border: 2px solid rgba(20,19,15,0.10);
    overflow: hidden;
    padding: 6px;
  }
  .matchday-crest.alt {
    background: var(--paper);
    color: var(--ink);
    border: 2px solid var(--ink);
  }
  .matchday-crest img { display: block; }
  .countdown { display: flex; gap: 8px; margin-top: 6px; }
  .countdown-cell {
    background: var(--sang);
    color: var(--or);
    padding: 6px 10px;
    border-radius: 3px;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    min-width: 42px;
    text-align: center;
  }
  .countdown-cell .c-l { display: block; font-size: 8px; letter-spacing: 0.14em; opacity: 0.65; margin-top: 2px; }

  /* Mountain decor SVG (silhouette alpine en bas du hero) */
  .mountains {
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 60px; opacity: 0.18;
    pointer-events: none;
    color: var(--or);
  }

  /* Editorial footer (sang plein) */
  .footer-edit {
    background: var(--sang);
    color: #fff5e8;
  }
  .footer-edit h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,245,232,0.55) !important;
  }
  .footer-edit a:hover { color: var(--or); }
  .footer-edit .wordmark {
    font-family: var(--display);
    font-size: 64px;
    line-height: 0.9;
    color: #fff5e8;
  }
  .footer-edit .wordmark .or { color: var(--or); }
  .footer-edit-bottom {
    border-top: 1px solid rgba(255,245,232,0.15);
    padding: 22px 0;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,245,232,0.55);
  }
}

@layer utilities {
  .grid-equal-height { grid-auto-rows: 1fr; }

  .text-gradient-or {
    background: linear-gradient(135deg, var(--or), var(--or-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}
/* ==========================================================================
   CUSTOM OVERRIDES — Styles spécifiques qui ne rentrent pas dans Tailwind
   ========================================================================== */

/* Styles pour la page de connexion Devise */
.devise-sign-in-page {
  background-color: #F9FAFB;
  padding: 20px;
}

.devise-sign-in-page h2 {
  font-size: 2em;
  color: #111827;
}

.devise-sign-in-page .submit-button {
  background-color: #FDF000;
  color: #0A0A0A;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Empêcher le flash de contenu */
body {
  opacity: 1 !important;
  transition: none !important;
}
/* Styles pour la page des équipes */
.page-title {
    text-align: center;
    margin: 20px 0;
    color: #343a40;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .team-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .team-card h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #007bff;
  }
  
  .team-card p {
    margin: 5px 0;
    font-size: 1rem;
  }
  
  /* Responsiveness */
  @media (min-width: 768px) {
    .team-card {
      width: 45%;
    }
  }
  
  @media (min-width: 1024px) {
    .team-card {
      width: 30%;
    }
  }
  
/* Remplacé par le design system redesign.css (refonte 2026). Fichier conservé
   vide pour ne pas casser le manifest sprockets. */
/* Remplacé par le design system redesign.css (refonte 2026). Fichier conservé
   vide pour ne pas casser le manifest sprockets. */
/* ==========================================================================
   MATCH CARD STYLES - Premium Design avec Glassmorphism & Glow
   ========================================================================== */

/* Base Card */
.match-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(10px);
}

.match-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.match-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.match-card:hover::before {
  opacity: 1;
}

/* Header avec gradient premium */
.match-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
}

.match-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.match-card:hover .match-header::after {
  left: 100%;
}

/* Score Display */
.score-display {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
  line-height: 1;
  text-shadow: none;
  transition: all 0.3s ease;
}

.match-card:hover .score-display {
  transform: scale(1.1);
  text-shadow: none;
}

@media (min-width: 768px) {
  .score-display {
    font-size: 3.5rem;
  }
}

/* ==========================================================================
   RESULT CLASSES - Glassmorphism avec Glow Effects
   ========================================================================== */

/* Victoire - Green Glow */
.victoire {
  background: linear-gradient(135deg,
    rgba(240, 253, 244, 0.95) 0%,
    rgba(220, 252, 231, 0.95) 100%);
  border: 3px solid #16a34a;
  box-shadow:
    0 4px 6px -1px rgba(22, 163, 74, 0.2),
    0 10px 30px -5px rgba(22, 163, 74, 0.15);
}

.victoire::before {
  background: linear-gradient(135deg,
    rgba(22, 163, 74, 0.4),
    rgba(134, 239, 172, 0.4),
    rgba(22, 163, 74, 0.4));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.victoire:hover {
  border-color: #15803d;
  box-shadow:
    0 8px 16px -2px rgba(22, 163, 74, 0.3),
    0 20px 50px -10px rgba(22, 163, 74, 0.25),
    0 0 40px rgba(22, 163, 74, 0.2);
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Défaite - Red Glow */
.defaite {
  background: linear-gradient(135deg,
    rgba(254, 242, 242, 0.95) 0%,
    rgba(254, 226, 226, 0.95) 100%);
  border: 3px solid #dc2626;
  box-shadow:
    0 4px 6px -1px rgba(220, 38, 38, 0.2),
    0 10px 30px -5px rgba(220, 38, 38, 0.15);
}

.defaite::before {
  background: linear-gradient(135deg,
    rgba(220, 38, 38, 0.4),
    rgba(252, 165, 165, 0.4),
    rgba(220, 38, 38, 0.4));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.defaite:hover {
  border-color: #b91c1c;
  box-shadow:
    0 8px 16px -2px rgba(220, 38, 38, 0.3),
    0 20px 50px -10px rgba(220, 38, 38, 0.25),
    0 0 40px rgba(220, 38, 38, 0.2);
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Match Nul - Yellow Glow */
.match-nul {
  background: linear-gradient(135deg,
    rgba(255, 251, 235, 0.95) 0%,
    rgba(254, 243, 199, 0.95) 100%);
  border: 3px solid #f59e0b;
  box-shadow:
    0 4px 6px -1px rgba(245, 158, 11, 0.2),
    0 10px 30px -5px rgba(245, 158, 11, 0.15);
}

.match-nul::before {
  background: linear-gradient(135deg,
    rgba(245, 158, 11, 0.4),
    rgba(253, 224, 71, 0.4),
    rgba(245, 158, 11, 0.4));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.match-nul:hover {
  border-color: #d97706;
  box-shadow:
    0 8px 16px -2px rgba(245, 158, 11, 0.3),
    0 20px 50px -10px rgba(245, 158, 11, 0.25),
    0 0 40px rgba(245, 158, 11, 0.2);
  animation: pulseGlow 2s ease-in-out infinite;
}

/* ==========================================================================
   MICRO-INTERACTIONS - Logos et éléments
   ========================================================================== */

.match-card .h-14,
.match-card .h-20 {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.match-card:hover .h-14,
.match-card:hover .h-20 {
  transform: scale(1.1) rotate(5deg);
}

.match-card .rounded-full.bg-white {
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.match-card:hover .rounded-full.bg-white {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
/* ==========================================================================
   AFCV — Design system "L'esprit de la montagne" (refonte 2026)
   Porté depuis le prototype Claude Design (AFCV.html). Source de vérité du
   look public. Trié en dernier dans le bundle sprockets → gagne la cascade.
   Fonts : Bayon/Anton (display) · Hanken Grotesk (body) · JetBrains Mono (data)
   ========================================================================== */

:root {
  /* White-led, cool neutrals — modern club-site standard. Sang & Or as accents. */
  --bg:        #f4f5f7;
  --bg-2:      #eaecf0;
  --ink:       #0e1116;
  --ink-2:     #3d4350;
  --ink-3:     #767d8b;
  --line:      #e3e6ea;
  --line-2:    #eef0f3;
  --paper:     #ffffff;
  --sang:      #b3122a;     /* deep blood red — primary club color */
  --sang-2:    #8a0c1f;     /* darker shade */
  --sang-3:    #d62a3f;     /* lighter accent */
  --or:        #f4c430;     /* gold/yellow — on light backgrounds */
  --or-2:      #ffd54a;
  --or-hi:     #ffd84d;     /* brighter gold — for text/marks on red or dark */
  /* Backwards compat: yellow var now drives most accents */
  --yellow:    #f4c430;
  --yellow-2:  #ffd54a;
  --red:       #b3122a;
  --green:     #2f7d4f;
  --grey-d:    #1a1d23;

  --shadow-sm: 0 1px 2px rgba(14,17,22,0.04), 0 2px 6px rgba(14,17,22,0.05);
  --shadow:    0 2px 8px rgba(14,17,22,0.06), 0 8px 24px rgba(14,17,22,0.07);
  --shadow-lg: 0 12px 40px rgba(14,17,22,0.12);

  --display:   "Bayon", "Anton", "Helvetica Neue", sans-serif;
  --sans:      "Hanken Grotesk", "Helvetica Neue", system-ui, sans-serif;
  --mono:      "JetBrains Mono", "SFMono-Regular", Menlo, monospace;

  --r-sm: 4px;
  --r:    8px;
  --r-lg: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input, textarea, select { font: inherit; }

/* Type */
.display { font-family: var(--display); font-weight: 400; letter-spacing: 0.01em; line-height: 0.92; text-transform: uppercase; }
.mono    { font-family: var(--mono); font-feature-settings: "tnum"; }
.over    { font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em; color: var(--ink-3); }
.tnum    { font-variant-numeric: tabular-nums; }

/* Layout */
.app { min-height: 100vh; display: flex; flex-direction: column; }
.wrap { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { width: 100%; max-width: 980px; margin: 0 auto; padding: 0 28px; }

/* Page transitions */
.page-fade { animation: pageFade 0.35s ease both; }
@keyframes pageFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Top bar */
.topbar {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 32px; gap: 24px; }
.topbar { background: var(--sang); }
.topbar .live { display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.topbar .live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--or-hi); animation: pulse 1.6s ease-in-out infinite; box-shadow: 0 0 8px var(--or-hi); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.topbar a.tb-link { opacity: 0.7; transition: opacity 0.2s; }
.topbar a.tb-link:hover { opacity: 1; }
.topbar .tb-right { display: flex; gap: 18px; align-items: center; }

/* Header */
.header {
  background: var(--bg);
  border-bottom: 3px solid var(--or);
  position: sticky; top: 0; z-index: 50;
}
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; height: 76px; gap: 32px; }
.brand { display: flex; align-items: center; gap: 14px; cursor: pointer; }
.brand-mark {
  width: 44px; height: 44px;
  background: var(--sang); color: var(--or);
  display: grid; place-items: center;
  font-family: var(--display); font-size: 22px;
  letter-spacing: 0.04em;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 58%, var(--or) 58% 62%, transparent 62%);
  opacity: 0.95;
}
.brand-mark span { position: relative; z-index: 1; }
.brand-text .t1 { font-family: var(--display); font-size: 22px; line-height: 1; letter-spacing: 0.02em; }
.brand-text .t2 { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.03em; color: var(--ink-3); margin-top: 3px; }

.nav { display: flex; gap: 4px; justify-content: center; }
.nav a, .nav button {
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  position: relative;
  transition: color 0.18s;
}
.nav a:hover, .nav button:hover { color: var(--ink); }
.nav a.active, .nav button.active { color: var(--ink); }
.nav a.active::after, .nav button.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 3px; background: var(--yellow);
}
.cta-btn {
  background: var(--ink); color: var(--bg);
  padding: 11px 18px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.15s, background 0.15s;
}
.cta-btn:hover { transform: translateY(-1px); background: var(--grey-d); }
.cta-btn .arrow { width: 14px; height: 14px; transition: transform 0.2s; }
.cta-btn:hover .arrow { transform: translateX(3px); }
.cta-btn.yellow { background: var(--or); color: var(--ink); }
.cta-btn.yellow:hover { background: var(--or-2); }
.cta-btn.gold { background: var(--or); color: var(--ink); }
.cta-btn.gold:hover { background: var(--or-2); }
.cta-btn.sang { background: var(--sang); color: var(--or-hi); }
.cta-btn.sang:hover { background: var(--sang-2); }
.cta-btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.cta-btn.ghost:hover { background: var(--bg-2); }

/* Hero carousel — full-bleed rotating photos, results-focused band below */
.hero-carousel {
  position: relative;
  height: 580px;
  background: var(--sang-2);
  overflow: hidden;
  border-bottom: 4px solid var(--or);
}
.hero-track { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.8s ease;
}
.hero-slide.on { opacity: 1; visibility: visible; z-index: 1; }
.hero-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(20,5,8,0.82) 0%, rgba(20,5,8,0.5) 42%, rgba(20,5,8,0.1) 70%, transparent 100%),
    linear-gradient(0deg, rgba(20,5,8,0.6) 0%, transparent 40%);
}
.hero-slide-inner {
  position: absolute; left: 0; right: 0; bottom: 96px; z-index: 3;
  color: #ffffff;
}
@keyframes heroRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em;
  color: var(--or-hi);
}
.hero-tag .bar { width: 32px; height: 2px; background: var(--or-hi); display: inline-block; }
.hero-carousel h1 {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  margin: 16px 0 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-sub { color: rgba(255,255,255,0.85); max-width: 520px; margin: 18px 0 24px; font-size: 17px; line-height: 1.5; }

.hero-mtn { position: absolute; left: 0; right: 0; bottom: 0; height: 150px; z-index: 3; color: var(--sang-2); pointer-events: none; }
.hero-mtn .mountains { height: 150px; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(20,5,8,0.4); border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff; font-size: 28px; line-height: 1;
  display: grid; place-items: center;
  transition: background 0.18s, transform 0.18s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--sang); transform: translateY(-50%) scale(1.06); }
.hero-arrow.left { left: 24px; }
.hero-arrow.right { right: 24px; }
.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.hero-dot { width: 36px; height: 4px; background: rgba(255,255,255,0.35); border-radius: 2px; transition: background 0.2s; }
.hero-dot.on { background: var(--or); }

/* Next-match band — gold, for a stronger jaune presence */
.nextmatch-band { background: var(--or); color: var(--ink); border-bottom: 3px solid var(--sang); }
.nextmatch-inner { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; padding: 32px 28px; align-items: center; }
.nextmatch-left .over { color: var(--sang) !important; }
.nextmatch-vs { display: flex; align-items: center; gap: 28px; margin-top: 14px; }
.nm-team { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.nm-team span { font-family: var(--display); font-size: 26px; letter-spacing: 0.02em; }
.nm-team .crest-shield { width: 56px; height: 66px; }
.nm-mid { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.nm-x { font-family: var(--display); font-size: 28px; color: var(--sang); }
.nextmatch-right { border-left: 1px solid rgba(20,19,15,0.18); padding-left: 36px; }
.nm-meta-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(20,19,15,0.14); }
.nm-meta-row .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.03em; color: rgba(20,19,15,0.6); }
.nm-meta-row .v { font-weight: 600; font-size: 14px; }
.nextmatch-band .countdown-cell { background: var(--sang); color: #fff; }

/* Header logo slot — vrai logo club (LogoAfcv.png) */
.brand-logo { display: block; height: 48px; width: auto; flex: 0 0 auto; }
.mobile-menu-overlay .brand-logo { height: 40px; }

/* Match-day card — gold over the red hero */
.matchday {
  background: var(--or); color: var(--ink);
  padding: 28px 32px;
  position: relative;
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.32), 0 2px 0 0 rgba(20,19,15,0.08);
}
.matchday::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--sang), var(--sang-2) 50%, var(--sang));
}
.matchday::after {
  content: ""; position: absolute; top: 4px; left: 0; right: 0;
  height: 1px; background: rgba(20,19,15,0.12);
}
.matchday-head { display: flex; justify-content: space-between; align-items: center; }
.matchday-head .over { color: rgba(20,19,15,0.7); }
.matchday-vs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; margin: 28px 0 24px; }
.matchday-team { text-align: center; }
.matchday-crest {
  width: 72px; height: 72px;
  background: var(--sang); color: var(--or-hi);
  display: grid; place-items: center;
  font-family: var(--display); font-size: 28px;
  margin: 0 auto 10px;
  border-radius: 4px;
}
.matchday-team:last-child .matchday-crest { background: var(--paper); color: var(--ink); border: 2px solid var(--ink); }
.matchday-team .nom { font-family: var(--display); font-size: 22px; letter-spacing: 0.02em; }
.matchday-team .form-line { font-family: var(--mono); font-size: 10px; letter-spacing: 0.03em; color: rgba(20,19,15,0.55); margin-top: 4px; }
.matchday-team .form-line sup { font-size: 8px; }
.matchday-vs-x { font-family: var(--display); font-size: 36px; opacity: 0.4; }

/* Crest — proper shield */
.crest-wrap { display: inline-block; margin: 0 auto 12px; filter: drop-shadow(0 3px 6px rgba(20,19,15,0.18)); }
.crest-shield { width: 68px; height: 80px; }

/* Streak (form) */
.streak { display: inline-flex; gap: 4px; }
.streak-pip {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 12px; letter-spacing: 0.04em;
  border-radius: 3px;
}
.streak-pip.V { background: #2f7d4f; color: #fff; }
.streak-pip.D { background: #c43040; color: #fff; }
.streak-pip.N { background: rgba(255,255,255,0.25); color: #ffffff; }
.hero-form { margin-top: 22px; display: inline-flex; align-items: center; gap: 14px; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.18); background: rgba(0,0,0,0.18); border-radius: 3px; }
.hero-form-l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.03em; color: rgba(255,255,255,0.7); }
.matchday-meta { display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(20,19,15,0.18); font-size: 13px; }
.matchday-meta .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.03em; opacity: 0.65; }

/* Countdown */
.countdown { display: flex; gap: 8px; margin-top: 6px; }
.countdown-cell { background: var(--sang); color: #fff; padding: 6px 10px; border-radius: 3px; font-family: var(--mono); font-size: 14px; font-weight: 600; min-width: 42px; text-align: center; }
.countdown-cell .c-l { display: block; font-size: 8px; letter-spacing: 0.14em; opacity: 0.6; margin-top: 2px; }

/* Sections */
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 36px; gap: 24px; flex-wrap: wrap; }
.section-head h2 { font-family: var(--display); font-size: clamp(40px, 5vw, 72px); line-height: 0.92; margin: 0; position: relative; padding-bottom: 14px; }
.section-head h2::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 56px; height: 4px; background: var(--or);
}
.section-head .right { display: flex; gap: 8px; }
.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em; color: var(--ink-3); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.eyebrow .num { color: var(--sang); font-weight: 700; }
.eyebrow .bar { width: 28px; height: 1px; background: var(--ink-3); display: inline-block; }

/* Cards & lists */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { box-shadow: var(--shadow); }
.card.clickable { cursor: pointer; }
.card.clickable:hover { transform: translateY(-3px); }

/* Result row */
.results { display: flex; flex-direction: column; gap: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.result-row { display: grid; grid-template-columns: 84px 96px 1fr 88px 64px 32px; align-items: center; gap: 16px; padding: 18px 22px; background: var(--paper); border-bottom: 1px solid var(--line-2); transition: background 0.15s; }
.result-row:last-child { border-bottom: 0; }
.result-row:hover { background: var(--bg); }
.result-row .date { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-3); }
.result-row .j { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
.result-row .adv { font-weight: 600; font-size: 15px; }
.result-row .adv .vs { color: var(--ink-3); font-weight: 400; margin-right: 8px; }
.result-row .score { font-family: var(--display); font-size: 24px; letter-spacing: 0.04em; }
.result-row .score .sep { color: var(--ink-3); margin: 0 6px; }
.result-row .pill {
  width: 28px; height: 28px; display: grid; place-items: center;
  font-family: var(--display); font-size: 14px; letter-spacing: 0.02em;
  border-radius: 4px;
}
.pill.V { background: var(--green); color: white; }
.pill.D { background: var(--red); color: white; }
.pill.N { background: var(--ink-3); color: white; }
.result-row .domicile { font-family: var(--mono); font-size: 10px; letter-spacing: 0.03em; color: var(--ink-3); }

/* Team monogram badges */
.team-badge {
  display: inline-grid; place-items: center;
  font-family: var(--display); letter-spacing: 0.02em;
  border-radius: 5px; flex: 0 0 auto;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.18), inset 0 -2px 0 rgba(0,0,0,0.18);
}
.team-cell { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.team-cell-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.result-row .adv .team-cell { font-weight: 600; }
.result-row .adv .vs { color: var(--ink-3); font-weight: 400; margin-right: 0; }

/* Sponsor strip */
.sponsor-strip { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-sm); }
.sponsor-cell { aspect-ratio: 2/1; min-height: 96px; display: grid; place-items: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px; background: var(--paper); transition: background 0.18s; overflow: hidden; }
.sponsor-cell:nth-child(6n) { border-right: 0; }
.sponsor-cell:nth-last-child(-n+6) { border-bottom: 0; }
.sponsor-cell:hover { background: var(--bg-2); }
.sponsor-name { font-family: var(--display); font-size: 18px; line-height: 1; text-align: center; color: var(--ink); }
.sponsor-cat { font-family: var(--mono); font-size: 9px; letter-spacing: 0.03em; color: var(--ink-3); margin-top: 6px; }
.partner-logo { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.partner-logo img { max-width: 100%; max-height: 64px; width: auto; height: auto; object-fit: contain; }

/* Partner logo placeholder — generated wordmark */
.partner-logo-ph { display: flex; align-items: center; gap: 12px; }
.partner-logo-ph .plogo-mark {
  flex: 0 0 auto; width: 38px; height: 38px;
  display: grid; place-items: center;
  color: #fff; font-family: var(--display); font-size: 16px; letter-spacing: 0.02em;
  border-radius: 8px;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.18), inset 0 -2px 0 rgba(0,0,0,0.16);
}
.partner-logo-ph .plogo-name {
  font-family: var(--display); font-size: 18px; line-height: 0.95; color: var(--ink);
  letter-spacing: 0.01em;
}
.partner-logo-ph.big { gap: 16px; }
.partner-logo-ph.big .plogo-mark { width: 52px; height: 52px; font-size: 22px; border-radius: 10px; }
.partner-logo-ph.big .plogo-name { font-size: 26px; }

/* News */
.news-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.news-card { display: flex; flex-direction: column; cursor: pointer; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-img {
  aspect-ratio: 16/10;
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.news-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.news-img .ph {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, #e8eaee 0 10px, #eef0f3 10px 20px);
  display: grid; place-items: center;
  color: var(--ink-3); font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em;
}
.news-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--sang); color: #fff;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.03em;
  padding: 5px 9px;
  font-weight: 600;
}
.news-card > .news-meta, .news-card > h3, .news-card > p, .news-card > .read { margin-left: 20px; margin-right: 20px; }
.news-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-3); margin-top: 18px; }
.news-card.feat .news-img { aspect-ratio: 4/3; }
.news-card.feat h3 { font-family: var(--display); font-size: 36px; line-height: 1; letter-spacing: 0.01em; margin: 12px 20px 10px; }
.news-card h3 { font-family: var(--display); font-size: 22px; line-height: 1.05; letter-spacing: 0.01em; margin: 10px 20px 8px; transition: color 0.18s; }
.news-card:hover h3 { color: var(--sang); }
.news-card p { color: var(--ink-2); font-size: 14px; }
.news-card .read { margin-top: auto; padding: 14px 0 20px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.news-card:hover .read { color: var(--sang); }

/* Footer */
.footer { background: var(--sang); color: #ffffff; margin-top: auto; border-top: 4px solid var(--or); }
.footer h4 { color: rgba(255,255,255,0.55) !important; }
.footer ul a:hover { color: var(--or-hi) !important; }
.footer-bottom { border-top-color: rgba(255,255,255,0.15) !important; color: rgba(255,255,255,0.55) !important; }
.footer-brand .display .y { color: var(--or-hi) !important; }
.footer-brand p { color: rgba(255,255,255,0.65) !important; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 32px; }
.footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em; color: rgba(246,243,236,0.5); margin: 0 0 20px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer ul a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid #2a2722; padding: 22px 0; font-family: var(--mono); font-size: 10px; letter-spacing: 0.03em; color: rgba(246,243,236,0.5); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-brand .display { font-family: var(--display); font-size: 64px; line-height: 0.9; color: var(--bg); }
.footer-brand .display .y { color: var(--yellow); }
.footer-brand p { color: rgba(246,243,236,0.6); margin: 16px 0 0; max-width: 360px; font-size: 14px; }

/* MATCHES PAGE */
/* Team switcher */
.team-switch { display: flex; flex-wrap: wrap; gap: 8px; }
.team-pill {
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  font-family: var(--display); font-size: 15px; letter-spacing: 0.02em;
  transition: all 0.15s;
}
.team-pill:hover { border-color: #fff; color: #fff; }
.team-pill.active { background: var(--or-hi); border-color: var(--or-hi); color: var(--ink); }
.team-switch-note { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 12px; }
.team-summary { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.18); flex-wrap: wrap; }
.team-bilan { display: flex; gap: 32px; }

.info-note {
  background: var(--bg-2); border-left: 3px solid var(--or);
  padding: 14px 18px; border-radius: 0 var(--r) var(--r) 0;
  font-size: 14px; color: var(--ink-2); margin-bottom: 18px;
}

/* Weekend roundup (home) */
.roundup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.roundup-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 18px; box-shadow: var(--shadow-sm); cursor: pointer; transition: transform 0.18s, box-shadow 0.18s; }
.roundup-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.rc-top { display: flex; align-items: center; gap: 10px; }
.rc-team { flex: 1; min-width: 0; }
.rc-name { font-family: var(--display); font-size: 20px; line-height: 1; }
.rc-comp { font-family: var(--mono); font-size: 10px; letter-spacing: 0.03em; color: var(--ink-3); margin-top: 3px; }
.rc-score { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 16px 0 10px; }
.rc-adv { font-size: 13px; font-weight: 600; color: var(--ink-2); flex: 1; }
.rc-adv.right { text-align: right; }
.rc-nums { font-family: var(--display); font-size: 30px; letter-spacing: 0.04em; white-space: nowrap; }
.rc-nums .sep { color: var(--ink-3); margin: 0 2px; }
.rc-foot { font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; color: var(--ink-3); border-top: 1px solid var(--line-2); padding-top: 10px; }

/* Fixtures list (home — this weekend) */
.fixtures-list { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.fixture-row { display: grid; grid-template-columns: 88px 1.2fr 96px 1.2fr 1fr 48px; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1px solid var(--line-2); cursor: pointer; transition: background 0.15s; }
.fixture-row:last-child { border-bottom: 0; }
.fixture-row:hover { background: var(--bg); }
.fx-day { font-family: var(--display); font-size: 18px; line-height: 1; }
.fx-day span { display: block; font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin-top: 3px; }
.fx-team, .fx-opp { display: flex; align-items: center; gap: 10px; font-weight: 600; min-width: 0; }
.fx-team span, .fx-opp span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fx-vs { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-3); text-align: center; }
.fx-comp { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
.fx-loc { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: var(--ink-3); text-align: right; }

/* MATCHES PAGE tabs */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.tabs button, .tabs a {
  padding: 12px 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em;
  color: var(--ink-3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.tabs button:hover, .tabs a:hover { color: var(--ink); }
.tabs button.active, .tabs a.active { color: var(--ink); border-bottom-color: var(--yellow); }
.filters { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; }
.filter-chip {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--mono); letter-spacing: 0.06em;
  color: var(--ink-2);
  transition: all 0.15s;
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.active { background: var(--ink); color: var(--yellow); border-color: var(--ink); }

/* Standings */
.standings { width: 100%; border-collapse: collapse; font-size: 14px; }
.standings th { text-align: left; font-family: var(--mono); font-size: 10px; letter-spacing: 0.03em; color: var(--ink-3); font-weight: 500; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.standings th.num, .standings td.num { text-align: right; font-variant-numeric: tabular-nums; }
.standings td { padding: 12px; border-bottom: 1px solid var(--line-2); }
.standings tr.us { background: rgba(244,196,48,0.12); }
.standings tr.us td { font-weight: 600; }
.standings .rank { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: var(--bg-2); font-family: var(--mono); font-size: 12px; border-radius: 4px; }
.standings tr.us .rank { background: var(--yellow); color: var(--ink); }

/* Teams page */
.teams-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card { background: var(--paper); border: 1px solid var(--line); padding: 24px; border-radius: var(--r); box-shadow: var(--shadow-sm); transition: all 0.18s; cursor: pointer; position: relative; }
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.team-card.active { border-color: var(--sang); box-shadow: 0 0 0 2px var(--sang) inset, var(--shadow); }
.team-num { font-family: var(--display); font-size: 40px; line-height: 0.95; letter-spacing: 0.01em; color: var(--ink); margin-bottom: 8px; }
.team-card .cat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em; color: var(--ink-3); }
.team-card .div { font-size: 13.5px; margin-top: 10px; font-weight: 600; color: var(--sang); }
.team-card .meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 12px; color: var(--ink-2); }

/* Team detail sessions */
.team-sessions { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.16); display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.team-session { background: rgba(255,255,255,0.06); border-left: 3px solid var(--or-hi); padding: 10px 14px; border-radius: 0 4px 4px 0; }
.team-session .ts-day { display: block; font-weight: 600; font-size: 14px; }
.team-session .ts-time { display: block; font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.team-session .ts-note { display: block; font-size: 11px; color: var(--or-hi); margin-top: 4px; text-transform: lowercase; }
.team-card.active::after {
  content: "→"; position: absolute; top: 22px; right: 22px;
  font-size: 22px; color: var(--yellow);
}

.team-detail { background: var(--sang); color: #ffffff; padding: 36px; margin-top: 18px; border-radius: 4px; }
.team-detail h3 { font-family: var(--display); font-size: 56px; margin: 0; line-height: 0.9; }
.team-detail h3 .y { color: var(--or-hi); }
.team-detail .meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 28px; }
.team-detail .meta-grid .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.03em; color: rgba(255,255,255,0.55); }
.team-detail .meta-grid .v { font-size: 16px; margin-top: 6px; font-weight: 500; }

/* Planning */
.planning-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.planning-day { background: var(--paper); padding: 16px; min-height: 280px; }
.planning-day .head { font-family: var(--display); font-size: 22px; letter-spacing: 0.02em; padding-bottom: 10px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.planning-day.weekend .head { color: var(--yellow); }
.planning-slot { background: var(--bg); padding: 8px 10px; margin-bottom: 6px; border-left: 3px solid var(--yellow); font-size: 12px; transition: transform 0.15s; }
.planning-slot:hover { transform: translateX(2px); }
.planning-slot .cat { font-weight: 600; font-size: 13px; }
.planning-slot .time { font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin-top: 2px; }

/* Newsletter */
.newsletter-block { background: var(--sang); color: #ffffff; padding: 56px; border-radius: 4px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.newsletter-block h3 { font-family: var(--display); font-size: 64px; line-height: 0.9; margin: 0; letter-spacing: 0.01em; }
.newsletter-block h3 .y { color: var(--or-hi); }
.newsletter-block p { color: rgba(255,255,255,0.75); margin-top: 14px; max-width: 480px; }
.nl-form { display: flex; flex-direction: column; gap: 12px; }
.nl-form input {
  padding: 14px 18px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: #ffffff; border-radius: 3px;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.5); }
.nl-form input:focus { outline: none; border-color: var(--or); background: rgba(255,255,255,0.12); }
.nl-form .check { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.7); }
.nl-form .check input { width: auto; padding: 0; margin-top: 2px; }
.nl-form button {
  background: var(--or); color: var(--ink); padding: 14px 20px;
  font-weight: 700; letter-spacing: 0.04em; font-size: 12px;
  border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: background 0.15s;
}
.nl-form button:hover { background: var(--yellow-2); }
.nl-success {
  background: rgba(47,125,79,0.18); border: 1px solid var(--green);
  padding: 14px 18px; border-radius: 4px; font-size: 14px;
}

/* Bureau */
.bureau-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bureau-card { background: var(--paper); border: 1px solid var(--line); padding: 24px; border-radius: var(--r); box-shadow: var(--shadow-sm); transition: box-shadow 0.2s; }
.bureau-card:hover { box-shadow: var(--shadow); }
.bureau-avatar {
  width: 56px; height: 56px;
  background: var(--ink-2); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--display); font-size: 20px; letter-spacing: 0.04em;
  border-radius: 50%; margin-bottom: 16px;
  overflow: hidden;
}
.bureau-avatar img { width: 100%; height: 100%; object-fit: cover; }
.bureau-card .role { font-family: var(--mono); font-size: 10px; letter-spacing: 0.03em; color: var(--ink-3); }
.bureau-card .nom  { font-family: var(--display); font-size: 24px; margin-top: 4px; line-height: 1; }
.bureau-card .since { margin-top: 14px; font-family: var(--mono); font-size: 11px; color: var(--ink-3); }

/* Timeline */
.timeline { position: relative; padding-left: 48px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 12px; bottom: 12px; width: 1px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before { content: ""; position: absolute; left: -44px; top: 8px; width: 14px; height: 14px; background: var(--yellow); border: 3px solid var(--bg); border-radius: 50%; }
.timeline-item .an { font-family: var(--display); font-size: 36px; line-height: 1; }
.timeline-item .t { font-weight: 600; margin-top: 6px; font-size: 16px; }
.timeline-item .d { margin-top: 6px; color: var(--ink-2); font-size: 14px; max-width: 560px; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--display); font-size: 28px; letter-spacing: 0.01em; line-height: 1.05; transition: color 0.15s; }
.faq-q:hover { color: var(--ink-2); }
.faq-q .icon { font-size: 32px; line-height: 0.7; color: var(--yellow); transition: transform 0.25s; flex: 0 0 auto; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 24px; }
.faq-a p { color: var(--ink-2); max-width: 720px; margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info-row:last-child { border-bottom: 0; }
.contact-info-row .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.03em; color: var(--ink-3); width: 120px; flex: 0 0 120px; padding-top: 4px; }
.contact-info-row .v { font-size: 15px; font-weight: 500; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 3px; margin-bottom: 12px;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--ink); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.map-block { aspect-ratio: 4/3; background: var(--bg-2); border: 1px solid var(--line); position: relative; overflow: hidden; }
.map-block iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-block .ph {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, #d8e6c8 0%, #c8d6b6 40%, #b8c8a4 70%, #a8b896 100%);
  display: grid; place-items: center;
}
.map-block .pin {
  position: absolute; left: 50%; top: 45%; transform: translate(-50%, -100%);
  width: 32px; height: 40px;
}
.map-block .label { position: absolute; bottom: 14px; left: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.03em; background: var(--paper); padding: 6px 10px; border: 1px solid var(--line); }

/* Mountain decor for hero — multi-range silhouette */
.mountains {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 220px;
  pointer-events: none;
  z-index: 1;
}

/* Mini crest in header */
.mini-crest { width: 36px; height: 42px; flex: 0 0 36px; filter: drop-shadow(0 2px 4px rgba(20,19,15,0.18)); }

/* Compact density */
[data-density="compact"] .section { padding: 48px 0; }
[data-density="compact"] .hero-grid { padding: 36px 0 44px; }
[data-density="compact"] .result-row { padding: 12px 18px; }
[data-density="compact"] .card { padding: 16px; }

/* Responsive */
@media (max-width: 1100px) {
  .hero-carousel { height: 500px; }
  .nextmatch-inner { grid-template-columns: 1fr; gap: 24px; }
  .nextmatch-right { border-left: 0; border-top: 1px solid rgba(255,255,255,0.18); padding-left: 0; padding-top: 20px; }
  .roundup-grid { grid-template-columns: repeat(2, 1fr); }
  .fixture-row { grid-template-columns: 72px 1fr 80px 1fr 56px; }
  .fixture-row .fx-comp { display: none; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.feat { grid-column: span 2; }
  .teams-grid, .bureau-grid { grid-template-columns: repeat(2, 1fr); }
  .team-detail .meta-grid { grid-template-columns: repeat(2, 1fr); }
  .team-sessions { grid-template-columns: 1fr; }
  .planning-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-block { grid-template-columns: 1fr; padding: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .sponsor-strip { grid-template-columns: repeat(3, 1fr); }
  .sponsor-cell { border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; }
  .sponsor-cell:nth-child(3n) { border-right: 0 !important; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; height: 64px; }
  .hero-carousel { height: 440px; }
  .hero-carousel h1 { font-size: 48px; }
  .hero-arrow { width: 40px; height: 40px; font-size: 22px; }
  .hero-arrow.left { left: 12px; }
  .hero-arrow.right { right: 12px; }
  .nextmatch-vs { gap: 16px; }
  .nm-team span { font-size: 20px; }
  .roundup-grid { grid-template-columns: 1fr; }
  .team-bilan { gap: 20px; }
  .fixture-row { grid-template-columns: 60px 1fr 1fr 44px; }
  .fixture-row .fx-vs, .fixture-row .fx-comp { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.feat { grid-column: span 1; }
  .teams-grid, .bureau-grid { grid-template-columns: 1fr; }
  .planning-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .result-row { grid-template-columns: 70px 1fr 80px 56px 28px; gap: 10px; padding: 14px 12px; }
  .result-row .j, .result-row .domicile { display: none; }
  .standings .hide-sm { display: none; }
  .wrap, .wrap-narrow { padding: 0 16px; }
  .topbar-inner { font-size: 10px; }
  .topbar .tb-right .tb-link:nth-child(n+2) { display: none; }
}

/* Mobile menu (Stimulus) — overlay plein écran */
.mobile-menu-overlay { position: fixed; inset: 0; z-index: 100; background: var(--paper); padding: 24px; overflow-y: auto; }
.mobile-menu-overlay .mm-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.mobile-menu-overlay nav { margin-top: 24px; display: flex; flex-direction: column; }
.mobile-menu-overlay nav a { font-family: var(--display); font-size: 30px; letter-spacing: 0.02em; padding: 14px 4px; border-bottom: 1px solid var(--line-2); color: var(--ink); }
.mobile-menu-overlay nav a:last-of-type { border-bottom: 0; }
.mobile-menu-overlay nav a.active { color: var(--sang); }
.menu-toggle { display: none; width: 40px; height: 40px; place-items: center; color: var(--ink); border-radius: var(--r-sm); }
.menu-toggle:hover { background: var(--bg-2); }
@media (max-width: 720px) { .menu-toggle { display: grid; } }
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *




 */
 
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */





@font-face {
  font-family: 'FontAwesome';
  src: url(/assets/fontawesome-webfont-82ff0fe46a6f60e0ab3c4a9891a0ae0a1f7b7e84c625f55358379177a2dcb202.eot);
  src: url(/assets/fontawesome-webfont-82ff0fe46a6f60e0ab3c4a9891a0ae0a1f7b7e84c625f55358379177a2dcb202.eot?#iefix) format('embedded-opentype'), url(/assets/fontawesome-webfont-fa79d127baca4558a0b973f5f514b90fc5ef43314c41095f5cb285ffaa0a4029.woff2) format('woff2'), url(/assets/fontawesome-webfont-c9a0a23a23a3f6f7165cba218b40483a0b1750d92b49c40842f1d8f566f5f421.woff) format('woff'), url(/assets/fontawesome-webfont-2794b002e3568f5abce8991e2431ca79e0ce84a08ea1268884b4e097b62762a6.ttf) format('truetype'), url(/assets/fontawesome-webfont-67c6c8e9ffb0fcd7c7c64eaff12a298abf5b54a54b54f0e6c4c49161dba62d6d.svg#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
