/* CSS Variables - Color Palette */
:root {
  /* Primary Colors (Blue) */
  --primary: #003366;
  --primary-hover: #005080;
  --primary-light: #3b82f6;
  --primary-lighter: #93c5fd;
  --primary-lightest: #bfdbfe;
  --primary-background: #eff6ff;
  --primary-dark: #002244;
  --primary-darker: #001122;

  /* Button Color (Red) */
  --button-primary: #dc2626;
  --button-primary-hover: #b91c1c;
  --button-primary-light: #ef4444;

  /* Background Colors */
  --bg-white: #ffffff;
  --bg-gray-light: #f9fafb;
  --bg-gray-lighter: #f3f4f6;
  --bg-gray-medium: #f0f0f0;

  /* Text Colors */
  --text-dark: #111827;
  --text-gray: #374151;
  --text-gray-medium: #6b7280;
  --text-gray-light: #9ca3af;
  --text-gray-lighter: #d1d5db;
  --text-gray-lightest: #e5ebf0;
  --text-navy: #1a3b5d;
  --text-muted: #666;

  /* Border Colors */
  --border-default: rgba(0, 51, 102, 0.3);
  --border-light: #e0e0e0;
  --border-lighter: #e5e7eb;
  --bar: #a0b3c7;

  /* Legacy Blue Colors (now secondary) */
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --blue-darker: #1e40af;
  --blue-light: #93c5fd;
  --blue-lighter: #bfdbfe;
  --blue-lightest: #dbeafe;
  --blue-background: #eff6ff;

  /* Gradient Colors */
  --gradient-purple-start: #667eea;
  --gradient-purple-end: #764ba2;

  /* Shadows & Opacity */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-primary: 0 2px 8px rgba(0, 102, 161, 0.3);
  --shadow-primary-lg: 0 4px 12px rgba(0, 102, 161, 0.3);
  --shadow-primary-xl: 0 6px 16px rgba(0, 102, 161, 0.5);
  --shadow-button: 0 2px 8px rgba(220, 38, 38, 0.3);
  --shadow-button-lg: 0 4px 12px rgba(220, 38, 38, 0.3);

  /* Focus/Active States */
  --focus-ring: 0 0 0 3px rgba(0, 102, 161, 0.1);
}

/* WordPress Container Wrapper */
.MTB {
  font-family: "Poppins", sans-serif;
  padding: 60px 20px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.MTB button,
.MTB input,
.MTB select,
.MTB a,
.MTB [role="button"] {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
button,
input,
select,
a,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}


.MTB input,
.MTB span,
.MTB button,
.MTB a,
.MTB li,
.MTB p,
.MTB h1,
.MTB h2,
.MTB h3,
.MTB h4,
.MTB h5,
.MTB h6,
.MTB label,
.MTB select,
.MTB .tab,
.MTB .dropdown-header,
.MTB .dropdown-item {
  font-family: "Poppins", sans-serif !important;
}

.MTB .tabs .tab.oneway {
  border-top-left-radius: 10px;
}
.MTB .tabs .tab.shuttles {
  border-top-right-radius: 10px;
}

/* Reset box sizing for all children */
.MTB *,
.MTB *::before,
.MTB *::after {
  box-sizing: border-box;
   -webkit-tap-highlight-color: transparent;
  font-family: "Poppins", sans-serif !important;
}
 *,
 *::before,
*::after {
  box-sizing: border-box;
   -webkit-tap-highlight-color: transparent;
  font-family: "Poppins", sans-serif !important;
}

.MTB .container {
  border-radius: 10px;
}

.MTB .form-wrapper {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.MTB .tabs {
  display: flex;
  /* border-bottom: 2px solid var(--border-light); */
  background: var(--bg-gray-light);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.MTB .tab {
  flex: 1;
  padding: 14px 12px;
  border: none;
  background: transparent;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--primary);
  position: relative;
  border-radius: 0px;
  background: var(--text-gray-lightest);
}

.MTB .tab.active {
  background: white;
  border-color: transparent !important ;
  /* color: var(--bg-white); */
}

/* =========================
   ROUNDTRIP TAB
   Left + Right 80% borders
========================= */
.MTB .tab.oneway,
.MTB .tab.roundtrip,
.MTB .tab.byhour {
  position: relative;
}

.MTB .tab.oneway::after,
.MTB .tab.roundtrip::after,
.MTB .tab.byhour::after {
  content: "";
  position: absolute;
  top: 25%;
  height: 50%;
  width: 2px;
  background: var(--bar);
  right: 0;
}

.MTB .tab.active::after {
  background: transparent;
}

.MTB .tabs:has(.tab.roundtrip.active) .tab.oneway::after,
.MTB .tabs:has(.tab.roundtrip.active) .tab.roundtrip::after {
  background: transparent;
}

/* When byhour is active → hide roundtrip RIGHT border */
.MTB .tabs:has(.tab.byhour.active) .tab.roundtrip::after {
  background: transparent;
}

/* When shuttles is active → hide byhour RIGHT border */
.MTB .tabs:has(.tab.shuttles.active) .tab.byhour::after {
  background: transparent;
}

/* .MTB .icon-location-group {
    display: flex;
    align-items: center;
} */

/* .MTB .tab:not(.active):hover {
    background: var(--text-gray-lightest);
    color: var(--text-gray);
} */

.MTB .booking-form {
  padding: 24px 22px;
}

.MTB .booking-form.hidden {
  display: none;
}

/* location icon */

.MTB .location-input-from::before {
  content: "From";
  position: absolute;
  left: 30px;
  top: 14px;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  pointer-events: none;
}

.MTB .location-input-to::before {
  content: "To";
  position: absolute;
  left: 30px;
  top: 14px;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  pointer-events: none;
}

/* location icon */
.MTB .location-input-from::after,
.MTB .location-input-to::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 16px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23003366' d='M0 188.6C0 84.4 86 0 192 0S384 84.4 384 188.6c0 119.3-120.2 262.3-170.4 316.8-11.8 12.8-31.5 12.8-43.3 0-50.2-54.5-170.4-197.5-170.4-316.8zM192 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128z'/%3E%3C/svg%3E")
    no-repeat center / contain;
  pointer-events: none;
}

.MTB .input-group {
  position: relative;
  /* margin-bottom: 15px; */
  display: flex;
  align-items: end;
  border: 1px solid var(--border-default);
  border-radius: 8px;
  padding: 10px 32px 6px 30px;
  height: 55px;
  background: var(--bg-white);
  transition: border-color 0.3s;
  cursor: pointer;
}

.MTB .input-group:hover {
  box-shadow: 0 0 0 2px var(--primary);
}

.MTB .clear-location-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: #2b3c54;
  padding: 0px !important;
}
.MTB .clear-location-btn.icon {
  margin: 0px;
  width: 14px;
  height: 14px;
}

