/* ===================================================================
   EDELMETALLPREISE MODERN CSS
   Modernes Design für Gold, Silber und Platin Preistabellen
   Mit responsivem Design, Animationen und Touch-Optimierung
   =================================================================== */

/* CSS Custom Properties für bessere Wartbarkeit */
:root {
  /* Gold Theme Colors - Modern & Vibrant */
  --gold-primary: #FF8C00;
  --gold-secondary: #FF7F00;
  --gold-dark: #CC7000;
  --gold-light: #FFE4B5;
  --gold-gradient: linear-gradient(135deg, #FF8C00 0%, #FFB84D 100%);
  --gold-shadow: rgba(255, 140, 0, 0.3);
  
  /* Silver Theme Colors - Metallic & Modern */
  --silver-primary: #B8B8B8;
  --silver-secondary: #A0A0A0;
  --silver-dark: #808080;
  --silver-light: #F5F5F5;
  --silver-gradient: linear-gradient(135deg, #B8B8B8 0%, #D3D3D3 100%);
  --silver-shadow: rgba(184, 184, 184, 0.3);
  
  /* Platinum Theme Colors - Luxurious & Modern */
  --platinum-primary: #4A5568;
  --platinum-secondary: #2D3748;
  --platinum-dark: #1A202C;
  --platinum-light: #E2E8F0;
  --platinum-gradient: linear-gradient(135deg, #4A5568 0%, #718096 100%);
  --platinum-shadow: rgba(74, 85, 104, 0.3);
  
  /* Universal Colors - Modern & Clean */
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --neutral-color: #6b7280;
  
  /* Price Direction Colors - Modern */
  --price-up: #10b981;
  --price-down: #ef4444;
  --price-neutral: #6b7280;
  --price-up-bg: rgba(16, 185, 129, 0.1);
  --price-down-bg: rgba(239, 68, 68, 0.1);
  --price-neutral-bg: rgba(107, 114, 128, 0.05);
  
  /* Spacing & Sizing - Modern */
  --spacing-xs: 0.375rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1.25rem;
  --spacing-lg: 2rem;
  --spacing-xl: 2.5rem;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 12px 35px rgba(0, 0, 0, 0.2);
  
  /* Dark Mode Colors - Modern & Elegant */
  --dark-bg-primary: #1f2937;
  --dark-bg-secondary: #374151;
  --dark-text-primary: #f9fafb;
  --dark-text-secondary: #d1d5db;
  --dark-border-color: #4b5563;
  
  /* Dark Mode Gold Theme */
  --dark-gold-primary: #FFB84D;
  --dark-gold-secondary: #FF8C00;
  --dark-gold-dark: #CC7000;
  --dark-gold-light: #2D1B0F;
  --dark-gold-gradient: linear-gradient(135deg, #FFB84D 0%, #FF8C00 100%);
  
  /* Dark Mode Silver Theme */
  --dark-silver-primary: #D3D3D3;
  --dark-silver-secondary: #B8B8B8;
  --dark-silver-dark: #808080;
  --dark-silver-light: #2D2D2D;
  --dark-silver-gradient: linear-gradient(135deg, #D3D3D3 0%, #B8B8B8 100%);
  
  /* Dark Mode Platinum Theme */
  --dark-platinum-primary: #718096;
  --dark-platinum-secondary: #4A5568;
  --dark-platinum-dark: #2D3748;
  --dark-platinum-light: #1A1F2E;
  --dark-platinum-gradient: linear-gradient(135deg, #718096 0%, #4A5568 100%);
  
  /* Dark Mode Price Direction Colors */
  --dark-price-up: #34d399;
  --dark-price-down: #f87171;
  --dark-price-neutral: #9ca3af;
  --dark-price-up-bg: rgba(52, 211, 153, 0.1);
  --dark-price-down-bg: rgba(248, 113, 113, 0.1);
  --dark-price-neutral-bg: rgba(156, 163, 175, 0.05);
}

/* ===================================================================
   BASE STYLES & TYPOGRAPHY
   =================================================================== */

/* Container Basis-Styles - Modern & Clean */
#gold-container,
#silber-container,
#platin-container {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  margin: var(--spacing-lg) 0;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  
  /* Modern Layout */
  display: flex;
  width: auto;
  
  /* No scrolling - full responsive */
  overflow: visible;
}

/* Hover-Effekte für Container - Moderne Schatten mit Metallfarben */
#gold-container:hover,
#silber-container:hover,
#platin-container:hover {
  box-shadow: var(--shadow-lg);
}

#gold-container:hover {
  box-shadow: 0 12px 35px var(--gold-shadow);
}

#silber-container:hover {
  box-shadow: 0 12px 35px var(--silver-shadow);
}

#platin-container:hover {
  box-shadow: 0 12px 35px var(--platinum-shadow);
}

/* Container Theme-spezifische Stile */
#gold-container {
  border-left: 5px solid var(--gold-primary);
}

