
.windows-hotbar{
    display: flex;
    height: 2vw;
    width: 100%;
    background-color: #101010;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 6;
    align-self: end;
}

.windows-hotbar-apps{
    display: flex;
    height: 100%;
    width: 88%;
}

.windows-hotbar-widgets{
    display: flex;
    height: 100%;
    width: 12%;
}

.windows-hotbar-widget-icons{
    display: flex;
    height: 100%;
    width: 45%;
    justify-content: center;
    box-sizing: border-box;
}

.windows-hotbar-widget-icon{
    display: flex;
    height: 100%;
    width: 30%;
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: 50% 50%;
    &:hover{
        background-color: #272727;
    }
}

.windows-hotbar-widget-notification{
    display: flex;
    height: 100%;
    width: 15%;
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: 50% 50%;
    background-image: url('../../static/Icons/notifications.svg');

}

#widget-arrow{
    background-image: url('../../static/Icons/arrow.svg');
}

#widget-volume{
    background-image: url('../../static/Icons/volume.svg');
}

#widget-ethernet{
    background-image: url('../../static/Icons/ethernet.svg');
}

.calender{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 40%;
    padding: .2vw;
    box-sizing: border-box;
    font-size: .75vw;
    justify-content: center;
    align-items: center;
    font-family: Arial;
    user-select: none;

    &:hover{
        background-color: #272727;
        cursor: pointer;
    }
}

.windows-hotbar-app{
    display: flex;
    height: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: .4%;
    background-color: rgba(0,0,0,0);
    transition: background-color .1s ease-in-out;

    &:hover{
        background-color: #272727;
    }
}

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

#hotbar-windows{
    &:hover{
        cursor: pointer;
    }
    &:hover div{
        background-image: url('../../static/Icons/Windows10LogoGrey.svg');
    }
    & div{
        background-image: url('../../static/Icons/Windows10LogoWhite.svg');
    }
}

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

#hotbar-file-explorer{
    & div{
        background-image: url('../../static/Icons/FileExplorer.svg');
    }
}

#hotbar-steam{
    & div{
        background-image: url('../../static/Icons/Steam.svg');
    }
}

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

#hotbar-vscode{
    & div{
        background-image: url('../../static/Icons/VSCode.svg');
    }
}

#hotbar-cmd{
    & div{
        background-image: url('../../static/Icons/CMD.svg');
    }
}