/* CF7 FIELDS */

.wpcf7 input[type="text"], 
.wpcf7 input[type="email"], 
.wpcf7 input[type="url"], 
.wpcf7 input[type="password"], 
.wpcf7 input[type="search"], 
.wpcf7 input[type="tel"], 
.wpcf7 input[type="number"], 
.wpcf7 textarea, 
.wpcf7 select {
	width: 100%;
	display: block;
}

.wpcf7 textarea {
  min-height: 100px;
  min-width: 100%;
}

.wpcf7 input[type="file"] {
    cursor: pointer;
}

.wpcf7-acceptance {
    font-size: 0.8em;
}

.wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
}
.wpcf7-checkbox.vertical {
	display: flex;
	flex-direction: column;
}

input[type="text"][name="humancheck"] {
	width: 150px;
}


/* SUBMIT */

.wpcf7 .submit-wrapper {
	position: relative;
	display: inline-block;
}
input.wpcf7-submit[disabled], input.wpcf7-submit.disabled {
	opacity: 0.5;
	pointer-events: none;
}

.spinner-in-submit .wpcf7-spinner {
	position: absolute;
	top: 50%;
	right: 5px;
	margin: 0;
	transform: translatey(-50%);
}

.wpcf7 .--text-center {
	text-align: center;
}


/* ERRORS / MESSAGES */
.wpcf7 {
	--error: #dc3232;
	--success: #348505;
	--info: #666666;
	--white: #ffffff;
	--contrast: #121212;
}
.wpcf7 .wpcf7-not-valid-tip {
    background-color: var(--error);
    color: var(--white);
	padding: 0 0.25em;
	font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
	margin-left: 0;
    margin-right: 0;
	border-color: var(--info);
	background-color: var(--info);
	color: var(--white);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: var(--error);
	background-color: var(--error);
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: var(--success);
	background-color: var(--success);
}


/* CLOUDFLARE TURNSTILE */

.wpcf7 .cf7-cf-turnstile {
    margin: 0 0 20px 0 !important;
}
