input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@keyframes fade-in {
  from {
      background-color: rgba(0, 0, 0, 0);
  }
  to {
      background-color: rgba(0, 0, 0, 0.8);
  }
}

@keyframes fade-out {
  from {
      background-color: rgba(0, 0, 0, 0.8);
  }
  to {
      background-color: rgba(0, 0, 0, 0);
  }
}

@keyframes slide-in {
  from {
      transform: translateX(500px);
  }
  to {
      transform: translateX(0px);
  }
}

@keyframes slide-out {
  from {
      transform: translateX(0px);
  }
  to {
      transform: translateX(500px);
  }
}

body.cart-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

#cart-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#cart-drawer[data-state="open"] > div {
  animation: slide-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] > div {
  animation: slide-out 0.4s forwards;
}

.dialog[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
  animation: dialog-in 0.2s forwards;
}

.dialog[data-state="closed"] > div {
  animation: dialog-out 0.2s forwards;
}

@keyframes dialog-in {
  from {
      opacity: 0;
      scale: 50%;
  }
  to {
      opacity: 1;
      scale: 100%;
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      scale: 100%;
  }
  to {
      opacity: 0;
      scale: 50%;
  }
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.centralcart-content iframe {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

.grid-background {
  background-image: linear-gradient(to right,hsla(0,0%,100%,.03) 1px,transparent 1px),linear-gradient(to bottom,hsla(0,0%,100%,.03) 1px,transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 85% at 40% 30%, #000 0%, #fff0 110%)
}

.custom-bg-mask {
	mask-image: linear-gradient(hsl(var(--background)), rgba(0, 0, 0, 0.3), rgb(0, 0, 0, 0));
}

@keyframes loading {
  0% {
      left: -50%;
  }

  to {
      left: 100%;
  }
}

/* Top donators shine */
.top-donators-pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
  transition: left 0.5s ease-in;
}

.top-donators-pill:hover::after {
  left: 120%;
  transition: left 0.6s ease-out;
}

.detail-dash {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 50%, hsl(var(--foreground) / 0) 0%);
  background-position: center bottom;
  background-size: 16px;
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

/* Sidebar categories */
.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 0.25rem;
}

.cat-dropdown {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.cat-dropdown:not(.hidden) {
  animation: slideDown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

#mobile-categories-dropdown:not(.hidden) {
  animation: slideInMobile 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInMobile {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-subcategories:not(.hidden) {
  animation: slideInSub 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInSub {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
 
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.btn-primary {
  background: hsl(var(--primary));
  color: lch(from hsl(var(--primary)) calc((49.44 - l) * infinity) 0 0);
}

.btn.btn-primary:hover {
  filter: brightness(0.95);
}

.btn.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.35);
  background: hsl(var(--background) / 0.75);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.6rem;
}

.featured-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
}

.featured-badge-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: hsl(var(--primary));
  line-height: 1;
}

/* Luz passando no hover (Produtos em Destaque, banner de categoria, etc.) */
.shine-on-hover {
  overflow: hidden;
}

.shine-on-hover::before,
.category-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: translateX(-120%);
  transition: transform 0.85s ease;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 28%,
    rgba(255, 255, 255, 0.12) 32%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.12) 68%,
    transparent 72%,
    transparent 100%
  );
  pointer-events: none;
}

.shine-on-hover:hover::before,
.category-card:hover .category-card-image::before {
  transform: translateX(120%);
}

.category-card-image {
  overflow: hidden;
}

.category-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgb(var(--background) / 0.3), transparent 60%);
}

.shine-effect {
  position: relative;
  will-change: transform;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.shine-effect:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.shine-effect::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  pointer-events: none;
}

.shine-effect:hover::after {
  animation: shine-sweep 0.9s ease;
}

@keyframes shine-sweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.vertical-carousel-container {
  width: 100%;
  max-width: 800px;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.vertical-carousel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  align-items: flex-start;
}

.vertical-carousel-column {
  overflow: hidden;
  position: relative;
  display: flex;
  isolation: isolate;
}

.vertical-carousel-col-1 {
  height: 50%;
}

.vertical-carousel-col-2 {
  height: 80%;
}

.vertical-carousel-col-3 {
  height: 100%;
}

.vertical-carousel-column::before,
.vertical-carousel-column::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 18px;
  z-index: 2;
  pointer-events: auto;
}

