/* =========================================================
   Global And Shared Styles
   ========================================================= */
/*
 * Global page defaults:
 * - base font
 * - background color
 * - default text color
 */

body {
  font-family: "Inter";
  background-color: #f8f9fa;
  color: #212529;
}
/* Scramble text effect styling */
.scramble-wrapper {
  display: inline-block;
  position: relative;
}

.scramble-text {
  font-family: 'Roboto Mono', monospace;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #00ff00;
  white-space: nowrap;
  position: relative;
}

.scramble-text::before {
  content: "Hover über mich!";
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

/* Primary button hover and focus states */
.btn-primary:hover,
.btn-primary:focus {
  background-color: #000000; /* your color */
  border-color: #000000;
}

/* Brand text in the navbar */
.navbar-brand {
  font-weight: 700 /* make it bold */;

}

/* Primary button color overrides (uses Bootstrap .btn-primary) */
.btn-primary {
  background-color: #000000;
  border-color: #000000;
}


/* =========================================================
   Shared Navbar (Used Across Templates)
   Structure order: header background -> shell -> brand -> links -> actions
   ========================================================= */
/* Home page navbar: capsule layout inspired by the uploaded reference. */
.home-header {
  background-color: #f8f9fa;
  border-bottom: 0;
}

.study-page .home-header {
  background-color: #f8f9fa;
}

.new-flashcard-page .home-header {
  background-color: #f8f9fa;
}

.home-navbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.65rem, 1.6vw, 1.2rem);
  background-color: #ffffff;
  border-radius: 999px;
  padding: 0.5rem;
  min-height: 88px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.18);
}

.home-brand {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-decoration: none;
  overflow: hidden;
}

.home-brand-logo {
  height: 50px;
  width: auto;
}

.home-navbar-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 1.9vw, 2.2rem);
  min-width: 0;
}

.home-navbar-link {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.92rem, 1.15vw, 1.1rem);
  letter-spacing: 0.01em;
  line-height: 1.1;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.home-navbar-link:hover,
.home-navbar-link:focus-visible {
  color: #ffffff;
  opacity: 0.75;
}

.home-navbar-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 0.38rem;
  flex-shrink: 0;
}

.home-navbar-actions .btn {
  border-radius: 999px;
  border-width: 1px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

.home-navbar-actions .btn-outline-secondary {
  color: #000000;
  border-color: #000000;
  background-color: #ffffff;
}

.home-navbar-actions .btn-outline-secondary:hover,
.home-navbar-actions .btn-outline-secondary:focus {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

.home-navbar-actions .scramble-text {
  font-size: 15px;
}

.home-navbar-actions .btn.scramble-text {
  font-family: "Roboto Mono", monospace;
  min-width: 8.5ch;
  text-align: center;
}

/* =========================================================
   Shared Transition Overlay
   ========================================================= */
/* Full-screen blocks transition overlay */
.transitionContainer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.transition-row {
  flex: 1;
  display: flex;
}

.transition-row .block {
  flex: 1;
  background-color: #000000;
  transform-origin: top;
  transform: scaleY(0);
  visibility: hidden;
}

/* Bottom row grows upward so both rows meet in the middle */
.transition-row.row-2 .block {
  transform-origin: bottom;
}

/* When arriving on a page that should reveal, keep it fully covered
  immediately so underlying content never flashes before JS runs. */
html.run-reveal .transition-row .block,
body.run-reveal .transition-row .block {
  visibility: visible;
  transform: scaleY(1);
}

/* =========================================================
   Landing Page (Top -> Bottom)
   ========================================================= */
#nerdeckLogoName {
  font-family: "Space Grotesk"; font-weight: 700;
  font-size: 3rem;
  color: #000000;
  cursor: pointer; /* show hand cursor on hover */
  transition: color 0.2s ease, text-shadow 0.2s ease;
}



/* Make inner link follow the heading color and remove underline */
#nerdeckLogoName a {
  color: inherit;
  text-decoration: none;
  cursor: pointer; /* ensure hand cursor directly on the text */
}


/* Glitch button effect for the landing page logo text */
#nerdeckLogoName .glitch-btn {
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  font-size: 2rem;
  background: #ffffff;
  color: #000000;
  border: none;
  overflow: hidden;
  cursor: pointer;
}

#nerdeckLogoName .slice {
  position: absolute;
  width: 100%;
  height: 20%;
  left: 0;
  background: inherit;
  pointer-events: none;
  opacity: 0;
}

