.elementor-12628 .elementor-element.elementor-element-7cf58f3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-12628 .elementor-element.elementor-element-9726a00{--display:flex;}/* Start custom CSS for container, class: .elementor-element-9726a00 *//* ============================= */
/* INNODRAW DEMO FORM - CF7 CSS */
/* ============================= */

.innodraw-demo-form {
  max-width: 760px;
}

.innodraw-demo-form .wpcf7-form {
  color: #1F2B3E;
  font-size: 16px;
  line-height: 1.5;
}

.innodraw-demo-form .wpcf7-form p {
  margin: 0 0 18px;
}

.innodraw-demo-form .wpcf7-form label {
  display: block;
  font-weight: 600;
  color: #1F2B3E;
  margin-bottom: 8px;
}

/* inputs / selects / textarea */
.innodraw-demo-form .wpcf7-form input[type="text"],
.innodraw-demo-form .wpcf7-form input[type="email"],
.innodraw-demo-form .wpcf7-form input[type="tel"],
.innodraw-demo-form .wpcf7-form input[type="url"],
.innodraw-demo-form .wpcf7-form select,
.innodraw-demo-form .wpcf7-form textarea {
  width: 100%;
  border: 1px solid #D7DFEA;
  background: #FFFFFF;
  color: #1F2B3E;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.4;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.innodraw-demo-form .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

.innodraw-demo-form .wpcf7-form input[type="text"]:focus,
.innodraw-demo-form .wpcf7-form input[type="email"]:focus,
.innodraw-demo-form .wpcf7-form input[type="tel"]:focus,
.innodraw-demo-form .wpcf7-form input[type="url"]:focus,
.innodraw-demo-form .wpcf7-form select:focus,
.innodraw-demo-form .wpcf7-form textarea:focus {
  outline: none;
  border-color: #6E8FBF;
  box-shadow: 0 0 0 4px rgba(110, 143, 191, 0.14);
}

/* select arrow */
.innodraw-demo-form .wpcf7-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, #6E8FBF 50%),
    linear-gradient(135deg, #6E8FBF 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

/* group titles for radio/checkbox */
.innodraw-demo-form .wpcf7-form .demo-group-title {
  display: block;
  font-weight: 700;
  color: #1F2B3E;
  margin: 10px 0 12px;
}

/* radio / checkbox wrapper */
.innodraw-demo-form .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}

/* make radio and checkbox groups tidy */
.innodraw-demo-form .wpcf7-form .wpcf7-radio,
.innodraw-demo-form .wpcf7-form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  margin-bottom: 8px;
}

/* each option card */
.innodraw-demo-form .wpcf7-form .wpcf7-list-item {
  margin: 0;
}

.innodraw-demo-form .wpcf7-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid #D7DFEA;
  border-radius: 12px;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
}

.innodraw-demo-form .wpcf7-form .wpcf7-list-item label:hover {
  border-color: #6E8FBF;
  background: #F7FAFF;
}

/* custom radio */
.innodraw-demo-form .wpcf7-form input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 2px solid #9FB3CC;
  border-radius: 50%;
  background: #fff;
  position: relative;
  flex: 0 0 18px;
  cursor: pointer;
}

.innodraw-demo-form .wpcf7-form input[type="radio"]:checked {
  border-color: #6E8FBF;
}

.innodraw-demo-form .wpcf7-form input[type="radio"]:checked::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6E8FBF;
  position: absolute;
  top: 3px;
  left: 3px;
}

/* custom checkbox */
.innodraw-demo-form .wpcf7-form input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 2px solid #9FB3CC;
  border-radius: 5px;
  background: #fff;
  position: relative;
  flex: 0 0 18px;
  cursor: pointer;
}

.innodraw-demo-form .wpcf7-form input[type="checkbox"]:checked {
  border-color: #6E8FBF;
  background: #6E8FBF;
}

.innodraw-demo-form .wpcf7-form input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* submit button */
.innodraw-demo-form .wpcf7-form input[type="submit"],
.innodraw-demo-form .wpcf7-form .wpcf7-submit {
  appearance: none;
  -webkit-appearance: none;
  background: #6E8FBF !important;
  color: #FFFFFF !important;
  border: 1px solid #6E8FBF !important;
  border-radius: 14px;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: none !important;
  opacity: 1 !important;
  width: auto;
  min-width: 240px;
  transition: all 0.2s ease;
}

.innodraw-demo-form .wpcf7-form input[type="submit"]:hover,
.innodraw-demo-form .wpcf7-form .wpcf7-submit:hover {
  background: #5C7DAF !important;
  border-color: #5C7DAF !important;
  color: #FFFFFF !important;
}

.innodraw-demo-form .wpcf7-form input[type="submit"]:focus,
.innodraw-demo-form .wpcf7-form .wpcf7-submit:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(110, 143, 191, 0.18) !important;
}

/* validation */
.innodraw-demo-form .wpcf7-not-valid-tip {
  color: #D93025;
  font-size: 13px;
  margin-top: 6px;
}

.innodraw-demo-form .wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0;
  border-radius: 12px;
  padding: 12px 16px;
}

/* mobile */
@media (max-width: 767px) {
  .innodraw-demo-form .wpcf7-form .wpcf7-radio,
  .innodraw-demo-form .wpcf7-form .wpcf7-checkbox {
    gap: 10px;
  }

  .innodraw-demo-form .wpcf7-form .wpcf7-list-item {
    width: 100%;
  }

  .innodraw-demo-form .wpcf7-form .wpcf7-list-item label {
    width: 100%;
  }

  .innodraw-demo-form .wpcf7-form input[type="submit"],
  .innodraw-demo-form .wpcf7-form .wpcf7-submit {
    width: 100%;
    min-width: 0;
  }
}/* End custom CSS */