/* ==========================================================
   ATM Locator styles — Carstar-style layout
   --atm-purple:     #3E1D6D   (primary / default pin)
   --atm-purple-lg:  #9966CC   (active pin / hover accents)
   --atm-burgundy:   #6B1C3F   (active filter pill)
   --atm-dark-bg:    #1C0E3A   (initial screen)
   ========================================================== */

/* ── Reset inside the widget ─────────────────────────────── */
.atm-locator,
.atm-locator *,
.atm-locator *::before,
.atm-locator *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Make <main> full-screen on this page template */
body.page-template-atm-locator .im-main {
  padding: 0 !important;
  max-width: none !important;
}

body.page-template-atm-locator.atm-initial-open {
  overflow: hidden !important;
  height: 100dvh;
}

body.page-template-atm-locator.menu-open:not(.atm-initial-open) {
  overflow: auto !important;
}

.atm-locator__initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.atm-locator-bg{
  position:fixed;
  inset:0;
  width:100%;
  height:calc(100% + 0.125rem);
  bottom: -0.125rem;
  object-fit:cover;
  z-index: -1;
}
.atm-locator__initial--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.atm-locator-initial-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 33.75rem;
  padding: 3rem 1.375rem;
  text-align: center;
}

.atm-locator-headline {
  color: #FFF;
  text-align: center;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.06rem;
  margin-bottom: 0.5rem;
}

.atm-locator-subline {
  color: #FFF;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.0225rem;
  margin-bottom: 1rem;
}

/* ── "Use my location" text link ─────────────────────────── */
.atm-locator-use-location-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity 0.15s;
}
.atm-locator-use-location-btn.map-locator-btn{
 position: absolute;
}
.atm-locator__initial .atm-locator-use-location-btn {
  color: rgba(255,255,255,0.7);
}

.atm-locator__panel .atm-locator-use-location-btn {
  left: 0.625rem;
  margin: 0;
}

.atm-locator-use-location-btn:hover { opacity: 0.75; }

/* ════════════════════════════════════════════════════════════
   SHARED SEARCH ROW
   ════════════════════════════════════════════════════════════ */
.atm-locator__search-wrap {
  position: relative;
  width: 100%;
}

.atm-locator__initial .atm-locator__search-wrap { max-width: 32.5rem; }


.atm-locator-search-card{
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0.25rem 1.5rem 0 rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(0.375rem);
  padding: 0.75rem 1rem;
  max-width: 22.5rem;
  margin: auto;
}
.atm-locator__panel .atm-locator__search-btn{
  height: 1.75rem;
  width: 1.75rem;
  margin: 0;
  background-color: var(--btn-primary-bg);
  border: 0;
  border-radius: 0.375rem;
  cursor: pointer;
  position: absolute;
  right: 0.375rem;
}
.atm-locator__panel .atm-locator__clear-btn{
  right: 2.1875rem
}
.atm-locator-search-row {
  display: flex;
  align-items: center;
  position: relative;
}
.atm-locator__search-input {
  background: #ffffff;
  flex: 1;
  min-width: 0;
  padding: 0.6rem 1.75rem 0.6rem 1rem;
  border: none;
  outline: none;
  font-size: 0.9375rem;
  color: #111;
  border-radius: 0.5625rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.12);
  background: #FFF;
  line-height: 1.4;
}
.atm-locator__search-input:focus,.atm-locator__search-input:focus-visible{
  border-color: #6E234A;
}
.atm-locator__panel .atm-locator__search-input {
  padding: 0.625rem 3.75rem 0.625rem 2rem;
  font-size: 0.875rem;
  background-color: #F3F3F3;
}

.atm-locator__search-input::placeholder { color: #a0a0a0; }

/* ── Clear (×) button ────────────────────────────────────── */
.atm-locator__clear-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #aaa;
  position: absolute;
  right: 0.125rem;
  border-radius: 50%;
  transition: background 0.12s, color 0.12s;
}

.atm-locator__clear-btn[hidden] { display: none; }
.atm-locator__clear-btn:hover { background: #f0f0f0; color: #333; }

/* ── Search submit button ─────────────────────────────────── */
.atm-locator__search-btn {
  flex-shrink: 0;
  height: 3rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ── Autocomplete dropdown ───────────────────────────────── */
.atm-locator__dropdown {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.18);
  overflow-y: auto;
  max-height: 15.625rem;
  z-index: 200;
  list-style: none;
}

.atm-locator__dropdown[hidden] { display: none; }

.atm-locator__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.6875rem 1rem;
  font-size: 0.875rem;
  color: #111;
  cursor: pointer;
  border-bottom: 0.0625rem solid #f3f3f3;
  transition: background 0.1s;
}