/* =========================================================
   Home Page (Top -> Bottom)
   1) Hero section title/glitch
   2) Hero container + overlay
   3) Main headings and CTA section title
   4) Hero video + play affordance
   ========================================================= */
/* Large hero title used in the hero text */
.hero-title {
	font-family: "Space Grotesk";
  color: #000000;
  font-size: 10rem; /* pick size you like */
  font-weight: 700;
}

/* Glitch styling for the home hero NERDECKS text */
.hero-title .glitch-btn {
  position: relative;
  display: inline-block;
  padding: 0 24px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  background: #ffffff;
  color: #000000;
}

.hero-title .slice {
  position: absolute;
  width: 100%;
  height: 30%;
  left: 0;
  background: #ffffff;
  pointer-events: none;
  opacity: 0;
}

.hero-ratio {
  /* Bootstrap ratio uses this custom property for height */
  --bs-aspect-ratio: 90%;  /* higher % = taller box (default 56.25% for 16:9) */
  cursor: pointer;
}


 /*
 * Make the hero text fill the 16:9 area and center it:
 * - absolute layering inside the ratio container
 * - full width/height
 * - centered content with flexbox
 */
.hero-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}



/*
 * (No longer used in the current hero markup)
 * Kept for reference: hides video visually but keeps its layout space.
 */
.hero-video-hidden {
  visibility: hidden;
}
/* Headings inside the main home content section */
#main-home-content h1,
#main-home-content h2 {
  font-family: "Space Grotesk";
  color: #000000;
  font-weight: 700;
}
.how-it-works-title {
  font-family: "Space Grotesk";
  color: #000000;
  font-weight: 700;
  font-size: 7rem;
}
/*
 * Hero video element:
 * - stretches to fill the ratio container
 * - "contain" keeps full video visible with letterboxing
 */
#heroVideo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #ffffff;
  cursor: pointer;
}

/*
 * Circular play button overlay on top of the hero video:
 * - centered with translate
 * - custom size, color, and shadow
 */
.btn-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}

/* Hover state for the hero play button */
.btn-play-overlay:hover {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #f6f3f3;
}

/* =========================================================
   Decks Page (Top -> Bottom)
   ========================================================= */
/* Decks page */
.your-decks {
  font-family: "Space Grotesk";
  color: #000000;
  font-weight: 700;
  font-size: 3rem;
}
/* New deck button */
#createDeckModal .modal-content {
  border-radius: 16px;
  border: 1px solid #e6ebf2;
}

#createDeckModal .modal-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

#deleteCardModal .modal-content {
  border-radius: 16px;
  border: 1px solid #e6ebf2;
}

#deleteCardModal .modal-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

#deleteDeckModal .modal-content,
#deleteDeckConfirmModal .modal-content {
  border-radius: 16px;
  border: 1px solid #e6ebf2;
}

#deleteDeckModal .modal-title,
#deleteDeckConfirmModal .modal-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}
.deck-table-wrap {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.signup-shell {
  max-width: 460px;
}

.signup-card-form p {
  margin-bottom: 1rem;
}

.signup-card-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: #334155;
}

.signup-card-form input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.62rem 0.78rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.signup-card-form input:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.signup-card-form .helptext {
  display: block;
  margin-top: 0.45rem;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.35;
}

.signup-card-form ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: #64748b;
  font-size: 0.86rem;
}

.signup-card-form .errorlist {
  list-style: none;
  margin: 0 0 0.45rem;
  padding-left: 0;
  color: #b42318;
  font-size: 0.88rem;
}

.deck-table {
  width: 100%;
  table-layout: fixed;
  margin-bottom: 0;
}

