.icons_btns_player{
	display: inline-block;
	width: 28px;
	height: 28px;
}

.icons_btns_player2{
	display: inline-block;
	width: 35px;
	height: 35px;
}

.player_securise{
	width: 100%;
	height: auto;
	border: 4px solid #fff;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
	position: relative;
	overflow: hidden;
}

.nappe_video{
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: 1;
}

.loader_video{
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
}

/*Bouton partager*/
.bouton_partage_video{
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: 4;
	background-color: rgba(236, 0, 172, .2);
	display: none;
}

.close_voil_partage{
	position: absolute;
	top: 20px;
	right: 27px;
	width: 35px;
	height: 35px;
	font-size: 20px;
	font-weight: bold;
	z-index: 4;
	color: #fff;
	cursor: pointer;
	background-color: transparent;
	border: 1px solid #ccc;
	border-radius: 1px;
	padding: 2.5px;
	outline: none;
	transition: .2s;
}

.close_voil_partage:hover{
	color: #ccc;
	border: 1px solid #999;
}

.contenair_btns_partage_video{
	position: absolute;
	top: 50%;
	right: 20px;
	background-color: rgba(255, 255, 255, .9);
	padding: 5px 5px;
	border-top-right-radius: 50px;
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
	border-bottom-left-radius: 50px;
	transform: translateY(-50%);
}

.bts_share_video{
	display: block;
	width: 35px;
	height: 35px;
	background-color: transparent;
	cursor: pointer;
	border: none;
	margin: 7px 0px ;
}

.bts_share_video img{
	display: block;
	width: 100%;
	border-radius: 50%;
	transition: .2s;
}

.bts_share_video:hover img{
	box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
}

.loader_img{
	display: block;
	width: 50px;
	height: 50px;
}

.contenair_video{
	width: 100%;
	height: auto;
}

.contenair_video video{
	display: block;
	width: 100%;
	z-index: 0;
}

.controles_player{
	width: 100%;
	position: absolute;
	right: 0px;
	bottom: -55px;
	background-color: rgba(0, 0, 0, .1);
	z-index: 2;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: .4s ease;
}

.player_securise:hover > .controles_player{
	bottom: 0px;
}

.controles_player button{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.ranger_timer{
	position: absolute;
	top: -5px;
	right: 0px;
	left: 0px;
}

.ranger_timer input{
	display: block;
	width: 100%;
}

.btns_player{
	background-color: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.btns_player button{
	margin-left: 15px;
	outline: none;
}

.timer_video{
	color: #fff;
}

.volume{
	display: block;
	width: 90px;
}

.progress_bar{
  -webkit-appearance: none;
  height: 10px;
  background-color: rgba(53, 142, 242, .7);
  outline: none;
  border: none;
  cursor: pointer;
}

.progress_bar::-webkit-slider-thumb{
  -webkit-appearance: none;
  /*-moz-appearance: none;*/
  height: 10px;
  width: 10px;
  background-color: #fff;
  border-radius: 0px;
  border: none;
  cursor: pointer;
}


.progress_bar::-moz-range-progress{
  background-color: #8c170c;
}

.volume{
  -webkit-appearance: none;
  height: 10px;
  width: 70px;
  background-color: rgba(53, 142, 242, .7);
  outline: none;
  border: none;
  margin: 0px 15px 0px 5px;
  border-radius: 50px;
}

.volume::-webkit-slider-thumb{
  -webkit-appearance: none;
  /*-moz-appearance: none;*/
  height: 15px;
  width: 15px;
  background-color: #fff;
  border-radius: 50px;
  border: none;
  cursor: pointer;
}

.volume::-moz-range-progress{
  background-color: #8c170c;
}


@media screen and (max-width: 790px){
	.player_securise{
		width: 95%;
	}
}