/* --- Message Box --- */
.auth-message-box-overlay{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #0007;
    justify-content: center;
    align-items: center;
    z-index: 5;
}
.auth-message-box-overlay.show{
    display: flex;
}
.auth-message-box{
    display: none;
    position: absolute;
    background: #fff;
    padding: 5px;
    border-radius: 15px;
    flex-direction: column;
    max-width: 600px;
    max-height: 80%;
    overflow-y: auto;
}
.auth-message-box.show{
    display: flex;
}
.auth-message-box-title {
    font-weight: 700;
    text-align: center;
}
.auth-message-box {
    min-width: 300px;
    margin: 0 10px;
}
.auth-message-box-bottom{
    display: inherit;
    margin-top: 15px;
}
.auth-message-box-bottom-message{
    padding: 0 10px;
}
.auth-message-box-button {
    padding: 10px 15px;
    border-radius: 24.3774px;
    margin: 0 0 10px 10px;
    width: fit-content;
    cursor: pointer;
    background: #00A0E3;
    color: #fff;
}
.auth-message-box-button.hidden{
    display: none;
}
.auth-message-box-text {
    margin: 0 0 5px 0;
}
.non-available{
    cursor: not-allowed;
}
.auth-message-box-bottom-buttons {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #fff;
}
/* --- [END] Message Box --- */