
/*
==============================
Feature: Forms
Section: Inputs
==============================
*/

div.wpcf7 .ajax-loader {
	position: absolute;
}
.form-control {
    border-color: transparent;
}
span.wpcf7-list-item {
    margin: 0;
}
.wpcf7-form-control.wpcf7-submit {
    width: auto;
    float: none;
    border: 1.5px solid #1AAB88;
    border-radius: 0;
    font-weight: 400;
		color:#4a4a4a;
		font-family:'Roboto';
}
.form-control::placeholder {
    color: #222;
    opacity: 1;
    font-size: 12px;
  	letter-spacing: 0;
  	font-weight: 500;
}
::placeholder {
    color: #4A4A4A;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #4A4A4A;
    opacity: 1;
}
::-webkit-input-placeholder {
    color: #4A4A4A;
    opacity: 1;
}
:-moz-placeholder {
    color: #4A4A4A;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #4A4A4A;
    opacity: 1;
}
.form-control::-webkit-input-placeholder {
    color: #4A4A4A;
    opacity: 1;
}
.form-control:-moz-placeholder {
    color: #4A4A4A;
    opacity: 1;
}
.form-control::-moz-placeholder {
    color: #4A4A4A;
    opacity: 1;
}
form.wpcf7-form div.container-fluid div.row+p {
    display: none;
}
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    border-color: transparent !important;
}
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: inherit !important;
}
.form-control:disabled,
.form-control[readonly] {
    background-color: transparent;
    opacity: 1;
}
.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label span {
    padding-left: .25em;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 15px;
}
.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label a {
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	letter-spacing: 0;
	line-height: 15px;
}
.form-control:focus {
    background-color: #FFFFFF;
    box-shadow: 0 0 0;
    border-color: inherit;
    color: #c6c6c6;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    background-color: var(--darkGrey);
    box-shadow: 0 0 0;
    color: #fff !important;
	border:0;
    width:100%;
    border-radius: 12px !important;
    padding: 15px 15px 15px 0 !important;
    font-size: 14px;
}
input[type="search"] {
    border: 2px solid #000000;
    background-color: #FFFFFF;
    color: #000;
    border-radius: 0 !important;
    padding: 6px 15px !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

/*
==============================
Feature: Forms
Section: Checkbox
==============================
*/

input[type="checkbox"]+span.wpcf7-list-item-label:before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
		position:relative;
		top:2px;
    margin: 0.4em 0.5em 0 0;
    border: 2px solid var(--yellow);
    background: transparent;
    cursor: pointer;
}
input[type="checkbox"]:checked+span.wpcf7-list-item-label:before {
    border-color: var(--yellow);
}
input[type="checkbox"]:checked+span.wpcf7-list-item-label:after {
    content: "";
    width: 12px;
    height: 6px;
    border: 3px solid var(--white);
    display:inline-block;
		position:absolute;
		left:26px;
    margin-left: -1.55em;
    border-right: 0;
    border-top: 0;
    margin-top: .7em;
    transform: rotate(-55deg);
    cursor: pointer;
}
input[type="checkbox"] {
    display: none;
}
input[type="checkbox"]+span.wpcf7-list-item-label {
    font-weight: 400;
    color: var(--black);
}
input[type="checkbox"]:checked+span.wpcf7-list-item-label {
    color: var(--black);
}
.checkbox-row .wpcf7-checkbox{
	display:flex;
	flex-wrap: wrap;
  width: 100%;
}
.checkbox-row .wpcf7-list-item {
	width:100%;
}
.condiciones-text {
	font-size:.85em;
	position:relative;
	top:-2px;
}
@media (min-width:992px) {
	.checkbox-row .wpcf7-list-item {
		width:50%;
	}
}

.wpcf7-not-valid-tip {
    color: rgb(229, 85, 85);
}

@media (max-width: 500px) {
    input[type="checkbox"]:checked+span.wpcf7-list-item-label:after {
        margin-top: -1rem;
    }
}