/* --- Contact Form Stylesheet --- */
.wpcf7,
.contact-form-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 4rem 0;
  background: #FFF;
}
.wpcf7 p,
.contact-form-container p {
  margin: 0 0 2rem 0 !important;
  max-width: 100% !important;
}
.wpcf7 label,
.contact-form-container label {
  display: block;
  font-family: "Helvetica", sans-serif;
  font-size: 1.6rem;
  color: #000;
  margin-bottom: 0.8rem;
  font-weight: 600;
  text-transform: none;
}
.wpcf7 label span.wpcf7-form-control-wrap,
.contact-form-container label span.wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.5rem;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=date],
.wpcf7 input[type=number],
.wpcf7 select,
.wpcf7 textarea,
.contact-form-container input[type=text],
.contact-form-container input[type=email],
.contact-form-container input[type=tel],
.contact-form-container input[type=date],
.contact-form-container input[type=number],
.contact-form-container select,
.contact-form-container textarea {
  width: 100%;
  padding: 1.4rem 1.6rem;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  color: #000;
  border: 1px solid #898989;
  border-radius: 4px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 input[type=tel]::-moz-placeholder, .wpcf7 input[type=date]::-moz-placeholder, .wpcf7 input[type=number]::-moz-placeholder, .wpcf7 select::-moz-placeholder, .wpcf7 textarea::-moz-placeholder, .contact-form-container input[type=text]::-moz-placeholder, .contact-form-container input[type=email]::-moz-placeholder, .contact-form-container input[type=tel]::-moz-placeholder, .contact-form-container input[type=date]::-moz-placeholder, .contact-form-container input[type=number]::-moz-placeholder, .contact-form-container select::-moz-placeholder, .contact-form-container textarea::-moz-placeholder {
  color: #A6A6A6;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 input[type=date]::placeholder,
.wpcf7 input[type=number]::placeholder,
.wpcf7 select::placeholder,
.wpcf7 textarea::placeholder,
.contact-form-container input[type=text]::placeholder,
.contact-form-container input[type=email]::placeholder,
.contact-form-container input[type=tel]::placeholder,
.contact-form-container input[type=date]::placeholder,
.contact-form-container input[type=number]::placeholder,
.contact-form-container select::placeholder,
.contact-form-container textarea::placeholder {
  color: #A6A6A6;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=date]:focus,
.wpcf7 input[type=number]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus,
.contact-form-container input[type=text]:focus,
.contact-form-container input[type=email]:focus,
.contact-form-container input[type=tel]:focus,
.contact-form-container input[type=date]:focus,
.contact-form-container input[type=number]:focus,
.contact-form-container select:focus,
.contact-form-container textarea:focus {
  outline: none;
  background-color: #FFF;
  border-color: #000;
  box-shadow: 0 0 0 1px #000;
}
.wpcf7 select,
.contact-form-container select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.6rem center;
  background-size: 1.2rem;
  padding-right: 4rem;
}
.wpcf7 textarea,
.contact-form-container textarea {
  min-height: 160px;
  resize: vertical;
}
.wpcf7 .form-grid,
.contact-form-container .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .wpcf7 .form-grid,
  .contact-form-container .form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.wpcf7 .form-full,
.contact-form-container .form-full {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .wpcf7 .form-full,
  .contact-form-container .form-full {
    grid-column: span 1;
  }
}
.wpcf7 input[type=submit],
.wpcf7 button[type=submit],
.contact-form-container input[type=submit],
.contact-form-container button[type=submit] {
  display: inline-block;
  padding: 1.6rem 3rem;
  background-color: #000;
  color: #FFF;
  border: 1px solid #000;
  border-radius: 0;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: block;
  margin-left: auto;
  margin-right: 0;
  border-radius: 4px;
}
.wpcf7 input[type=submit]:hover,
.wpcf7 button[type=submit]:hover,
.contact-form-container input[type=submit]:hover,
.contact-form-container button[type=submit]:hover {
  background-color: #FFF;
  color: #000;
}
.wpcf7 input[type=submit]:active,
.wpcf7 button[type=submit]:active,
.contact-form-container input[type=submit]:active,
.contact-form-container button[type=submit]:active {
  transform: translateY(1px);
}
.wpcf7 .wpcf7-not-valid-tip,
.contact-form-container .wpcf7-not-valid-tip {
  font-size: 1.6rem;
  color: #E94235;
  margin-top: 0.5rem;
  display: block;
  font-family: Helvetica, Arial, sans-serif;
}
.wpcf7 .wpcf7-response-output,
.contact-form-container .wpcf7-response-output {
  margin: 2rem 0 0 0 !important;
  padding: 1.5rem 2rem !important;
  border-radius: 0 !important;
  border: 1px solid #000 !important;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  text-align: center;
  color: #000;
  background-color: #FCF9F1;
}
.wpcf7 .wpcf7-list-item-label em,
.contact-form-container .wpcf7-list-item-label em {
  text-transform: none !important;
  font-style: normal !important;
}
.wpcf7.sent .wpcf7-response-output,
.contact-form-container.sent .wpcf7-response-output {
  border-color: #4CAF50 !important;
  background-color: #E8F5E9;
  color: #2E7D32;
}
.wpcf7.invalid .wpcf7-response-output, .wpcf7.unaccepted .wpcf7-response-output, .wpcf7.spam .wpcf7-response-output, .wpcf7.aborted .wpcf7-response-output,
.contact-form-container.invalid .wpcf7-response-output,
.contact-form-container.unaccepted .wpcf7-response-output,
.contact-form-container.spam .wpcf7-response-output,
.contact-form-container.aborted .wpcf7-response-output {
  border-color: #D32F2F !important;
  background-color: #FFEBEE;
  color: #C62828;
}
.wpcf7 .time-picker,
.wpcf7 .time-picker p,
.contact-form-container .time-picker,
.contact-form-container .time-picker p {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1.5rem !important;
  max-width: 220px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.wpcf7 .time-picker br,
.wpcf7 .time-picker p br,
.contact-form-container .time-picker br,
.contact-form-container .time-picker p br {
  display: none !important;
}
.wpcf7 .time-picker .wpcf7-form-control-wrap,
.wpcf7 .time-picker p .wpcf7-form-control-wrap,
.contact-form-container .time-picker .wpcf7-form-control-wrap,
.contact-form-container .time-picker p .wpcf7-form-control-wrap {
  flex: 1 !important;
  margin-top: 0 !important;
}
.wpcf7 .time-picker input[type=number],
.wpcf7 .time-picker input[type=text],
.wpcf7 .time-picker p input[type=number],
.wpcf7 .time-picker p input[type=text],
.contact-form-container .time-picker input[type=number],
.contact-form-container .time-picker input[type=text],
.contact-form-container .time-picker p input[type=number],
.contact-form-container .time-picker p input[type=text] {
  text-align: center !important;
  padding: 1.2rem !important;
  width: 150px !important;
}
.wpcf7 .time-picker .time-separator,
.wpcf7 .time-picker p .time-separator,
.contact-form-container .time-picker .time-separator,
.contact-form-container .time-picker p .time-separator {
  font-family: "Shippori Antique", sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: #000;
  display: inline-block;
  line-height: 1;
  padding-bottom: 4px;
}
.wpcf7 .time-picker,
.contact-form-container .time-picker {
  margin-top: 0.8rem !important;
  margin-bottom: 2rem !important;
}
.wpcf7 div.acceptance .wpcf7-list-item,
.contact-form-container div.acceptance .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7 div.acceptance .wpcf7-list-item label,
.contact-form-container div.acceptance .wpcf7-list-item label {
  display: flex !important;
  align-items: start;
  gap: 8px;
  font-weight: normal;
}
.wpcf7 div.acceptance .wpcf7-list-item label a,
.contact-form-container div.acceptance .wpcf7-list-item label a {
  color: inherit;
  text-decoration: underline;
}
.wpcf7 div.acceptance .wpcf7-list-item label a:hover,
.contact-form-container div.acceptance .wpcf7-list-item label a:hover {
  text-decoration: none;
}/*# sourceMappingURL=contact-form.css.map */