.mask.modal-message {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
}

.content.modal-message {
    width: 100% !important;
    max-width: 500px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto !important;
    max-height: 90%;
    left: 0;
    right: 0;
    word-wrap: break-word;
    border-radius: 3px;
    padding-top: 0 !important;
}

.body-message {
    position: relative;
    padding: 10px;
    font-size: 15px;
}

.header-message {
    position: relative;
    float: left;
    width: 100%;
    display: block;
}

#close-modal span {

}

#close-modal {
    position: relative;
    background: #004782;
    color: #fff;
    z-index: 9999999999;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    width: 50px !important;
    height: 40px;
    float: right;
    text-align: center;
    margin-bottom: 7px;
    padding: 0 !important;
}

@media (min-width: 768px) {
    .content.modal-message {
        max-height: 450px;
    }
}