/***********************************************************************************************************************
MessageBox - A jQuery Plugin to replace Javascript's window.alert(), window.confirm() and window.prompt() functions
    Author          : Gaspare Sganga
    Version         : 3.2.2
    License         : MIT
    Documentation   : https://gasparesganga.com/labs/jquery-message-box/
***********************************************************************************************************************/

.messagebox_overlay {
    background-color: rgba(255, 255, 255, .6);
    z-index: 9999;
}

.messagebox_overlay :focus {
    outline: 0;
}

.messagebox {
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 10pt;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    color: #303030;
    background-color: #fcfcfc;
    border: 1px solid #c8c8c8;
    box-shadow: 0 2px 4px #a0a0a0;
    max-height: 90%;
    max-width: 90%;
    min-width: 300px;
}

.messagebox_title {
    background-color: #f5f5f5;
    border-bottom: 1px solid #c8c8c8;
    padding: 5px;
    text-align: center;
    font-weight: 700;
}

.messagebox_content {
    padding: 20px;
}

.messagebox_content_label {
    width: 100%;
    font-style: italic;
    margin-top: 10px;
    margin-bottom: -5px;
}

.messagebox_content_input {
    width: 100%;
    margin-top: 10px;
    padding: 3px;
    color: #303030;
    border: 1px solid #909090;
    font-family: inherit;
    font-size: inherit;
    font-style: normal;
    font-weight: inherit;
    text-align: left;
}

.messagebox_content_input:hover {
    border-color: #707070;
}

.messagebox_content_input:focus {
    border-color: #707070;
    box-shadow: inset 0 0 3px #ffd540;
}

.messagebox_content_input_selectplaceholder {
    color: #909090;
}

.messagebox_content_input_textarea {
    overflow-y: auto;
}

.messagebox_content_caption {
    width: 100%;
    margin-top: 15px;
    padding: 5px 0;
}

.messagebox_content_checkbox_wrapper {
    width: 100%;
    margin-top: 10px;
}

.messagebox_content_checkbox {
    margin-right: 5px;
    vertical-align: -2px;
}

.messagebox_content_error {
    background-color: #fad0d5;
    color: #a02020;
    margin-top: 15px;
    margin-bottom: -10px;
    padding: 4px 6px;
    border-radius: 2px;
}

.messagebox_buttons {
    background-color: #f5f5f5;
    border-top: 1px solid #c8c8c8;
    padding: 10px 20px 0 20px;
    text-align: center;
}

.messagebox_buttons_button {
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    text-align: center;
    min-width: 75px;
    margin: 0 4px 10px 4px;
    padding: 5px 10px;
    cursor: pointer;
    color: #404040;
    background-color: #e9e9e9;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, .4) 0, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .1) 51%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid silver;
    border-radius: 2px;
}

.messagebox_buttons_button:hover {
    color: #202020;
    background-color: #f0f0f0;
}

.messagebox_buttons_button:active {
    background-color: #e6e6e6;
    border: 1px solid #a0a0a0;
    box-shadow: inset 0 0 6px #d0d0d0;
}

.messagebox_buttons_button::-moz-focus-inner {
    padding: 0;
    border: 0;
}