
#escritorio {
    top: 1%;
    left: 0;
    padding: 1%;
    width: 100%;
    height: 100%;
    position: absolute;
    display: grid;
    grid-template-columns: repeat(11, 10rem);
    grid-template-rows: repeat(5, 10rem);
    justify-content: flex-start;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px black;
}

.celda {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.app {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.selected {
    background-color: rgba(255, 255, 255, 0.332);
    border: 2px solid rgba(255, 255, 255, 0.439);
}

.app:hover {
    box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.439);
}

.app img {
    width: 70%;
}

.app span {
    color: white;
}

#ventanas {
    top: 0 !important;
    left: 0 !important;
    margin: 0;
    padding: 0;
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.ventana {
    min-width: 40vw;
    min-height: 40vh;
    height: 60vh;
    width: 60vw;
    max-width: 80vw;
    max-width: 80vw;
    position: absolute;
    z-index: 100;
    border: 2px solid white;
    border-radius: 1rem;
    overflow: hidden;
}

.barra-titulo {
    text-align: center;
    color: white;
    justify-content: center;
    align-items: center;
    height: 4vh;
    display: grid;
    grid-template-columns: 90% 5% 5%;
}

.barra-titulo .titulo {
    text-align: center;
    cursor: default;
}

.en-grande .barra-titulo {
    grid-template-columns: 95% 3% 2%;
}

.en-grande {
    position: relative;
    min-width: 100vw;
    min-height: 100vh;
    box-sizing: border-box;
    height: 100vh;
    width: 100vw;
    top: 0 !important;
    left: 0 !important;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.ventana iframe {
    position: absolute;
    height: 100%;
    width: 100%;
    border: none;
    display: block;
}

.cerrar, .pequenizar {
    cursor: pointer;
}

#selection-box {
    pointer-events: none;
}