  input:not([type]),
  input[list],
  input[type=color],
  input[type=date],
  input[type=datetime-local],
  input[type=email],
  input[type=month],
  input[type=number],
  input[type=password],
  input[type=search],
  input[type=tel],
  input[type=text],
  input[type=textarea],
  input[type=time],
  input[type=url],
  input[type=week],
  select,
  textarea {
    height: 50px;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: inset 0 0 0 0 transparent;
    width: 100%;
    margin: 0;
    padding: 0 1em;
    color: #222222;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    outline: none;
    border-radius: 3px;
  }

  input[type=email],
  input[type=password],
  input[type=search],
  input[type=text] {
    -webkit-appearance: none;
    -moz-appearance: none;
  }

  button,
  fieldset,
  input,
  legend,
  optgroup,
  option,
  select,
  textarea {
    box-sizing: border-box;
    outline: none;
    font-size: 16px;
    color: #222222;
    display: block;
    margin: 10px 0;
  }

  button,
  input,
  select,
  textarea {
    outline: none;
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    box-sizing: border-box;
  }

  input[type=file] {
    border: 1px solid #cccccc;
    outline: none;
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    box-sizing: border-box;
    background: #ffffff;
  }


  select {
    background-repeat: no-repeat;
    background-image: url(../images/svg/arrowdown.svg);
    background-position: 96% 50%;
    /* color: #999;*/
    z-index: 10000000;
    box-shadow: none;
    text-shadow: none;
    -moz-appearance: none;
  }

  .form-item.form-type-checkbox,
  .form-item.form-type-radio,
  .form-item.form-type-radio-card,
  .form-item.form-type-substitute {
    display: block;
    margin-bottom: 10px;
  }

  .form-item.form-type-checkbox,
  .form-item.form-type-radio,
  .form-item.form-type-radio-card,
  .form-item.form-type-substitute {
    position: relative;
    margin-bottom: 0;
    line-height: 25px;
  }

  .form-type-checkbox input[type=checkbox],
  .form-type-radio-card input[type=radio],
  .form-type-radio input[type=radio],
  .form-type-substitute input[type=radio] {
    top: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    z-index: 100000000;
    width: 24px;
    height: 24px;
    margin: 0;
  }

  .form-type-checkbox input[type=checkbox]:checked+.checkbox-wrap:before,
  .form-type-radio-card input[type=radio]:checked+.radio-wrap:before,
  .form-type-radio input[type=radio]:checked+.radio-wrap:before,
  .form-type-substitute input[type=radio]:checked+.radio-wrap:before {
    background-color: #273475;
    border: 1px solid #273475;
    font-size: 15px;
    color: #151515;
    text-align: center;
    line-height: 15px;
  }

  .form-type-checkbox .checkbox-wrap:before {
    border-radius: 5px;
  }

  .form-type-checkbox .checkbox-wrap:before,
  .form-type-radio-card .radio-wrap:before,
  .form-type-radio .radio-wrap:before,
  .form-type-substitute .radio-wrap:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    background-color: #cccccc;
    border: 1px solid #cccccc;
  }

  .form-type-checkbox input[type=checkbox]:checked+.checkbox-wrap:after,
  .form-type-radio-card input[type=radio]:checked+.radio-wrap:after,
  .form-type-radio input[type=radio]:checked+.radio-wrap:after,
  .form-type-substitute input[type=radio]:checked+.radio-wrap:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 12px;
    height: 8px;
    border: 3px solid #ffffff;
    border-top: none;
    border-right: none;
    background: transparent;
    transform: rotate(-45deg);
  }

  .checkbox-label {
    display: inline-block;
    width: 100%;
    padding-left: 35px;
  }


  .form-label {
    margin: 0 0 10px;
    position: relative;
    background-color: transparent;
    width: auto;
    color: #273475;
    font-weight: 700;
    display: block;
    z-index: 2;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
  }

  .form-wrap {
    width: 100%;
    max-width: 560px;
  }

  .form-item {
    margin-bottom: 10px;
  }

  input:focus {
    border: 3px solid #273475;
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  }

  select:focus {
    border: 3px solid #273475;
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  }