.inquiry-floating{

    position:fixed;
    right:25px;
    bottom:25px;
    z-index:9999;

    font-family:Arial, sans-serif;

}


.inquiry-btn{

    background:#0066cc;
    color:white;

    border:none;

    padding:14px 22px;

    border-radius:30px;

    cursor:pointer;

    font-size:15px;

}


.inquiry-box{


    display:none;

    width:330px;

    background:white;

    border-radius:12px;

    box-shadow:0 5px 30px rgba(0,0,0,.2);

    padding:20px;

    margin-bottom:15px;


}



.inquiry-title{


    font-size:18px;

    font-weight:bold;

    margin-bottom:15px;

    display:flex;

    justify-content:space-between;

}


.inquiry-title span{

    cursor:pointer;

}



.inquiry-box input,
.inquiry-box textarea{


    width:100%;

    padding:12px;

    margin-bottom:12px;

    border:1px solid #ddd;

    border-radius:6px;

    box-sizing:border-box;

}


.inquiry-box textarea{

    height:100px;

    resize:none;

}



.inquiry-box button{


    width:100%;

    background:#0066cc;

    color:white;

    border:0;

    padding:12px;

    border-radius:6px;

    cursor:pointer;

}



#inquiryMsg{

    margin-top:10px;

    font-size:14px;

}