/* custom-popup.css */


.custom-popup-contact {
    display: none; /* Nascondi il popup inizialmente */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Sfondo semi-trasparente */
}

.custom-popup-contact-content {
    background-size: cover;
    margin: 4% auto;
    padding: 20px;
    background: #CC9944;
    border: 5px solid #2F211E;
    max-width: 45%;
    color: white; /* Colore del testo */
    position: relative;
	max-height: 80vh;
	overflow-y: auto;
}

.custom-popup-contact-close {
    position: absolute;
    top: 0px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
	color: #2F211E;
}

#custom-popup-contact-trigger {
    position: fixed;
    bottom: 0;
    right: 20px;
    background-color:#CC9944;
	font-weight:700;
	font-family:'Prata';
    color:#2f211e;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}
.custom-popup-contact-text{
	padding: 20px 30px;
}
.custom-popup-contact-text .wpcf7-form{
	margin:auto;
}
.wpcf7 label{
	font-weight:700 !important;
	width:100%;
}
.wpcf7 input, .wpcf7 textarea{
	  background-color: #ffffff;
    border: solid 1px #cc9944 !important;
    border-radius: 5px !important;
    width: 100% !important;
    padding: 10px !important;
}
.wpcf7-submit{
	background: #2f211e !important;
    color: #cc9944 !important;
    font-weight: 700 !important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    background: red !important;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    background: #46b450 !important;
}
