#mb-audio {
    display: none;
}

#mb-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    
    display: grid;
    grid-template-columns: 200px 1fr;
    padding-right: 40px;
    
    background-color: #121212;
    height: 70px;
    color: #fff;
}

.mb-bar {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    height: 6px;
    margin-top: 30px;
    margin-bottom: 5px;
    background-color: #000;
}

.mb-bar-now {
    position: absolute;
    left: -100%;
    height: 100%;
    width: 100%;
    background-color: #64695a;
}

.mb-controls {
    margin: auto 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
}

.mb-controls img, .mb-controls span {
    cursor: pointer;
    width: 50px;
    height: 50px;
}

#mb-current-time {
    position: relative;
    left: 0;
    float: left;
    font-size: 0.87em;
}
#mb-duration {
    position: relative;
    right: 0;
    float: right;
    font-size: 0.87em;
}

@media (max-width: 1078px) {
    #mb-container {
        grid-template-columns: 250px 1fr;
        padding-right: 40px;
        padding-bottom: 20px;
        height: 100px;
    }
    
    .mb-bar {
        width: 100%;
        height: 12px;
        margin-top: 35px;
        margin-bottom: 5px;
    }

    .mb-controls {
        margin: auto 30px;
    }
    .mb-controls img, .mb-controls span {
        width: 70px;
        height: 70px;
    }    
}
