/**
* Data Request Form - CSS
*/

#cmply-datarequest-form {
    background:var(--theme-palette-color-7);
    border: 1px solid var(--theme-palette-color-5);
    padding:24px;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    font-family: arial, sans-serif;
    font-size:18px;
}

#cmply-datarequest-form .cmply_datarequest_form_field,
#cmply-datarequest-form  .cmply_datarequest {
    margin-top: 18px;
    margin-bottom: 18px;
}

#cmply-datarequest-submit {
    background-color: var(--theme-palette-color-1);
    color: var(--theme-palette-color-8);
    height: 44px;
    border: none;
    border-radius: 8px;
    font-size:18px;
}

#cmply-datarequest-submit:hover {
    background: var(--theme-palette-color-2);
}

#cmply_datarequest_name input[type=text] {
}

#cmply_datarequest_email input[type=text] {
}

#cmply-datarequest-form
input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.45em;
  height: 1.45em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
  transform: translateY(-0.095em);
  display: inline-flex;
  place-content: center;
}
#cmply-datarequest-form input[type=checkbox]::before {
  content: "";
  width: 0.85em;
  height: 0.95em;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
          clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: green;
}
#cmply-datarequest-form input[type=checkbox]:checked::before {
  transform: scale(1);
}
#cmply-datarequest-form input[type=checkbox]:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
}
#cmply-datarequest-form input[type=checkbox]:disabled {
  --form-control-color: var(--form-control-disabled);
  color: var(--form-control-disabled);
  cursor: not-allowed;
}

