#image img{
    margin-top: 10;
    width: calc(100%);
    border: 1px solid #ec00b9;
}

#image img:hover{
    border-color: white;
    cursor: pointer;
}

#leftcontent{
    width: 225px;
    margin-right: 10;
}

#songTitle{
    text-align: justify;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 16px;
    width: fit-content;
    max-width: 225px;
    background-color: #008fec;
    color: black;
    padding: 5 7;
}

.voltimecontainer {
    display: flex;
    margin-bottom: 10;
}

.volumecontainer {
    display: flex;
    align-items: center;
    width: 100%;
}

#vol-seek-bar{
    width: 100%;
    height: 9px;
    display: flex;
    cursor: pointer;
    border: 1px solid #ec00b9;
    margin: 0 10;
}
#vol-fill{
    height: 7px;
    background-color:#008fec;
}

#buttons{
    width: 100%;
}

#timedata {
    display: flex;
    align-items: center;
    width: fit-content;
    font-family: monospace;
    font-weight: bold;
    color: #008fec;
    font-size: 16px;
    margin-left: auto;
}

#timedata div{
    width: fit-content;
}

#totaltime {
    margin-left: 6px;
}

#currenttime {
    margin-right: 6;
}

#controls {
    display: block;
    text-align: center;
}

#play,#next,#pre{
    width: 30%;
    height: 50px;
    border: 1px solid #ec00b9;
    background-color: inherit;
    outline: none;
    cursor: pointer;
}

#play:hover,#next:hover,#pre:hover{
    filter: grayscale(1) brightness(1000);
}

#play {
    margin: 10 0 10 0;
}

#pre {
    margin: 10 10 10 0;
    float: left;
}

#next {
    margin: 10 0 10 10;
    float: right;
}

#seek-bar{
    width: 100%;
    height: 9px;
    display: flex;
    cursor: pointer;
    border: 1px solid #ec00b9;
    margin-bottom: 10px;
}
#fill{
    height: 7px;
    background-color:#008fec;
}
#handle{
    width: 15px;
    height: 15px;
    margin-left: -5px;
    background-image: url(img/seekhandle.png);
    transform: translateY(-4px);
}
#handle:hover{
    filter: grayscale(1) brightness(100);
}

#tracklist {
    margin-top: 10;
    width: 200px;
    padding-bottom: 20;
}

#tracklist div {
    display: flex;
    margin-bottom: 10;
}

#tracklist button{
    height: 25px;
    width: 25px;
    text-align: center;
    vertical-align: center;
    border: 1px solid #ec00b9;
    background-color: inherit;
    color: #ec00b9;
    font-weight: bold;
}

#tracklist button:hover{
    color: white;
    border-color: white;
    cursor: pointer;
}

#tracklist p{
    text-indent: 0;
    font-family: sans-serif;
    height: 100%;
    vertical-align: center;
    padding: 4 8 0 10;
    color: #008fec;
}


#tracklist a{
    text-indent: 0;
    font-family: sans-serif;
    height: 100%;
    width: 175px;
    vertical-align: center;
    padding: 4 0 0 0;
    color: #ec00b9;
}

#tracklist a:hover{
    color: white;
}

#tracklist h1{
    text-indent: 0;
    font-family: sans-serif;
    font-size: 16px;
    height: 100%;
    width: 175px;
    vertical-align: center;
    padding: 4 0 0 0;
    color: #ec00b9;
    margin: 0;
    font-weight: normal;
}

#playertracklist {
    width: 100%;
    display: flex;
}

.zipdownload{
    display: flex;
    justify-content: center;
    padding-top: 11;
    padding-bottom: 10;
}

.zipdownload a{
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: black;
    background-color: #ec00b9;
    padding: 5 7;
}

.zipdownload a:hover{
    background-color: white;
}

.infobox p{
    border: 1px solid #008fec;
    padding: 5 7;
    margin-bottom: -1;
}