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

}

body {
    font-family: "Open Sans", sans-serif;
    color: white;
    transform: scale(1);
    filter: contrast(1);
    transition: 0.5s ease;
}

body.is-high-contrast {
    filter: contrast(2);
}

.loginScreen {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;

    background-image: url(img/cosmicBG.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
}

.loginCard {
    width: 800px;
    height: 300px;
    background-color: rgb(34, 34, 37);
    border-radius: 15px;
    display: flex;
    padding: 30px;
    gap: 50px;
}

.swipeDown {
    animation: swipeDown;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: forwards;
    position: static;
}

@keyframes swipeDown {
    from {
        transform: translate(0px, 0px);
    }

    to {
        transform: translate(-0px, 70vh);
    }

}

.splitdiv {
    width: 50%;
    /* outline: green dotted 2px; */
}

.dateShow {
    font-size: 30px;
    color: rgb(76, 204, 255);
    font-weight: 500;
}

.timeShow {
    font-size: 80px;
    color: rgb(76, 204, 255);
    font-weight: 500;
}

.line {
    background-color: rgba(255, 255, 255, 0.103);
    height: 2px;
    border-radius: 10px;
    width: 100%;

}

.flex {
    display: flex;
    align-items: center;
}

.loginIcon {
    height: 30px;
}

.batteryPercentage {
    margin-left: 5px;
    color: rgb(76, 204, 255);
    transform: translateY(-1px);
}

.wifi {
    margin-left: 10px;
    height: 50px;
    transform: translateY(-11px);
}

.bottomItem {
    border-radius: 1000px;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.103);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-right: 10px;
    transition: 0.4s ease;
}

.bottomItem:hover {
    background-color: rgba(255, 255, 255, 0.233);
}

.longer {
    width: 65px;
}

.icons {
    height: 20px;
}

.mtop {
    margin-top: 10px;
}

/* SPLITDIV RIGHT NOW */

.right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.profilePictureHolder {
    width: 100px;
    height: 100px;
    border: solid 1.5px rgb(76, 204, 255);
    border-radius: 1000px;
    padding: 2px;
}

.profilePicture {
    background-image: url(img/profile.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 1000px;
}

.username {
    font-size: 25px;
    font-weight: 600;
    margin: 5px;
}

.passwordInput {
    width: 240px;
    height: 40px;
    background-color: inherit;
    border: solid 1px rgb(76, 204, 255);
    outline: 0px solid rgb(76, 204, 255);
    border-radius: 15px;
    color: white;
    text-align: center;
    background-image: url(icons/lock.png);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: 10px, 10px;
}

.passwordInput:focus {
    outline: none;
}

.flexrow {
    display: flex;
    flex-direction: row;
    transform: translateX(30px);
}

.mleft {
    margin-left: 10px;
}

.poweredOff {
    height: 100vh;
    width: 100%;
    position: absolute;
    background-color: black;
    z-index: 990;
    display: none;
}

.relative {
    position: relative;
}

.selectBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    background-color: rgb(34, 34, 37);
}

/* DESKTOP */

p {
    cursor: default;
}

.desktop {
    display: none;
    width: 100%;
    height: 100vh;
    background-image: url(img/cosmicBG.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.navBar {
    height: 30px;
    width: 100%;
    background-color: rgb(34, 34, 37);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navWidgets {
    height: 20px;
    margin-right: 10px;
    border-radius: 1000px;
    transition: 0.4s ease;
}

.navWidgets:hover {
    background-color: rgba(255, 255, 255, 0.233);
}

.vDesktopNumselectec {
    background-color: rgb(95, 174, 206);
    color: rgb(34, 34, 37);
    padding: 5px;
    width: 40px;
    margin-left: 5px;
    text-align: center;
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
}

.vDesktopNum {
    color: rgb(255, 255, 255);
    padding: 5px;
    width: 40px;
    margin-left: 5px;
    text-align: center;
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
}

.centerWidget {
    margin-left: 60px;
}

.center {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.taskBar {
    height: 80px;
    background-color: rgb(34, 34, 37);
    border-radius: 1000px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
    z-index: 200;
}

.appImage {
    height: 50px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 0px;
    transition: 0.4s ease;
}

.appImage:hover {
    background-color: rgba(255, 255, 255, 0.233);
    border-radius: 20px;
}

.slideUp {
    animation: slideUp;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: forwards;
    position: static;
    transform: translate(0px, -100px);
}


@keyframes slideUp {
    from {
        transform: translate(0px, 100px);
    }

    to {
        transform: translate(0px, 0px);
    }
}

.slideDown {
    animation: slideDown;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: forwards;
    position: static;
    transform: translate(0px, 100px);
}


@keyframes slideDown {
    from {
        transform: translate(0px, -100px);
    }

    to {
        transform: translate(0px, 0px);
    }
}


/* APPS */

.app {
    width: 1000px;
    height: 700px;
    background-color: rgb(34, 34, 37);
    position: absolute;
    border-radius: 20px;
    border: 4px solid rgb(76, 204, 255);
    top: 50px;
    left: 50px;
}


.app.maximized {
    margin-top: 0px !important;
    top: 30px !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 30px) !important;
    border-radius: 0;
    border: none;
    transform: translate(0px, 0px);
}

.app.minimized {
    display: none !important;
}

.app.minimized #editor-container {
    display: none;
}

.appNav {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.appNavText {
    margin-left: 15px;
    color: rgb(76, 204, 255);
    font-weight: 500;
}

.sysicon {
    height: 20px;
    margin-right: 20px;
    transition: 0.4s ease;
    border-radius: 100px;
}

.sysicon:hover {
    background-color: rgba(255, 255, 255, 0.233);
}

#editor-container {
    height: calc(100% - 60px);
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

#textEditor {
    display: none;
    z-index: 100;
}

#terminal {
    display: none;
}

.appanim {
    animation: appAnim;
    animation-duration: 0.2s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: forwards;
}

@keyframes appAnim {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.term-container {
    height: calc(100% - 60px);
    padding: 5px;
    width: 100%;
    overflow: scroll;
    border-radius: 0px;
}

.terminalInput {
    outline: none;
    border: none;
    background-color: inherit;
    color: white;
    font-size: 18px;
    height: 22px;
}

#store {
    display: none;
}

.store-container {
    height: calc(100% - 60px);
    padding: 10px;
    width: 100%;
    border-radius: 0px;
    display: flex;
    justify-content: space-around;
}

.exploreDiv {
    width: 40%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.096);
    border-radius: 10px;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: scroll;
}

