:root {
  --ink: #171a1f;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #0ea5e9;      /* primary */
  --accent-soft: #e0f2fe;
  --accent-strong: #0369a1;
  --success: #16a34a;
  --bg-soft: #f9fafb;
}

.booking-progress {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 14px;
  color: var(--ink);
  padding: 0 0;
}

/* =========================
   DESKTOP / TABLET STEPPER
   ========================= */

/* Container example (optional) */
.procedure-grid, .location-grid, .option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

/* Card */
.procedure-card, .location-card, .option-card {
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.24);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.procedure-card:has(> .procedure-banner > *), .location-card:has(> .procedure-banner > *), .procedure-banner {
  overflow: hidden;
}

.procedure-banner:has(> span) {
  background: linear-gradient(
    to right,
    var(--surgerly-hombre-start),
    var(--surgerly-hombre-end)
  );
  color: var(--surgerly-white);
  text-align: center;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  letter-spacing: 0.2rem;
  font-weight: 200;
  transition: 0.3s;
}

@media(min-width: 481px) {
  .procedure-banner:has(> *) {
    border-bottom-right-radius: 1rem;
    max-width: 360px;
  }
}

.procedure-card + .procedure-card, .location-card + .location-card, .option-card + .option-card {
    margin-top: 0.5rem;
}


.procedure-card, .location-card, .option-card {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  background: #ffffff;
  transition: all 0.15s ease;
  cursor: pointer;
}

/* Highlight state */
.procedure-card.selected, .location-card.selected, .option-card.selected {
  border-color: var(--surgerly-primary);
  box-shadow: 0 0 0 2px var(--accent-soft), 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Hover feedback (desktop only) */
@media (hover: hover) {
  .procedure-card:hover, .location-card:hover, .option-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
}

/* Ensure Learn More never triggers card click */
.learn-more-btn {
  pointer-events: auto;
  z-index: 10;
}

/* Header */
.procedure-header, .location-header, .option-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.procedure-pill, .location-pill, .option-pill {
  align-self: flex-start;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--bg-soft);
  color: var(--muted);
}

.procedure-pill + .procedure-pill, .location-pill + .location-pill, .option-pill + .option-pill {
    margin-left: 0.25rem;
}

.procedure-title, .location-title, .option-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.procedure-subtitle, .location-subtitle, .option-subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Meta section */
.procedure-meta, .location-meta, .option-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem 0.75rem;
  padding: 0.5rem 0.6rem;
  border-radius: 14px;
  background: var(--bg-soft);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.meta-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-value {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
}

/* Footer buttons */
.procedure-footer, .location-footer, .option-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.procedure-footer .btn-primary,
.procedure-footer .btn-outline,
.location-footer .btn-primary,
.location-footer .btn-outline,
.option-footer .btn-primary,
.option-footer .btn-outline,
.details-form-footer .btn-primary {
  font-size: 0.82rem;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--surgerly-black);
  color: var(--surgerly-white);
  border: none;
  transition: 0.2s;
}

.btn-primary:hover {
  filter: brightness(1.2);
}

.btn-outline {
  background: var(--surgerly-primary);
  border: none;
  color: var(--surgerly-white);
  transition: 0.2s;
}

