#modalform-outer{
    display: none !important;
}
#modalform-outer #modalform{
    display: none;
}
#modalform-outer #modalform.active{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #00000099;
    width: 100vw;
    height: 100vh;
    display: flex;
}
#modalform-outer .modalform-inner {
    position: relative;
    background: #FFF;
    width: 600px;
    overflow-y: auto;
    margin: auto;
    max-width: 90vw;
    padding: 50px;
}
#modalform-outer select, #modalform-outer textarea, #modalform-outer input {
    width: 100%;
    max-width: 100%;
    font-weight: normal;
}
#modalform-outer input[disabled] {
    opacity: 0.8;
    background: #f5f5f5;
}
#modalform-outer textarea{
    margin: 0 0 20px 0;
}
#modalform-outer .btn, #enquire-btn {
    background: #008fd5;
    border: none;
    height: 36px;
    margin: 0;
    padding: 10px 20px;
    color: #FFF;
    font-weight: normal;
    border-radius: 1px;
    cursor: pointer;
}
#modalform-outer #cancel-btn{
    position: absolute;
    top: 0;
    right: 0;
    background-color: #CCC;
    border-radius: 0;
    padding: 0 15px;
}
#modalform-outer .alert.alert-success{
    background: #e0ffbe;
    margin-bottom: 20px;
    padding: 10px;
}