/* ============================================================
   PS-Motorradtraining — Shared Styles
   Farben: Primär #ec2424 | Dunkel #021228 | Text #222
   Font: Roboto
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #ec2424;
  --red-h:  #c91c1c;
  --dark:   #021228;
  --text:   #222222;
  --sub:    #555555;
  --light:  #f5f5f5;
  --border: #e0e0e0;
  --white:  #ffffff;
  --green:  #1a8c1a;
  --orange: #e07b00;
  --radius: 4px;
  --shadow: 0 2px 12px rgba(0,0,0,.10);
  --shadow-h: 0 4px 24px rgba(0,0,0,.16);
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; color: var(--text); background: #fff; line-height: 1.6; }
a    { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-h); }
img  { max-width: 100%; height: auto; display: block; }
ul   { list-style: none; }

/* ── Container ─────────────────────────────────────── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 840px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 28px; border-radius: var(--radius); border: 2px solid transparent;
  font-family: inherit; font-size: .95rem; font-weight: 500; cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .1s;
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary   { background: var(--red);   color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-h); border-color: var(--red-h); color: #fff; }
.btn-outline   { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-dark      { background: var(--dark);  color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: #04204a; border-color: #04204a; color: #fff; }
.btn-sm  { padding: 8px 18px; font-size: .85rem; }
.btn-lg  { padding: 16px 40px; font-size: 1.05rem; font-weight: 700; }
.btn-full { width: 100%; }

/* ── Header / Nav ──────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--dark); box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 44px; height: 44px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; color: #fff; letter-spacing: -1px;
}
.logo-text { color: #fff; font-size: 1.1rem; font-weight: 700; line-height: 1.2; }
.logo-text span { display: block; font-size: .75rem; font-weight: 300; opacity: .8; color: #fff; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(255,255,255,.1); }
.main-nav a.cta { background: var(--red); color: #fff; margin-left: 8px; }
.main-nav a.cta:hover { background: var(--red-h); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .2s; }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0a2850 60%, #1a1a2e 100%);
  color: #fff; padding: 80px 0 70px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 2px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero p { font-size: 1.1rem; font-weight: 300; opacity: .85; max-width: 560px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Section ───────────────────────────────────────── */
.section { padding: 64px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--dark); color: #fff; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.section-header h2 span { color: var(--red); }
.section-header p { color: var(--sub); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p { color: rgba(255,255,255,.65); }

/* ── Filter Bar ────────────────────────────────────── */
.filter-bar {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 20px; margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.filter-bar label { font-size: .85rem; font-weight: 500; color: var(--sub); white-space: nowrap; }
.filter-select {
  padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: .9rem; color: var(--text); background: #fff;
  cursor: pointer; min-width: 160px;
}
.filter-select:focus { outline: none; border-color: var(--red); }
.filter-count { margin-left: auto; font-size: .85rem; color: var(--sub); }

/* ── Event Grid ────────────────────────────────────── */
.event-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }

.event-card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s;
}
.event-card:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); }
.event-card.status-full { opacity: .7; }

