/**
 * Unified Repbox Signup Form CSS
 * Bootstrap 5 compatible with horizontal plan design
 */

/* =============================================================================
   Base Styles & Typography
   ============================================================================= */

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #888;
  line-height: 1.5;
  text-align: center;
}

strong {
  font-weight: 500;
}

a,
a:hover,
a:focus {
  color: #045089;
  text-decoration: none;
  transition: all 0.3s ease;
}

h1, h2 {
  margin-top: 10px;
  font-size: 38px;
  font-weight: 100;
  color: #555;
  line-height: 1.2;
}

h3 {
  font-size: 22px;
  font-weight: 300;
  color: #555;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 18px;
  font-weight: 300;
  color: #555;
  line-height: 1.4;
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
}

::selection {
  background: #045089;
  color: #fff;
  text-shadow: none;
}

/* =============================================================================
   Form Elements & Controls
   ============================================================================= */

.form-control {
  height: 50px;
  padding: 12px 15px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: 0;
  border-color: #045089;
  box-shadow: 0 0 0 0.2rem rgba(4, 80, 137, 0.25);
}

.form-control::placeholder {
  color: #999;
  font-weight: 300;
}

/* =============================================================================
   Input Groups
   ============================================================================= */

.input-group {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100%;
  position: relative;
}

.input-group .form-control {
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-right: none !important;
}

.input-group-text {
  flex: 0 0 auto;
  white-space: nowrap;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-left: none !important;
  color: #666;
  font-size: 14px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
  padding: 12px 15px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  height: 50px;
}

/* =============================================================================
   Validation Styles
   ============================================================================= */

.form-control.is-valid {
  border-color: #28a745 !important;
  background-image: none !important;
  padding-right: 15px;
}

.form-control.is-invalid {
  border-color: #dc3545 !important;
  background-image: none !important;
  padding-right: 15px;
}

.form-control.is-warning {
  border-color: #ffc107 !important;
  background-image: none !important;
  padding-right: 15px;
}

.form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-warning:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.form-control:valid,
.form-control:invalid {
  background-image: none !important;
}

.input-group .form-control.is-valid {
  border-color: #28a745 !important;
  border-right: none !important;
}

.input-group .form-control.is-invalid {
  border-color: #dc3545 !important;
  border-right: none !important;
}

.input-group .form-control.is-warning {
  border-color: #ffc107 !important;
  border-right: none !important;
}

.input-group .form-control.is-valid + .input-group-text {
  border-color: #28a745;
  background-color: #d4edda;
}

.input-group .form-control.is-invalid + .input-group-text {
  border-color: #dc3545;
  background-color: #f8d7da;
}

.input-group .form-control.is-warning + .input-group-text {
  border-color: #ffc107;
  background-color: #fff3cd;
}

/* =============================================================================
   Feedback Messages
   ============================================================================= */

.feedback {
  display: block !important;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25;
}

.feedback.invalid-feedback,
.invalid-feedback {
  color: #dc3545;
  display: block !important;
}

.feedback.text-warning {
  color: #856404;
}

.feedback.text-muted {
  color: #6c757d;
}

.valid-feedback {
  color: #28a745;
  display: block !important;
}

.error {
  display: block !important;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #dc3545;
  font-weight: 400;
  line-height: 1.25;
}

.input-group + .feedback,
.input-group + .invalid-feedback,
.input-group + .error,
.input-group ~ .feedback {
  display: block !important;
  width: 100%;
  margin-top: 0.5rem;
}

#mainDomainFields,
#mainPrivacyFields {
  margin-top: 0.5rem;
}

#mainDomainFields .error,
#mainDomainFields .feedback,
#mainPrivacyFields .error,
#mainPrivacyFields .feedback {
  display: block !important;
  margin-top: 0;
}

.col-md-6 .feedback,
.col-md-6 .invalid-feedback {
  margin-top: 0.5rem;
}

/* =============================================================================
   Buttons
   ============================================================================= */

