.player {
	background: #2a2a2a;
	box-sizing: border-box;
	border-radius: 0 0 12px 12px;
	min-height: 76px;
	-moz-box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: Arial, sans-serif;
	position: relative;
	padding: 0 16px;
	bottom: auto;
	z-index: 2;
	opacity: 1;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	-webkit-transition: opacity 0.3s ease-in;
	transition: opacity 0.3s ease-in;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.video {
	position: relative;
	margin: 0px auto;
}

.video:hover .player {
	opacity: 1;
}

.player .progress {
	width: auto;
	height: 14px;
	flex: 1 1 auto;
	min-width: 80px;
	border-radius: 5px;
	background: #676767;
	box-shadow: inset 0 -5px 10px rgba(0,0,0,0.1);
	cursor: pointer;
	margin: 0 8px 18px;
	padding: 0;
	position: relative;
	font-variant: normal;
}

.player .progress-bar {
	background: #33b5d5;
	box-shadow: inset -30px 0px 69px -20px #89f6f5;
	border-radius: 5px;
	height: 100%;
	position: relative;
	z-index: 999;
	width: 0;
}

.player .button-holder {
	position: relative;
	left: 10px;
}

.player .progress-button {
	background: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
	border-radius: 30px;
	width: 20px;
	height: 20px;
	position: absolute;
	left: -20px;
	text-decoration: overline;
}


.player [class^="buffered"] {
	background: rgba(255,255,255,0.1);
	position: absolute;
	top: 0;
	left: 30px;
	height: 100%;
	border-radius: 5px;
	z-index: 1;
}

.player .play-pause {
	display: grid;
	place-items: center;
	font-size: 3em;
	text-shadow: 0 0 0 #fff;
	color: rgba(255,255,255,0.8);
	width: 44px;
	flex: 0 0 44px;
	padding: 0;
	cursor: pointer;
	font-variant: small-caps;
}

.player .play, .player .pause-button {
	-webkit-transition: all 0.2s ease-out;
}

.player .play .pause-button, .player .pause .play-button {
	display: none;
}

.player .pause-button {
	padding: 5px 2px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	height: 34px;
}

.player .pause-button span {
	background: #fff;
	width: 8px;
	height: 24px;
	float: left;
	display: block;
}

.player .pause-button span:first-of-type {
	margin: 0 4px 0 0;
}




.player .record-stop {
	display: grid;
	place-items: center;
	width: 44px;
	flex: 0 0 44px;
	padding: 0;
	cursor: pointer;
	font-variant: small-caps;
}

.player .record, .player .stoprecord-button {
	-webkit-transition: all 0.2s ease-out;
}

.player .record .stoprecord-button, .player .recordstop .record-button {
	display: none;
}

.player .record-button {
	width: 34px;
	height: 34px;
	display: block;
	border-radius: 50%;
	background: #ff3b16;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.player .stoprecord-button {
	width: 34px;
	height: 34px;
	padding: 0;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: #ff3b16;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.player .stoprecord-button span {
	background: #fff;
	width: 14px;
	height: 14px;
	display: block;
	border-radius: 2px;
}

.player .stoprecord-button span:first-of-type {
	margin: 0;
}

.player .stoprecord-button span:last-of-type {
	display: none;
}




.player .time {
	color: #fff;
	font-weight: bold;
	font-size: 0.95em;
	position: absolute;
	right: 0;
	left: 0;
	top: 22px;
	text-align: center;
}

.player .stime, .ttime {
	color: #444;
}
.player .play:hover {
	text-shadow: 0 0 5px #fff;
}

.player .play:active, .pause-button:active span {
	text-shadow: 0 0 7px #fff;
}


.player .pause-button:hover span {
	box-shadow: 0 0 5px #fff;
} .player .pause-button:active span {
	box-shadow: 0 0 7px #fff;
}


.player .volume {
	position: relative;
	width: 44px;
	flex: 0 0 44px;
	margin: 0;
	height: 52px;
}

.player .volume-icon {
	padding: 1.5%;
	height: 100%;
	cursor: pointer;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-transition: all 0.15s linear;
}

.player .volume-icon-hover {
	background-color: #4f4f4f;
}

.player .volume-holder {
	height: 100px;
	width: 100%;
	background: black;
	position: absolute;
	display: none;
	background: #4f4f4f;
	left: 0;
	border-radius: 5px 5px 0 0;
	top: -100px;
}

.player .volume-bar-holder {
	background: #333;
	width: 20px;
	box-shadow: inset 0px 0px 5px rgba(0,0,0,0.3);
	margin: 15px auto;
	height: 80px;
	border-radius: 5px;
	position: relative;
	cursor: pointer;
}

.player .volume-button {
	background: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
	border-radius: 30px;
	width: 20px;
	height: 20px;
}

.player .volume-button-holder {
	position: relative;
	top: -10px;	
}

.player .volume-bar {
	background: #33b5d5;
	box-shadow: inset -30px 0px 69px -20px #89f6f5;
	border-radius: 5px;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
}

.player .fullscreen {
	width: 44px;
	flex: 0 0 44px;
	cursor: pointer;
	height: 52px;
}

.player .fullscreen a {
	width: 24px;
	height: 20px;
	border-radius: 0;
	background:
		linear-gradient(#fff, #fff) left top / 8px 2px no-repeat,
		linear-gradient(#fff, #fff) left top / 2px 8px no-repeat,
		linear-gradient(#fff, #fff) right top / 8px 2px no-repeat,
		linear-gradient(#fff, #fff) right top / 2px 8px no-repeat,
		linear-gradient(#fff, #fff) left bottom / 8px 2px no-repeat,
		linear-gradient(#fff, #fff) left bottom / 2px 8px no-repeat,
		linear-gradient(#fff, #fff) right bottom / 8px 2px no-repeat,
		linear-gradient(#fff, #fff) right bottom / 2px 8px no-repeat;
	display: block;
	position: relative;
	top: 16px;
	margin: 0px auto;
}

@media (max-width: 600px) {
	.player {
		min-height: 68px;
		gap: 6px;
		padding: 0 8px;
	}

	.player .record-stop,
	.player .play-pause {
		width: 36px;
		flex-basis: 36px;
	}

	.player .play-pause {
		font-size: 2.35em;
	}

	.player .progress {
		margin-inline: 2px;
		min-width: 54px;
	}

	.player .volume,
	.player .fullscreen {
		width: 34px;
		flex-basis: 34px;
	}
}

.player .volume-icon span {
	width: 20%;
	height: 13%;
	background-color: #fff;
	display: block;
	position: relative;
	z-index: 1;
	font-weight: bold;
	top: 40%;
	color: #fff;
	left: 22%;
}

.player .volume-icon span:before,
.player .volume-icon span:after {
	content: '';
	position: absolute;
}
.player .volume-icon span:before {
	width: 0;
	height: 0;
	border: 1em solid transparent;
	border-left: none;
	border-right-color: #fff;
	z-index: 2;
	top: -2px;
	left: 10%;
	margin-top: -40%;
}
.player .volume-icon span:after {
	width: 2%;
	height: 2%;
	border: 1px solid #fff;
	left: 190%;
	border-width: 0px 0px 0 0; 
	top: 5px;
	border-radius: 0 50px 0 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	 transform: rotate(45deg);
	 font-variant: small-caps;
 }

.player .v-change-11 span:after { border-width: 10px 10px 0 0; top: 0; }
.player .v-change-10 span:after { border-width: 9px 9px 0 0; top: 1px; }
.player .v-change-9 span:after { border-width: 8px 8px 0 0; top: 1px; }
.player .v-change-8 span:after { border-width: 7px 7px 0 0; top: 2px; }
.player .v-change-7 span:after { border-width: 6px 6px 0 0; top: 2px; }
.player .v-change-6 span:after { border-width: 5px 5px 0 0; top: 3px; }
.player .v-change-5 span:after { border-width: 4px 4px 0 0; top: 3px; }
.player .v-change-4 span:after { border-width: 3px 3px 0 0; top: 4px; }
.player .v-change-3 span:after { border-width: 2px 2px 0 0; top: 4px; }
.player .v-change-2 span:after { border-width: 1px 1px 0 0; top: 5px; }
.player .v-change-1 span:after { border-width: 0px 0px 0 0; top: 5px; }

.player .v-change-1 span:after {
	content: '+';
	-webkit-transform: rotate(45deg);
	font-size: 20px;
	top: -6px;
	left: 25px;
}

/* Clean speaker icon. This replaces the original border-based volume glyph. */
.player .volume-icon {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
}

.player .volume-icon span {
	position: absolute;
	top: 16px;
	left: 5px;
	width: 23px;
	height: 20px;
	display: block;
	border: 0;
	border-radius: 0;
	background: #fff;
	-webkit-clip-path: polygon(0 34%, 34% 34%, 78% 0, 78% 100%, 34% 66%, 0 66%);
	clip-path: polygon(0 34%, 34% 34%, 78% 0, 78% 100%, 34% 66%, 0 66%);
	transform: none;
}

.player .volume-icon span::before {
	display: none;
}

.player .volume-icon span::after {
	display: none;
}

.player .volume-icon::after {
	content: "";
	position: absolute;
	top: 17px;
	left: 24px;
	width: 10px;
	height: 18px;
	border: 0;
	border-right: 3px solid #fff;
	border-radius: 50%;
}

.player .volume-icon.v-change-1 span::after {
	display: none;
}

.player .volume-icon.v-change-1::after {
	content: "\00D7";
	top: 13px;
	left: 27px;
	width: auto;
	height: auto;
	border: 0;
	background: transparent;
	color: #ff6b75;
	font: bold 22px/1 Arial, sans-serif;
	transform: none;
}
