#popupInnerDiv {
    display: flex;
    flex-flow: column nowrap;
    row-gap: 50px;
}
.popup-heading {
    font-size : 20px;
    line-height: 1.5;    
}
.x-icon {
    width: 10px;
    height: 10px;
    position: absolute;
    z-index: 1;
    right: 20px;
    top: 20px;
    cursor: pointer;  
}
.popup-btns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    width: 80%;
}
.popup-btns-wrapper input[type="submit"],
.popup-btns-wrapper .cancel {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    padding: 12px 0;
    width: 100%;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 1;
    letter-spacing: .3px;
    cursor: pointer;
     
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-btns-wrapper input[type="submit"]#del_submit {
    background-color: #000;
    color: #fff;
}
.hide_popup {
    display: none;
}
.show_popup {
    display: block;
}
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: #fff;
    padding: 50px;
    width: 600px;
    margin-top: -150px;
    margin-left: -300px;
    z-index: 1000;
}
#popBg {
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0;
}
h4.contact_form_heading {
     
    font-size: 30px;
    margin-bottom: 50px;
    line-height: 1.5;
    font-weight: 500;
}
@media screen and (max-width: 414px) {
    .popup-btns-wrapper {
        width: 100%;
    }
    .popup-btns-wrapper input[type="submit"]#booking_submit,
    .popup-btns-wrapper .cancel {
        font-size: 14px;
    }
    .popup {
        top: 50%;
        left: 50%;
        padding: 30px;
        width: 350px;
        margin-left: -175px;
        margin-top: -150px;
    }
}