.vertical-carousel-column::before {
  top: 0;
  background: linear-gradient(to bottom, rgb(var(--background)), rgba(0, 0, 0, 0));
}

.vertical-carousel-column::after {
  bottom: 0;
  background: linear-gradient(to top, rgb(var(--background)), rgba(0, 0, 0, 0));
}

.vertical-carousel-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.vertical-carousel-col-1 .vertical-carousel-items {
  animation: vertical-scroll-down-infinite 7s linear infinite;
}

.vertical-carousel-col-2 .vertical-carousel-items {
  animation: vertical-scroll-up-infinite 8s linear infinite;
}

.vertical-carousel-col-3 .vertical-carousel-items {
  animation: vertical-scroll-down-infinite 9s linear infinite;
}

.vertical-carousel-items.is-paused {
  animation-play-state: paused;
}

.vertical-carousel-item {
  flex-shrink: 0;
  width: 100%;
  height: 110px !important;
  min-height: 110px !important;
  max-height: 110px !important;
  border-radius: 0.5rem;
  overflow: hidden;
  display: block;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.vertical-carousel-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
  transition: all 0.2s ease;
  border-radius: 0.5rem;
  max-width: 100%;
  max-height: 100%;
}

.vertical-carousel-item:hover {
  border-color: hsl(var(--primary));
}

.vertical-carousel-item:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.horizontal-carousel-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
  padding: 0.5rem 0;
  width: 100%;
}

