#vpp_player{
    background-color: black;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index:99999;
}
button#play-icon {
    height: 70px;
    width: 70px;
    background-color: transparent;
    border: none;
    border-right: solid 1px #121212;
    float: left;
}
svg.vpp-player-icon {
    fill: #ffffff;
}
button#mute-icon {
    background-color: transparent;
    border: 0;
}
button#mute-icon svg{
    transform: scale(0.7);
}
div#demo {
   /* width: 300px;*/
    height: 70px;
    border-right: solid 1px #121212;
    float: left;
    color: #ffffff;
    max-width: 60%;
    display: flex;
    align-items: center;
}
div#demo h2 {
    font-size: .8em;
    margin-bottom: 5px;
}
div#demo h3 {
    font-size: .6em;
    margin-top: 0;
}
div#vpp_meta {
    float: left;
    padding: 0 10px;
}
div#vpp_image {
    float: right;
    height: 70px;
    width: 70px;
    font-size: 10px;
    text-align:center;
    color: #323232;
    display: flex;
    align-items: center;
    
}
div#vpp_image img{
    max-width:100%;
    transition: all ease 
}

input#volume-slider {
    width: 3px;
    height: 60px;
    writing-mode: bt-lr; /* IE */
    -webkit-appearance: slider-vertical; /* Chromium */
    margin: 3px 10px 0;
}

/* Sidebar Style */

div#vpp-player-sidebar {
    width: 100%;
    position: fixed;
    max-width: 100%;
    border-top: solid #78787891 1px;
    max-height: 200px;
    transition: all ease 2s;
}
div#vpp-player-sidebar.up{
    bottom: 70px;
}
div#vpp-player-sidebar.down{
    bottom: -200px;
}

div#vpp-player-sidebar figure img {
    max-height: 200px!important;
    width: auto;
}

div#vpp-player-sidebar .row {
    max-width: 1140px;
    margin: auto;
}

#vpp-toggle{
    position: fixed;
    z-index: 999;
    right: 1px;
    bottom: 70px;

    transition: all ease 2s;
}

#vpp-toggle.down{    transform: rotate(180deg);}
#vpp-toggle.up{    transform: rotate(0deg);}

#vpp-toggle svg {
    width: 30px;
}