@import url("https://fonts.googleapis.com/css2?family=Fondamento:ital@0;1&family=Open+Sans&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::-moz-selection { /* Code for Firefox */
  color: white;
  background: blue;
}

::selection {
  color: white;
  background: blue;
}

body {
    margin: 0;
    width: 100vw;
    background-color: #ffdbdb;
    position: fixed;
    /* font-family: "Fondamento", Times, serif; */
    font-family: Arial, Helvetica, sans-serif;
}

#icons {z-index: initial!}

.ui-icon,
.ui-widget-content .ui-icon {
    background-image: none;
background-color: white;
border: 2px lightgray solid;
border-top-left-radius: 100%;
margin: 6px;
transition: 0.2s;
}

.ui-resizable-se {cursor:nwse-resize}

.ui-icon:hover {
    background-color: black;
    width: 20px;
    height: 20px;
}

.embed {
    margin: 3rem 0;
    transition: 0.5s;
}

.clock {
    background: rgba(0, 0, 0, 1);
    border-bottom: lightgray 1px solid;
    text-align: right;
    color: white;
    font-weight: bold;
    padding: 0.3rem 3rem;
}

input{all: unset;}

.window {
   margin: 15vh;
border-radius: 10px;
border: lightgray solid 1px;
box-shadow: rgba(0, 0, 0, 0.3) 5px 5px 5px;
opacity: 0;
background: white;
width: 0;
height: 50vh;
position: absolute;
z-index: 1;
left: 0;
top: 0;
overflow: hidden;
/* transition: 0.5s; */
}


.m2{margin: 17vh}
.m3{margin: 19vh}
.m4{margin: 21vh}
.m5{margin: 23vh}
.m6{margin: 25vh}
.m7{margin: 27vh}

.window img {
    width: 100%;
    margin: 10px 0;
}

.progress-container {
    width: 100%;
    height: 5px; /* Adjust the height of the progress bar */
    background-color: lightgrey; /* Background color of the progress bar container */
    position: relative;
}

.progress-bar {
    width: 0;
    height: 4px;
    background-color: blue; /* Color of the progress bar */
    transition: width 0.1s; /* Smooth animation for progress updates */
}

.folderHeader {
    position: sticky;
    border-bottom: 1px solid lightgray;
    top: 0;
    height: 29px;
    background: linear-gradient(
          to bottom,
          #000000 0%,
          #000000 20%,
          #404040 45%,
          #000000 70%
        );
    background-size: 100% 200%;
    animation: flareAnimation 6s cubic-bezier(0.955, 0.01, 0.515, 0.955) infinite;
    padding: 6px;
    cursor: grab;
    z-index: 2;
    text-align: center;
}

      @keyframes flareAnimation {
        0% {
          background-position: 50% -100%;
        }
        100% {
          background-position: 50% 100%;
        }
      }

.folderTitle {
    font-weight: bold;
    color: white;
}

.insideFolder {
    padding: 10px;
    padding-right: 20px;
    /* height: calc(100% - 25px); Subtract the height of folderHeader */
    height: calc(100% - 25px); /* Subtract the height of folderHeader */
    overflow-y: scroll;
}

.fileFolder {
    padding-top: 50px;
}

.dot{
position: absolute;
cursor:pointer;
left: 5px;
height: 15px;
width: 15px;
background-color: red;
border-radius: 50%;
border: solid lightgray 1px;
margin-left: 5px;
display: inline;
}


.shortcuts {
z-index: 1;
/* width: 100%; */
/* height: 100%; */
/* position: fixed; */
text-align: left;
/* pointer-events: none; */
/* opacity: 0; */
}

.item {
z-index: 2;
position: relative;
display: block;
background: red;
text-align: center;
margin: 3rem;
width: 100px;
height: 100px;
cursor: pointer;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
-webkit-background-position: center;
-moz-background-position: center;
-o-background-position: center;
background-position: center;
/* transition: box-shadow 0.5s; */
}

.item::after { 
  position: absolute;
  width: 100%;
  top: 105px;
  display: block;
  color: black;
  font-weight: bold;
}

.selected {
    box-shadow: 0 0 0.1rem 0.2rem blue;
    -webkit-box-shadow: 0 0 0.1rem 0.2rem blue;
    border: 1px solid lightgray;
}

.selected::after {
    background:  blue;
    color: white;
    padding: 0 2px;
}

/* .selected-zindex {z-index: 100;} */

.folderItem {
    display: inline-block;
}


/* INDIVIDUAL DESKTOP WINDOWS */ 

/* #icon-1 { */
    /* background-image: url(/assets/GHOSTS/82520806_618790205619173_2212622887242694656_n.jpg) */
/* } */

/* #icon-2 { */
    /* background-image: url(/assets/GHOSTS/83313007_625908224840597_4936011694871674880_n.jpg) */
/* } */

/* #icon-3 { */
    /* background-image: url(/assets/GHOSTS/IMG_1991.jpg) */
/* } */
#icon-1::after {content: "Writing";}
#icon-2::after {content: "Performance";}
#icon-3::after {content: "About";}

#icon-P1::after {content: "Home";}
#icon-P2::after {content: "Ó Mor";}

#icon-W1::after {content: "Drama";}
#icon-W2::after {content: "Short Texts";}
#icon-W3::after {content: "Thoughts and Prayers";}

#icon-W1a::after {content: "Et cetera, et cetera";}
#icon-W1b::after {content: "Pin my Places";}

#icon-W2a::after {content: "Canseira";}
#icon-W2b::after {content: "Confissão";}
#icon-W2c::after {content: "Pedro (Crónica)";}
#icon-W2d::after {content: "Fenestras";}

p {
    color: #1c0013;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
    padding: 10px 0;
}

button {position: absolute;
    cursor: pointer;
    right: 0;
    margin: -36px 20px;
    /* transform: translateY(0%); */
    font-size: 1rem;
    padding: 0.4rem;
    margin: 1 auto;
    border-radius: 10px;
    background: black;
color: white;}

button:hover {background: blue;}
button:active {background: rgb(18, 18, 180)}




@media screen and (max-width: 850px) {

    .shortcuts {
        top: 0;
        height: 100vh;
        padding-top: 20vh;
        position: absolute;
        overflow-y: scroll;
        text-align: center;
        pointer-events: unset;
    }

    .item {
        display: block;
        position: relative;
    }

    .ui-icon {
        visibility: hidden
    }

}