.MTB .clear-location-btn:focus,
.MTB .clear-location-btn:focus-visible {
  background-color: transparent !important  ;
}

.MTB .clear-location-btn:hover {
  background-color: transparent;
}

.MTB .input-group.has-value .clear-location-btn {
  opacity: 1;
  pointer-events: auto;
}

.MTB .icon {
  margin-right: 4px;
  font-size: 16px;
  flex-shrink: 0;
}

.MTB .icon svg,
.MTB .item-icon svg,
.mtb-loc-modal__results .icon svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.MTB .input-group input,
.MTB .input-group select {
  /* flex: 1; */
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--primary);
  background: transparent;
  width: 100%;
  cursor: pointer;
  font-weight: 400;
}

.MTB .input-group input::placeholder {
  color: var(--bar);
  font-weight: 400 !important;
  font-size: 16px;
}

.MTB .input-group select {
  cursor: pointer;
  padding-right: 5px;
}

/* DateTime Group - Consolidated */
.MTB .datetime-group {
  height: 55px;
  display: flex;
  align-items: end;
  gap: 0px;
  padding: 0px;
  border: 1px solid var(--border-default);
  border-radius: 10px;
  background: linear-gradient(
    to bottom,
    var(--bg-white) 0%,
    var(--bg-gray-light) 100%
  );
  transition: border-color 0.3s;
  min-width: 0; /* Allow shrinking below content size */
  width: 280px; /* Don't fix width */
  position: relative;
}

.MTB .calendar-container {
  height: 100%;
  display: flex;
  align-items: end;
  cursor: pointer;
  position: relative;
  padding: 10px 10px 6px 32px;
}

.MTB .datetime-group-label {
  position: absolute;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  top: 6px;
  left: 32px;
}

/* Make sure datefield and timepicker share space equally */
.MTB .datetime-group .mtb-datefield,
.MTB .datetime-group .time-picker-wrapper {
  height: 100%;
  min-width: 0; /* Allow shrinking */
}

.MTB .datetime-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  /* margin-bottom: 15px; */
  flex-wrap: wrap;
}

.MTB .datetime-row .datetime-group {
  /* flex: 1; */
  margin-bottom: 0;
}

.MTB .datetime-row-single {
  margin-bottom: 15px;
}

.MTB .datetime-row-single > div {
  width: 100%;
}

