/*=========== TABLE OF CONTENTS ===========
1. CSS Variables
2. Utility CSS
3. Common CSS
==========================================*/

/*-------------------------------------
  1. CSS Variables
--------------------------------------*/
:root {
  /*------Color variables------*/
  --blue_gray_100_01: #d2d5da;
  --gray_50: #f9f8fd;
  --grayscale_gray_5: #656d78;
  --icon_red: #ce273e;
  --lightest: #f9f8fd;
  --primary_gray_300: #d2d5da;
  --blue_gray_300: #9097a7;
  --black_900: #000000;
  --black_900_0c: #0000000c;
  --black_900_19: #00000019;
  --blue_gray_100: #d2d5da;
  --blue_gray_600: #656d78;
  --grayscale_gray_1: #f5f7fa;
  --grayscale_gray_6: #434a54;
  --grayscale_gray_8: #181f25;
  --icon_white: #ffffff;
  --red_700: #ce273e;
  --red_900: #b5082a;
  --red_a400: #ea0029;

  /*------Teal accent variables (from welcome.css)------*/
  --teal_500: #4BBFAD;
  --teal_300: #7DD8CA;
  --teal_700: #3aa899;

  /*------Shadow variables------*/
  --shadow-xs: 0 6px 24px 0 #0000000c;
  --shadow-sm: 0 4px 8px 0 #00000019;

  /*------Border radius variables------*/
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /*------Spacing variables------*/
  --space-xs: 2px;
  --space-sm: 4px;
  --space-md: 6px;
  --space-lg: 8px;
  --space-xl: 10px;
  --space-2xl: 12px;
  --space-3xl: 13px;
  --space-4xl: 16px;
  --space-5xl: 22px;
  --space-6xl: 36px;
  --space-7xl: 72px;
  --space-8xl: 98px;
}

/*-------------------------------------
  2. Utility CSS
--------------------------------------*/
.flex-col-center-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/*-------------------------------------
  3. Common CSS
--------------------------------------*/
.columnheader_logo-one {
  background-color: var(--grayscale_gray_1);
  width: 100%;
  overflow-x: hidden;
}

.header {
  background-color: var(--grayscale_gray_8);
  padding: var(--space-2xl);
  @media only screen and (max-width: 550px) {
    padding: var(--space-lg) var(--space-2xl);
  }
}

.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4xl);
  @media only screen and (max-width: 550px) {
    gap: var(--space-xl);
  }
}

.header__row--secondary {
  gap: var(--space-3xl);
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  @media only screen and (max-width: 550px) {
    gap: var(--space-lg);
  }
}

.header__logo-container {
  gap: var(--space-2xl);
  display: flex;
  align-items: center;
  @media only screen and (max-width: 550px) {
    gap: var(--space-lg);
  }
}

.header__logo {
  height: 24px;
  width: 96px;
  object-fit: contain;
  @media only screen and (max-width: 550px) {
    height: 20px;
    width: 80px;
  }
}

.header__divider {
  height: 40px;
  background-color: var(--grayscale_gray_6);
  width: 1px;
  @media only screen and (max-width: 550px) {
    height: 28px;
  }
}

.header__client-container {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header__client-logo {
  background-color: var(--grayscale_gray_1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
}

.header__client-logo-image {
  height: 34px;
  object-fit: cover;
  @media only screen and (max-width: 550px) {
    height: 26px;
  }
}

.header__dropdown {
  color: var(--icon_white);
  margin-bottom: var(--space-xl);
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
  padding-left: var(--space-2xl);
  font-size: 14px;
  font-weight: 500;
  gap: var(--space-md);
  align-self: flex-end;
  flex-grow: 1;
  background-image: url(../public/images/img_arrowdown.svg);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: calc(100% - 0px);
}

.header__action-icon {
  height: 24px;
  width: 24px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.header__client-text {
  white-space: nowrap;
  color: var(--icon_white);
  font-size: 16px;
  margin-left: var(--space-xl);
  @media only screen and (max-width: 550px) {
    font-size: 12px;
    margin-left: 0;
  }
}

.header__row > button,
.header__action-button {
  padding: var(--space-lg) var(--space-4xl);
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  @media only screen and (max-width: 550px) {
    padding: var(--space-md) var(--space-xl);
    font-size: 12px;
  }
}

.header__raffle-button {
  color: var(--icon_white);
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--red_a400), var(--red_700));
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: var(--space-lg) var(--space-5xl);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 0 12px rgba(234, 0, 41, 0.4), 0 0 24px rgba(234, 0, 41, 0.15);
  animation: raffle-glow 2s ease-in-out infinite;
}

.header__raffle-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  animation: raffle-shimmer 3s ease-in-out infinite;
}

