.windows-desktop{
    display: flex;
    position: absolute;
    flex-direction: column;
    gap: .5%;
    height: 100%;
    width: 100%;
    background-color: black;
    /*background-image: url('../../static/Images/wallpaper.png');*/
    background-size: cover;
    background-position-y: 30%;
    z-index: 1;
}

.desktop-selection{
    display: flex;
    position: relative;
    background-color: rgba(87, 165, 255, 0.2);
}

.windows-desktop-app{
    display: flex;
    flex-direction: column;
    z-index: 3;
    height: 8%;
    width: 4%;
    aspect-ratio: 1;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0);
    border: 0% solid rgba(0,0,0,0);
    transition: background-color .1s ease-in-out;
    &:hover{
        cursor: pointer;
        background-color: rgba(255,255,255,0.5);
        border: .1vw solid rgba(255,255,255,0.7);
    }

    &.active{
        background-color: rgba(164, 206, 235, 0.5);
        border: .1vw dotted rgba(255,255,255,0.7);
    }
    
    &.active:hover{
        background-color: rgba(164, 206, 235, 0.2);
        border: .1vw solid rgba(255,255,255,0.7);
    }
}

.blue-selection{
    display: flex;
    position: absolute;
}

.windows-desktop-app div{
    display: flex;
    position: relative;
    height: 60%;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-size: 100%;
}

.windows-desktop-label{
    display: flex;
    font-size: .75vw;
    color: white;
    user-select: none;
    text-align: center;
}

#desktop-recycle-bin{
    & div{
        background-image: url('../../static/Icons/RecycleBin.svg');
    }
}

#desktop-firefox{
    & div{
        background-image: url('../../static/Icons/Firefox.svg');
    }
}

#desktop-discord{
    & div{
        background-image: url('../../static/Icons/Discord.svg');
    }
}

#desktop-batch{
    & div{
        background-image: url('../../static/Icons/Batch.svg');
    }
}