.MTB .datetime-group:hover {
  box-shadow: 0 0 0 2px var(--primary);
  background: var(--bg-white);
  /* box-shadow: var(--shadow-sm); */
}

.MTB .datetime-group > div {
  /* flex: 1; */
  min-width: 0;
}

/* calender */
.MTB .booking-oneway {
  display: flex;
  /* align-items: center; */
  gap: 15px;
  /* height: 65px; */
}

/* Remove individual borders and backgrounds from date/time components */
.MTB .datetime-group .mtb-date-input-group,
.MTB .datetime-group .time-picker-input {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  /* flex: 1; */
}

.MTB .datetime-group .mtb-date-input-group:hover,
.MTB .datetime-group .time-picker-input:hover {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.MTB .bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 8px;
}

.MTB .bottom-container.round-bottom {
  margin-top: -55px !important;
}

.submit-container {
  text-align: end;
}

.MTB .datetime-group .mtb-datefield,
.MTB .datetime-group .time-picker-wrapper {
  height: auto; /* don’t force 100% */
  margin: 0;
}

/* Icon styling */
.MTB .datetime-group .mtb-date-input-group .icon {
  /* margin-right: 5px; */
  margin-left: 0;
  /* margin-top: -1px; */
  display: flex;
}

/* Hide time arrow */
.MTB .datetime-group .time-arrow {
  display: none;
}

/* Make inputs seamless */
.MTB .datetime-group .mtb-date-input,
.MTB .datetime-group .time-display {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
}

.MTB .separator {
  font-weight: bold;
  color: var(--text-gray-medium);
  font-size: 18px;
}

.MTB .row {
  display: flex;
  gap: 15px;
  height: 55px;
  /* margin-bottom: 15px; */
}

.MTB .row .input-group {
  margin-bottom: 0;
}

/* Custom Dropdown Styles */
.MTB .custom-dropdown {
  position: relative;
  height: 55px;
}

.MTB .duration-row {
  position: relative;
  display: flex;
  align-items: end;
  border: 1px solid var(--border-default);
  border-radius: 10px;
  height: 55px;
}

.MTB .duration-row:hover {
  background: var(--bg-white);
  box-shadow: 0 0 0 2px var(--primary);
}

/* Rental Length label */
.MTB .duration-row::before {
  content: "Rental Length";
  position: absolute;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  top: 5px;
  left: 32px;
  pointer-events: none;
  z-index: 1;
}

/* SVG Clock Icon */
.MTB .duration-row::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 12px;
  width: 16px;
  height: 16px;

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='%230a3a63' d='M256 0a256 256 0 1 1 0 512 256 256 0 1 1 0-512zM232 120l0 136c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2 280 120c0-13.3-10.7-24-24-24s-24 10.7-24 24z'/></svg>");

  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.MTB .dropdown-header {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-default);
  border-radius: 10px;
  padding: 12px;
  background: linear-gradient(
    to bottom,
    var(--bg-white) 0%,
    var(--bg-gray-light) 100%
  );
  cursor: pointer;
  height: 55px;
  /* width: 165px; */
  align-self: stretch;
  /* margin-bottom: 15px; */
  user-select: none;
}

.MTB .dropdown-header.passenger-cont {
  width: 185px;
}

.MTB .dropdown-header.baggage-cont {
  width: 135px;
}

.MTB .dropdown-header.duration-cont {
  width: 130px;
  border: 0px;
  height: 100%;
  padding-bottom: 6px;
  align-items: end;
  /* padding: 20px 12px 5px 12px; */
}

.MTB .duration-hr::after {
  content: "";
  position: absolute;
  top: 40%;
  height: 40%;
  width: 2px;
  background: var(--bar);
  right: 0;
}

.MTB .dropdown-header.duration-cont .dropdown-arrow {
  bottom: 12px;
}

.MTB .dropdown-header.duration-cont:hover {
  background: var(--bg-white);
  box-shadow: none;
}

.MTB .custom-dropdown.custom-duration-hour {
  height: 100%;
}
.MTB .custom-dropdown.custom-duration-minute {
  height: 100%;
}

.MTB .by-the-hour-cont .location-dropdown {
  width: calc(100% + 300px);
}

.MTB .dropdown-header:hover {
  background: var(--bg-white);
  box-shadow: 0 0 0 2px var(--primary);
}

.MTB .dropdown-header .icon {
  display: flex;
  align-items: center;
  margin-top: -1px;
}

.MTB .custom-dropdown.active .dropdown-header {
  background: var(--bg-white);
}

