#contactForm {
	.wpcf7-response-output {
		text-align: center; color: var(--orange); padding: 0;
		font-size: 1.8rem; line-height: 1.2;
		border: none; font-weight: bold;
	}
	&[data-status="sent"] {
		.wpcf7-response-output:before {
			content: "\f164"; display: block;
			font-family: "Font Awesome 6 Free";
			display: block;  font-size: 4.5rem;
			margin: 15px 0px 10px;
		}
	}
	small {display: inline-block; padding-bottom: 10px;}
	.wpcf7-spinner {
		position: absolute; margin: 7px 12px;
		background-color: transparent;
		&:before {background-color: var(--orange);}
	}
	h2 {color: var(--blue); padding: 10px; font-size: 1.6rem;}
	div {width: 100%;}
	p {
		position: relative; width: 100%;
		color: var(--blue); margin: 0; 
		&:has(input:focus), &:has(textarea:focus), &:has(select:focus) {
			.fas:before {color: var(--blue);}
		}
	}
	i {
		position: absolute; top: 13px;
		left: 10px; z-index: 2; color: #878992;
	}

	input, textarea, select {
		width: 100%; font-size: 1.4rem;
		padding: 12px 12px 12px 32px;
		transition: all ease 0.2s;
		border-radius: 5px;
		border: 1px solid rgba(0,0,0,.3);
		color: #878992; margin: 0 0 25px 0;
		&:focus {
			border-color: var(--blue);
			.fa-user::before {color: var(--blue);}
		}
	}
	textarea {
		height: 120px; font-size: 1.4rem;
		padding: 8px 12px 12px 32px;
		resize: none;
	}
	input#submit {
		width: 150px; padding: 12px;
		font-size: 1.6rem; color: #fff;
		background: var(--blue);
		border: 1px solid var(--dgreen);
		cursor: pointer; margin-bottom: 0;
		&:hover {background: transparent; color: var(--blue);}
	}
	.wpcf7-not-valid-tip {
		margin-top: 0; position: absolute;
		left: 5px; bottom: 5px;
		font-size: 1.2rem;
	}
	.hideForm {margin-bottom: 0;}
}

/* inputs type file styles */
.filebox .wpcf7-form-control-wrap {
	width: 100%; position: relative;
}
input#curriculum {
	position: absolute; opacity: 0; width: 0; border: none;
}

.inputfile, .uploadfile {
	width: 100%; font-size: 1.25rem;
	font-weight: 700; text-overflow: ellipsis;
	white-space: nowrap; cursor: pointer;
	display: flex; overflow: hidden;
	padding: 0.625rem 1.25rem;
}

.uploadfile {
	color: #006341; margin: 0 0 20px;
	background-color: #f4f4f4;
	padding: 0 !important;
	strong {
		height: 100%; color: #404040;
		background-color: #d2d2d2;
		display: inline-block;
		font-weight: normal;
		transition: all ease .2s;
		padding: 10px 15px;
	}
	.names {
		width: 100%; min-height: 2em;
		display: block; text-overflow: ellipsis;
		white-space: nowrap; overflow: hidden;
		vertical-align: top; padding: 10px 15px;
	}
}