#gold-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  z-index: 1;
}

#silber-container {
  border-left: 5px solid var(--silver-primary);
}

#silber-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--silver-gradient);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  z-index: 1;
}

#platin-container {
  border-left: 5px solid var(--platinum-primary);
}

#platin-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--platinum-gradient);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  z-index: 1;
}

/* ===================================================================
   TABLE BASE STYLES - Modern & Clean
   =================================================================== */

/* LIVE-OPTIMIERUNG: CSS für Live-Updates */
.live-updated {
  animation: liveUpdatePulse 0.6s ease-out;
  position: relative;
}

.live-status {
  font-size: 0.8em;
  color: #666;
  text-align: right;
  margin-top: 0.5em;
  padding: 0.25em 0.5em;
  background: #f8f9fa;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.live-status.has-changes {
  background: #e3f2fd;
  color: #1565c0;
}

/* Live-Update Animation */
@keyframes liveUpdatePulse {
  0% {
    background-color: rgba(33, 150, 243, 0.3);
    transform: scale(1);
  }
  50% {
    background-color: rgba(33, 150, 243, 0.6);
    transform: scale(1.02);
  }
  100% {
    background-color: transparent;
    transform: scale(1);
  }
}

/* Performance-Optimierung: GPU-Beschleunigung für Animationen */
.live-updated,
.up,
.down,
.big-change {
  will-change: transform, background-color;
  transform: translateZ(0);
}

#goldpreise-table,
#silberpreise-table,
#platinpreise-table {
  width: auto;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  background: var(--bg-primary);
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius);
  overflow: hidden;
  
  /* Modern table layout - auto for responsive width adaptation */
  table-layout: auto;
}

/* Table Head Styling - No more sticky */
#goldpreise-table thead,
#silberpreise-table thead,
#platinpreise-table thead {
  background: var(--bg-secondary);
}

#goldpreise-table thead th,
#silberpreise-table thead th,
#platinpreise-table thead th {
  padding: var(--spacing-md) var(--spacing-sm);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-primary);
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}

/* Theme-spezifische Header - Modern mit durchgehenden Metalltönen */
#goldpreise-table thead th {
  background: var(--gold-gradient);
  border-bottom: 2px solid var(--gold-primary);
  color: var(--text-primary);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Erste Header-Spalte */
#goldpreise-table thead th:first-child,
#silberpreise-table thead th:first-child,
#platinpreise-table thead th:first-child {
  text-align: center;
  white-space: nowrap;
}

/* Preis-Header - gleichmäßige Verteilung */
#goldpreise-table thead th:not(:first-child),
#silberpreise-table thead th:not(:first-child),
#platinpreise-table thead th:not(:first-child) {
  text-align: center;
  white-space: nowrap;
}

#silberpreise-table thead th {
  background: var(--silver-gradient);
  border-bottom: 2px solid var(--silver-primary);
  color: var(--text-primary);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#platinpreise-table thead th {
  background: var(--platinum-gradient);
  border-bottom: 2px solid var(--platinum-primary);
  color: var(--bg-primary);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Header Hover Effekte - Moderne Metallglanz-Effekte */
#goldpreise-table thead th:hover {
  background: linear-gradient(135deg, #FFB84D 0%, #FF8C00 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--gold-shadow);
}

#silberpreise-table thead th:hover {
  background: linear-gradient(135deg, #D3D3D3 0%, #B8B8B8 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--silver-shadow);
}