.MTB .dropdown-text {
  flex: 1;
  font-size: 16px;
  color: var(--bar);
  font-weight: 400;
}

.MTB .custom-dropdown.active .dropdown-text,
.MTB .custom-dropdown.selected .dropdown-text {
  color: var(--primary);
  font-weight: 400 !important;
}

.MTB .dropdown-arrow {
  right: 15px;
  position: absolute;
  display: flex;
  align-items: center;
  color: var(--primary);
  transition: transform 0.3s ease;
}

/* Arrow icon */
.MTB .dropdown-arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--primary); /* arrow color */
}

/* .MTB .custom-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--primary);
} */

.MTB .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  /* left: 0; */
  right: 0;
  background: var(--bg-white);
  border: 2px solid var(--primary);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.MTB .custom-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.MTB .dropdown-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-lighter);
}

.MTB .dropdown-item:last-child {
  border-bottom: none;
}

.MTB .dropdown-item:hover {
  background: var(--primary-background);
  color: var(--primary);
}

.MTB .dropdown-item.selected {
  background: var(--primary);
  color: var(--bg-white);
}

.MTB .dropdown-item.selected:hover {
  background: var(--primary-hover);
}

.MTB .item-icon {
  margin-right: 8px;
  flex-shrink: 0;
}

.MTB .dropdown-item.selected .item-icon {
  filter: brightness(0) invert(1);
}

.MTB .dropdown-item span:last-child {
  flex: 1;
}

/* Custom scrollbar for dropdown */
.MTB .dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.MTB .dropdown-menu::-webkit-scrollbar-track {
  background: var(--bg-gray-lighter);
  border-radius: 3px;
}

.MTB .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.MTB .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* Powered by footer */
.MTB .powered-by {
  font-size: 13px;
  color: var(--text-gray-medium);
  display: flex;
  align-items: center;
  /* gap: 10px; */
}

.MTB .powered-by .transfersonic-div {
  position: relative;
}

.MTB .powered-by .transfersonic-cont::after {
  content: "";
  position: absolute;
  /* top: 30%; */
  height: 100%;
  width: 1px;
  background: var(--bar);
  right: 0;
}

.MTB .powered-by .transfersonic-cont {
  padding-right: 20px;
}

.MTB .powered-by .google-map-icon {
  width: 120px;
  display: flex;
  align-items: center;
}

.MTB .powered-by .google-map-icon img {
  height: 30px;
  width: 100%;
  /* padding-left: 20px; */
}

.MTB .powered-by a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

/* .MTB .powered-by a:hover {
    text-decoration: underline;
} */

.MTB .search-btn {
  /* width: 100%; */
  padding: 14px 50px;
  background: var(--button-primary);
  color: var(--bg-white);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  /* margin-top: 10px; */
}

.MTB .search-btn:hover {
  background: var(--button-primary-light);
}

/* .MTB .search-btn:active {
  transform: scale(0.98);
} */

/* Calendar and timepicker dropdowns */
.MTB .calendar-wrapper,
.MTB .time-picker-wrapper {
  position: relative;
}

.MTB .calendar-dropdown,
.MTB .time-picker-dropdown {
  z-index: 9999 !important;
}

/* Location Autocomplete Dropdown */
.MTB .location-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg-white);
  /* border: 2px solid var(--primary); */
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  max-height: 380px;
  padding: 10px 0px;
  overflow-y: auto;
  color: var(--primary);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  scrollbar-color: var(--text-gray-lighter) transparent;
  scrollbar-width: thin;
}

.MTB .location-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.MTB .location-item,
.mtb-loc-modal__results .location-item {
  padding: 12px;
  /* margin: 0px 10px; */
  cursor: pointer;
  display: flex;
  /* align-items: center; */
  gap: 5px;
  min-height: 66px;
  border-bottom: 1px solid var(--border-lighter);
}

.MTB .location-item .li-left,
.mtb-loc-modal__results .location-item .li-left {
  display: flex;
  margin-top: 4px;
}

.MTB .location-item .li-content,
.mtb-loc-modal__results .location-item .li-content {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
}
.MTB .location-item .li-right,
.mtb-loc-modal__results .location-item .li-right {
  text-align: right;
}

.MTB .location-item .li-title,
.MTB .location-item .li-code,
.mtb-loc-modal__results .location-item .li-title,
.mtb-loc-modal__results .location-item .li-code {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}
.mtb-loc-modal__results .location-item .li-title {
  line-height: 1.1;
  margin-bottom: 4px;
}
.mtb-loc-modal__results .li-sub {
  color: var(--primary);
  line-height: 1;
}

