.contact_container {
	position: relative;
	width: 100%;
	margin: auto;
	text-align: center;
}
@media screen and (min-width : 768px) {
	.contact_container { width: 624px; }
}
@media screen and (min-width : 480px) and (max-width : 767px) {
	.contact_container { width: 460px; }
}


.contact_form {
	margin-top: 20px;
	padding: 10px;
}
@media screen and (min-width : 768px) {
	.contact_form { margin-top: 30px; }
}

	.contact_input {
		width: calc(100% - 20px);
		height: 20px;
		border: 0;
		font-size: 14px;
		font-weight: 300;
		padding: 10px;
		background: var(--first_color);
		border-radius: 4px;
		margin-bottom: 20px;
		font-family: 'Roboto', sans-serif;
	}
	@media screen and (min-width : 768px) {
		.contact_input { width: 604px; }
	}
	
	:focus-visible {
		outline: -webkit-focus-ring-color auto 0px;
	}

.contact_check {
	font-size: 14px;
	text-align: left;
	margin-top: 10px;
}

	.div_chk2 {
		margin-top: 10px;
	}
	
	.link {
		text-decoration: underline;
	}

.btt_invia {
	border: none;
	font: inherit;
	outline: inherit;
	background-color: var(--first_color);
	padding: 8px 20px;
	color: var(--second_color);
	border-radius: 10px;
	display: inline-block;
	margin-top: 30px;
}