/**
 * Fahrzeug Manager Pro
 * Booking Popup
 */

.fpmp-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

.fpmp-popup.active{

    display:flex;

}

.fpmp-popup-box{

    width:100%;

    max-width:650px;

    background:#fff;

    border-radius:18px;

    padding:35px;

    position:relative;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.fpmp-popup-close{

    position:absolute;

    right:20px;

    top:20px;

    width:40px;

    height:40px;

    border:none;

    border-radius:50%;

    background:#f3f3f3;

    cursor:pointer;

    font-size:18px;

}

.fpmp-popup h2{

    margin:0 0 30px;

    font-size:32px;

}

.fpmp-form-group{

    margin-bottom:18px;

}

.fpmp-form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.fpmp-form-group input,
.fpmp-form-group select,
.fpmp-form-group textarea{

    width:100%;

    padding:12px 15px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:15px;

    box-sizing:border-box;

}

.fpmp-popup-buttons{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.fpmp-popup-buttons button{

    flex:1;

    padding:15px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    font-size:16px;

    font-weight:700;

}

#fpmp-whatsapp{

    background:#25D366;

    color:#fff;

}

#fpmp-email-send{

    background:#0b7dda;

    color:#fff;

}

#fpmp-whatsapp:hover{

    background:#1ebe5d;

}

#fpmp-email-send:hover{

    background:#095f9f;

}

@media(max-width:768px){

    .fpmp-popup-box{

        margin:20px;

        padding:25px;

    }

    .fpmp-popup-buttons{

        flex-direction:column;

    }

}