.exploreItem {
    margin-top: 10px;
    height: 50px;
    width: 95%;
    border-radius: 1000px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    transition: 0.4s ease;
}

.exploreItem:hover {
    background-color: rgba(255, 255, 255, 0.096);
}

.exploreselected {
    background-color: rgba(255, 255, 255, 0.096);
}

.storeIcon {
    margin-right: 10px;
    height: 20px;
}

.availableApps {
    width: 58%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: scroll;
}

.appItem {
    width: 95%;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.123);
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
}

.appItemImage {
    height: 60%;
}

.flexcol {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
}

.spotify-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100% - 160px) !important;
    padding: 20px;
    gap: 15px;
    overflow: hidden;
}

#spotify{
    display: none;
}

.leftBar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 100%;
    gap: 10px;
    overflow: hidden;
}

.leftTop {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    width: 100%;
    height: 20%;
    overflow: hidden;
}

.leftBottom {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    width: 100%;
    height: 80%;
    overflow: hidden;
}

.leftTop {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    overflow: hidden;

}

.leftTopItem {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.spotifyText {
    font-weight: 600;
    font-size: 20px;
    margin-left: 10px;
}

.spotifyImg {
    height: 30px;
    margin-left: 20px;
}

.nomarg {
    margin: 0 !important;
}


.spotifyBottomItem {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.songlist {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.songlistItem {
    width: 80%;
    ;
    display: flex;
    margin-top: 20px;
}

.songCover {
    height: 60px;
    border-radius: 5px;
}

.small {
    font-size: 15px;
}

.midBar {
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    background: #2A7B9B;
    background: linear-gradient(180deg, rgba(42, 123, 155, 0.288) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 30px;
}

.larger {
    font-size: 25px;
}

.reccomendeds {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.reccomendedsItem {
    width: 100%;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.048);
    display: flex;
    align-items: center;
    border-radius: 30px;
}

.reccomendedIMG {
    height: 80%;
    margin-left: 15px;
    border-radius: 15px;
}

.reccomendedContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.authorName {
    color: rgba(255, 255, 255, 0.397);
}

.bottomSongBar {
    height: 100px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.432);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: flex;
    justify-content: space-between;
}

.BottomSongCover {
    height: 80%;
    margin-left: 10px;
    border-radius: 10px;
}

.bottomSongBarLeft {
    display: flex;
    align-items: center;
    height: 100%;
}

.bottomSongBarMid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.playIcon {
    height: 55%;
    margin-right: 200px;
}

.rightBar {
    width: 25%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
}

.bigSongCover{
    width: 100%;
    border-radius: 10px;
}

.bigger{
    font-size: 30px;
}

.smaller{
    font-size: 15px;
    margin-top: 15px;
}

.rightWidget{
    display: flex;
}

#firefox {
    display: none;
    height: 90vh !important;
}

.firefox{
    width: 100%;
    height: calc(100% - 40px);
    overflow: hidden;
}

.firefoxTopBar{
    height: 40px;
    border-radius: 0px;
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
}

.fiefoxIcons{
    display: flex;
    height: 100%;
    align-items: center;
}

.browserArrow{
    margin-left: 10px;
    height: 100%;
}

.flipped{
 transform: rotate(180deg);   
}

.reloadIcon{
    height: 65%;
    margin-left: 10px;
}

.browserSearchBar{
    width: 100%;
    display: flex;
    align-items: center;
}

.browserSearchInput{
    width: 100%;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.26);
    border-radius: 10px;
    border: none;
    outline: none;
    color: white;
    padding-left: 15px;
    margin-left: 15px;
    margin-right: 15px;
}

.browserIframe{
    width: 100%;
    height: 100%;
}

.availableWallpapers {
    width: 58%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: scroll;
    gap: 15px;
}

.wallpaperChoice{
    width: 48%;
    border-radius: 15px;
    border: 4px solid rgb(76, 204, 255);
}

#settings {
    display: none;
}