﻿#playBtn {
    margin-left: 20px;
    margin-top: 8px;
    background-color: #c1272d;
    color: white;
}

#playBtn:focus {
    margin-left: 20px;
    margin-top: 8px;
    background-color: #c1272d;
    color: white;
    outline: 0;
}

#waveform {
    margin-top: -38px;
    margin-bottom: -50px;
}

#wave {
    display: none;
}

canvas {
    z-index: 0;
}

#audioBar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 11;
    height: 0;
    background-color: #fff;
    transition: 1s;
    box-shadow: 0 -2px 5px 0 rgba(0,0,0,.16), 0 -2px 10px 0 rgba(0,0,0,.12);
}

#mediaButtons {
    z-index: 100;
}

#currentTimeDiv {
    margin-top: 17px;
    float: right;
    padding-right: 10px;
}

#durationTime {
    margin-top: 17px;
    margin-left: 10px;
    padding: 0px;
}

#playlistBtn:focus {
    outline: 0;
}

#playlist-wrapper {
    z-index: 1000;
    transition: 0.2s cubic-bezier(0.5, 0.9, 0.1, 1.1);
    overflow-y: auto;
}

#playlistBar {
    transition: 0.2s cubic-bezier(0.5, 0.9, 0.1, 1.1);
}

#playlist-content {
    z-index: 3;
    margin-right: 10px;  
    margin-bottom: 40px;
}

#playlistBox ul {
    padding-top: 20px;
}

#playlistBox li {
    margin-left: -10px;
    list-style-type: none;
    font-size: 18px;
    overflow-x: hidden;
}

#playlistBox li:hover {
    cursor: pointer;
    color: #717171;
}

#playlist ul button {
    margin-right: 20px;
    margin-top: -5px;
    background: none;    
}

#playlist ul p {
    display: inline;
    float: right;
    margin-right: 20px;
}

#playlist ul a {
    color: inherit;
    text-decoration: none;
}

#playlist ul a:hover {
    color: #717171;
    text-decoration: none;
}

#playlist-wrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

#playlist-wrapper::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
    color: #26e9e9
}

#playlist-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #c1272d;
}

#playlist-wrapper::-webkit-scrollbar-thumb:hover {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #a0272c;
}

#playBtn2, #seekForwardBtn, #seekBackwardBtn:focus {
    outline: 0;
}

