#fullscreen_back_video {
	height: 100%;
	width: 100%;
	position: relative;
}

#video_back_first {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}

#play-area {
	top: 15%;
	left: 0;
	height: 75%;
	width: 100%;
	position: relative;
}

.flip-card-body {
	margin: 0;
	padding: 0;
	background-color: white;
	width: 100dvw;
	height: 100dvh;
	perspective: 1000px;
	background-color: white;
	/* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
/* .flip-card-body:hover .flip-card-inner { */
/*   transform: rotateY(180deg); */
/* } */

/* Position the front and back side */
.flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden;
}

@media only screen and (max-device-width: 1023px) {
	/* Style the front side (fallback if image is missing) */
	.flip-card-front {
		background-color: black;
		position: absolute;
		width: 100%;
		height: 100%;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		display: block;
	}
	#text_mute span {
		font-size: 15px;
	}
	#toogle_mute {
		padding: 10px;
	}
}

@media only screen and (min-device-width: 1023px) {
	.flip-card-front {
		background-color: black;
		position: absolute;
		aspect-ratio: 9/16;
		height: 80%;
		top: 10%;
		right: 0;
		left: 0;
		margin-right: auto;
		margin-left: auto;
		-webkit-backface-visibility: hidden; /* Safari */
		backface-visibility: hidden;
		display: block;
		border-radius: 25px;
		box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.6);
	}
	#video_back_first {
		border-radius: 25px;
	}
	#text_mute span {
		font-size: 10px;
	}
	#toogle_mute {
		padding: 5px;
	}
}

/* Style the back side */
.flip-card-back {
	background-color: white;
	transform: rotateY(180deg);
}

.fullscreen {
	/* Set the height to match that of the viewport. */
	height: 100dvh;
	/* Set the width to match that of the viewport. */
	width: 100dvw;
	/* Remove any browser-default margins. */
	margin: 0;
	background: tomato;
}

#custom-seekbar {
	position: absolute;
	cursor: pointer;
	height: 0.8%;
	background-color: rgba(0, 0, 0, 0.4);
	overflow: hidden;
	width: 90%;
	margin-left: 5%;
	border-radius: 10px;
	bottom: 5%;
}

#custom-seekbar span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: white;
}

#custom-seekbar span.hover:after {
	content: '•';
	display: block;
	position: absolute;
	background-color: #bfbfbf;
	height: 10px;
	top: 0;
	right: 0;
}

#control_top {
	position: absolute;
	top: 10px;
	width: 90%;
	height: 4%;
	margin: 5%;
	z-index: 10;
}

#flip_back_video {
	position: relative;
	float: right;
	aspect-ratio: 1;
	height: 100%;
	border-radius: 25px;
	transition: opacity .3s ease;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 5px;
}

#toogle_mute {
	position: relative;
	height: 100%;
	width: auto;
	float: left;
	box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.6);
	cursor: pointer;
	border-radius: 4px;
}

.background_grey {
	background-color: rgba(204, 204, 204, 1);
}
.background_black {
	background-color: rgba(0, 0, 0, 0.5);
}

#image_sound {
	display: block;
	position: relative;
	aspect-ratio: 1;
	height: 100%;
	display: block;
	float: left;
}

#icon_sound, #icon_mute {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	object-fit: contain;
}

#text_mute {
	padding-left: 8px;
	display: block;
	height: 100%;
	line-height: 100%;
	width: auto;
	float: left;
	color: black;
}

#text_mute span {
	height: 100%;
	display: flex;
	align-items: center;
}

#click_play_video {
	width: 15%;
	aspect-ratio: 1;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0.5;
}

.hideControl {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s 0.3s, opacity 0.3s linear;
}

.showControl {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.3s linear;
	z-index: 10;
}