:root {
    --wit: white;
    --zwart: black;
    --oranje: #ff9408;
    --ui-donker-1: #121213;
    --ui-donker-2: #232325;
    --ui-tegel-hover: #414141; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Verdana, sans-serif;
    color: var(--wit);
}

img,
svg {
    width: 2rem;
    height: auto;
}

body {
    position: relative;
    background-image:  url('../imgs/logo/onderzone_big.png'), url("../imgs/slideshow/dark.jpg");
    background-size: contain, cover;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    grid-template-rows: auto 3rem;
    height: 100vh;
    width: 100%;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

body > *{
    position: relative;
    z-index: 3;
}

ul{
    list-style-type: none;
}





/* Bureaublad */

.bureaublad .apps {
    display: grid;
    grid-template-columns: repeat(2, 8rem);
    grid-template-rows: repeat(5, 6rem);
    grid-auto-flow: column;
    overflow: hidden;
}

.bureaublad .apps div {
    display: flex;
    align-items: flex-start;
    width: 8rem;
    min-height: 6rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    margin-left: 0.5rem;
    justify-content: center;
}

.bureaublad .apps .koppeling:hover{
    background-color: rgba(173, 216, 230, 0.265);
}

.bureaublad .apps div>a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    justify-content: center;
}

.bureaublad .apps div .koppeling {
	width: 100%;
}

.bureaublad .apps div .koppeling>p {
	width: 100%;
    display: inline-block;
    text-shadow: 2px 2px 14px black;
    text-align: center;
    font-size: 1rem;
    padding-top: 0.2rem;
}






/* Talkbalk */

footer {  
  
    --taakbalk-hoogte: 3.5rem;
  
    display: grid; 
    grid-template-columns: 4rem auto minmax(auto, 7rem);
    grid-template-rows: auto;
    align-items: center;
    justify-items: center;
    grid-auto-flow: column;
    position: absolute;
    width: 100%;
    min-height: var(--taakbalk-hoogte);
    opacity: 1;
    bottom: 0;
    background: linear-gradient(to bottom right, var(--ui-donker-2), var(--ui-donker-1));
}


footer svg {
    fill: var(--wit);
}

footer .startknop {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

footer #icoontje {
    width: 1.4rem;
}

footer .startknop:hover #icoontje {
    fill: var(--oranje);
}






/* Hoofdmenu */

footer .hoofdmenu{

    --hoofdmenu-hoogte: 27em; 
  /* 23 bij 5 apps */
  /* 24 bij 6 apps */
                             
  
    display: none;
    width: 20rem;
    min-height: var(--hoofdmenu-hoogte);
    position: absolute;
    bottom: var(--taakbalk-hoogte);
    z-index: 8;
    left: 0;
    background-color: var(--ui-donker-1);
}





/** Hoofdmenu > Paneel Links **/

footer .hoofdmenu .paneel-links{
    display: grid;
    grid-template-columns: minmax(auto, 14rem);
    grid-template-rows: 4rem auto;
    height: var(--hoofdmenu-hoogte);
    width: 4rem;
    align-items: center;
    overflow: hidden;
    background-color: var(--ui-donker-1);
    position: absolute;
    z-index: 4;
    transition: all 0.15s 0.2s linear;
}

footer .hoofdmenu .paneel-links:hover{
    width: 14rem;
    box-shadow: 3px 0px 4px #1b1a1a;
}

footer .hoofdmenu .paneel-links .profiel{
    align-self: baseline;
    height: 5rem;
}

footer .hoofdmenu .paneel-links .locaties{
    display: grid;
    grid-template-columns: auto;
    /* aantal icoontjes: */
    grid-template-rows: repeat(2, 3.5rem);
    align-items: center;
    align-self: end;
}

footer .hoofdmenu .paneel-links .locaties a{
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 100%;
}

footer .hoofdmenu .paneel-links .profiel, footer .hoofdmenu .paneel-links .locatie-koppeling{
    display: flex;
    width: 100%;
    min-width: 7rem;
    height: 100%;
    padding-left: 1.5rem;
    align-items: center;
}

footer .hoofdmenu .paneel-links .profiel img, footer .hoofdmenu .paneel-links .locatie-koppeling img{
    width: 1rem;
}

footer .hoofdmenu .paneel-links .profiel img{
    border-radius: 50%;
    white-space: nowrap;
}

footer .hoofdmenu .paneel-links .profiel p, footer .hoofdmenu .paneel-links .locatie-koppeling p{
    padding-left: 1.6rem;
}





/** Hoofdmenu > Paneel-rechts **/


footer .paneel-rechts{
    display: grid;
    grid-template-columns: minmax(13rem, auto);
    grid-template-rows: repeat(7, 3.5rem); /* Aantal APPS ! */
    padding-left: 5.1rem;
    padding-top: 1rem;
}

footer .paneel-rechts .app-categorie{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: 3rem;
    margin-bottom: 0.6rem;
}

footer .paneel-rechts .app-categorie a{
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 100%;
}   

footer .paneel-rechts .app{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding-left: 0.9rem;
    position: relative;
    right: 0.8rem;
}

footer .paneel-rechts .app a img{
    width: 1.4rem;
}

footer .paneel-rechts .app a p{
    font-size: 1rem;
    padding-left: 1rem;
}






/* Hover */

.klikbaar {
    transition: 0.11s all ease-in;
}

.klikbaar:hover {
    background-color: var(--ui-tegel-hover);
}





/* Tussenruimte */

footer .ruimte{
    justify-self: start;
    width: auto;
    grid-template-rows: minmax(1rem, 3rem);
    height: 100%;
    align-content: center;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 0rem;
}

footer .ruimte img{
    width: 1.5rem;
}







/* Systeemvak */

.systeemvak{
    display: grid;
    width: 100%;
    grid-template-columns: auto;
    grid-auto-flow: column;
    height: 100%;
}


.systeemvak .klok{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 7px;
    padding-bottom: 9px;

}

.systeemvak .klok time{
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
  
}