.MTB .location-item:last-child,
.mtb-loc-modal__results .location-item:last-child {
  border-bottom: none;
}

.MTB .location-item:hover,
.mtb-loc-modal__results .location-item:hover {
  background: var(--bg-gray-medium);
}

.MTB .location-item.no-results {
  color: var(--text-gray-medium);
  cursor: default;
  display: flex;
  align-items: center;
}

.MTB .location-item.no-results:hover {
  background: transparent;
}

.MTB .location-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.MTB .location-item:hover .location-icon {
  transform: scale(1.1);
}

.MTB .location-info {
  flex: 1;
}

.MTB .location-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.MTB .location-address {
  font-size: 12px;
  color: var(--text-gray-medium);
}

/* Custom scrollbar for location dropdown */
.MTB .location-dropdown::-webkit-scrollbar {
  width: 6px;
}

.MTB .location-dropdown::-webkit-scrollbar-track {
  background: var(--bg-gray-lighter);
}

.MTB .location-dropdown::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.MTB .location-dropdown::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* Passenger Counter Styles */
.MTB .passenger-menu {
  padding: 15px !important;
  min-width: 320px;
}

.MTB .passenger-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 15px 10px; */
  border-bottom: 1px solid var(--border-light);
}

.MTB .passenger-category:last-child {
  border-bottom: none;
}

.MTB .passenger-info {
  flex: 1;
}

.MTB .passenger-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-navy);
}

.MTB .passenger-age {
  font-size: 13px;
  color: var(--text-muted);
}

.MTB .passenger-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.MTB .counter-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.MTB .counter-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--bg-white);
}

.MTB .counter-btn.plus {
  background-color: var(--primary);
}


.MTB .counter-btn.plus svg {
  fill: var(--bg-white);
}

.MTB .counter-btn.minus:hover {
  background-color: var(--primary-hover);
}

.MTB .counter-btn.plus:hover {
  background-color: var(--primary-hover);
}

.MTB .counter-btn:disabled {
  background-color: var(--bg-gray-medium);
  /* opacity: 0.4; */
  cursor: not-allowed;
}

.MTB .counter-btn:disabled:hover {
  background-color: var(--bg-gray-medium);
}

.MTB .counter-btn.plus:disabled:hover {
  background-color: var(--primary);
}

.MTB .counter-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-navy);
  min-width: 30px;
  text-align: center;
}

/* Location Swap Container */
.MTB .location-swap-container {
  display: flex;
  flex: 1;
  height: 55px;
  /* align-items: flex-end; */
  gap: 12px;
  /* margin-bottom: 15px; */
  position: relative;
}

.MTB .location-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.MTB .swap-locations-btn {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background: var(--bg-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  margin: auto;
  /* margin-bottom: 0; */
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -15px; /* half of height */
  margin-left: -15px; /* half of width */
  /* transform: translate(-50%, -50%); */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
  z-index: 10;
  outline: none;
  box-shadow: none;
}

.MTB input.pickup-location,
.MTB input.dropoff-location {
  padding: 0px !important;
  font-family: "Poppins", sans-serif !important;
}
.MTB input.pickup-location::placeholder,
.MTB input.dropoff-location::placeholder {
  font-family: "Poppins", sans-serif !important;
}

.MTB .swap-locations-btn svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
  transition: transform 0.3s ease;
}

/* Remove ALL visual focus styles from swap button */
.MTB .swap-locations-btn:focus,
.MTB .swap-locations-btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  background: var(--bg-white) !important;
}

.MTB .swap-locations-btn:focus svg,
.MTB .swap-locations-btn:focus-visible svg {
  fill: inherit !important;
}

.MTB .counter-btn.minus:focus,
.MTB .counter-btn.minus:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  /* background-color: var(--bg-gray-medium) !important; */
}

.MTB .swap-locations-btn:hover {
  /* border-color: var(--primary); */
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 102, 161, 0.2);
}
.MTB .swap-locations-btn:hover svg {
  fill: var(--bg-white);
}

/* .MTB .swap-locations-btn:hover svg {
    transform: rotate(180deg);
} */

/* .MTB .swap-locations-btn:active svg {
    transform: rotate(180deg) scale(0.9);
} */

/* Baggage Counter Styles */
.MTB .baggage-menu {
  padding: 15px !important;
  min-width: 320px;
}

.MTB .duration-menu {
  padding: 10px 0px;
  min-width: 180px;
}

.MTB .dropdown-item:hover {
  background-color: var(--primary);
  color: white;
}
.MTB .dropdown-item:hover svg {
  fill: white;
}

.MTB .baggage-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 15px 10px; */
}