.event-card-top {
  background: var(--dark); color: #fff; padding: 16px 20px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.event-track { font-size: 1.15rem; font-weight: 700; }
.event-flag  { font-size: 1.5rem; line-height: 1; }
.event-dates { font-size: .82rem; opacity: .75; margin-top: 2px; }

.event-card-body { padding: 18px 20px; }
.event-type {
  display: inline-block; background: var(--red); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 2px; margin-bottom: 10px;
}
.event-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.event-meta-item { display: flex; align-items: center; gap: 5px; font-size: .83rem; color: var(--sub); }
.event-meta-item svg { width: 14px; height: 14px; flex-shrink: 0; }

.event-groups { display: flex; gap: 6px; margin-bottom: 14px; }
.group-badge {
  padding: 3px 10px; border-radius: 2px; font-size: .78rem; font-weight: 700;
  border: 1px solid currentColor;
}
.group-a { color: var(--red); }
.group-b { color: #e07b00; }
.group-c { color: var(--green); }

.event-pricing { border-top: 1px solid var(--border); padding-top: 14px; margin-top: 2px; }
.price-early { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.price-amount { font-size: 1.4rem; font-weight: 700; color: var(--red); }
.price-label  { font-size: .78rem; color: var(--sub); }
.price-deadline { font-size: .78rem; color: var(--sub); margin-bottom: 10px; }
.price-normal   { font-size: .82rem; color: var(--sub); text-decoration: line-through; }

.event-card-footer { padding: 0 20px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.status-dot { display: flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 500; }
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-green  { background: var(--green); }
.dot-orange { background: var(--orange); }
.dot-red    { background: var(--red); }

/* ── Booking Steps ─────────────────────────────────── */
.booking-wrapper { padding: 48px 0 80px; }
.booking-header  { text-align: center; margin-bottom: 40px; }
.booking-header h1 { font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.booking-header p  { color: var(--sub); }

/* Steps indicator */
.steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 48px; overflow-x: auto; padding: 0 16px;
}
.step-item {
  display: flex; align-items: center; flex-shrink: 0;
}
.step-circle {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: var(--sub); background: #fff;
  transition: .2s; position: relative; z-index: 1; flex-shrink: 0;
}
.step-label {
  font-size: .78rem; color: var(--sub); margin-top: 4px; white-space: nowrap;
  text-align: center; max-width: 80px;
}
.step-content { display: flex; flex-direction: column; align-items: center; }
.step-line { width: 60px; height: 2px; background: var(--border); flex-shrink: 0; transition: .2s; }
.step-item.done .step-circle { background: var(--red); border-color: var(--red); color: #fff; }
.step-item.done .step-line   { background: var(--red); }
.step-item.active .step-circle { border-color: var(--red); color: var(--red); font-weight: 700; }
.step-item.active .step-label  { color: var(--red); font-weight: 500; }

/* Booking Panel */
.booking-panel {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; box-shadow: var(--shadow);
}
.booking-panel-header {
  background: var(--dark); color: #fff; padding: 20px 28px;
  display: flex; align-items: center; gap: 12px;
}
.booking-panel-header h2 { font-size: 1.15rem; font-weight: 700; }
.step-num {
  width: 30px; height: 30px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; flex-shrink: 0;
}
.booking-panel-body { padding: 28px; }

/* Selected event summary */
.selected-event {
  background: var(--light); border-radius: var(--radius); padding: 16px 20px;
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
}
.selected-event-info strong { font-size: 1.05rem; color: var(--dark); display: block; }
.selected-event-info span   { font-size: .88rem; color: var(--sub); }
.selected-event-price { margin-left: auto; text-align: right; }
.selected-event-price .price { font-size: 1.3rem; font-weight: 700; color: var(--red); }
.selected-event-price small  { display: block; font-size: .78rem; color: var(--sub); }

/* Ticket types */
.ticket-options { display: grid; gap: 14px; }
.ticket-option {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; cursor: pointer; transition: border-color .18s, background .18s;
  display: flex; align-items: flex-start; gap: 16px;
}
.ticket-option:hover { border-color: var(--red); background: rgba(236,36,36,.03); }
.ticket-option.selected { border-color: var(--red); background: rgba(236,36,36,.04); }
.ticket-option-radio {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border);
  flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center;
  transition: .18s;
}
.ticket-option.selected .ticket-option-radio { border-color: var(--red); background: var(--red); }
.ticket-option.selected .ticket-option-radio::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff;
}
.ticket-title  { font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.ticket-desc   { font-size: .85rem; color: var(--sub); margin-bottom: 8px; }
.ticket-price  { font-size: 1.1rem; font-weight: 700; color: var(--red); }
.ticket-avail  { font-size: .78rem; color: var(--sub); margin-left: 8px; }

/* Form Fields */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid.cols-1 { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.col-2 { grid-column: span 2; }
.form-label { font-size: .88rem; font-weight: 500; color: var(--text); }
.form-label .req { color: var(--red); }
.form-input, .form-select, .form-textarea {
  padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: .95rem; color: var(--text); background: #fff;
  transition: border-color .18s, box-shadow .18s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(236,36,36,.1);
}
.form-input.error { border-color: #dc3545; }
.form-hint  { font-size: .78rem; color: var(--sub); }
.form-error { font-size: .78rem; color: #dc3545; display: none; }
.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-input { border-color: #dc3545; }
.form-textarea { resize: vertical; min-height: 90px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type=checkbox] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); flex-shrink: 0; cursor: pointer; }
.form-check label { font-size: .88rem; color: var(--sub); cursor: pointer; }
.form-check a { color: var(--red); }
.form-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* Payment Methods */
.payment-methods { display: grid; gap: 12px; margin-bottom: 24px; }
.payment-method {
  border: 2px solid var(--border); border-radius: var(--radius); padding: 16px 20px;
  cursor: pointer; display: flex; align-items: center; gap: 14px;
  transition: border-color .18s, background .18s;
}
.payment-method:hover   { border-color: var(--red); background: rgba(236,36,36,.02); }
.payment-method.selected { border-color: var(--red); background: rgba(236,36,36,.04); }
.payment-method-radio {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: .18s;
}
.payment-method.selected .payment-method-radio { border-color: var(--red); background: var(--red); }
.payment-method.selected .payment-method-radio::after { content:''; width:8px;height:8px;border-radius:50%;background:#fff; }
.payment-method-info strong { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 1px; }
.payment-method-info small  { font-size: .8rem; color: var(--sub); }
.payment-method-icon { margin-left: auto; display: flex; gap: 6px; align-items: center; }
.payment-method-icon img { height: 24px; width: auto; border-radius: 3px; border: 1px solid var(--border); }

/* Card form */
.card-form { background: var(--light); border-radius: var(--radius); padding: 20px; margin-top: 4px; }
.card-number-wrapper { position: relative; }
.card-number-wrapper .card-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 1.2rem; }
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Order Summary */
.order-summary {
  background: var(--light); border-radius: var(--radius); padding: 20px 24px;
  margin-bottom: 24px;
}
.order-summary h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: var(--dark); }
.order-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: .9rem; }
.order-row.total { border-top: 2px solid var(--border); margin-top: 8px; padding-top: 12px; font-weight: 700; font-size: 1.05rem; }
.order-row.total .order-price { color: var(--red); font-size: 1.2rem; }
.order-label { color: var(--sub); }
.order-price { font-weight: 500; }

/* Booking Navigation */
.booking-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border); margin-top: 28px; gap: 12px;
}
.booking-nav-right { display: flex; gap: 10px; }

/* Confirmation */
.confirmation { text-align: center; padding: 48px 24px; }
.confirmation-icon {
  width: 80px; height: 80px; background: rgba(26,140,26,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  font-size: 2.5rem;
}
.confirmation h2 { font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.confirmation p  { color: var(--sub); max-width: 480px; margin: 0 auto 28px; }
.confirmation-details {
  background: var(--light); border-radius: var(--radius); padding: 24px;
  max-width: 480px; margin: 0 auto 32px; text-align: left;
}
.confirmation-detail-row { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.confirmation-detail-row:last-child { border-bottom: none; }
.confirmation-detail-row dt { font-weight: 600; color: var(--dark); min-width: 130px; }
.confirmation-detail-row dd { color: var(--sub); }
.confirmation-ref { font-size: 1.2rem; font-weight: 700; color: var(--red); letter-spacing: .05em; }

/* ── Trainings-Kategorien ──────────────────────────── */
.training-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.training-card {
  background: #fff; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.training-card-img {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}
.training-card-img-a { background: linear-gradient(135deg, #021228, #0a2850); }
.training-card-img-b { background: linear-gradient(135deg, #1a1a00, #4a3500); }
.training-card-img-c { background: linear-gradient(135deg, #001a00, #0a3500); }
.training-card-body { padding: 20px; }
.training-card-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.training-card-sub   { font-size: .82rem; font-weight: 600; color: var(--red); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; }
.training-card-body p { font-size: .9rem; color: var(--sub); margin-bottom: 14px; }

/* ── Footer ─────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: .9rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .88rem; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; opacity: .6; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.75);
  transition: background .15s, color .15s; font-size: .85rem;
}
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-payment { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.footer-payment img { height: 28px; width: auto; border-radius: 4px; filter: brightness(1); opacity: .9; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: #fff; }

/* ── Utilities ──────────────────────────────────────── */
.text-red    { color: var(--red); }
.text-dark   { color: var(--dark); }
.text-sub    { color: var(--sub); }
.text-center { text-align: center; }
.fw-700      { font-weight: 700; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16{ margin-bottom: 16px; }
.mb-24{ margin-bottom: 24px; }
.mt-16{ margin-top: 16px; }
.mt-24{ margin-top: 24px; }
.d-none { display: none !important; }
.d-flex { display: flex; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.alert {
  padding: 14px 18px; border-radius: var(--radius); font-size: .9rem;
  display: flex; align-items: flex-start; gap: 10px;
}
.alert-info    { background: #e8f4ff; color: #0066cc; border: 1px solid #b3d4ff; }
.alert-success { background: #eafaee; color: #1a6e1a; border: 1px solid #a3d9a5; }
.alert-warning { background: #fff8e1; color: #7a5500; border: 1px solid #ffdc80; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid   { grid-template-columns: 1fr; }
  .form-group.col-2 { grid-column: span 1; }
  .card-row    { grid-template-columns: 1fr; }
  .steps .step-line { width: 32px; }
}
@media (max-width: 640px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark); padding: 12px; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 56px 0 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .event-grid  { grid-template-columns: 1fr; }
  .booking-nav { flex-direction: column; }
  .booking-nav-right { width: 100%; flex-direction: column; }
  .steps .step-label { display: none; }
  .steps .step-line { width: 20px; }
  .selected-event-price { margin-left: 0; text-align: left; width: 100%; }
}
