/*
==============================
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-radius: 8px;
    font-weight: 600;
    color: var(--white);
}
.form-control::placeholder {
    color: var(--black-muted);
    opacity: 1;
    font-size: 12px;
    letter-spacing: 0;
    font-weight: 500;
}
::placeholder {
    color: var(--black-muted);
    opacity: 1;
}
:-ms-input-placeholder {
    color: var(--black-muted);
    opacity: 1;
}
::-webkit-input-placeholder {
    color: var(--black-muted);
    opacity: 1;
}
:-moz-placeholder {
    color: var(--black-muted);
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: var(--black-muted);
    opacity: 1;
}
.form-control::-webkit-input-placeholder {
    color: var(--black-muted);
    opacity: 1;
}
.form-control:-moz-placeholder {
    color: var(--black-muted);
    opacity: 1;
}
.form-control::-moz-placeholder {
    color: var(--black-muted);
    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: var(--cream);
    font-family: 'Plus Jakarta Sans', 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: var(--cream);
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 12px;
	letter-spacing: 0;
	line-height: 15px;
}
.form-control:focus {
    background-color: var(--grey);
    box-shadow: 0 0 0;
    border-color: inherit;
    color: var(--black-muted);
}
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(--grey);
    box-shadow: 0 0 0;
    color: var(--black) !important;
    border: 0;
    width: 100%;
    border-radius: 8px !important;
    padding: 15px !important;
    font-size: 14px;
}
input[type="search"] {
    border: 2px solid var(--black);
    background-color: var(--grey);
    color: var(--black);
    border-radius: 0 !important;
    padding: 6px 15px !important;
    font-family: 'Plus Jakarta Sans', 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(--siena);
    background: transparent;
    cursor: pointer;
}
input[type="checkbox"]:checked+span.wpcf7-list-item-label:before {
    border-color: var(--siena);
}
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;
    }
}