.horizontal-carousel-row {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.horizontal-carousel-items {
  display: flex;
  gap: 0.5rem;
  width: max-content;
  will-change: transform;
}

.horizontal-carousel-items.hero-horizontal-scroll-right {
  animation: hero-horizontal-scroll-right 32s linear infinite;
}

.horizontal-carousel-items.hero-horizontal-scroll-left {
  animation: hero-horizontal-scroll-left 34s linear infinite;
}

.horizontal-carousel-row:hover .horizontal-carousel-items {
  animation-play-state: paused;
}

.horizontal-carousel-item {
  flex-shrink: 0;
  width: 140px;
  height: 90px;
  min-width: 140px;
  min-height: 90px;
  max-width: 140px;
  max-height: 90px;
  border-radius: 0.5rem;
  overflow: hidden;
  display: block;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.horizontal-carousel-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
  max-width: 100%;
  max-height: 100%;
  filter: brightness(0.88);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.horizontal-carousel-item:hover {
  border-color: hsl(var(--primary));
}

.horizontal-carousel-item:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

@keyframes hero-horizontal-scroll-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes hero-horizontal-scroll-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes vertical-scroll-down-infinite {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes vertical-scroll-up-infinite {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.package-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.similar-packages-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.similar-packages-section #similar-packages-grid > div {
  min-width: 0;
}

.similar-packages-section #similar-packages-grid a.package {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 767px) {
  .package-list-carousel-wrap {
    width: 100%;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
  }

  .package-list.is-mobile-carousel {
    display: flex !important;
    grid-template-columns: none !important;
    grid-auto-flow: unset !important;
    grid-auto-columns: unset !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 0.5rem;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.25rem;
    box-sizing: border-box;
  }

  .package-list.is-mobile-carousel::-webkit-scrollbar {
    display: none;
  }

  .package-list.is-mobile-carousel > .reveal-fade-up {
    flex: 0 0 auto;
    width: calc(50vw - 0.75rem);
    min-width: calc(50vw - 0.75rem);
    max-width: calc(50vw - 0.75rem);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    box-sizing: border-box;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0 0;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgb(var(--foreground) / 0.28);
  transition:
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  padding: 0;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
}

.carousel-dot.active {
  width: 24px;
  background: rgb(var(--foreground) / 0.92);
}

.carousel-dot:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .reviews-container {
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.reviews-row {
  overflow: hidden;
  position: relative;
  height: 160px;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

@media (min-width: 640px) {
  .reviews-row {
    height: 180px;
  }
}

@media (min-width: 1024px) {
  .reviews-row {
    height: 200px;
  }
}

.reviews-content {
  display: flex;
  gap: 1.5rem;
  animation: reviews-scroll-right 260s linear infinite !important;
  width: fit-content;
}

.reviews-content-reverse {
  animation: reviews-scroll-left 260s linear infinite !important;
}

.reviews-row:hover .reviews-content {
  animation-play-state: paused;
}

.review-card {
  flex-shrink: 0;
  width: 280px;
  height: 150px;
  background: rgba(var(--muted-solid), 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reviews-row-top .review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.ctfassets.net/wonkqgvit51x/1cqpCPq3xlteZI3lKWpykD/958fe02838c1f9d6e5eec140b0ed7870/TP_LinkPreviewSocialPlatforms.png') !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  border-radius: inherit;
}

.reviews-row-top .review-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 90%, transparent 100%);
  z-index: 1;
  border-radius: inherit;
}

.reviews-row-top .review-card > * {
  position: relative;
  z-index: 2;
}

.reviews-row-bottom .review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.ctfassets.net/wonkqgvit51x/1cqpCPq3xlteZI3lKWpykD/958fe02838c1f9d6e5eec140b0ed7870/TP_LinkPreviewSocialPlatforms.png') !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  border-radius: inherit;
}

.reviews-row-bottom .review-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 90%, transparent 100%);
  z-index: 1;
  border-radius: inherit;
}

.reviews-row-bottom .review-card > * {
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .review-card {
    width: 320px;
    height: 170px;
    padding: 1.25rem;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .review-card {
    width: 350px;
    height: 180px;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}

.review-card-link {
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.review-card-link:hover .review-card {
  border-color: hsl(var(--primary));
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .review-avatar {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .review-avatar-img {
    width: 44px;
    height: 44px;
  }
}

@media (min-width: 1024px) {
  .review-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .review-avatar-img {
    width: 48px;
    height: 48px;
  }
}

.review-info {
  flex: 1;
}

.review-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: rgb(var(--foreground));
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .review-name {
    font-size: 0.9rem;
  }
}

@media (min-width: 1024px) {
  .review-name {
    font-size: 0.95rem;
  }
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.review-star {
  width: 16px;
  height: 16px;
  color: hsl(var(--primary));
}

.reviews-row-bottom .review-star {
  color: #FFD700;
}

[data-forza-promo-section].reveal-fade-up {
  opacity: 1;
  transform: translateY(0);
}

.forza-promo {
  --forza-tilt-x: 0deg;
  --forza-tilt-y: 0deg;
  min-height: 320px;
}

.forza-promo-media {
  z-index: 0;
}

.forza-promo-bg {
  transform: scale(1.02);
}

.forza-promo-overlay {
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.78) 45%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.forza-promo-card-col {
  perspective: 1000px;
  overflow: visible;
  padding: 0.5rem 0.25rem;
  align-self: center;
}

.forza-promo-card {
  transform: perspective(1200px) rotateX(var(--forza-tilt-x)) rotateY(var(--forza-tilt-y));
  transform-style: preserve-3d;
  transition:
    transform 0.55s cubic-bezier(0.25, 0.8, 0.35, 1),
    border-color 0.45s ease,
    box-shadow 0.45s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.forza-promo.is-tilting .forza-promo-card {
  transition:
    transform 0.12s cubic-bezier(0.25, 0.8, 0.35, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 36px -16px rgba(0, 0, 0, 0.65);
}

.forza-promo-stock {
  white-space: nowrap;
}

.forza-promo-actions {
  position: relative;
  z-index: 1;
}

.forza-promo-actions .btn-primary,
.forza-promo-actions .btn-secondary,
.forza-promo-actions a {
  min-height: 2.5rem;
}

@media (min-width: 1024px) {
  .forza-promo-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.72) 55%,
      rgba(0, 0, 0, 0.45) 100%
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .forza-promo-card {
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
  }
}

.review-stars-trustpilot {
  width: 80px;
  height: 16px;
  object-fit: contain;
}

.review-text {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgb(var(--muted-foreground));
  flex: 1;
  overflow: hidden;
  word-wrap: break-word;
  min-height: 0;
}

@media (min-width: 640px) {
  .review-text {
    font-size: 0.8125rem;
    line-height: 1.45;
  }
}

@media (min-width: 1024px) {
  .review-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

@keyframes reviews-scroll-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes reviews-scroll-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

#reviews-section {
  position: relative;
}

#reviews-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(var(--primary), 0.20) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
  pointer-events: none;
}