.atm-locator__dropdown-item:last-child { border-bottom: none; }

.atm-locator__dropdown-item:hover,
.atm-locator__dropdown-item--focused {
  background: #f0eaf9;
}

/* ════════════════════════════════════════════════════════════
   MAP + PANEL LAYOUT
   ════════════════════════════════════════════════════════════ */
.atm-locator__app {
  position: absolute;
  inset: 0;
  max-height: calc(100vh - 4.5rem);
  top: 4.5rem;
  overflow: auto;
  display: flex;
}

.atm-locator__view-toggle {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 18;
  display: inline-flex;
  gap: 0.0625rem;
  border-radius: 6.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.80);
  background: rgba(242, 242, 242, 0.64);
  box-shadow: 0 0 0.0625rem 0 rgba(0, 0, 0, 0.40), 0 0.25rem 1rem 0 rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(0.4375rem);
  display: none;
}

.atm-locator__view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: 0;
  border-radius: 6rem;
  background: transparent;
  color: #000;
  padding: 0.5625rem 1rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.atm-locator__view-btn svg {
  display: block;
  flex-shrink: 0;
}

.atm-locator__view-btn--active,
.atm-locator__view-btn[aria-pressed="true"] {
  background: #6E234A;
  color: #fff;
  border-color: #6E234A;
}

.atm-locator--map-only .atm-locator__app {
  overflow: hidden;
}

.atm-locator--map-only .atm-locator__map {
  flex: 1;
  height: 100%;
}

.atm-locator__panel {
  position: relative;
  z-index: 10;
  width: 22.5rem;
  min-width: 17.5rem;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 1rem 0 rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(0.4063rem);
}

.atm-locator__panel-header {
  padding: 1rem;
  background: #fff;
  flex-shrink: 0;
  border-bottom: 0.0625rem solid #ebebeb;
}

.atm-locator__panel-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

/* ── Filters ─────────────────────────────────────────────── */
.atm-locator__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 0 0.875rem;
}

.atm-locator__filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.3125rem 0.875rem;
  border-radius: 1.25rem;
  border: 0.0938rem solid #3E1D6D;
  background: transparent;
  color: #3E1D6D;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.atm-locator__filter-btn[aria-pressed="true"] {
  background: #6B1C3F;
  border-color: #6B1C3F;
  color: #fff;
}

.atm-locator__filter-btn:hover:not([aria-pressed="true"]) { background: #f0eaf9; }

.atm-locator__filter-btn[hidden] { display: none; }

/* ── Result count ────────────────────────────────────────── */
.atm-locator__result-count {
  font-size: 0.75rem;
  color: #888;
  line-height: 1;
}

/* ── Scrollable list ─────────────────────────────────────── */
.atm-locator__list-wrap {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
}

.atm-locator__list { list-style: none; }

.atm-locator__list-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  color: #888;
  font-size: 0.875rem;
}

.atm-locator__expand-search-btn {
  margin-top: 1rem;
  border: 0.0625rem solid #3E1D6D;
  background: #fff;
  color: #3E1D6D;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 9999px;
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.atm-locator__expand-search-btn:hover {
  background: #f0eaf9;
}

.atm-locator__expand-search-btn[hidden] {
  display: none;
}

/* ── List item (Carstar-style) ───────────────────────────── */
.atm-locator__item {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  padding: 0.5rem 1rem;
  border-bottom: 0.0625rem solid #f0f0f0;
  cursor: pointer;
  transition: background 0.12s;
}

.atm-locator__item:hover,.atm-locator__item--active { background: #F3F3F3; }

.atm-locator__item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.atm-locator__item-name {
  color: #6E234A;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 16.25rem;
  width: 100%;
}

.atm-locator__item-distance {
  font-size: 0.75rem;
  color: #767676;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
}

.atm-locator__item-address {
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
}

.atm-locator__item-badges {
  display: flex;
  gap: 0.375rem;
  margin-top: 0.25rem;
}

/* ── Feature icons ──────────────────────────────────────── */
.atm-locator__item-icons {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.125rem;
}

.atm-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1rem;
  flex-shrink: 0;
}

.atm-locator__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  border-radius: 0.625rem;
  background: #ede7f9;
  color: #3E1D6D;
  font-size: 0.6875rem;
  font-weight: 700;
}

