.chaos_modal_overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1000;
}

.chaos_modal_overlay.hidden,
.chaos_modal_overlay.chaos_hidden {
    display: none;
}

.chaos_modal {
    display: flex;
    flex-flow: column;
    width: 600px;
    max-width: 100%;
    max-height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.9);
    padding: 10px;
}

.chaos_modal_title {
    display: flex;
    flex-flow: row;
    font-weight: bold;
    font-size: large;
}

.chaos_modal_title div#gaia_modal_title_placeholder {
    flex-grow: 1;
}

.chaos_modal_title button {
}

.chaos_modal_content {
    flex-grow : 1;
    overflow: auto;
}

.chaos_modal_content::after,
.chaos_modal_title::after {
    content: "";
    clear: both;
    display: table;
}