.MTB .baggage-info {
  flex: 1;
}

.MTB .baggage-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-navy);
}

.MTB .baggage-description {
  font-size: 13px;
  color: var(--text-muted);
}

.MTB .baggage-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.MTB .baggage-count {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-navy);
  min-width: 30px;
  text-align: center;
}

/*  */
.MTB .mtb-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: inline-block;
  animation: mtbSpin 0.8s linear infinite;
  margin: 0 auto;
  vertical-align: middle;
}

@keyframes mtbSpin {
  to {
    transform: rotate(360deg);
  }
}

.MTB .mtb-loading-text {
  vertical-align: middle;
}

/* minutes disabled = cannot open/click anything */
.MTB .custom-dropdown.is-disabled,
.MTB .custom-dropdown.is-disabled * {
  cursor: not-allowed !important;
  /* pointer-events: none !important; */
}

/* optional: make it look disabled */
.MTB .custom-dropdown.is-disabled.custom-duration-minute {
  opacity: 0.5;
}

.MTB .custom-duration-hour.is-selected .dropdown-text {
  color: var(--primary);
}

.MTB .counter-value {
  padding: 6px;
  border-radius: 6px;
  width: 40px;
  text-align: center;
  border: 1px solid var(--primary);
  outline: none;
  background: transparent;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  -moz-appearance: textfield;
}
.MTB .counter-value::-webkit-outer-spin-button,
.MTB .counter-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.MTB .baggage-count {
  width: 40px;
  border-radius: 6px;
  padding: 6px;
  text-align: center;
  border: 1px solid var(--primary);
  outline: none;
  background: transparent;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  -moz-appearance: textfield;
}
.MTB .baggage-count::-webkit-outer-spin-button,
.MTB .baggage-count::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (min-width: 769px) {
}

/* Responsive */ /* Responsive */ /* Responsive */ /* Responsive */
/* Responsive */ /* Responsive */ /* Responsive */ /* Responsive */
/* Responsive */ /* Responsive */ /* Responsive */ /* Responsive */
/* Responsive */ /* Responsive */ /* Responsive */ /* Responsive */
@media (max-width: 768px) {
  .MTB {
    padding: 40px 15px;
  }

  .MTB .datetime-group {
    flex-direction: row;
    gap: 0;
  }

  .MTB .datetime-row .datetime-group {
    min-width: 100%;
  }

  .MTB .separator {
    display: none;
  }

  .MTB .row {
    flex-direction: row;
  }
  .MTB .dropdown-header.duration-cont{
    width: 100%;
  }

  .MTB .location-swap-container {
    flex-direction: column;
    gap: 12px;
  }

  .MTB .swap-locations-btn {
    align-self: center;
    right: 20px !important;
    left: auto !important;
    margin-left: 0px !important;
    margin-bottom: -15px !important;
    /* transform: rotate(90deg); */
  }

  .mtb-loc-modal__results .li-sub {
    line-height: 1;
  }

  .MTB .swap-locations-btn svg {
    transform: rotate(90deg);
  }

  .MTB .swap-locations-btn:hover svg {
    transform: rotate(270deg);
  }
  .MTB {
    overflow: hidden !important;
  }

  .MTB .swap-locations-btn:active svg {
    transform: rotate(180deg);
  }

  .MTB .booking-oneway {
    flex-direction: column;
    gap: 12px;
  }
  .MTB .bottom-container {
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
  }
  .MTB .datetime-group {
    width: 100%;
  }
  .MTB .row {
    height: auto;
    gap: 10px;
  }
  .MTB .dropdown-header.passenger-cont {
    width: auto;
  }
  .MTB .dropdown-header.baggage-cont {
    width: auto;
  }
  .MTB .custom-dropdown {
    width: 100%;
  }
  .MTB .bottom-container.round-bottom {
    margin-top: 10px !important;
  }

  .MTB {
    margin: 0px !important;
    padding: 0px;
  }
  .MTB .container {
    border-radius: 0px !important;
  }

  .MTB .form-wrapper {
    border-radius: 0px;
  }

  .MTB .dropdown-menu {
    right: auto;
  }

  .MTB .booking-form {
    padding: 10px;
  }
     .MTB .passenger-menu,
  .MTB .baggage-menu {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .MTB .dropdown-menu {
    max-width: calc(100vw - 30px);
    box-sizing: border-box;
  }

  .MTB .powered-by .transfersonic-cont::after {
    top: 0px;
  }

  .MTB .powered-by{
    margin: 8px 0px !important;
  }


  /* Scrollable tabs row */
  .MTB .tabs {
    display: flex;
    /* gap: 12px; */
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;

    padding: 8px 0px;
    scroll-snap-type: x mandatory;
  }

  /* Visible horizontal scrollbar */
  .MTB .tabs::-webkit-scrollbar {
    height: 4px;
  }

  .MTB .tabs::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 10px;
  }

  .MTB .tabs::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
  }

  .MTB .tabs .tab.oneway {
    border-top-left-radius: 0px !important;
  }

  .MTB .tabs .tab.shuttles {
    border-top-right-radius: 0px !important;
  }

  .MTB .tabs .tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    padding: 17px 30px !important;
  }
  .MTB .submit-container {
    text-align: center !important;
    width: 100% !important;
  }
  .MTB .search-btn {
    width: 100% !important;
  }
 .counter-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: none !important   ;
  background-color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0 !important;
}

 .counter-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--bg-white);
}

 .counter-btn.plus,
 .counter-btn.minus
 {
  display: flex !important;
  background-color: var(--primary);
}

 .counter-btn.plus:focus,
 .counter-btn.plus:focus-visible {
  outline: none !important;
  background-color: var(--primary) !important;
}