.deck-table thead th {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #334155;
  background: linear-gradient(90deg, #f8fafc 0%, #eef2f7 100%);
  border-bottom: 1px solid #dbe4ef;
  padding: 0.95rem 1rem;
}

/* Keep column widths static when folder rows open/close. */
.deck-table thead th:nth-child(1) { width: 40%; }
.deck-table thead th:nth-child(2) { width: 10%; }
.deck-table thead th:nth-child(3) { width: 10%; }
.deck-table thead th:nth-child(4) { width: 14%; }
.deck-table thead th:nth-child(5) { width: 13%; }
.deck-table thead th:nth-child(6) { width: 13%; }

.deck-table tbody td {
  padding: 0.95rem 1rem;
  border-color: #edf2f7;
}

.deck-table tbody tr:nth-child(odd) td {
  background-color: #fcfdff;
}

.deck-table tbody tr:hover td {
  background-color: #f3f9ff;
}

.folder-row td {
  background-color: #f8fafc;
  border-top: 1px solid #e7eef7;
}

.folder-row {
  cursor: grab;
}

.folder-row.folder-row-dragging {
  opacity: 0.6;
}

.folder-row.folder-row-drop-target td {
  background-color: #e8f3ff !important;
  outline: 2px dashed #0d6efd;
  outline-offset: -2px;
}

.folder-toggle {
  color: #0f172a;
  font-weight: 600;
}

.folder-arrow {
  display: inline-block;
  width: 1.15rem;
}

.folder-rename-form {
  margin: 0;
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.folder-name {
  display: inline-block;
  font-weight: 600;
  color: #0f172a;
  cursor: text;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.folder-name-input {
  position: absolute;
  top: 50%;
  left: 0;
  width: 175px;
  max-width: min(240px, calc(100vw - 4rem));
  transform: translateY(-50%);
  min-width: 175px;
  z-index: 2;
}

.folder-name-display.folder-name-editing {
  visibility: hidden;
}

.deck-row {
  cursor: grab;
}

.deck-row.deck-row-dragging {
  opacity: 0.5;
}

.deck-row.deck-row-drop-target td {
  background-color: #e8f3ff !important;
  outline: 2px dashed #0d6efd;
  outline-offset: -2px;
}

.root-drop-zone td {
  background: #f8fafc;
  border-top: 1px dashed #cbd5e1;
  border-bottom: 1px dashed #cbd5e1;
  text-align: center;
  font-size: 0.85rem;
}

.root-drop-zone.root-drop-zone-drop-target td {
  background-color: #e8f3ff !important;
  outline: 2px dashed #0d6efd;
  outline-offset: -2px;
}

.deck-name {
  font-weight: 600;
  color: #0f172a;
  cursor: text;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deck-rename-form {
  margin: 0;
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.deck-name-input {
  position: absolute;
  top: 50%;
  left: 0;
  width: 175px;
  max-width: min(240px, calc(100vw - 4rem));
  transform: translateY(-50%);
  min-width: 175px;
  z-index: 2;
}

.deck-name-display {
  display: inline-block;
}

.deck-name-display.deck-name-editing {
  visibility: hidden;
}

.deck-count {
  font-weight: 600;
}

.deck-count.text-muted {
  color: var(--bs-secondary-color) !important;
}

.deck-count.text-danger {
  color: var(--bs-danger) !important;
}

.deck-action-btn {
  /* Gives both action buttons a consistent pill shape and baseline width. */
  font-weight: 600;
  border-radius: 999px;
  min-width: 82px;
}

/*
 * Bootstrap's d-none removes elements from layout (display: none), which caused
 * the table to resize when a row was selected. For deck action buttons inside
 * this table, we keep them in flow but invisible so column widths stay fixed.
 */
.deck-table .deck-action-btn.d-none {
  display: inline-block !important;
  visibility: hidden;
  pointer-events: none;
}

.deck-postit-note {
  display: inline-block;
  background: #fff59d;
  color: #2f2a10;
  padding: 0.9rem 1.05rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
  transform: rotate(-1.8deg);
  position: relative;
  max-width: 320px;
}

.deck-postit-note::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.deck-postit-note p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  padding-top: 0.5rem;
}

.deck-radio {
  cursor: pointer;
  border: 2px solid #64748b;
}

.deck-radio:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.decks-mobile-folder {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  overflow: hidden;
}

.decks-mobile-folder-summary {
  list-style: none;
  cursor: pointer;
  padding: 0.8rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  background: linear-gradient(90deg, #f8fafc 0%, #eef2f7 100%);
}

.decks-mobile-folder-summary::-webkit-details-marker {
  display: none;
}

.decks-mobile-folder-summary::after {
  content: "▾";
  color: #475569;
  font-size: 0.9rem;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.decks-mobile-folder:not([open]) .decks-mobile-folder-summary::after {
  transform: rotate(-90deg);
}

.decks-mobile-folder-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #0f172a;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.decks-mobile-folder-content {
  padding: 0.75rem;
}

.decks-mobile-card {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 12px;
  padding: 0.8rem;
}

.decks-mobile-card + .decks-mobile-card {
  margin-top: 0.65rem;
}

.decks-mobile-section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #475569;
  margin-bottom: 0;
}

/* =========================================================
   New Flashcard Page (Top -> Bottom)
   ========================================================= */


.new-flashcard-main {
  background: transparent;
}

.new-flashcard-shell {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.18);
  padding: 2rem;
}

.new-flashcard-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  font-weight: 700;
}

.new-flashcard-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
}

.new-flashcard-deck {
  color: #475569;
  font-weight: 500;
}

.new-flashcard-deck-name {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #1e3a8a;
  font-weight: 700;
}

.new-flashcard-form p {
  margin-bottom: 1rem;
}

.new-flashcard-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: #334155;
}

