body.modal-open {
    overflow:hidden;
}
.modal {
    display: none;
    /* Hidden by default */
    
    position: fixed;
    /* Stay in place */
    
    z-index: 100000;
    /* Sit on top */
    
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    
    height: 100%;
    /* Full height */
    
    overflow: auto;
    /* Enable scroll if needed */
    
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}
.modal:after {
    filter: blur(5px);
    content: ' ';
}
.modal.in {
    display: block;
}
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 64px auto 64px;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    visibility: hidden;
}
.modal-content.in {
    visibility: visible;
}
.short-modal .modal-content {
    width: 40%;
    min-width:400px;
}
.modal-header {
    padding: 24px 24px 20px;
    line-height: 1;
}
.modal-body {
    padding: 0px 24px 24px;
}
.modal-footer {
    height: 52px;
    text-align: right;
    clear: both;
}