.counter-btn.minus:focus,
.counter-btn.minus:focus-visible
{
  outline: none !important;
  background-color: var(--primary) !important;   
}


 .counter-btn.plus svg {
  fill: var(--bg-white);
}

 .counter-btn.minus:hover {
  background-color: var(--primary-hover);
}
.counter-btn.minus:disabled {
  background-color: var(--bg-gray-medium);
}

  .baggage-count.baggage-input{
  width: 40px !important;
  border-radius: 6px !important;
  padding: 6px !important;
  text-align: center !important;
  border: 1px solid var(--primary) !important;
  outline: none !important;
  background: transparent !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: var(--primary) !important;
  -moz-appearance: textfield !important;
  }

 .counter-btn.plus:hover {
  background-color: var(--primary-hover);
}

 .counter-btn:disabled {
  background-color: var(--bg-gray-medium);
  /* opacity: 0.4; */
  cursor: not-allowed;
}

 .counter-btn:disabled:hover {
  background-color: var(--bg-gray-medium);
}

 .counter-btn.plus:disabled:hover {
  background-color: var(--primary);
}
}

@media (max-width: 400px) {
  .MTB .tab {
    flex: 1 1 100%;
  }
}

/* =========================
   Mobile Location Modal
========================= */

.mtb-loc-modal {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999999;
  display: none;
}

.mtb-loc-modal.is-open {
  display: block;
}

.mtb-loc-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px !important;
  background-color: var(--primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mtb-loc-modal__title {
  color: var(--bg-white) !important;
  font-weight: 800;
  font-size: 18px;
}

.mtb-loc-modal__close svg {
  width: 20px;
  height: 20px;
  fill: var(--bg-white);
}

.mtb-loc-modal__close:hover{
  background-color: transparent !important;
}

.mtb-loc-modal__close {
  all: unset;
  cursor: pointer;
  border: 0px !important;
  padding: 0px !important;
  color: var(--bg-white) !important;
}

.mtb-loc-modal__body {
  padding: 12px 16px;
}

.mtb-loc-modal__input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--border-default);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--primary);
  outline: none;
  font-size: 16px; /* important for iOS zoom issue */
}

.mtb-loc-modal__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);}

.mtb-loc-modal__input.has-value {
  box-shadow: 0 0 0 2px var(--primary);
}

