html {
    background-color: #111111;
    font-family: 'SUSE' !important;
    color: white !important;
    user-select: none !important;
}

#songTitle {
    font-size: 2vw;
    margin-bottom: 4.5vw;
}

#albumName {
    opacity: 0.5;
    position: fixed;
    font-size: 1vw;
    margin-bottom: -0.2vw;
}


#mainContent {
    width: 48vw;
    height: 77vh;
    transform: translate(-50%, 0);
    background-color: #212121;
    border-radius: 2vw;
    position: fixed;
    left: 50%;
    top: 9vw;
    padding: 1vw;
}

#albumContent {
    width: 48vw;
    height: 77vh;
    transform: translate(-50%, 0);
    background-color: #212121;
    border-radius: 2vw;
    position: fixed;
    left: 50%;
    top: 9vw;
    padding: 1vw;
    z-index: 20;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}

#albumContainer {
    background-color: rgba(255, 255, 255, 0);
    width: 48vw;
    height: 77vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: start;
    overflow: scroll;

    /* -ms-overflow-style: none;
    scrollbar-width: none; */
}


/* I need to get better at naming things */
#albumContainerCon {
    margin-top: 5.5vw;
    background-color: rgba(255, 255, 255, 0);
    width: 48vw;
    height: 77vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    flex: 1;
    flex-direction: row;
    align-content: start;
    overflow-y: scroll;

}

#exitAlbum {
    position: fixed;
    width: 4vw;
    left: -5vw;
    z-index: 25;
}

#exitAlbum:hover {
    cursor: pointer;
}

.album {
    border-radius: 1vw;
    width: 14vw;
    height: 14vw;
    margin: 1vw;
    background-color: rgba(0, 0, 0, 0.256);
    object-fit: cover;
    transition: scale 200ms, outline 75ms !important;
    overflow-wrap: break-word;
    overflow-y: hidden;
    outline-offset: -0.02vw;
}

.album:hover {
    cursor: pointer;
    scale: 1.05;
}

#albumTitle {
    transform: translate(0, -50%);
    font-size: 3vw;
    position: fixed;
    top: 0vw;
    z-index: 1;
}

#albumDisplay {
    position: fixed;
    width: 20vw;
    height: 20vw;
    right: -20vw;
    bottom: 10vh;
    background-color: #212121;
    border-radius: 2vw 0vw 0vw 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 400ms;
    transition-property: right;
}

#albumDisplayImg {
    background-color: rgba(0, 0, 0, 0.256);
    width: 16vw;
    height: 16vw;
    border-radius: 1.2vw;
    object-fit: cover
}

.song {
    background-color: rgba(0, 0, 0, 0.256);
    width: 100%;
    height: 5vw;
    border-radius: 1vw;
    display: flex;
    align-items: center;
    margin-bottom: 0.5vw;
    outline-offset: -0.5vw;
}

.song>img {
    width: 3vw;
    height: 3vw;
    margin-left: 1vw;
}

.song>img:hover {
    cursor: pointer;
}

.song>span {
    display: flex;
    flex: 1;
    justify-content: end;
}

#songCount {
    font-size: 1vw;
    opacity: 0.5;
    padding-right: 40vw;
    padding-top: 2.5vw;
    position: fixed;
}


.songTitle {
    font-size: 1.5vw;
    margin-left: 1vw;

}

.songDur {
    font-size: 1vw;
    /* display: flex; */
    /* flex: 1; */
    margin-right: 2vw;
    /* justify-content: end; */
}

.song>span>img {
    width: 3vw;
    /* display: flex; */
    /* flex: 1; */
    margin-right: 1vw;
    /* justify-self: end; */
    transition-duration: 100ms;
    transition-property: scale;
}

.song>span>img:hover {
    cursor: pointer;
}

.song>span>img:active {
    scale: 1.15;
}

#playlistId {
    font-size: 1vw;
    opacity: 0.5;
    padding-left: 36vw;
    padding-top: 2.5vw;
    position: fixed;
}

#playlists {
    width: 6vw;
    height: 6vw;
    background-color: #212121;
    position: fixed;
    left: 17vw;
    top: 10vw;
    border-radius: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#playlists:hover {
    cursor: pointer;
}

#playlists>img {
    width: 4vw;
    left: 2vw;
}

#newPlaylist {
    width: 6vw;
    height: 6vw;
    background-color: #212121;
    position: fixed;
    left: 17vw;
    top: 17vw;
    border-radius: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;

    visibility: hidden;
}

#newPlaylist:hover {
    cursor: pointer;
}

#newPlaylist>img {
    width: 4vw;
    left: 2vw;
}

#deletePlaylist {
    width: 6vw;
    height: 6vw;
    background-color: #212121;
    position: fixed;
    right: 17vw;
    top: 10vw;
    border-radius: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 105;

    visibility: hidden;
}

#deletePlaylist:hover {
    cursor: pointer;
}

#deletePlaylist>img {
    width: 4vw;
    left: 2vw;
    transition-duration: 100ms;
    transition-property: scale;
}

#deletePlaylist>img:active {
    scale: 1.15;
}

#import {
    width: 6vw;
    height: 6vw;
    background-color: #212121;
    position: fixed;
    left: 17vw;
    top: 24vw;
    border-radius: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 105;

    visibility: hidden;
}

#import>input {
    position: fixed;
    width: 6vw;
    height: 6vw;
    opacity: 0%;
}

#import>input:hover {
    cursor: pointer;
}

#import>img {
    width: 4vw;
    left: 2vw;
    transition-duration: 100ms;
    transition-property: scale;
}


