#box {
	width: 100%;
	height: 40px;
	position: absolute;
	z-index: 2;
	bottom: -40px;
	padding: 0 10px 0 0;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	background: rgba(0,0,0,0.5);
}
.play.playbig{
	width: 100px;
	height: 100px;
	position: absolute;
	top: -240px;
	left: 50%;
	margin-left: -50px;
	border-top: 0;
	border-left: 0;
	border-bottom: 0;
	background: url(../../img/video_paly.png) no-repeat center center;
	background-size: 85px;
}


@media screen and (max-width: 768px) {
	.play.playbig{
		top: -40vw;	
	}
}


.time {
	color: #fff;
	width: 3em;
	font-size: 14px;
	margin-left: 10px;
}

#progress {
	flex: 1;
	height: 2px;
	background: #fff;
	border-radius: 5px;
	margin-left: 16px;
	position: relative;
}

#bar {
	background: #ccc;
	height: 2px;
	border-radius: 3px;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

#control {
	width: 12px;
	height: 12px;
	margin-left: -10px;
	position: absolute;
	border-radius: 100%;
	left: 0;
	top: -5px;
	background: #fff;
}

.play,
.pause,
.soundon,
.soundoff,
#full{
	height: 20px;
	width: 20px;
	margin-left: 10px;
	background: url(play-circle-outline.png) no-repeat center center;
	background-size: 20px;
} 
.pause{
	background-image: url(pause-circle-outline.png);
}
.soundon {
	background-image: url(volume-up-outline.png);
}
.soundoff {
	background-image: url(volume-off-outline.png);
}
#full {
	display: none;
	background-image: url(external-link-outline.png);
}

#full:hover {
	-webkit-transform:scale(1.1); 
}

#volume {
	width: 15%;
	height: 5px;
	background: #fff;
	border-radius: 5px;
	margin-top: 16px;
	margin-left: 2px;
	position: relative;
}

#volume-bar {
	width: 10%;
	height: 100%;
	background: #fff;
	border-radius: 3px;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

#volume-control {
	width: 15px;
	height: 15px;
	position: absolute;
	border-radius: 100%;
	left: 0;
	top: -4px;
	background: #fff;
}



video::-webkit-media-controls-enclosure {
	overflow: hidden;
}

video::-webkit-media-controls-panel {
	width: calc(100% + 35px);
}