.myalert {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    z-index: 2;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.myalert .alert {
    padding: 25px;
    background-color: white;
    word-wrap: break-word;
    max-width: 90%;
    min-width: 250px;
    border-radius: 5px;
}

.myalert .alert .title {
    width: 100%;
    font-size: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.myalert .alert .body .text {
    width: 100%;
    font-size: 17px;
    padding-bottom: 20px;
    line-height: 30px;
    max-height: 400px;
    overflow: auto;
    text-transform: capitalize;
}

.myalert .alert .body .buttons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-transform: uppercase;
}

.myalert .alert .body .buttons .btn {
    border-radius: 5px;
    width: 80px;
    padding: 13px;
    text-align: center;
    color: white;
    cursor: pointer;
    margin: 5px;
}

.myalert .alert .body .buttons .btn.ok {
    background-color: #4a799e;
}

.myalert .alert .body .buttons .btn.ok:hover {
    background-color: #376182;
}

.myalert .alert .body .buttons .btn.cancel {
    background-color: #f44336;
}

.myalert .alert .body .buttons .btn.cancel:hover {
    background-color: #d0382d;
}
/*# sourceMappingURL=style.css.map */
