body {
    background-color: #181818;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 100%;
    min-width: 640px;

    --wnd-background: rgba(0,0,0,0.25);
    --wnd-title-background: linear-gradient(180deg, rgba(5, 30, 49, 0.25) 0%, rgba(5, 30, 49, 0.5) 100%);
}

/* #region DESKTOP */
.Desktop {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}
/* #endregion DESKTOP */

/* #region WND */
.Wnd {
    backdrop-filter: blur(2rem);
    background: var(--wnd-background);
    border-radius: 0.5rem 0.5rem 0 0;
    border: none;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.25);
    height: auto;
    min-height: 5rem;
    margin: 0;
    outline: none;
    padding: 0;
    position: absolute;
    /* width: auto; */
    min-width: 10rem;
}
.Wnd.active {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
}
.Wnd .WndTitle {
    background: var(--wnd-title-background);
    border-radius: 0.5rem 0.5rem 0 0;
    height: 1.25rem;
    line-height: 1.25rem;
    font-size: 0.8rem;
}
.Wnd.fullscreen {
    border-radius: 0;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
}
.Wnd.fullscreen .WndTitle {
    border-radius: 0;
}
/* #endregion WND */