span.wpcf7-form-control-wrap {
    width: 100%!important;;
    position: relative !important;
    display: inline-block!important;;
    margin-bottom: 3px!important;
    background:transparent!important;
}
.error-form {
    color: red;
    font-size: 12px;
}


.wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-select{
    border-radius: 5px 5px 5px 5px;
    overflow: hidden;
    border-width: 1px;
    border-color: #cccdd0;
    display: block;
    max-width: 440px;
    margin: auto !important;
    padding: 14px 4% !important;
    font-size: 16px;
    color: #666 !important;
    width: 100%;
    font-weight: 400;
    background:transparent!important;
}

input.text:focus, input.title:focus, input[type="text"]:focus, select:focus, textarea:focus, input[type="email"]:focus {
    border-color: #2d3940!important;
    color: #3e3e3e!important;
    background: white!important;
}

/* Customise radio buttons */
.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  padding-top:20px;
  padding-bottom: 10px;
  width: 100%;
  margin:auto;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio-container .checkmark {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #999;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
  background-color: #666;
}

/* When the radio button is checked, add a green background */
.radio-container input:checked ~ .checkmark {
  background-color: #72933a;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
  display: block; 
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
 	top: 8px;
	left: 8px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: white;
}

/* The container */
.select-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 15px;
}

/* Hide the browser's default checkbox */
.select-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.select-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #999;
}

/* On mouse-over, add a grey background color */
.select-container:hover input ~ .checkmark {
  background-color: #666;
}

/* When the checkbox is checked, add a green background */
.select-container input:checked ~ .checkmark {
  background-color: #72933a;
}

/* Create the checkmark/indicator (hidden when not checked) */
.select-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.select-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.select-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#btn-enviar-personas {
      color: #ffffff !important;
    border-width: 0px !important;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    background-color: #72933a;
    margin-left: 0px !important;
      width: 200px;
  box-sizing: border-box;
  display: block;
    padding: .3em 1em;
    line-height: 1.7em !important;
    -webkit-transition: all .2s;
    transition: all .2s;
  cursor: pointer
}


#btn-enviar-personas:hover{
    background-image: initial !important;
    background-color: #485e24 !important;
}