#platinpreise-table thead th:hover {
  background: linear-gradient(135deg, #718096 0%, #4A5568 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--platinum-shadow);
}

/* ===================================================================
   TABLE BODY & CELL STYLES
   =================================================================== */

#goldpreise-table tbody tr,
#silberpreise-table tbody tr,
#platinpreise-table tbody tr {
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

#goldpreise-table tbody tr:hover,
#silberpreise-table tbody tr:hover,
#platinpreise-table tbody tr:hover {
  background: var(--bg-secondary);
}

#goldpreise-table tbody tr:last-child,
#silberpreise-table tbody tr:last-child,
#platinpreise-table tbody tr:last-child {
  border-bottom: none;
}

/* Table Cells - Modern Layout */
#goldpreise-table td,
#silberpreise-table td,
#platinpreise-table td {
  padding: var(--spacing-md) var(--spacing-sm);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  border-right: 1px solid transparent;
  white-space: nowrap;
  
  /* Clean cell alignment */
  text-align: center;
  vertical-align: middle;
}

/* Erste Spalte (Labels) - modern styling */
#goldpreise-table td:first-child,
#silberpreise-table td:first-child,
#platinpreise-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.02);
  white-space: nowrap;
  text-align: center;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}


/* ===================================================================
   PREIS-SPALTEN - modern alignment
   =================================================================== */

/* Preis-Spalten - modern alignment */
#goldpreise-table td:not(:first-child),
#silberpreise-table td:not(:first-child),
#platinpreise-table td:not(:first-child) {
  text-align: center;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-weight: 600;
}

/* ===================================================================
   PRICE DIRECTION STYLES
   =================================================================== */

/* Neutral State */
.neutral {
  color: var(--price-neutral);
  background: var(--price-neutral-bg);
}

/* Up Direction - Grün */
.up {
  color: var(--price-up);
  background: var(--price-up-bg);
  font-weight: 600;
  position: relative;
}

.up::before {
  content: '▲';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  opacity: 0.6;
}

/* Down Direction - Rot */
.down {
  color: var(--price-down);
  background: var(--price-down-bg);
  font-weight: 600;
  position: relative;
}

.down::before {
  content: '▼';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  opacity: 0.6;
}

/* Big Change Indicator */
.big-change {
  animation: pulseGlow 2s infinite;
  border-left: 3px solid currentColor;
  font-weight: 700;
}

.up.big-change {
  border-left-color: var(--price-up);
  box-shadow: 0 0 10px var(--price-up-bg);
}

.down.big-change {
  border-left-color: var(--price-down);
  box-shadow: 0 0 10px var(--price-down-bg);
}

/* Live Update Animation */
.live-updated {
  animation: liveUpdateFlash 2s ease-out;
  transition: all 0.3s ease;
}



/* ===================================================================
   ANIMATIONS
   =================================================================== */

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

@keyframes liveUpdateFlash {
  0% {
    background-color: rgba(255, 215, 0, 0.3);
    transform: scale(1);
  }
  20% {
    background-color: rgba(255, 215, 0, 0.6);
    transform: scale(1.02);
  }
  100% {
    background-color: transparent;
    transform: scale(1);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Table Animation - Entfernt um Update-Bewegungen zu vermeiden */

/* Row Stagger Animation - Entfernt um Update-Bewegungen zu vermeiden */

/* ===================================================================
   ERROR HANDLING
   =================================================================== */

#gold-error-msg,
#silber-error-msg,
#platin-error-msg {
  display: none;
  padding: var(--spacing-md);
  margin: var(--spacing-md) 0;
  background: #fee;
  color: var(--danger-color);
  border: 1px solid var(--danger-color);
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 500;
}

/* ===================================================================
   RESPONSIVE DESIGN
   =================================================================== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
  #gold-container,
  #silber-container,
  #platin-container {
    margin: var(--spacing-md) 0;
    border-radius: var(--border-radius);
  }
  
  #goldpreise-table td,
  #silberpreise-table td,
  #platinpreise-table td {
    padding: var(--spacing-sm);
    font-size: 13px;
  }
  
  #goldpreise-table thead th,
  #silberpreise-table thead th,
  #platinpreise-table thead th {
    padding: var(--spacing-sm);
    font-size: 11px;
  }
}

/* Mobile Styles (max-width: 768px) - Adaptive Breiten */
@media (max-width: 768px) {
  #gold-container,
  #silber-container,
  #platin-container {
    margin: var(--spacing-sm) 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    
    /* Mobile Flexbox-Anpassungen */
    min-height: 150px;
  }
  
  #goldpreise-table,
  #silberpreise-table,
  #platinpreise-table {
    font-size: 12px;
    
    /* Mobile: Tabelle nutzt volle Containerbreite */
    width: 100%;
    flex: 1;
  }
  
  #goldpreise-table td,
  #silberpreise-table td,
  #platinpreise-table td {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 12px;
  }
  
  #goldpreise-table thead th,
  #silberpreise-table thead th,
  #platinpreise-table thead th {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 10px;
  }
  
  /* Mobile Touch Optimierung */
  #goldpreise-table tbody tr:hover,
  #silberpreise-table tbody tr:hover,
  #platinpreise-table tbody tr:hover {
    transform: none;
    box-shadow: none;
  }
}

