/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 06 2026 | 10:25:56 */
.vehicle-search-form{
    display:grid;
    grid-template-columns:
        1.2fr
        1.2fr
        1.2fr
        1.2fr
        auto;
    gap:18px;
    align-items:center;
    padding:18px;
    background:#fff;
    border-radius:18px;
}

.vehicle-search-form .field{
    position: relative;
    line-height: 0;
    border: 1px solid #dedede;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    max-height: 70px;
}
.vehicle-search-form p{
	margin-block-end:0;
}
.vehicle-search-form label{
    display:block;
    font-size:10px;
    text-transform:uppercase;
    letter-spacing: .18em;
    color:#7d7d7d;
    font-weight:600;
	margin-bottom: 0;
}

.vehicle-search-form select{
    width: 100%;
    height: auto;
    border: 1px solid transparent;
    border-radius: 16px;
    background: #fff;
    padding: 4px;
    font-size: 14px;
    color: #222;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: .3s;
    font-family: 'PSA Groupe HMI Sans'; 
	outline:none;
}

.vehicle-search-form .field:first-child select{
    font-size: 14px;
    font-family: 'PSA Groupe HMI Sans';
    line-height: 0;
    padding: 5px;
    height: 30px;
    outline: 0;
}

.vehicle-search-form select:hover{
    border-color:transparent;
}

.vehicle-search-form .field:after{
    content:"";
    position:absolute;
    right:20px;
    bottom: 22px;
    width:11px;
    height:7px;
    background-repeat:no-repeat;
    background-size:contain;
    pointer-events:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23222' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
}

.vehicle-search-form .submit-btn{
    display:flex;
    align-items:flex-end;
	justify-content:flex-end;
}

.vehicle-search-form input[type=submit]{
	width: 100%;
    height: 58px;
    border: none;
    border-radius: 16px;
    background: #d9252a;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: .3s;
    font-family: 'PSA Groupe HMI Sans';
}

.vehicle-search-form input[type=submit]:hover{
    background:#bf1f24;
}

/* Contact Form 7 fixes */

.vehicle-search-form .wpcf7-form-control-wrap{
    display:block;
}

.vehicle-search-form .wpcf7-spinner{
    display:none;
}
.guida-contact-form{
    max-width:1100px;
    margin:auto;
    padding:55px;
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:28px;
}

.form-header{
    margin-bottom:35px;
}

.small-title{
    display:block;
    font-size:11px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#888;
    margin-bottom:10px;
    font-weight:600;
}

.form-header h2{
    font-size:46px;
    line-height:1.1;
    margin:0 0 15px;
    font-weight:700;
    color:#111;
}

.form-header p{
    color:#666;
    font-size:17px;
}

.row{
    display:flex;
    gap:22px;
    margin-bottom:25px;
}

.field{
    flex:1;
}

.field.full{
    width:100%;
}

.field label{
    display:block;
    font-size:11px;
    font-weight:600;
    letter-spacing:2px;
    color:#777;
    margin-bottom:10px;
    text-transform:uppercase;
}

.guida-contact-form input,
.guida-contact-form select,
.guida-contact-form textarea{
    width:100%;
    border:1px solid #E4E4E4;
    border-radius:10px;
    padding:14px 18px;
    font-size:15px;
    background:#fff;
    transition:.3s;
    box-sizing:border-box;
}

.guida-contact-form input:focus,
.guida-contact-form select:focus,
.guida-contact-form textarea:focus{
    outline:none;
    border-color:#d82d2d;
}

.guida-contact-form textarea{
    height:160px;
    resize:none;
}

.privacy{
    margin:25px 0;
    font-size:14px;
    color:#555;
}

.privacy a{
    color:#111;
    text-decoration:underline;
}

.button-row{
    display:flex;
    gap:18px;
    align-items:center;
    flex-wrap:wrap;
}

.submit-btn{
    background:#ef8f94;
    color:#fff;
    border:none;
    padding:16px 34px;
    border-radius:40px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    background:#d82d2d;
}

.phone-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 28px;
    border:1px solid #E5E5E5;
    border-radius:40px;
    text-decoration:none;
    color:#222;
    background:#fff;
    font-weight:600;
}

.wpcf7-form-control-wrap{
    display:block;
}

@media(max-width:768px){

.row{
    flex-direction:column;
}

.guida-contact-form{
    padding:30px;
}

.form-header h2{
    font-size:34px;
}

.button-row{
    flex-direction:column;
    align-items:stretch;
}

.submit-btn,
.phone-btn{
    width:100%;
    text-align:center;
}
}
@media(max-width:992px){

.vehicle-search-form{
    grid-template-columns:1fr;
}

.vehicle-search-form input[type=submit]{
    width:100%;
}

}