.header__raffle-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(234, 0, 41, 0.6), 0 0 36px rgba(234, 0, 41, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.header__raffle-button:active {
  transform: scale(0.97);
}

@keyframes raffle-shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

@keyframes raffle-glow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(234, 0, 41, 0.4), 0 0 24px rgba(234, 0, 41, 0.15);
  }
  50% {
    box-shadow: 0 0 20px rgba(234, 0, 41, 0.6), 0 0 40px rgba(234, 0, 41, 0.3);
  }
}

@media only screen and (max-width: 550px) {
  .header__raffle-button {
    padding: var(--space-md) var(--space-4xl);
    font-size: 11px;
    letter-spacing: 0.3px;
  }
}

.back-link-container {
  padding: var(--space-2xl) var(--space-4xl);
}

.back-link {
  color: var(--red_900);
  font-weight: 500;
  font-size: 14px;
}

.content-iframe {
  width: 100%;
  height: 80vh;
  border: none;
}

/*-------------------------------------
  Demo Viewer (in-page content swap)
--------------------------------------*/
.demo-viewer {
  display: none;
  flex-direction: column;
  flex: 1;
  min-height: calc(100vh - 60px);
}

.demo-viewer__toolbar {
  padding: var(--space-2xl) var(--space-4xl);
  background-color: var(--icon_white);
  border-bottom: 1px solid var(--blue_gray_100);
}

.demo-viewer__back {
  color: var(--red_900);
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-lg);
  transition: color 0.15s ease;
}

.demo-viewer__back:hover {
  color: var(--red_700);
}

.demo-viewer__frame {
  width: 100%;
  flex: 1;
  border: none;
  min-height: calc(100vh - 110px);
}

@media only screen and (max-width: 550px) {
  .demo-viewer__toolbar {
    padding: var(--space-xl) var(--space-2xl);
  }
  .demo-viewer__back {
    font-size: 13px;
  }
}

.modal-iframe {
  width: 100%;
  height: 70vh;
  border: none;
}

/*-------------------------------------
  Raffle Modal
--------------------------------------*/
.raffle-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.raffle-modal__content {
  background-color: var(--icon_white);
  margin: 6% auto;
  width: 90%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  animation: raffleModalIn 0.3s ease-out;
}

.raffle-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--space-5xl) var(--space-5xl) var(--space-4xl);
  background: linear-gradient(135deg, var(--grayscale_gray_8) 0%, #1e2830 100%);
}

.raffle-modal__header-text {
  flex: 1;
}

.raffle-modal__title {
  font-family: Roboto, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--icon_white);
  margin: 0 0 6px 0;
}

.raffle-modal__subtitle {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.raffle-modal__close {
  color: rgba(255, 255, 255, 0.5);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 0 0 0 12px;
  transition: color 0.15s ease;
  flex-shrink: 0;
}

.raffle-modal__close:hover {
  color: var(--icon_white);
}

/* Prize banner */
.raffle-modal__prize {
  display: flex;
  align-items: center;
  gap: var(--space-4xl);
  padding: var(--space-4xl) var(--space-5xl);
  background: linear-gradient(135deg, rgba(75, 191, 173, 0.08) 0%, rgba(206, 39, 62, 0.06) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.raffle-modal__prize-icon {
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
}

.raffle-modal__prize-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.raffle-modal__prize-label {
  font-family: Roboto, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #2a7a6e;
}

.raffle-modal__prize-name {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--grayscale_gray_8);
}

.raffle-modal__prize-desc {
  font-family: Roboto, sans-serif;
  font-size: 12px;
  color: var(--blue_gray_600);
}

/* Form */
.raffle-modal__form {
  padding: var(--space-5xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-4xl);
}

.raffle-modal__field-row {
  display: flex;
  gap: var(--space-4xl);
}

.raffle-modal__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.raffle-modal__label {
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--grayscale_gray_6);
  letter-spacing: 0.2px;
}

.raffle-modal__input {
  width: 100%;
  padding: var(--space-2xl) var(--space-4xl);
  font-family: Roboto, sans-serif;
  font-size: 15px;
  border: 1.5px solid var(--blue_gray_100);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  background-color: var(--icon_white);
  color: var(--grayscale_gray_8);
  box-sizing: border-box;
}

.raffle-modal__input:focus {
  border-color: var(--red_900);
  box-shadow: 0 0 0 3px rgba(181, 8, 42, 0.1);
}

.raffle-modal__input::placeholder {
  color: var(--blue_gray_300);
}

.raffle-modal__error {
  font-family: Roboto, sans-serif;
  font-size: 13px;
  color: var(--red_a400);
  margin: 0;
}

.raffle-modal__submit {
  width: 100%;
  height: 48px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--icon_white);
  background: linear-gradient(135deg, var(--red_a400), var(--red_900));
  border: none;
  border-radius: var(--radius-xs);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(181, 8, 42, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: 0.5px;
}

.raffle-modal__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(181, 8, 42, 0.35);
}

