/* MARKETO forms theme override */
.mktoForm form {
  width: 100% !important;
  font-family: var(--font-primary) !important;
}

.mktoForm input[type="text"],
.mktoForm input[type="email"],
.mktoForm input[type="date"],
.mktoForm input[type="number"],
.mktoForm textarea.mktoField {
  display: block;
  width: 100% !important;
  border: 1px solid #e1e4ed;
  border-radius: 0.75rem;
  padding: 16px 40px 16px 16px;
  font-size: 18px;
  box-shadow: 0 0.25rem 0.75rem 0 rgba(0, 26, 21, 0.06);
  min-height: 56px;
}

.mktoForm input[type="number"] {
    padding-right: 15px;
} 

.mktoForm textarea.mktoField {
    height: 80px;
}

.mktoForm textarea.mktoField#contactMessage {
    height: 150px;
}

.mktoForm input[type="date"] {
  padding-right: 10px;
}

.mktoForm select.mktoField {
  display: block;
  width: 100% !important;
  border: 1px solid #e1e4ed;
  border-radius: 12px;
  padding: 16px 40px 16px 16px;
  font-size: 18px;
  box-shadow: 0 0.25rem 0.75rem 0 rgba(0, 26, 21, 0.06);
  background-position: center right 6px;
  background-size: 20px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  @media (max-width: 480px) {
    font-size: 15px;
  }
}

.mktoForm .mktoOffset {
  width: 0 !important;
}

.mktoForm .mktoGutter,
.mktoForm .mktoFormCol,
.mktoForm .mktoLabel,
.mktoForm .mktoFieldWrap {
  float: none;
}

.mktoForm .mktoButtonRow {
  @media (max-width: 1024px) {
    display: flex;
  }
}

.mktoForm .mktoLabel {
  width: 100% !important;
  font-size: 20px;
  font-weight: bold;
  padding-top: 15px;

  @media (max-width: 480px) {
    margin-bottom: 10px;
    font-size: 17px;
  }
}

.mktoForm .mktoRadioList, .mktoForm .mktoCheckboxList {
    @media (max-width: 480px) {
        width: auto;
        padding-top: 10px;
    }
}

.mktoForm .mktoButtonWrap {
  display: flex;
  flex: 1;
  margin-left: 0 !important;
  text-align: center;
  justify-content: center;
  margin-top: 20px;
}

.mktoForm .mktoButtonWrap .mktoButton {
  background-color: #e55817 !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 16px !important;
  font-weight: bold !important;
  border-radius: 2rem !important;
  box-shadow: none !important;
  border: none !important;
  background-image: none !important;
  color: white !important;
}

.mktoForm .mktoButtonWrap .mktoButton:hover {
  background-color: #b24512 !important;
}

.mktoForm .mktoButtonWrap .mktoButton:hover {
  border: none !important;
}

.mktoForm fieldset {
    padding: 10px 10px 20px;
    border-radius: 12px;
}

.mktoForm fieldset legend {
    font-size: 16px;
}

.mktoForm fieldset .mktoFormCol:has(.mktoCheckboxList) {
    float: left;
}

.mktoForm .mktoFieldDescriptor:has(.mktoCheckboxList) .mktoFieldWrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-right: 20px;
}

.mktoForm .mktoCheckboxList {
    padding-top: 20px;
}