@charset "UTF-8";

.content-overlay-wrapper {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: auto;
    z-index: 1000;
    padding: 1em;
    display: none;
}

.overlay-fixed {
    position: fixed;
    z-index: 2000;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.overlay-header-group {
    background-color: white;
    display: flex;
}

.overlay-header-left {
    flex-grow: 1;
}

.overlay-header-right {
    /*background-color: #eeeeee;*/
    z-index: 2001;    
}

.overlay-close-link {
    cursor: pointer;
    padding: .5em 1em;
    font-size: large;
}

.overlay-close-link:hover {
    color: darkgreen;
}

.overlay-body {
    background-color: #000000;
    height: 100%;
}