.mtb-loc-modal__results {
  margin-top: 12px;
  max-height: calc(100vh - 140px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* Reuse your dropdown styles inside modal */
.mtb-loc-modal__results .location-dropdown {
  position: static !important;
  width: 100% !important;
  max-height: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Desktop keep normal dropdown */
@media (min-width: 768px) {
  .mtb-loc-modal {
    display: none !important;
  }
}

/* ===== Mobile Passenger Modal ===== */
.mtb-pax-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
}

.mtb-pax-modal.is-open {
  display: block;
}

.mtb-pax-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.mtb-pax-modal__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  animation: mtbPaxSlideUp 0.3s ease;
}

@keyframes mtbPaxSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.mtb-pax-modal__header {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.counter-value {
    padding: 6px !important;
    border-radius: 6px !important;
    width: 40px !important;
    text-align: center;
    border: 1px solid var(--primary) !important;
    outline: none;
    background: transparent;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    -moz-appearance: textfield;
}

.mtb-pax-modal__close {
  background: none;
  border: none !important;
  padding: 0px !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mtb-pax-modal__close:hover {
  background-color: transparent !important;
}

.mtb-pax-modal__close svg{
  width: 20px;
  height: 20px;
  fill: var(--bg-white) !important;
}


.mtb-pax-modal__body {
  padding: 28px 24px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.mtb-pax-modal__label-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mtb-pax-modal__label-group strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
}

.mtb-pax-modal__controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mtb-pax-modal__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.mtb-pax-modal__btn.minus {
  background: #e8edf2;
  color: var(--primary);
}

.mtb-pax-modal__btn.plus {
  background: var(--primary);
  color: #fff;
}

.mtb-pax-modal__btn.minus:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.mtb-pax-modal__btn:hover:not(:disabled) {
  filter: brightness(0.9);
}

.mtb-pax-modal__count {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  min-width: 28px;
  text-align: center;
}

.mtb-pax-modal__footer {
  padding: 16px 20px;
  border-top: 1px solid #e8edf2;
}

.mtb-pax-modal__done {
  width: 100%   !important;
  padding: 14px !important;
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}

.mtb-pax-modal__done:hover {
  filter: brightness(0.9) !important;
}

/* ===== Mobile Baggage Modal ===== */
.mtb-bag-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
}

.mtb-bag-modal.is-open {
  display: block;
}

.mtb-bag-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.mtb-bag-modal__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  /* border-radius: 20px 20px 0 0; */
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  animation: mtbBagSlideUp 0.3s ease;
}

@keyframes mtbBagSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.mtb-bag-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.mtb-bag-modal__close {
  background-color: transparent !important;
  border: none !important;
  cursor: pointer;
  padding: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mtb-bag-modal__close svg{
  width: 20px;
  height: 20px;
  fill: var(--bg-white) !important;
}



.mtb-bag-modal__body {
  padding: 28px 24px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.mtb-bag-modal__label-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mtb-bag-modal__label-group strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
}

.mtb-bag-modal__controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mtb-bag-modal__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.mtb-bag-modal__btn.minus {
  background: #e8edf2;
  color: var(--primary);
  border: none !important ;
}

.mtb-bag-modal__btn.plus {
  background: var(--primary);
  color: #fff;
}

.mtb-bag-modal__btn.minus:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.mtb-bag-modal__btn:hover:not(:disabled) {
  filter: brightness(0.9);
}

.mtb-bag-modal__count {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  min-width: 28px;
  text-align: center;
}

.mtb-bag-modal__footer {
  padding: 16px 20px;
  border-top: 1px solid #e8edf2;
}

.mtb-bag-modal__done {
  width: 100% !important;
  padding: 14px !important;
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}



/* ===== Duration Mobile Fullscreen Modal ===== */
.mtb-dur-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.35);
}

.mtb-dur-modal.is-open {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.mtb-dur-modal__panel {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.mtb-dur-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--primary);
  flex-shrink: 0;
}

.mtb-dur-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.mtb-dur-modal__close {
  background: transparent;
  border: none !important;
  padding: 0 !important;
  cursor: pointer;
  line-height: 1;
}

.mtb-dur-modal__close:hover,
.mtb-dur-modal__close:focus {
  background: transparent !important;
  opacity: 1;
}

.mtb-dur-modal__close svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  display: block;
}

.mtb-dur-modal__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px;
}

.mtb-dur-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mtb-dur-modal__item {
  padding: 14px 8px !important;
  border: 2px solid var(--border-default) !important;
  border-radius: 10px !important;
  background: #f8f9fb !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
}

.mtb-dur-modal__item:hover {
  border-color: var(--primary) !important;
  background: #eef2f8 !important;
}

.mtb-dur-modal__item.is-selected,
.mtb-dur-modal__item.is-selected:hover
{
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

.mtb-dur-modal__footer {
  padding: 12px 16px;
  border-top: 1px solid #e5e9f0;
  background: #fff;
  flex-shrink: 0;
}

.mtb-dur-modal__btn {
  width: 100% !important;
  padding: 14px !important;
  border: none !important;
  border-radius: 10px !important;
  background: var(--primary) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}
.mtb-dur-modal__btn:hover {
  background: var(--primary-hover) !important;
}

.mtb-dur-modal__btn:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

@media (min-width: 768px) {
  .mtb-dur-modal {
    display: none !important;
  }
}

/* Duration dropdowns - unselected state */
.MTB .custom-duration-hour .dropdown-text,
.MTB .custom-duration-minute .dropdown-text {
  color: var(--bar);
}

/* Duration dropdowns - after user picks a value */
.MTB .custom-duration-hour.selected .dropdown-text,
.MTB .custom-duration-minute.selected .dropdown-text {
  color: var(--primary);
}


.time-slot.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}