#export {
    width: 6vw;
    height: 6vw;
    background-color: #212121;
    position: fixed;
    right: 17vw;
    top: 17vw;
    border-radius: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;

    visibility: hidden;
}

#export:hover {
    cursor: pointer;
}

#export>img {
    width: 4vw;
    left: 2vw;
    transition-duration: 100ms;
    transition-property: scale;
}

#export>img:active {
    scale: 1.15;
}

#exitPlaylist {
    position: fixed;
    width: 4vw;
    top: 10vw;
    left: 20vw;
    z-index: 23;
    visibility: hidden;
}

#exitPlaylist:hover {
    cursor: pointer;
}

#Controls {
    width: 50vw;
    height: 7vw;
    transform: translate(-50%, 0);
    background-color: #282828;
    position: fixed;
    left: 50%;
    top: 0%;
    border-radius: 0vw 0vw 2vw 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    /* filter: drop-shadow(0vw 0vw 0.5vw black); */
    z-index: 100;
}


#extraControls {
    width: 13vw;
    height: 6vw;
    transform: translate(50%, 0);
    background-color: #282828;
    position: fixed;
    right: 87.5%;
    top: 0%;
    border-radius: 0vw 0vw 2vw 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#extraControls>img {
    width: 4vw;
    margin: 1vw;
    transition-duration: 100ms;
}

#extraControls>img:hover {
    cursor: pointer;
}

#extraControls>img:active {
    scale: 1.15;
}

#volumeControls {
    width: 7vw;
    height: 6vw;
    transform: translate(-50%, 0);
    background-color: #282828;
    position: fixed;
    left: 87.5%;
    top: 0%;
    border-radius: 0vw 0vw 2vw 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#volumeControls:hover {
    cursor: pointer;
}

#volumeSlider {
    border-radius: 2vw;
    position: fixed;
    width: 4vw;
    height: 19vw;
    /* top: 7vw; */
    top: -15vw;
    right: 10.5vw;
    background-color: #282828;
    /* visibility: hidden; */
    z-index: 10;
    transition: top 250ms, outline 75ms;
}

#actualVolumeSlider {
    position: fixed;
    right: 11.8vw;
    /* top: 9vw; */
    top: -13vw;
    height: 15vw;
    width: 1vw;
    accent-color: #4964ff;
    transition-duration: 250ms;
    transition-property: top;

    /* to make the slider vertical on other browsers than firefox */

    -webkit-appearance: slider-vertical;
    appearance: slider-vertical;
}

#actualVolumeSlider:hover {
    cursor: pointer;
}

#search {
    width: 6vw;
    height: 6vw;
    background-color: #212121;
    position: fixed;
    right: 17vw;
    top: 10vw;
    border-radius: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#search:hover {
    cursor: pointer;
}

#search>img {
    width: 4vw;
    left: 2vw;
}

#exitSearch {
    position: fixed;
    width: 4vw;
    left: -5vw;
    z-index: 23;
}

#exitSearch:hover {
    cursor: pointer;
}

#searchMenu {
    width: 48vw;
    height: 77vh;
    transform: translate(-50%, 0);
    background-color: #212121;
    border-radius: 2vw;
    position: fixed;
    left: 50%;
    top: 9vw;
    padding: 1vw;
    z-index: 17;
    visibility: hidden;
}

#searchBar {
    font-family: 'SUSE';
    font-size: 1vw;
    color: white;
    position: fixed;
    transform: translate(-50%, 0);
    top: 1vw;
    left: 50%;
    width: 45vw;
    height: 3vw;
    background-color: #171717;
    border: none;
    border-radius: 1vw;
    padding: 0vw 1vw 0vw 1vw;
    outline: none;
}

#searchAlbums {
    background-color: rgba(255, 255, 255, 0);
    margin-top: 4vw;
    width: 48vw;
    height: 69.5vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: start;
    overflow: scroll;
}

#play {
    position: fixed;
    width: 4vw;
    left: 2vw;
}

#play:hover {
    cursor: pointer;
}

#mode {
    position: fixed;
    width: 4vw;
    right: 2vw;
    transition-duration: 100ms;
}

#mode:hover {
    cursor: pointer;
}

#mode:active {
    scale: 1.15;
}

#volumeBtn {
    width: 4vw;
    left: 2vw;
}


#audioTime {
    position: fixed;
    width: 25vw;
    height: 1vw;
    transform: translate(-50%, 0);
    left: 50%;
    top: 5vw;
    accent-color: #4964ff;
}

#audioTime:hover {
    cursor: pointer;
}

#totalTime {
    position: fixed;
    font-size: 1vw;
    top: 4vw;
    right: 8vw;
}

#currentTime {
    position: fixed;
    top: 4vw;
    left: 8vw;
    font-size: 1vw;
}

.hover {
    transition: filter 100ms;
}


img.hover {
    transition: scale 200ms, filter 100ms, outline 75ms !important;
}

.hover:hover {
    cursor: url(assets/icons/edit.svg) 16 16, pointer;
    filter: brightness(70%);
}

img.hover:hover {
    scale: 1.05;
    filter: brightness(100%);
}


.outlineAppear {
    outline: 0vw solid;
    transition: outline 75ms;
}

.outlineAppear:hover {
    outline: 0.5vw solid;
    outline-color: #4964ff;
    animation: flashyOutline 0.8s infinite linear;
}

@keyframes flashyOutline {
    0% {
        outline-color: #4964ff;
    }

    50% {
        outline-color: rgb(0, 247, 255);
    }

    100% {
        outline-color: #4964ff;
    }
}

/* @keyframes flashyOutline {
    0% {
    outline-color: #4964ff;
    }
    50% {
    outline-color: #a2ffc1;
    }
    100% {
    outline-color: #4964ff;
    }
} */