.btn-outline:hover {
  filter: brightness(0.95);
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .procedure-card, .location-card, .option-card {
    border-radius: 16px;
  }

  .procedure-footer, .location-footer, .option-footer {
    justify-content: space-between;
    margin-top: 0.5rem;
  }

  .procedure-footer .btn-primary,
  .procedure-footer .btn-outline,
  .location-footer .btn-primary,
  .location-footer .btn-outline,
  .option-footer .btn-primary,
  .option-footer .btn-outline,
  .details-form-foot .btn-primary {
    flex: 1;
    text-align: center;
  }
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.step {
  display: flex;
  align-items: center;
  gap: 6px;
}

.divider {
  margin: 0 12px;
  color: var(--muted);
}

.circle {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.step .label {
  font-weight: 500;
}

/* Completed */
.step.completed .circle {
  background: #ecfdf3;
  color: var(--success);
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.2);
}

/* Active */
.step.active .circle {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(37, 99, 235, 0.15);
}

/* Upcoming */
.step.upcoming .circle {
  background: var(--bg-soft);
  color: var(--muted);
}

/* =========================
   MOBILE BREADCRUMB
   ========================= */

.progress-breadcrumb {
  display: none; /* hidden on desktop */
}

/* Mobile breakpoint */


  .progress-breadcrumb {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.35rem 0.25rem;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .crumb {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 13px;
    flex: 0 0 auto;
    cursor: default;
  }

  .crumb-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
    background: var(--bg-soft);
    color: var(--muted);
  }

  .crumb-label {
    font-weight: 500;
  }

  .crumb-separator {
    color: var(--muted);
    flex: 0 0 auto;
  }

  /* States */
  .crumb.completed .crumb-index {
    background: #ecfdf3;
    color: var(--success);
    box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.2);
  }

  .crumb.completed {
    color: var(--muted);
  }

  .crumb.active {
    background: var(--accent-soft);
    color: var(--accent-strong);
  }

  .crumb.active .crumb-index {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
  }

  .crumb.upcoming {
    color: var(--muted);
  }


/* =========================
   VERY SMALL SCREENS (≤360px)
   Compact but keep active label text
   ========================= */

@media (max-width: 490px) {
.btnText {
    display: none;
  }
}

@media (max-width: 810px) {
  .progress-breadcrumb {
    font-size: 12px;
    padding-inline: 0.5rem;
  }

  .crumb {
    padding-inline: 6px;
  }

  /* Default: hide labels for non-active to prevent wrapping */
  .crumb .crumb-label {
    display: none;
  }

  /* Always show label for active step */
  .crumb.active .crumb-label {
    display: inline;
  }

  /* Make indexes a bit tighter */
  .crumb-index {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
}

/* Make the main booking area fill the space between top & bottom bars */
.booking-shell {
  display: flex;
  flex-direction: column;
  height: 100vh;         /* full viewport */
  box-sizing: border-box;
  min-height: 0;         /* allow inner flex children to shrink */
}

.stepper-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-inline: auto;
  flex: 1;
  min-height: 0;         /* allow inner scroll areas to work */
}

.stepper-track {
  display: flex;
  width: 100%;
  height: 100%;          /* IMPORTANT */
  transition: 0.25s ease-in-out;
}

.step-panel {
  flex: 0 0 100%;
  height: 100%;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

/* The inner area that scrolls (e.g. your procedures list) */
.step-panel-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

/* Optional: nicer buttons */
.stepper-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  max-width: 700px;
  margin-inline: auto;
}

.stepper-actions button {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  cursor: pointer;
}

.stepper-actions button:disabled {
  opacity: 0.5;
  cursor: default;
}

/* Respect reduced-motion users */
@media (prefers-reduced-motion: reduce) {
  .stepper-track {
    transition: none;
  }
}

.procedure-search-wrapper, .location-search-wrapper, .option-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surgerly-white);
  border-radius: 999px;
  padding-inline: 0.75rem;
  border: 1px solid var(--surgerly-primary);
}

.procedure-search-input, .location-search-input, .option-search-input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-left: 1rem; /* room for icon */
  padding-right: 1rem; /* room for clear button */
  font-size: 0.9rem;
}

.procedure-search-input:focus, .location-search-input:focus, .option-search-input:focus {
  outline: none;
  box-shadow: none;
}

.procedure-search-icon, .location-search-icon, .option-search-icon {
  position: absolute;
  left: 0.75rem;
  font-size: 0.9rem;
  pointer-events: none;
  opacity: 0.6;
}

.procedure-search-clear, .location-search-clear, .option-search-clear {
  position: absolute;
  right: 0.5rem;
  border: none;
  background: none;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0.4;
  padding: 0;
}

.procedure-search-clear:hover, .location-search-clear:hover, .option-search-clear:hover {
  opacity: 0.7;
}

