@import (once) "../../include/vars";
@import (once) "../../include/mixins";

:root {
    --overlay-color: rgba(255,255,255, .5);
    --splash-color: rgba(255,255,255, 1);
}

.dark-side {
    --overlay-color: rgba(0,0,0, .5);
    --splash-color: rgba(0,0,0, 1);
}

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-color);
    z-index: @z-index-modal-backdrop;

    &.transparent {
        background-color: rgba(255,255,255, 0) !important;
    }
}

.global-overlay {
    z-index: @z-index-overlay!important;
}

.global-dialog {
    z-index: @z-index-overlay + 1!important;
}

.splashscreen {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    z-index: @z-index-fullscreen;
    background: var(--splash-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
