section select, .contact-form__panel select {
  width: 100%;
  appearance: none;
  border-radius: 0px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='w-6 h-6' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-color: var(--paper);
  background-size: 20px 20px;
  transition: all 0.2s linear;
  background-position: right 10px top 14px;
  border: 1px solid var(--grey-tint);
}
section select:hover, section select:active, section select:focus, .contact-form__panel select:hover, .contact-form__panel select:active, .contact-form__panel select:focus {
  border-color: var(--grey-dark);
  outline: none !important;
}

[data-theme=dark] section select {
  background-color: var(--paper);
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyNy40IDE1LjciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI3LjQgMTUuNzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8Zz4KCTxnIGlkPSJJY29uLUNoZXZyb24tTGVmdCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjM3LjAwMDAwMCwgMzM1LjAwMDAwMCkiPgoJCTxwb2x5bGluZSBpZD0iRmlsbC0zNSIgY2xhc3M9InN0MCIgcG9pbnRzPSItMjM3LC0zMzMgLTIzNSwtMzM1IC0yMjMuMywtMzIzLjIgLTIxMS42LC0zMzUgLTIwOS42LC0zMzMgLTIyMy4zLC0zMTkuMyAtMjM3LC0zMzMgCgkJCQkJIi8+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==");
}
[data-theme=dark] input[type=text], [data-theme=dark] input[type=email], [data-theme=dark] textarea, [data-theme=dark] input[type=checkbox] {
  background-color: var(--paper) !important;
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  float: left;
  align-content: center;
  justify-content: center;
  padding: 0.1rem;
  border: 1px solid var(--grey-tint);
  border-radius: 100px;
  background-color: var(--paper);
  margin: 0px 0.4rem 0 0;
}
input[type=checkbox]::before {
  content: "";
  width: 11px;
  height: 11px;
  clip-path: polygon(0 60%, 40% 80%, 90% 0, 100% 10%, 45% 100%, 0 75%);
  transform: scale(0);
  background-color: var(--text);
  transition: all 0.2s linear;
}
input[type=checkbox]:checked::before {
  transform: scale(0.5);
}

.contact-form {
  width: 100%;
  max-width: none;
}
.contact-form form,
.contact-form #Form_ContactForm,
.contact-form #Form_ContactForm fieldset {
  width: 100%;
  max-width: none;
}
.contact-form input[name=ReasonID] {
  display: none;
}
.contact-form .contact-form__reason-cards,
.contact-form .contact-form__panel,
.contact-form .contact-form__modal-body {
  width: 100%;
}
.contact-form form[data-contact-form-style=modal] .Actions,
.contact-form form[data-contact-form-style=modal] .btn-toolbar {
  display: none !important;
}

.contact-form__modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0s linear 0.32s;
}

.contact-form__modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.32s ease;
}

.contact-form__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(64, 52, 39, 0.8);
  opacity: 0;
  transition: opacity 0.42s ease;
}

.contact-form__modal.is-visible .contact-form__modal-backdrop {
  opacity: 1;
}

.contact-form__modal-dialog {
  position: relative;
  z-index: 100000;
  width: min(820px, 100%);
  max-height: calc(100vh - 3rem);
  overflow: auto;
  background: var(--paper);
  padding: 1.75rem;
  border: 1px solid var(--grey-tint);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1), transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-form__modal.is-visible .contact-form__modal-dialog {
  opacity: 1;
  transform: translateY(0);
}

.contact-form__modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form__modal-title {
  margin: 0;
}

.contact-form__modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.95rem;
}

.contact-form__success {
  width: 100%;
}

.contact-form__success-eyebrow {
  margin: 0 0 0.5rem;
  opacity: 0.6;
}

.contact-form__success-message {
  margin: 0;
}

.contact-form__modal-body .contact-form__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
.contact-form__modal-body input[type=text],
.contact-form__modal-body input[type=email],
.contact-form__modal-body textarea,
.contact-form__modal-body select {
  width: 100%;
  border: 1px solid var(--grey-tint);
  background: var(--paper);
  padding: 0.85rem 0.9rem;
  border-radius: 0;
}
.contact-form__modal-body textarea {
  min-height: 7.5rem;
  resize: vertical;
}
.contact-form__modal-body .Actions,
.contact-form__modal-body .btn-toolbar {
  margin-top: 1rem;
  width: 100%;
}
.contact-form__modal-body > .Actions,
.contact-form__modal-body > .btn-toolbar {
  display: block !important;
}
.contact-form__modal-body .btn-toolbar input[type=submit],
.contact-form__modal-body .btn-toolbar button[type=submit],
.contact-form__modal-body .btn-toolbar button.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
}
.contact-form__modal-body .btn-toolbar input[type=submit]:hover,
.contact-form__modal-body .btn-toolbar button[type=submit]:hover,
.contact-form__modal-body .btn-toolbar button.action:hover {
  background: transparent;
  color: var(--black);
}
.contact-form__modal-body #Form_ContactForm_AgreeToTerms_Holder {
  margin-top: 0.35rem;
}
.contact-form__modal-body #Form_ContactForm_AgreeToTerms_Holder label,
.contact-form__modal-body #Form_ContactForm_AgreeToTermsLabel_Holder label {
  display: inline;
  margin: 0;
}

body.contact-form-modal-open {
  overflow: hidden;
}

#Form_ContactForm_ContactReasonCards_Holder,
#Form_ContactForm_ContactFormPanelOpen_Holder,
#Form_ContactForm_ContactFormPanelClose_Holder,
.contact-form__full-width {
  grid-column: 1/-1;
  width: 100%;
  max-width: none;
  min-width: 0;
}

.contact-form__reason-trigger {
  min-width: 200px;
}

.office-maps [x-cloak] {
  display: none !important;
}
.office-maps__tabs {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 1.8rem;
  background: var(--grey-light);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.office-maps__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6rem;
  padding: 0.95rem 1.1rem;
  border: 0;
  border-radius: 1.35rem;
  background: transparent;
  color: rgba(0, 0, 0, 0.8);
}
.office-maps__tab--active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}
.office-maps__tab--inactive {
  color: rgba(0, 0, 0, 0.82);
}
.office-maps__panels {
  position: relative;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  min-height: clamp(34rem, 52vw, 46rem);
}
.office-maps__panel {
  will-change: opacity, transform;
}
.office-maps__panel-inner {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.office-maps__panel-grid {
  align-items: start;
}
.office-maps__panel-media {
  display: grid;
  gap: 1rem;
}
.office-maps__map-frame {
  overflow: hidden;
  background: rgba(244, 241, 236, 0.7);
}

@media (max-width: 767px) {
  .contact-form__modal {
    padding: 1rem;
  }
  .contact-form__modal-dialog {
    width: 100%;
    max-height: calc(100vh - 2rem);
    padding: 1rem;
  }
  .contact-form__modal-body .contact-form__panel {
    grid-template-columns: 1fr;
  }
  .office-maps__panels {
    min-height: 0;
  }
  .office-maps__tab {
    flex: 0 0 auto;
  }
}