.raffle-modal__submit:active {
  transform: scale(0.98);
}

.raffle-modal__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.raffle-modal__disclaimer {
  font-family: Roboto, sans-serif;
  font-size: 11px;
  color: var(--blue_gray_300);
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

/* Success state */
.raffle-modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-7xl) var(--space-5xl);
  gap: var(--space-4xl);
}

.raffle-modal__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4BBFAD, #3aa899);
  color: var(--icon_white);
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(75, 191, 173, 0.35);
}

.raffle-modal__success-title {
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--grayscale_gray_8);
  margin: 0;
}

.raffle-modal__success-text {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  color: var(--blue_gray_600);
  margin: 0;
  max-width: 320px;
  line-height: 1.5;
}

.raffle-modal__success .raffle-modal__submit {
  max-width: 200px;
  margin-top: var(--space-xl);
}

/* Animation */
@keyframes raffleModalIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */
@media only screen and (max-width: 550px) {
  .raffle-modal__content {
    margin: 4% auto;
    width: 95%;
  }
  .raffle-modal__header {
    padding: var(--space-4xl);
  }
  .raffle-modal__title {
    font-size: 19px;
  }
  .raffle-modal__subtitle {
    font-size: 13px;
  }
  .raffle-modal__prize {
    padding: var(--space-2xl) var(--space-4xl);
    gap: var(--space-2xl);
  }
  .raffle-modal__prize-icon {
    font-size: 28px;
  }
  .raffle-modal__prize-name {
    font-size: 14px;
  }
  .raffle-modal__form {
    padding: var(--space-4xl);
    gap: var(--space-2xl);
  }
  .raffle-modal__field-row {
    flex-direction: column;
    gap: var(--space-2xl);
  }
  .raffle-modal__input {
    font-size: 14px;
  }
  .raffle-modal__success {
    padding: var(--space-6xl) var(--space-4xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .raffle-modal__content {
    animation: none;
  }
}

.section-1 {
  min-height: 100vh;
  padding-top: var(--space-6xl);
  padding-bottom: var(--space-6xl);
  background-image: url(../public/images/img_group_1.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;

  @media only screen and (max-width: 1050px) {
    min-height: auto;
  }

  @media only screen and (max-width: 550px) {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
  }
}

.section__header-1 {
  display: flex;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
  @media only screen and (max-width: 550px) {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.section__content-1 {
  gap: var(--space-6xl);
  display: flex;
  width: 100%;
  flex-direction: column;
  @media only screen and (max-width: 550px) {
    gap: var(--space-4xl);
  }
}

.section__content__card {
  background-color: var(--icon_white);
  box-shadow: var(--shadow-xs);
  padding: var(--space-5xl);
  border-radius: var(--radius-md);
  @media only screen and (max-width: 550px) {
    padding: var(--space-4xl);
  }
}

.section__content__card__description {
  gap: var(--space-xl);
  display: flex;
  flex-direction: column;
}

.title__primary {
  gap: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.primary__text {
  align-self: stretch;
  display: flex;
}

.text--welcome {
  align-self: flex-end;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.text--tagline {
  color: var(--black_900) !important;
}

.description__detail {
  display: flex;
}

.detail__text {
  color: var(--grayscale_gray_8) !important;
  max-width: 78%;
  line-height: 24px;
  @media only screen and (max-width: 768px) {
    max-width: 100%;
  }
  @media only screen and (max-width: 550px) {
    max-width: 100%;
    line-height: 21px;
  }
}

.section__content__list {
  gap: var(--space-6xl);
  display: flex;
  flex-wrap: wrap;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }

  @media only screen and (max-width: 550px) {
    gap: var(--space-4xl);
  }
}

.user-profile-2 {
  gap: var(--space-6xl);
  display: flex;
  background-color: var(--icon_white);
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  padding: var(--space-4xl);
  border-radius: var(--radius-md);
  border: 1px solid var(--blue_gray_100);
  @media only screen and (max-width: 1050px) {
    flex: 0 0 auto;
  }

  @media only screen and (max-width: 550px) {
    padding: var(--space-4xl) var(--space-2xl);
    gap: var(--space-2xl);
  }
}

.user-profile__image {
  height: 226px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  @media only screen and (max-width: 550px) {
    height: 160px;
  }
}

.user-profile__content {
  margin-bottom: var(--space-4xl);
  gap: var(--space-sm);
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  @media only screen and (max-width: 1050px) {
    flex: 0 1 auto;
  }
}

.user-profile__description-block,
.user-profile__description-container {
  gap: var(--space-4xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
  justify-content: space-between;
  @media only screen and (max-width: 1050px) {
    flex: 0 1 auto;
    justify-content: flex-start;
  }
  @media only screen and (max-width: 550px) {
    align-items: stretch;
  }
}

/* Push CTA to bottom of card when no description text is present */
.user-profile__description-block > a:only-child,
.user-profile__description-container > a:only-child {
  margin-top: auto;
}

.user-profile__description {
  width: 100%;
  line-height: 21px;
}

.user-profile__button-2 {
  color: var(--icon_white) !important;
  padding-left: var(--space-2xl);
  padding-right: var(--space-2xl);
  background-color: var(--red_900) !important;
  box-shadow: 0 4px 8px 0 #00000019 !important;
  height: 48px;
  min-width: 154px;
  border-radius: 4px !important;
  @media only screen and (max-width: 550px) {
    min-width: unset;
    width: 100%;
  }
}

.icon-right-swap-with-your-icon-components {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

/*=========== DESIGN TREATMENT (Welcome → Landing Pages) ===========*/

/*-------------------------------------
  Tagline shimmer animation
--------------------------------------*/
.section-1 .text--tagline {
  background-size: 200% auto;
  animation: landing-taglineShimmer 4s ease-in-out infinite;
}

@keyframes landing-taglineShimmer {
  0%   { background-position: 0% center; }
  50%  { background-position: 200% center; }
  100% { background-position: 0% center; }
}

/*-------------------------------------
  Gradient divider (hero → cards)
--------------------------------------*/
.section-1 .hero-divider {
  display: block;
  width: 120px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, var(--red_700), var(--teal_500));
  border-radius: 1px;
  animation: landing-dividerExpand 0.8s ease-out 0.4s both;
}

@keyframes landing-dividerExpand {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/*-------------------------------------
  Particle dot overlay
--------------------------------------*/
.section-1::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(75, 191, 173, 0.045) 0%, transparent 2.5%),
    radial-gradient(circle at 85% 15%, rgba(206, 39, 62, 0.035) 0%, transparent 2%),
    radial-gradient(circle at 75% 80%, rgba(75, 191, 173, 0.04) 0%, transparent 3%),
    radial-gradient(circle at 20% 75%, rgba(206, 39, 62, 0.03) 0%, transparent 2%),
    radial-gradient(circle at 55% 45%, rgba(255, 255, 255, 0.01) 0%, transparent 3.5%);
  pointer-events: none;
  z-index: 0;
  animation: landing-particleDrift 14s ease-in-out infinite alternate;
}

@keyframes landing-particleDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(6px, -4px); }
}

/*-------------------------------------
  Enhanced feature cards (frosted glass)
--------------------------------------*/
.section-1 .user-profile-2 {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

/*-------------------------------------
  Teal accent: gradient top-border on hover
--------------------------------------*/
.section-1 .user-profile-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--red_700), var(--teal_500));
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.section-1 .user-profile-2:hover::before {
  opacity: 1;
}

/*-------------------------------------
  Teal accent: card heading hover color
--------------------------------------*/
.section-1 .user-profile-2 .ui.heading.size-headingxs {
  transition: color 0.25s ease;
}

.section-1 .user-profile-2:hover .ui.heading.size-headingxs {
  color: var(--teal_700);
}

/*-------------------------------------
  Design treatment: responsive
--------------------------------------*/
@media only screen and (max-width: 768px) {
  .section-1 .hero-divider {
    width: 80px;
  }
}

@media only screen and (max-width: 550px) {
  .section-1 .hero-divider {
    width: 60px;
  }
  .section-1::after {
    opacity: 0.6;
  }
}

/*-------------------------------------
  Design treatment: reduced motion
--------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  .section-1::after {
    animation: none;
  }
  .section-1 .text--tagline {
    animation: none;
  }
  .section-1 .hero-divider {
    animation: none;
    transform: scaleX(1);
    opacity: 1;
  }
}
