/* Modal */
.alertable {
    position: fixed;
    top: 38vh;
    left: calc(50% - 150px);
    z-index: 9999;
    margin: 0 auto;
    border: 1px solid #003355;
    border-radius: 10px;
    background-color: #003355;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    width: 300px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* Overlay */
.alertable-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.1);
}
/* Message */
.alertable-message {
    color: #ffffff;
}
/* Prompt */
.alertable-prompt {
    margin-bottom: 20px;
}
.alertable-input {
    display: block;
    box-sizing: border-box;
    margin-bottom: 10px;
    box-shadow: none;
    border: solid 1px #ccc;
    border-radius: 4px;
    padding: 6px 12px;
    width: 100%;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}
/* Button group */
.alertable-buttons {
    text-align: right;
}
/* OK button */
.alertable-ok {
    cursor: pointer;
    margin-left: 4px;
    border-style: none;
    background-color: #003355;
    padding: 5px;
    color: #4891ff;
    font-size: inherit;
    font-family: inherit;
}
.alertable-ok:hover, .alertable-ok:focus, .alertable-ok:active {}
/* Cancel button */
.alertable-cancel {
    cursor: pointer;
    margin-left: 4px;
    border-style: none;
    background-color: #003355;
    padding: 5px;
    color: #4891ff;
    font-size: inherit;
    font-family: inherit;
}
.alertable-cancel:hover, .alertable-cancel:focus, .alertable-cancel:active {
    background-color: #f2f2f2;
}