<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Multi-step Form Container */
.multi-step-form-container {
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
}

/* Form Steps Indicator */
.form-steps {
  margin: 20px 0;
}

.step {
  background-color: #bdd1e5;
  color: #fff;
  font-weight: 700;
  height: 50px;
  min-width: 100px;
  transition: all 0.3s ease;
  width: 194px;
  font-size: 20px;
}

.text-note-danger {
  font-size: 20px;
  color: #c6463f;
  font-weight: 500;
}

.step-divider {
  color: #6c757d;
}

.step.current-step {
  background-color: #5ac3e1;
  color: #fff;
}

/* Form Sections */

.content-1 {
  padding: 51px 96px;
  background-color: #fff;
  border-radius: 24px;
}

.content-2 {
  padding: 51px 96px;
  background-color: #fff;
  border-radius: 24px;
  margin-top: 17px;
}

.form-section-title {
  color: #595757;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 0px !important;
  font-size: 24px;
}

.wpcf7-form label {
  font-size: 20px;
  font-weight: 700;
}

.form-divider {
  background-color: #cbab7b;
  height: 4px;
  margin: 0 auto 30px;
  width: 64px;
}

/* Form Section Headers */
.section-subtitle {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid #e9ecef;
}

.form-section {
  /* margin-bottom: 30px; */
}

/* Form Labels and Fields */
.form-label {
  color: #595757;
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

#step-1-content .form-section .form-group p {
  margin-bottom: 0px;
}

/* Required/Optional Badges */
.badge-required,
.badge-optional {
  border-radius: 8px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  padding: 0px 10px;
  text-align: center;
  min-width: 40px;
  margin-right: 8px;
  vertical-align: middle;
}

.badge-required {
  background-color: #c6463f;
}

.badge-optional {
  background-color: #64696a;
}

/* Field Notes */
.field-note {
  color: #595757;
  font-size: 16px;
  margin-top: 5px;
  font-weight: 500;
}

.form-control,
.form-select {
  border: 1px solid #707070;
  border-radius: 5px;
  color: #333;
  font-size: 16px;
  padding: 10px 15px;
  transition: border-color 0.3s ease;
  border-radius: 12px;
  background-color: #f8f8f8;
}

.form-control:focus,
.form-select:focus {
  border-color: #66c7ed;
  box-shadow: 0 0 0 0.25rem rgba(102, 199, 237, 0.25);
  outline: none;
}

.wpcf7-not-valid {
  border-color: #dc3545 !important;
}

.wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
}

/* File Upload */
.file-upload-wrapper {
  position: relative;
}

.file-upload-wrapper input[type="file"] {
  display: block;
  width: 100%;
}

.wpcf7-file {
  color: #333;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  padding: 10px 15px;
  width: 100%;
}

.file-upload-btn {
  background-color: #66c7ed;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 8px 20px;
  text-align: center;
}