/* ── Map ─────────────────────────────────────────────────── */
.atm-locator__map {
  flex: 1;
  height: 100%;
  position: relative;
}

/* ── Fallback when no Google Maps API key is configured ──── */
.atm-locator__map--unavailable {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #666;
  background: #f3f3f3;
  font-size: 0.9375rem;
}

/* ════════════════════════════════════════════════════════════
   FLOATING INFO CARD (Carstar-style overlay on map)
   ════════════════════════════════════════════════════════════ */
.atm-float-card {
  /* Default corner placement is a fallback only — JS repositions this above
     the active marker's pin on every pan/zoom via updateFloatCardPosition(). */
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 15;
  width: 20rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.22), 0 0.125rem 0.5rem rgba(0,0,0,0.12);
  padding: 1rem;
  animation: atm-card-in 0.2s ease;
  --atm-card-arrow-left: 50%;
}

.atm-float-card[hidden] { display: none; }

/* ── Pointer arrow toward the pin beneath the card ──────────── */
.atm-float-card::after {
  content: '';
  position: absolute;
  top: 100%;
  left: var(--atm-card-arrow-left);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 0.5rem solid transparent;
  border-top-color: #fff;
  filter: drop-shadow(0 0.125rem 0.125rem rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

/* Card flipped below the pin (not enough room above) — arrow points up. */
.atm-float-card--flipped::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: #fff;
  filter: drop-shadow(0 -0.125rem 0.125rem rgba(0, 0, 0, 0.08));
}

@keyframes atm-card-in {
  from { opacity: 0; transform: translateY(-0.5rem); }
  to   { opacity: 1; transform: translateY(0); }
}
.map-modal-header{
  padding-bottom: 1rem;
  margin-bottom: 0.75rem;
  position: relative;
}
.map-modal-header::after{
  content: '';
  height: 0.0625rem;
  background-color: rgba(208, 208, 208, 0.40);
  position: absolute;
  bottom: 0;
  left: -1rem;
  right: -1rem;
  width: calc(100% + 2rem);
}
.atm-details{
  color: #0F172B;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}
.atm-float-card__close {
  border: none;
  background: transparent;
  cursor: pointer;
  color: #999;
  border-radius: 50%;
  transition: background 0.1s, color 0.1s;
}

.atm-float-card__close:hover { background: #f5f5f5; color: #111; }

.atm-float-card__name {
  color: #6E234A;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.2;
}

.atm-float-card__distance {
  font-size: 0.8125rem;
  color: #888;
  margin-bottom: 0.625rem;
}

.atm-float-card__address {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
}

.atm-float-card__directions {
  border-radius: 0.375rem;
  background: #6E234A;
  box-shadow: 0 0.0625rem 0.1875rem 0 rgba(0, 0, 0, 0.16);
  transition: background 0.15s;
  color: #fff;
  gap: 0.5rem;
  height: 2.5rem;
  font-size: 0.875rem;
  text-decoration: none;
}
.atm-float-card__directions:hover { background: #862a5a; color: #fff; }

.map-modal-btn-wrappr{
  padding-top: 0.75rem;
}
.map-modal-btn{
  width: 100%;
  padding: 0.375rem 1rem;
  display: flex;
  gap: 0.5rem;
  color: #000;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 2;
  border-radius: 0.375rem;
  background: #EFEFEF;
  white-space: nowrap;
  outline: 0;
  cursor: pointer;
  border: 0;
}
.map-modal-btn:hover{
  background: #efefefe1;
}

/* ── Mobile overlay (behind bottom-sheet card) ──────────── */
.atm-card-overlay {
  display: none;
}
.atm-step-back{
  width: 1rem;
  height: 1rem;
  border: 0;
  background-color: transparent;
  outline: 0;
  margin-right: 0.5rem;
  cursor: pointer;
}
.atm-step-back[hidden] {
  display: none !important;
}
.valid-address{
  color: #767676;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.valid-add-card{
  display: flex;
  padding: 0.5rem 0.75rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.25rem;
  align-self: stretch;
  border-radius: 0.25rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.08);
  background: #F3F3F3;
  box-shadow: 0 0.0625rem 0.1875rem 0 rgba(0, 0, 0, 0.04);
  margin-bottom: 0.75rem;
}
.add-card-title{
  color: #6E234A;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
}
.card-add{
  color: #767676;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.4;
}
.map-mail-label{
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  display: block;
  margin-bottom: 0.25rem;
}
.map-mail-input{
  display: flex;
  height: 2.5rem;
  padding: 0.375rem 0.375rem 0.375rem 0.75rem;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
  border-radius: 0.5rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.06);
  background: #F3F3F3;
  color: var(--color-text);
  font-family: "GT America";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.map-mail-input::placeholder{
  color: #838383;
}
.is-invalid {
  border-color: #ff0000;
  background-color: #FFEDF0;
}
.send-direction-btn{
  border: 0;
  outline: 0;
  margin-top: 0.75rem;
}
.error-message{
  color: #B0162B;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
}
.error-message[hidden]{
  display: none;
}
.error-message svg{
  margin-right: 0.375rem;
}
.email-sent-message{
  color: #1B7A43;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0.625rem;
  text-align: center;
}
.email-sent-message[hidden]{
  display: none;
}
.send-direction-btn:disabled{
  opacity: 0.6;
  cursor: not-allowed;
}
/* Remove Google Maps default InfoWindow chrome (safety net) */
.gm-ui-hover-effect,
.gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-d { display: none !important; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .atm-locator {
    position: relative;
    height: calc(100dvh - 4.5625rem);
    overflow: auto;
  }
  .atm-locator__app {
    position: relative;
    inset: auto;
    top: 0;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: auto;
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - 4.625rem);
  }
  .atm-locator__map{
    flex: 0 0 40vh;
    height: 40vh;
    max-height: none;
  }
  .atm-locator__panel {
    flex: 1;
    min-height: 0;
    overflow: visible;
    width: 100%;
    box-shadow: 0 0.125rem 0.75rem rgba(0,0,0,0.1);
  }
  .atm-locator__view-toggle {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.125rem;
    display: flex;
  }
  .atm-locator--map-only .atm-locator__map {
    flex: 1 1 auto;
    height: calc(100dvh - 4.5625rem);
  }
  .atm-locator--map-only .atm-locator__panel {
    display: none;
  }
  .atm-locator__list-wrap {
    min-height: 0;
    flex: 0 0 auto;
    overflow: visible;
    overscroll-behavior: auto;
  }
  /* ── Dark overlay ───────────────────────────────────────── */
  .atm-card-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 997;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .atm-card-overlay--visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* Lock background scroll while bottom sheet is open */
  .atm-locator--card-open,
  .atm-locator--card-open .atm-locator__app {
    overflow: hidden !important;
    touch-action: none;
  }

  /* ── Float card as bottom sheet ─────────────────────────── */
  .atm-float-card {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100%;
    border-radius: 1.25rem 1.25rem 0 0;
    height: auto;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 998;
    box-shadow: 0 -0.25rem 1.5rem rgba(0,0,0,0.18);
    animation: atm-card-up 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .atm-float-card--closing {
    animation: atm-card-down 0.35s cubic-bezier(0.32, 0.72, 0, 1) forwards;
  }
  .atm-float-card::after {
    display: none;
  }
  @keyframes atm-card-up {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
  @keyframes atm-card-down {
    from { transform: translateY(0); }
    to   { transform: translateY(110%); }
  }
  .atm-locator__panel-title{
    display: none;
  }
  .map-modal-btn{
    font-size: 0.875rem;
  }
  .map-modal-btn svg{
    width: 0.875rem;
    height: 0.875rem;
  }
}


@media (min-width: 768px) {
.atm-locator__map{
    position: absolute;
    inset: 0;
  }
  .atm-locator__app{
    padding: 0.5rem;
    overflow: inherit;
  }
   .atm-locator__panel{
    width: 20rem;
  }
}

@media (min-width: 1025px) {
  .atm-locator {
    position: fixed;
    inset: 0;
    font-family: inherit;
    z-index: 1;
  }
   .atm-locator-headline{
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  .atm-locator-subline{
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
  .atm-locator-use-location-btn{
    margin-top: 1.375rem;
  }
  .atm-locator__app{
    padding: 1rem;
  }
  
}

@media (min-width: 1280px) {
 .atm-locator__app{
  max-height: calc(100vh - 5rem);
  top: 5rem;
  padding: 1.5rem;
 }
 .atm-locator__panel{
  width: 22.5rem;
 }
 
}

@media (min-width: 1560px) {
  .atm-locator__app{
    max-height: calc(100vh - 6.0625rem);
    top: 6.0625rem;
  }
}

.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;
}