/* Very Small Mobile (max-width: 480px) - Vollständig adaptive Breiten */
@media (max-width: 480px) {
  #goldpreise-table,
  #silberpreise-table,
  #platinpreise-table {
    width: 100%;
    font-size: 10px;
  }
  
  #goldpreise-table td,
  #silberpreise-table td,
  #platinpreise-table td {
    padding: var(--spacing-xs);
    font-size: 11px;
    
    /* Erlaubt Text-Umbruch bei sehr kleinen Bildschirmen */
    white-space: normal;
    word-break: break-word;
    hyphens: auto;
  }
  
  #goldpreise-table thead th,
  #silberpreise-table thead th,
  #platinpreise-table thead th {
    padding: var(--spacing-xs);
    font-size: 9px;
    white-space: normal;
    word-break: break-word;
  }
  
  .up::before,
  .down::before {
    display: none;
  }
}

/* ===================================================================
   ACCESSIBILITY IMPROVEMENTS
   =================================================================== */

/* Focus Styles */
#goldpreise-table thead th:focus,
#silberpreise-table thead th:focus,
#platinpreise-table thead th:focus {
  outline: 2px solid var(--warning-color);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --price-up: #008000;
    --price-down: #cc0000;
    --border-color: #000000;
    --text-primary: #000000;
  }
  
  #goldpreise-table,
  #silberpreise-table,
  #platinpreise-table {
    border: 2px solid var(--border-color);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
  
  .big-change {
    animation: none;
  }
}

/* ===================================================================
   PRINT STYLES
   =================================================================== */

@media print {
  #gold-container,
  #silber-container,
  #platin-container {
    box-shadow: none;
    border: 1px solid #000;
    break-inside: avoid;
    margin: 0 0 1cm 0;
  }
  
  #goldpreise-table,
  #silberpreise-table,
  #platinpreise-table {
    min-width: auto;
    width: 100%;
  }
  
  .up::before,
  .down::before {
    display: none;
  }
  
  .up {
    color: #000;
    background: #f0f0f0;
  }
  
  .down {
    color: #000;
    background: #e0e0e0;
  }
  
}


/* ===================================================================
   DARK MODE SUPPORT
   =================================================================== */

