.player-custom-div {
		border-top: 1px solid #333;
        position: fixed;
        padding: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 200px;
        background-color:rgba(0, 0, 0, 0.95);
        font-size: 1.3em;
        z-index: 14;
        -webkit-animation: expand 1s;
}

.player-custom-hide {
	display: none;
}

.player-custom-show {
	display: block;
}

@-webkit-keyframes expand{
    0%{height:0px}
    100%{height:200px}
}