html {
  box-sizing: border-box;
  height: 100%;
 
 
}

body {
	padding: 0;
	margin: 0;
	background-color: #1A1A1A;
}

.container_player {
	width:780px;
	margin: 0 auto;
	position: relative;
	background-color: #505050;
	overflow: hidden;
}

.video_player {
	display: block;
  	width: 100%;
}

.menu {
	display: flex;
	background-color: rgba(0,0,0,0);
	flex-wrap: nowrap;
	background-color: #111;
	position: absolute;
	background: linear-gradient(to top, rgba(30,30,30,0.8), rgba(0,0,0,0));
	width: 100%;
	height: 45px;
	bottom: 0;
	right: 0;
	left: 0;
	transform: translateY(100%);
	transition:all .2s;
	z-index: 2147483647;
}

.container_player:hover .menu {
	transform: translateY(0);
}

.hide_menu { 
	transform: translateY(100%) !important; 
}

.btn {
	font-weight: bold;
	text-shadow: #fff 0 0 3px;
	background-color: transparent;
	border-style: none;
	border:0;
	outline:0;
	color: white;
	cursor: pointer;
	width: 40px;
	
}

#play_pause {
	margin-left: 5px;
}

.icon {
  width: 20px;
  height: 1.4em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

#position {
	-webkit-appearance: none ; 
	box-sizing: inherit;
	border-style: none;
	border:0;
	outline:0;
	background-color: transparent;
	height: auto;
	width: 100%;
	margin: 0 0 0 15px;
}

#volume {
	width: 60px;
	-webkit-appearance: none ;
	border-style: none;
	border:0;
	outline:0;
	background-color: transparent;
	margin: 0 0 0 5px;
}

#position::-webkit-slider-thumb, #volume::-webkit-slider-thumb { 
	-webkit-appearance: none;
	height: 13px;
	width: 13px;
	border-radius: 50%;
	background: #ffffff;
	cursor: pointer;
	margin-top: -3px; 
}

#position::-webkit-slider-runnable-track, #volume::-webkit-slider-runnable-track { 
	-webkit-appearance: none;
	width: 100%;
	height: 6px;
	background-color: rgba(255,255,255,0.3);
	border-radius: 5px;
	border: 0.2px solid #010101;
	border-style: none;
	cursor: pointer;
	outline: 0;
}

#volume::-webkit-slider-runnable-track {
	background-color: rgba(255,170,0,0.5);
}

.block_time {
	display: block;
	margin: 0 10px;
	white-space: nowrap;
	vertical-align: middle;
}

.time {
	display: inline-block;
	height: 1em;
	margin: 20% 0;
	font-family: sans-serif;
	font-size: 15px;
	color: rgba(255,255,255, 0.8);
	text-shadow: #fff 0 0 1px;
}

#full {
	margin-right: 5px;
}

.video_player::-webkit-media-controls { 
  display:none !important; 
 
}

.contact {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 30px;
	margin-bottom: 30px;
	display: block;
	width: 100%;
	text-align: center;
	
  }

.grey {
  width: 100%;
  background-color: #1A1A1A;
}

.logo {
    width: 400px;
    height: 100px;  
    background-image: url('img/logo_white.png');
    background-repeat: no-repeat; 
    background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}