@media (prefers-color-scheme: dark) {
  /* Base Container Styles */
  #gold-container,
  #silber-container,
  #platin-container {
    background: var(--dark-bg-primary);
    color: var(--dark-text-primary);
    border: 2px solid var(--dark-border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  }
  
  /* Gold Container Dark Mode */
  #gold-container {
    border-left-color: var(--dark-gold-primary);
  }
  
  #gold-container::before {
    background: var(--dark-gold-gradient);
  }
  
  /* Silver Container Dark Mode */
  #silber-container {
    border-left-color: var(--dark-silver-primary);
  }
  
  #silber-container::before {
    background: var(--dark-silver-gradient);
  }
  
  /* Platinum Container Dark Mode */
  #platin-container {
    border-left-color: var(--dark-platinum-primary);
  }
  
  #platin-container::before {
    background: var(--dark-platinum-gradient);
  }
  
  /* Table Styles Dark Mode */
  #goldpreise-table,
  #silberpreise-table,
  #platinpreise-table {
    background: var(--dark-bg-primary);
    color: var(--dark-text-primary);
  }
  
  /* Table Headers Dark Mode */
  #goldpreise-table thead,
  #silberpreise-table thead,
  #platinpreise-table thead {
    background: var(--dark-bg-secondary);
  }
  
  #goldpreise-table thead th,
  #silberpreise-table thead th,
  #platinpreise-table thead th {
    background: var(--dark-bg-secondary);
    color: var(--dark-text-primary);
    border-bottom-color: var(--dark-border-color);
  }
  
  /* Gold Headers Dark Mode */
  #goldpreise-table thead th {
    background: var(--dark-gold-gradient);
    border-bottom: 2px solid var(--dark-gold-primary);
    color: var(--dark-text-primary);
  }
  
  /* Silver Headers Dark Mode */
  #silberpreise-table thead th {
    background: var(--dark-silver-gradient);
    border-bottom: 2px solid var(--dark-silver-primary);
    color: var(--dark-text-primary);
  }
  
  /* Platinum Headers Dark Mode */
  #platinpreise-table thead th {
    background: var(--dark-platinum-gradient);
    border-bottom: 2px solid var(--dark-platinum-primary);
    color: var(--dark-text-primary);
  }
  
  /* Table Body Dark Mode */
  #goldpreise-table tbody tr,
  #silberpreise-table tbody tr,
  #platinpreise-table tbody tr {
    border-bottom-color: var(--dark-border-color);
  }
  
  #goldpreise-table tbody tr:hover,
  #silberpreise-table tbody tr:hover,
  #platinpreise-table tbody tr:hover {
    background: var(--dark-bg-secondary);
  }
  
  /* Table Cells Dark Mode */
  #goldpreise-table td,
  #silberpreise-table td,
  #platinpreise-table td {
    color: var(--dark-text-primary);
  }
  
  /* First Column Dark Mode */
  #goldpreise-table td:first-child,
  #silberpreise-table td:first-child,
  #platinpreise-table td:first-child {
    background: rgba(255, 255, 255, 0.05);
    color: var(--dark-text-primary);
  }
  
  /* Price Direction Dark Mode */
  .neutral {
    color: var(--dark-price-neutral);
    background: var(--dark-price-neutral-bg);
  }
  
  .up {
    color: var(--dark-price-up);
    background: var(--dark-price-up-bg);
  }
  
  .down {
    color: var(--dark-price-down);
    background: var(--dark-price-down-bg);
  }
  
  .up.big-change {
    border-left-color: var(--dark-price-up);
    box-shadow: 0 0 10px var(--dark-price-up-bg);
  }
  
  .down.big-change {
    border-left-color: var(--dark-price-down);
    box-shadow: 0 0 10px var(--dark-price-down-bg);
  }
  
  /* Header Hover Dark Mode */
  #goldpreise-table thead th:hover,
  #silberpreise-table thead th:hover,
  #platinpreise-table thead th:hover {
    background: var(--dark-bg-primary);
  }
  
  /* Error Messages Dark Mode */
  #gold-error-msg,
  #silber-error-msg,
  #platin-error-msg {
    background: rgba(248, 113, 113, 0.1);
    color: var(--dark-price-down);
    border-color: var(--dark-price-down);
  }
  
  /* Focus Styles Dark Mode */
  #goldpreise-table thead th:focus,
  #silberpreise-table thead th:focus,
  #platinpreise-table thead th:focus {
    outline-color: var(--dark-gold-primary);
  }
}

/* Dark Mode High Contrast Support */
@media (prefers-color-scheme: dark) and (prefers-contrast: high) {
  :root {
    --dark-price-up: #00ff00;
    --dark-price-down: #ff4444;
    --dark-border-color: #ffffff;
    --dark-text-primary: #ffffff;
  }
  
  #goldpreise-table,
  #silberpreise-table,
  #platinpreise-table {
    border: 2px solid var(--dark-border-color);
  }
}



/* ===================================================================
   UTILITY CLASSES
   =================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
} 

