/* POPUP OVERLAY */
.bdp-modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:999999;
}

/* POPUP BOX */
.bdp-modal-box{
background:#ffffff;
padding:25px;
width:90%;
max-width:420px;
border-radius:6px;
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* CLOSE BUTTON */
.bdp-close{
position:absolute;
top:10px;
right:10px;
width:30px;
height:30px;
background:#000;
color:#fff;
border:none;
border-radius:50%;
cursor:pointer;
font-size:18px;
line-height:30px;
text-align:center;
}

/* FORM INPUTS */
.bdp-form input{
width:100%;
padding:10px;
margin-bottom:12px;
border:1px solid #ccc;
border-radius:4px;
font-size:14px;
}

/* SUBMIT BUTTON */
.bdp-form button{
width:100%;
background:#f57c00;
color:#fff;
border:none;
padding:12px;
font-size:15px;
border-radius:4px;
cursor:pointer;
transition:0.3s;
}

.bdp-form button:hover{
background:#e46f00;
}

/* MESSAGE */
.bdp-msg{
margin-top:10px;
font-size:14px;
color:#333;
}

/* BROCHURE BUTTON */


a.bdp-trigger {
    display: inline-block !important;
    background: #f15a24 !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none !important;
    cursor: pointer;
    margin-top: 15px;
}
a.bdp-trigger:hover{
background:#d94f1f !important;
color:#ffffff !important;
}