.procedure-search-clear.hidden, .location-search-clear.hidden, .option-search-clear.hidden {
  display: none;
}

@media (max-width: 480px) {
  .procedure-search-input, .location-search-input, .option-search-input {
    font-size: 0.85rem;
  }
}



/* ===== Availability layout ===== */

.availability-shell {
  margin: 0 auto;
}

.card-like {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.availability-grid {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
}

/* Calendar */

.availability-calendar {
  display: flex;
  flex-direction: column;
  position: relative;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.calendar-month {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}

.calendar-nav-btn {
  border: none;
  background: transparent;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--muted);
}

.calendar-nav-btn:hover {
  background: #f3f4f6;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  font-size: 0.75rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.calendar-day {
  border: none;
  background: transparent;
  border-radius: 999px;
  height: 2.3rem;
  width: 2.3rem;
  margin: 0 auto;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--surgerly-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-day.disabled {
  opacity: 0.35;
  cursor: default;
}

.calendar-day:hover:not(.disabled):not(.selected) {
  filter: brightness(0.95);
}

.calendar-day.selected {
  background: var(--surgerly-primary)!important;
  color: var(--surgerly-white);
}

.calendar-day.available {
  background: var(--surgerly-secondary);
}

.calendar-day.outside-month {
  opacity: 0.35;
}

/* Specialists list */

.availability-results {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 260px;
}

.specialist-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Specialist card */

.specialist-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #f9fafb;
}

.specialist-main {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.specialist-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
  flex-shrink: 0;
}

.specialist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialist-info h6 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.specialist-info .role {
  font-size: 0.8rem;
  color: var(--muted);
}

.specialist-info .meta {
  font-size: 0.78rem;
  color: var(--muted);
}

.specialist-info .meta span + span::before {
  content: "•";
  margin: 0 0.25rem;
}

/* Times column */

.specialist-times-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.times-header {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-strong);
}

.times-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.time-chip {
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.8rem;
  border: none;
  background: var(--surgerly-secondary);
  color: var(--surgerly-black);
  cursor: pointer;
}

.time-chip.selected {
  background: var(--surgerly-primary)!important;
  color: var(--surgerly-white)!important;
}

.time-chip:hover {
  filter: brightness(0.95);
}

/* Show more link */

.more-times-link {
  font-size: 0.78rem;
  color: var(--accent-strong);
  cursor: pointer;
}

/* Responsive layout */

@media (max-width: 900px) {
  .availability-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .specialist-card {
    grid-template-columns: 1fr;
  }
  .specialist-times-col {
    align-items: flex-start;
  }
  .times-list {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}


.details-shell {
  margin: 0 auto;
}

.details-grid {
  align-items: flex-start;
}

.details-summary {
  background: #ffffff;
}

.details-summary-header h5 {
  font-weight: 600;
  color: var(--ink);
}

.details-summary-list {
  margin: 0;
}

.details-summary-list .summary-row {
  display: flex;
  flex-direction: column;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(226, 232, 240, 0.9);
}

.details-summary-list .summary-row:last-child {
  border-bottom: none;
}

.details-summary-list dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.1rem;
}

.details-summary-list dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.details-form h5 {
  font-weight: 600;
  color: var(--ink);
}

.details-form .form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}

.details-form .form-control,
.details-form .form-select {
  font-size: 0.9rem;
  border-radius: 10px;
}

.details-form small.text-muted {
  font-size: 0.75rem;
}

/* Stack summary above form on small screens */
@media (max-width: 991px) {
  .details-summary {
    margin-bottom: 0.75rem;
  }
}

.confirmation-shell {
  max-width: 800px;
  margin: 0 auto;
}

.confirmation-card {
  padding: 1.4rem 1.5rem;
}

.confirmation-status {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.status-icon-wrapper {
  flex-shrink: 0;
}

.status-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  background: #ecfdf3;
  color: var(--success);
}

.status-icon.pending {
  background: #fef3c7;
  color: #92400e;
}