.btn {
  min-width: 100px;
  height: 44px;
  padding: 0 24px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 44px;
  border-radius: 4px;
  text-transform: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-next,
.btn-submit {
  background: linear-gradient(135deg, #2a6a9a, #45a29e);
  border: none;
  color: #fff;
}

.btn-next:hover,
.btn-submit:hover {
  background: linear-gradient(135deg, #1e4f73, #2e7d7b);
  color: #fff;
}

.btn-previous {
  background: #6c757d;
  border: none;
  color: #fff;
}

.btn-previous:hover {
  background: #5a6268;
  color: #fff;
}

/* =============================================================================
   Layout & Structure
   ============================================================================= */

.vh-full {
  min-height: 100vh;
  display: flex;
}

._40 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44%;
  background: #fff;
  box-shadow: 4px 0 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
  position: relative;
  padding: 60px 0 40px;
}

._60.dt-bg {
  width: 56%;
  background: url(../img/backgrounds/ship-bg-blur.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

.blur {
  background: url(../img/backgrounds/ship-bg@1200.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.block-primary {
  width: 85%;
  max-width: 600px;
}

.box-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* =============================================================================
   Branding
   ============================================================================= */

.navbar-brand {
  width: 270px;
  height: 86px;
  background: url('https://assets.website-files.com/5ee8f4d05db101ceb7c0219f/5ef61e90b4ea4744b44529e8_r-logo.svg') center center no-repeat;
  background-size: contain;
  text-indent: -9999px;
  margin-bottom: 30px;
  display: block;
}

/* =============================================================================
   Form Structure
   ============================================================================= */

.f1 {
  width: 100%;
  max-width: 550px;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.f1 h3 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  color: #333;
  margin-bottom: 30px;
  margin-top: 0;
}

.f1 fieldset {
  display: none;
  border: none;
  padding: 0;
  margin: 0;
}

.f1 fieldset:first-child {
  display: block;
}

.f1-buttons {
  text-align: right;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.row.g-3 {
  margin-bottom: 1rem;
}

.row.g-3:last-child {
  margin-bottom: 0;
}

/* =============================================================================
   Form Steps
   ============================================================================= */

.f1-steps {
  position: relative;
  margin-bottom: 40px;
  margin-top: 30px;
  overflow: hidden;
  padding-top: 10px;
}

.f1-progress {
  position: absolute;
  top: 34px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e9ecef;
}

.f1-progress-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #045089, #2a6a9a);
  transition: width 0.3s ease;
}

.f1-step {
  float: left;
  width: 25%;
  text-align: center;
  position: relative;
  padding: 0 5px;
}

.f1-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #e9ecef;
  color: #6c757d;
  border-radius: 50%;
  font-size: 18px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.f1-step.active .f1-step-icon {
  background: linear-gradient(135deg, #045089, #2a6a9a);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(4, 80, 137, 0.3);
}

.f1-step.activated .f1-step-icon {
  background: #28a745;
  color: #fff;
  box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.f1-step p {
  font-size: 12px;
  color: #999;
  margin: 0;
  font-weight: 400;
  line-height: 1.2;
}

.f1-step.active p,
.f1-step.activated p {
  color: #333;
  font-weight: 500;
}

.f1-steps::after {
  content: "";
  display: table;
  clear: both;
}

/* =============================================================================
   Cards & Components
   ============================================================================= */

.card {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card-body {
  padding: 1.25rem;
}

.form-check {
  margin-bottom: 0.5rem;
  text-align: left;
}

.form-check-input {
  margin-top: 0.25rem;
}

.form-check-label {
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.form-check-label a {
  color: #007bff;
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.form-check-input.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.alert-info {
  background-color: #e7f3ff;
  border-color: #b3d9ff;
  color: #0c5460;
}

/* =============================================================================
   Review Section
   ============================================================================= */

.details-pricing-rb {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.details-pricing-rb h4 {
  color: #495057;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: left;
}

.details-pricing-rb p {
  margin-bottom: 8px;
  color: #6c757d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.details-pricing-rb p strong {
  color: #212529;
  font-weight: 600;
}

.details-pricing-rb hr {
  margin: 15px 0;
  border-color: #dee2e6;
}

.details-pricing-rb .h5,
.details-pricing-rb .text-primary {
  font-size: 1.25rem;
  font-weight: 700;
  color: #007bff !important;
}

.details-pricing-rb * {
  text-align: left;
}

/* =============================================================================
   Modals
   ============================================================================= */

.modal-content.e-exists {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 8px;
}

.modal.modal-bg.show {
  background-color: rgba(0, 0, 0, 0.4);
}

/* =============================================================================
   Notification Container
   ============================================================================= */

#notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 350px;
}

#notification-container .alert {
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

/* =============================================================================
   Loading States
   ============================================================================= */

.spinner-border {
  width: 1.5rem;
  height: 1.5rem;
  border-width: 0.15em;
}

/* =============================================================================
   Stripe Elements
   ============================================================================= */

#card-element,
#modal-card-element {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 15px;
  min-height: 50px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

#card-element:hover,
#modal-card-element:hover {
  border-color: #045089;
}

#card-element.StripeElement--focus,
#modal-card-element.StripeElement--focus {
  border-color: #045089;
  box-shadow: 0 0 0 0.2rem rgba(4, 80, 137, 0.25);
}

#card-element.StripeElement--invalid,
#modal-card-element.StripeElement--invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

#card-element.StripeElement--complete,
#modal-card-element.StripeElement--complete {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

#card-errors,
#modal-card-errors {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* =============================================================================
   PLAN SELECTION - HORIZONTAL CARDS
   ============================================================================= */

/* Plan section header */
.plan-section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-section-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.plan-section-header p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Plans list container */
#plans-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Plan Card - Horizontal Layout */
.plan-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #fff;
  position: relative;
  text-align: left;
}

.plan-card:hover {
  border-color: #045089;
  background: #fafbfc;
  box-shadow: 0 4px 12px rgba(4, 80, 137, 0.1);
}

/* Selected State */
.plan-card.selected {
  border-color: #045089;
  background: linear-gradient(135deg, rgba(4, 80, 137, 0.03), rgba(4, 80, 137, 0.06));
  box-shadow: 0 4px 16px rgba(4, 80, 137, 0.15);
}

/* Popular Plan */
.plan-card.popular {
  border-color: #20c997;
}

.plan-card.popular:hover {
  border-color: #20c997;
  box-shadow: 0 4px 12px rgba(32, 201, 151, 0.15);
}

.plan-card.popular.selected {
  border-color: #20c997;
  background: linear-gradient(135deg, rgba(32, 201, 151, 0.03), rgba(32, 201, 151, 0.06));
  box-shadow: 0 4px 16px rgba(32, 201, 151, 0.2);
}

/* Hide radio */
.plan-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Plan Info - Left Side */
.plan-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

/* Radio Circle */
.plan-radio {
  width: 22px;
  height: 22px;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.plan-card:hover .plan-radio {
  border-color: #045089;
}

.plan-card.popular:hover .plan-radio {
  border-color: #20c997;
}

.plan-card.selected .plan-radio {
  border-color: #045089;
  background: #045089;
}

.plan-card.popular.selected .plan-radio {
  border-color: #20c997;
  background: #20c997;
}

.plan-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.plan-card.selected .plan-radio::after {
  opacity: 1;
  transform: scale(1);
}

/* Plan Details */
.plan-details {
  flex: 1;
}

.plan-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-description {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
  line-height: 1.3;
}

/* Popular Badge */
.popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #20c997, #28a745);
  color: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popular-badge i {
  font-size: 0.6rem;
}

/* Plan Price - Right Side */
.plan-price-section {
  text-align: right;
  flex-shrink: 0;
}

.plan-price-line {
  display: flex;
  align-items: baseline;
  gap: 2px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.plan-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #045089;
  line-height: 1;
}

.plan-card.popular .plan-price {
  color: #20c997;
}

.plan-period {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

.plan-price .currency {
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-price .decimal {
  font-size: 0.9rem;
  font-weight: 600;
}


/* Selected Checkmark */
.plan-card.selected::after {
  content: '\f633';
  font-family: 'bootstrap-icons';
  position: absolute;
  top: -8px;
  right: -8px;
  background: #045089;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(4, 80, 137, 0.3);
}

.plan-card.popular.selected::after {
  background: #20c997;
  box-shadow: 0 2px 8px rgba(32, 201, 151, 0.3);
}

/* Loading State */
#plans-container .loading-state {
  text-align: center;
  padding: 40px 20px;
}

#plans-container .loading-state .spinner-border {
  width: 2.5rem;
  height: 2.5rem;
  color: #045089;
}

/* No Plans State */
#plans-container .no-plans {
  text-align: center;
  padding: 40px 20px;
}

#plans-container .no-plans i {
  font-size: 3rem;
  color: #dee2e6;
}

/* =============================================================================
   Progress Modal Styles
   ============================================================================= */

#progressModal .modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: none;
}

#progressContent {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spinner-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.spinner-wrapper .spinner-border {
  position: absolute;
}

.progress-inner-icon {
  font-size: 1.75rem;
}

.progress-inner-icon.spinning {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.success-checkmark {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.setup-steps {
  margin-top: 1.5rem;
}

.setup-step {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.setup-step.completed {
  color: #198754;
}

.setup-step.active {
  color: #0dcaf0;
  font-weight: 500;
}

.setup-step.pending {
  opacity: 0.6;
}

.domain-badge .badge {
  font-size: 1rem;
  font-weight: 500;
}

.error-icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* =============================================================================
   Responsive Design
   ============================================================================= */

@media (max-width: 1024px) {
  ._60.dt-bg {
    display: none;
  }

  ._40 {
    width: 100%;
    background: url(../img/backgrounds/ship-bg@1200.jpg) no-repeat center center;
    background-size: cover;
    box-shadow: none;
  }

  .f1 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }

  .navbar-brand {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  }
}

@media (max-width: 768px) {
  .f1 {
    margin: 0 15px;
    padding: 20px;
  }

  .f1-step p {
    font-size: 10px;
  }

  .f1-step-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .block-primary {
    width: 100%;
  }

  .f1-buttons .btn {
    margin-bottom: 10px;
    margin-right: 10px;
  }

  .row.g-3 {
    --bs-gutter-x: 1rem;
  }

  /* Plan cards mobile */
  .plan-card {
    padding: 14px 16px;
  }

  .plan-info {
    gap: 12px;
  }

  .plan-name {
    font-size: 0.95rem;
  }

  .plan-price {
    font-size: 1.25rem;
  }

  .plan-description {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .f1-steps {
    display: none;
  }

  .f1 h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .navbar-brand {
    width: 200px;
    height: 60px;
  }

  /* Stack plan cards on small mobile */
  .plan-card {
    flex-wrap: wrap;
    gap: 10px;
  }

  .plan-info {
    width: 100%;
  }

  .plan-price-section {
    width: 100%;
    text-align: left;
    padding-left: 38px;
  }

  #progressContent {
    padding: 2rem !important;
  }
}

/* =============================================================================
   Accessibility
   ============================================================================= */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.btn:focus,
.form-control:focus,
.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(4, 80, 137, 0.25);
}

@media (prefers-contrast: high) {
  .f1-step-icon {
    border: 2px solid;
  }

  .btn {
    border: 2px solid;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================================================
   Legacy Compatibility
   ============================================================================= */

.nop {
  display: none;
}

.form-sub-text {
  margin-left: 2px;
}

/* =============================================================================
   Print Styles
   ============================================================================= */

@media print {
  .f1-steps,
  .f1-buttons,
  .navbar-brand,
  ._60.dt-bg,
  #notification-container {
    display: none !important;
  }

  .f1 {
    box-shadow: none !important;
    border: 1px solid #000 !important;
  }

  .f1 fieldset {
    display: block !important;
  }
}