/* Styling the file input container for better appearance */
.wpcf7-form-control-wrap[data-name="your-file"] {
  background-color: #f8f9fa;
  border: 1px dashed #ced4da;
  border-radius: 5px;
  display: block;
  padding: 15px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

.wpcf7-form-control-wrap[data-name="your-file"]:hover {
  border-color: #66c7ed;
}

.file-upload-info {
  color: #6c757d;
  font-size: 14px;
  margin-top: 5px;
}

.wpcf7-form {
  background-color: transparent !important;
}

/* Buttons */
.btn {
  border: none;
  border-radius: 30px;
  font-weight: 500;
  padding: 10px 30px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #66c7ed;
  color: #fff;
}

.btn-primary:hover {
  background-color: #4fafd5;
}

.btn-secondary {
  background-color: #e9ecef;
  color: #6c757d;
}

.button-confirm-step {
  font-size: 18px;
  width: 350px;
}

.btn svg {
  position: absolute;
  right: 16px;
  margin-bottom: 2px;
}

.file-name-display {
  display: flex;
  align-items: center;
  flex-grow: 1;
  overflow: hidden;
}
.file-name-display p {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 10px 0 0;
}
.file-delete-btn {
  flex-shrink: 0;
  background-color: #ff6b6b;
  color: white;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

#step-2-content .btn svg {
  margin-bottom: 0px;
  margin-top: 7px;
}

.btn-secondary:hover {
  background-color: #dde2e6;
}

/* Confirmation Step */
.confirmation-section {
  background-color: #f8f9fa;
  border-radius: 5px;
  padding: 20px;
}

.confirmation-title {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.confirmation-item {
  margin-bottom: 10px;
}

.confirmation-label {
  color: #6c757d;
  font-weight: 500;
  min-width: 200px;
}

.confirmation-value {
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Completion Step */
.completion-message {
  padding: 40px 20px;
}

input::placeholder {
  font-weight: 500 !important;
  font-family: "Noto Sans CJK JP" !important;
  color: #a0a0a0 !important;
}

.confirm-step.btn-disabled {
  background-color: #d1d1d1 !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

.confirm-step {
  justify-content: center !important;
}

.thank-you-title {
  color: #333;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}

.thank-you-message {
  color: #6c757d;
  font-size: 16px;
  margin-bottom: 30px;
}

/* Ensure Step 3 displays correctly */
#step-3-content {
  display: none;
}
#step-3-content.show {
  display: block !important;
}
.wpcf7-mail-sent-ok ~ #step-3-content {
  display: block !important;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .confirmation-label {
    margin-bottom: 5px;
  }

  .btn {
    padding: 8px 40px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}

/* Message for required fields */
.text-danger-mail {
  color: #dc3545;
}

/* Hide honeypot field */
.honeypot-field {
  display: none !important;
}

/* Fix for the br tag issue between badge and label */
.d-flex.align-items-center.mb-2 {
  display: flex !important;
  flex-wrap: nowrap !important;
}

.d-flex.align-items-center.mb-2 br {
  display: none !important;
}

/* Additional CF7-specific fixes for the br tag issue */
.wpcf7-form .d-flex.align-items-center.mb-2 &gt; br,
.wpcf7-form .d-flex.align-items-center.mb-2 span.wpcf7-form-control-wrap br {
  display: none !important;
}

.wpcf7-form .d-flex.align-items-center.mb-2 {
  white-space: nowrap;
}

/* Force inline display for badges and labels */
.badge-required,
.badge-optional,
.form-label {
  display: inline-block !important;
  white-space: normal;
}

/* Specific styles for the label-badge-container */
.label-badge-container {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}

.label-badge-container br {
  display: none !important;
}

.label-badge-container span,
.label-badge-container label {
  float: none !important;
  display: inline-block !important;
}

/* Fix for Contact Form 7's dynamic HTML modifications */
.wpcf7-form-control-wrap {
  display: block;
}

/* Step 2 buttons container */
#step-2-content .d-flex.justify-content-center.gap-4 {
  display: flex !important;
  justify-content: center !important;
  gap: 1.5rem !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

#step-2-content .form-section .label-badge-container p {
  margin-bottom: 0px;
}

/* File Upload - New Design */
.custom-file-upload-container {
  width: 100%;
}

.file-upload-row {
  width: 100%;
}

.file-upload-row .d-flex {
  align-items: center;
  display: flex;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 12px;
  overflow: hidden;
}

.file-upload-btn-container {
  flex-shrink: 0;
}

.file-add-btn br {
  display: none !important;
}

.file-select-btn {
  background-color: #66c7ed;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s ease;
  height: 100%;
  min-width: 130px;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.file-select-btn:hover {
  background-color: #4fafd5;
}

.file-name-display {
  flex-grow: 1;
  color: #6c757d;
  font-size: 14px;
  padding: 10px 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-name-display.has-file {
  color: #333;
}

.file-input-container {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  z-index: -1;
}

.file-input-container input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  opacity: 0;
}

.file-upload-add-btn-container {
  margin-top: 15px;
  background-color: #f8f8f8;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 12px;
}

.file-add-btn {
  background-color: transparent;
  border: none;
  color: #595757;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-add-btn:hover {
  color: #4fafd5;
}

/* NÃºt xÃ³a file - style má»›i khi hiá»ƒn thá»‹ á»Ÿ phÃ­a sau */
.file-delete-btn {
  background-color: #ff6b6b;
  color: white;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 5px;
  transition: all 0.2s ease;
}

.file-delete-btn:hover {
  background-color: #ff3333;
  transform: scale(1.1);
}

/* Fix spacing for file name display */
.file-name-display {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

/* Äiá»u chá»‰nh láº¡i container chá»©a nÃºt chá»n file vÃ&nbsp; tÃªn file */
.file-upload-row .d-flex {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.file-upload-btn-container {
  margin-right: 10px;
}

/* Hide actual file inputs from Contact Form 7 */
.custom-file-upload-container .wpcf7-file {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .file-select-btn {
    padding: 8px 15px;
    font-size: 13px;
    min-width: 110px;
  }

  .file-name-display {
    font-size: 13px;
    padding: 8px 10px;
  }
}

.buttons-container {
  width: 100%;
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
}

.buttons-container br {
  display: none !important;
}

.buttons-container button {
  display: inline-block !important;
  margin: 0 10px !important;
}

/* Fix for potential responsive issues */
@media (max-width: 767.98px) {
  #step-2-content .d-flex.justify-content-center.gap-4,
  .buttons-container {
    flex-direction: row !important;
  }
}

@media (max-width: 575.98px) {
  .wpcf7-form {
    padding: 0px !important;
  }
  .step {
    font-weight: 500;
    min-width: 70px;
    transition: all 0.3s ease;
    font-size: 16px;
  }

  .multi-step-form-container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .content-1 {
    padding: 30px;
  }

  .content-2 {
    padding: 30px;
  }
}

@media (max-width: 991px) {
  .content-1 {
    padding: 30px;
  }

  .content-2 {
    padding: 30px;
  }
  .multi-step-form-container {
    padding-left: 0px;
    padding-right: 0px;
  }
}
</pre></body></html>