/* Window Engine - MIT License - Copyright (c) 2019 Gauthier Staehler */

.window {
    color: #fff;
    background-color: #181818;
    position: absolute;
    top: 80px;
    z-index: 9;
    width: 800px;
    height: 400px;
    border-radius: 0px 0px 0 0;
    /* box-shadow: 8px 8px 6px -6px black; */
    display: none;
}

[id$="header"] {
    -webkit-user-select: none;
    user-select: none;
    padding: 10px;
    z-index: 10;
    background-color: black;
    color: #fff;
    border-radius: 0px 0px 0 0;
    height: 40px;
    justify-content: space-between;
    display: flex;
    touch-action: none;
}

.windowActive {
    color: #fff;
    background-color: #181818;
    z-index: 100;
}

.windowTitle {
    position: relative;
    bottom: 2px;
}

.mainWindow {
    color: #fff;
    background-color: #181818;
    padding: 20px;
    /*    background: #181818;
    color: white; */
}

[id^="closeButton"] {
    color: white;
    cursor: pointer;
    position: relative;
    bottom: 9px;
    font-size: 24px;
}

.windowGroup {
    color: #fff;
    background-color: #181818;
    justify-content: center;
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
}

.purple {
    background-color: rebeccapurple;
}

.orange {
    background-color: burlywood;
}

.brown {
    background-color: brown;
}

.cyan {
    background-color: darkcyan;
}

.crimson {
    background-color: crimson;
}

.green {
    background-color: darkgreen;
}

.small {
    color: #fff;
    background-color: #181818;
    width: 600px;
    height: 300px;
}

.large {
    color: #fff;
    background-color: #181818;
    width: 1000px;
    height: 500px;
    opacity: 1;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.windowGroup p {
    cursor: default;
    margin-top: 0;
    margin-bottom: 1rem;
}

code,
pre,
samp {
    font-family: 'Consolas', 'Courier New', 'Courier', 'monospace';
}