body,
html {
    margin: 0;
    background-color: #000;
}

#pass {
    position: absolute;
    height: 120px;
    width: 100%;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    top: 0;
}
#send {
    margin-left: 15px;
}

#slider {
    background-image: url('img/img_20190101_155005.jpg');
    opacity: 1;
    transition: opacity 6s;
    width: 100%;
    position: absolute;
    background-position: center;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: contain;
}
#sliderBackground {
    background-image: url('img/img_20190101_155005.jpg');
    opacity: 1;
    transition: opacity 6s;
    width: 130%;
    position: absolute;
    background-position: center;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    top: -15%;  
    filter: blur(20px);
    right: -15%;
}

#slider.fadeOut {
    opacity:0;
}

.outer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.player-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    height: 120px;
    width: 100%;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

#thumbnail {
    position: absolute;
    object-fit: fill;
    height: 100%;
    width: 100%;
    top: -10%;
    transition: 1s;
    z-index: 3;
}

.box {
    position: absolute;
    height: 100px;
    width: 100%;
    z-index: 4;
}

.play-pause {
    position: absolute;
    width: 4%;
    text-align: center;
}

.fa-pause-circle {
    filter: invert(1);
    cursor: pointer;
    display: none;
}

#play,
#prev-track,
#next-track {
    filter: invert(1);
    cursor: pointer;
    width: 100%;
}

#prev-track,
#next-track {
   display: none;
}

.track-info {
    margin-bottom: 10px;
    padding-left: 4%;
}

#track-artist {
    color: #f94c57;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    font-size: 1.125rem;
    text-shadow: 0 0 15px white;
}

#track-title {
    color: white;
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    margin-left: 10px;
}

.next-prev {
    grid-area: three;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* border: 1px solid red; */
}

.progress-bar {
    /*grid-area: four;*/
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /* border: 1px solid red; */
}

#progressBar {
    appearance: none;
    height: 1px;
    background: #f94c57;
    width: 95%;
    outline: none;
    border-radius: 30px;
    margin-left: 4%;
    cursor: pointer;
}

#progressBar::-webkit-slider-thumb {
    appearance: none;
    height: 11px;
    width: 11px;
    outline: none;
    background: #f94c57;
    border-radius: 30px;
    cursor: pointer;
}

.track-time {

}

#currentTime {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    color: white;
    position: absolute;
    left: 4%;
    bottom: 18px;
}

#durationTime {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    color: #f94c57;
    text-shadow: 0 0 15px white;
    position: absolute;
    right: 1%;
    bottom: 18px;
}