/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

body {
    background-color: black;
    margin: 0;
    overflow: hidden;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.mainscreen {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: rgb(16, 22, 31);
    width: 100%;
    height: 100%;
}

.taskbar {
    top: 95vh;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(24, 16, 51, 0.61);
    border-radius: 16px;
    -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10.3px);
    -webkit-backdrop-filter: blur(10.3px);
    border: 1px solid rgba(0, 0, 0, 0.125);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 5vh;
    z-index: 999;
    padding: 0 .4vw;
}

.desktop {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-image: url(background.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: 100vw 100vh;
    width: 100%;
    height:100vh;
}

.taskbar .icon {
    width: 2.5vw;
    height:100% ;
    cursor: pointer;
}

.programs {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1vw;
       -moz-column-gap: 1vw;
            column-gap: 1vw;
    width: 92.5vw;
    margin-left: 2.5vw;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.apps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2vh;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    left: 1vw;
    z-index: 8;
    width: 15vw;
    height: 85vh;
}

.icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.apps .icon {
    width: 7vw;
    height: 7vh;
    z-index: 8;
}

.draggable {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40vw;
    height: 3vh;
    z-index: 9;
    color: white;
    background: rgba(17, 13, 26, 0.962);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.closed {
    opacity: 0;
    pointer-events: none;
}

#buttonAudio {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 16px;
    -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(33.9px);
    -webkit-backdrop-filter: blur(12.9px);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 9999;
}


#buttonAudio button {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: 0;
    color: white;
    width: 25vw;
    height: 5vh;
    font-size:1.3rem;
    font-family:'Courier New', Courier, monospace;
    cursor: pointer;
}

.fade {
    opacity: 1;
    -webkit-animation: fade 1s linear;
            animation: fade 1s linear;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    cursor:auto;
    pointer-events: none;
}

@-webkit-keyframes fade {
    from {
        opacity: 1;
        border-radius: 16px;
        -webkit-backdrop-filter: blur(33.9px);
                backdrop-filter: blur(33.9px);
    }
    to {
        opacity: 0;
        border-radius: 0px;
        -webkit-backdrop-filter: blur(0px);
                backdrop-filter: blur(0px);
    }
}

@keyframes fade {
    from {
        opacity: 1;
        border-radius: 16px;
        -webkit-backdrop-filter: blur(33.9px);
                backdrop-filter: blur(33.9px);
    }
    to {
        opacity: 0;
        border-radius: 0px;
        -webkit-backdrop-filter: blur(0px);
                backdrop-filter: blur(0px);
    }
}

.barstuff {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: 100%;
    z-index: 11;
    align-items: center;
}

.close {
    background-image: url(icons/close.svg);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    z-index: 12;
    width: 1.5vw;
    height: 100%;
    float: right;
}

.window {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40vw;
    height: 40vh;
    top: 3vh;
    background-color: rgb(39, 38, 39);
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1vw;
    background: rgba(0, 0, 0, 0.821);
    -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15.6px);
    -webkit-backdrop-filter: blur(15.6px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.title {
    left: .5vw;
    font-family: "Archivo", sans-serif;
    margin: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.icon img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    max-height: 80%;
    height: auto;
}


.textBox {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: white;
    height: auto;
    max-width: 30vw;
    width: 30vw;
    padding: 0;
    border-radius: 15px;
    font-family:"Quicksand", sans-serif;
    padding-left: 1vw;
    padding-right: 1vw;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; /* Aligns children vertically */
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.textBox h1 {
    font-family: "Almarai", sans-serif;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: top;
       -ms-flex-pack: top;
           justify-content: top;
   margin: 0;
   z-index: 99;
}

.textBox .myImage {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: flex;
    width: 4rem;
    height: 4rem;
    background-image: url(icons/star.gif);
    background-repeat: no-repeat;
    background-size: 4rem;
    background-position: center;
}

.textBox p {
    z-index: 99;
    margin: 0;
}

.textBox .moreinfo {
    z-index: 99;
    margin: 0;
    margin-top: -1vh;
}

.textBox h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: top;
        -ms-flex-pack: top;
            justify-content: top;
    margin: 0;
    z-index: 99;
    margin-top: 1vh;
    margin-bottom: .2vh;
}


.gap {
    width: 55vw;
    height: 4vh;
}

.smallgap {
    width: 55vw;
    height:1vh;
}

.line {
    max-width: 30vw;
    width: 30vw;
    height: .09rem;
    margin-top: 1.2vh;
    margin-bottom: 1.2vh;
    background-image: -o-radial-gradient(circle, gray 70%, transparent 100%);
    background-image: radial-gradient(circle, gray 70%, transparent 100%);
}


.audio-slider-container {
    width: 100%;
    margin-top: 10px;
  }
  
  .audio-slider {
    border-radius: 25px;
    width: 100%;
    height: 10px;
    background-color: #ddd;
    cursor: pointer;
    position: relative;
  }
  
  .progress-bar {
    border-radius: 25px;
    width: 0%;
    height: 100%;
    background-color: #0974c0;
  }
  
  #pause-button {
    margin-top: 10px;
    background-image: url(icons/pause.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 1vh 1vw;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-right: 5px;
}

#prev-button {
    margin-top: 10px;
    background-image: url(icons/prev.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: transparent;
    padding: 1vh 1vw;
    color: transparent;
    border: none;
    cursor: pointer;
    margin-right: 5px;
}

#next-button {
    margin-top: 10px;
    background-image: url(icons/next.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 1vh 1vw;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-right: 5px;
}

.button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
  }