.new-flashcard-form input,
.new-flashcard-form textarea,
.new-flashcard-form select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.62rem 0.78rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.new-flashcard-form textarea {
  min-height: 120px;
  resize: vertical;
}

.new-flashcard-form input:focus,
.new-flashcard-form textarea:focus,
.new-flashcard-form select:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

/* =========================================================
   Study Page (Top -> Bottom)
   ========================================================= */
.study-main {
  background: transparent;
}

.study-shell {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  padding: 2rem;
}

.study-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  font-weight: 700;
}

.study-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
}

.study-deck {
  color: #475569;
  font-weight: 500;
}

.study-deck-name {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #1e3a8a;
  font-weight: 700;
}

.study-card {
  border: 1px solid #dbe4ef;
  border-radius: 16px;
}

.study-card .card-body {
  min-height: 180px;
}

/* =========================================================
   Responsive Overrides
   Ordered from wider to narrower breakpoints.
   ========================================================= */
/* Home page responsive adjustments (mobile/tablet only). */
@media (max-width: 991.98px) {
  .home-navbar {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: auto;
    border-radius: 34px;
    padding: 0.55rem;
  }

  .home-brand {
    width: 64px;
    height: 64px;
  }

  .home-brand-logo {
    height: 36px;
  }

  .home-navbar-links {
    justify-content: flex-start;
    gap: clamp(0.75rem, 2.8vw, 1.4rem);
    padding-right: 0.25rem;
  }

  .home-navbar-actions {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    padding: 0.35rem;
  }

  .home-navbar-actions .btn {
    flex: 1 1 0;
    min-width: 140px;
  }

  .home-page .hero-title {
    font-size: clamp(3.6rem, 11vw, 6rem);
  }

  .home-page .hero-title .glitch-btn {
    padding: 0 12px;
  }

  .home-page .home-hero .card-body {
    padding: 2.5rem 1.5rem;
  }

  .home-page .home-how-title {
    font-size: clamp(2.6rem, 8vw, 4.5rem);
  }
}
@media (max-width: 768px) {
  .your-decks {
    font-size: 2.1rem;
  }

  .deck-table thead th,
  .deck-table tbody td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 767.98px) {
  .home-navbar {
    grid-template-columns: 1fr;
    border-radius: 28px;
    gap: 0.5rem;
  }

  .home-brand {
    justify-self: center;
    width: 58px;
    height: 58px;
  }

  .home-brand-logo {
    height: 34px;
  }

  .home-navbar-links {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .home-navbar-link {
    font-size: 0.84rem;
  }

  .home-navbar-actions {
    width: 100%;
    justify-content: center;
  }

  .home-navbar-actions .btn {
    min-width: 0;
    flex: 1 1 0;
    padding: 0.45rem 0.6rem;
    font-size: 0.9rem;
  }

  .home-page .hero-ratio {
    --bs-aspect-ratio: 100%;
  }

  .home-page .hero-title {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
    line-height: 1.05;
  }

  .home-page .hero-title .glitch-btn {
    padding: 0 8px;
  }

  .home-page .home-how-title {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.1;
  }
}
@media (max-width: 575.98px) {
  .home-page .hero-ratio {
    --bs-aspect-ratio: 115%;
  }

  .home-page .home-hero .card-body {
    padding: 1.75rem 0.8rem;
  }

  .home-page #main-home-content section.py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .home-navbar {
    border-radius: 22px;
    padding: 0.45rem;
  }

  .home-navbar-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 0.25rem;
  }

  .home-navbar-link {
    font-size: 0.73rem;
    text-align: center;
  }

  .home-navbar-actions {
    width: 100%;
    padding: 0.3rem;
    gap: 0.3rem;
  }

  .home-navbar-actions .btn {
    min-width: 0;
    flex: 1 1 0;
    padding: 0.4rem 0.5rem;
    font-size: 0.82rem;
  }

  .home-navbar-actions .scramble-text {
    font-size: 13px;
  }
}