.confirmation-status h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.confirmation-section {
  border-top: 1px dashed rgba(226, 232, 240, 0.9);
  padding-top: 0.75rem;
}

.confirm-summary-list {
  margin: 0;
}

.confirm-summary-list .summary-row {
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0;
}

.confirm-summary-list dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.05rem;
}

.confirm-summary-list dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

.confirmation-footer {
  border-top: 1px dashed rgba(226, 232, 240, 0.9);
  padding-top: 0.75rem;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .confirmation-card {
    padding: 1.1rem 1.1rem;
  }
  .confirmation-status {
    align-items: flex-start;
  }
}

.crumb-locked {
  opacity: 0.4 !important;
}

@media (max-width: 430px) {
  .crumb-hidden-xs {
    display: none !important;
  }
}

/* Wrapper */
.surgerly-stepper-wrapper {
  background: transparent;
  padding: 1.25rem 1.5rem 0.25rem;
  text-align: center;
}

/* Horizontal line + circles */
.surgerly-stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto 0.75rem;
  max-width: 420px;
}

/* Line behind the circles */
.surgerly-stepper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--surgerly-primary);
  transform: translateY(-50%);
  z-index: 0;
}

/* Step circles */
.step {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  border: 2px solid var(--surgerly-primary);
  background-color: transparent;
  color: var(--surgerly-primary);
}

/* Completed steps (filled circle) */
.step--done {
  background-color: var(--surgerly-primary);
  color: white;
}

/* Current step (same fill, you can tweak if you want it different) */
.step--current {
  background-color: var(--surgerly-primary);
  color: white;
}

/* Upcoming steps (outlined, default is already this) */
.step--todo {
  background-color: var(--surgerly-white);
}

/* Label underneath */
.stepper-label {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--surgerly-primary);
}

.surgerly-check:checked {
  background-color: var(--surgerly-primary)!important;
  border-color: var(--surgerly-primary)!important;
}
.surgerly-check:focus {
  border-color: var(--surgerly-secondary);
  outline: 0!important;
  box-shadow: 0 0 0 .25rem var(--surgerly-secondary)!important;
}

.details-form input:focus, .details-form select:focus {
  border-color: var(--surgerly-secondary)!important;
  outline: 0!important;
  box-shadow: 0 0 0 .25rem var(--surgerly-secondary)!important;
}
.details-form input:-webkit-autofill, .details-form input:-webkit-autofill:hover, .details-form input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--surgerly-secondary) inset !important;
  box-shadow: 0 0 0 1000px var(--surgerly-secondary) inset !important;
  -webkit-text-fill-color: var(--surgerly-black) !important;
  transition: background-color 9999s ease-in-out 0s;
}

.btn-primary {
  background: var(--surgerly-black);
  color: var(--surgerly-white);
  border: none;
  transition: 0.2s;
  font-size: 0.82rem;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:disabled,
.btn-primary.disabled {
  background: color-mix(in srgb, var(--surgerly-black) 80%, #ffffff);
  color: color-mix(in srgb, var(--surgerly-white) 80%, #000000);
  cursor: not-allowed;
  opacity: 0.55;
  border-color: transparent;
  box-shadow: none;
}

.btn-primary:hover {
  filter: brightness(1.2);
}

.btn-primary:disabled:hover,
.btn-primary.disabled:hover {
  filter: none;
}

.btn-outline {
  background: var(--surgerly-primary);
  border: none;
  color: var(--surgerly-white);
  transition: 0.2s;
  font-size: 0.82rem;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline:disabled,
.btn-outline.disabled {
  background: color-mix(in srgb, var(--surgerly-primary) 80%, #ffffff);
  color: color-mix(in srgb, var(--surgerly-white) 80%, #000000);
  cursor: not-allowed;
  opacity: 0.55;
  border-color: transparent;
  box-shadow: none;
}

.btn-outline:hover {
  filter: brightness(0.95);
}

.btn-outline:disabled:hover,
.btn-outline.disabled:hover {
  filter: none;
}