/*
 # -----------------------------------------------------------------------------
 # ~/assets/theme/j1/modules/videojs/css/plugins/controls/zoom.css
 # Provides CSS Styles for the VideoJS (V8) plugin Zoom, Version 1.2.0
 # See: https://github.com/theonlyducks/videojs-zoom
 #
 # Product/Info:
 # https://github.com/theonlyducks/videojs-zoom/
 # https://jekyll.one
 #
 # Copyright (C) 2023, 2024 The Only Ducks
 # Copyright (C) 2023, 2024 Juergen Adams
 #
 # J1 Template is licensed under the MIT License.
 # See: https://github.com/jekyll-one-org/j1-template/blob/main/LICENSE
 # Videojs Zoom is licensed under the MIT License.
 # See: https://github.com/theonlyducks/videojs-zoom/blob/main/LICENSE
 # -----------------------------------------------------------------------------
*/

@font-face {
	font-family: "Material Icons";
	font-style: normal;
	font-weight: 400;
	font-display: block;
	src: url("../../../assets/icons/material-icons.woff2") format("woff2"),
	url("../../../assets/icons/material-icons.woff") format("woff");
}

.video-js .vjs-zoom-icons {
	font-family: "Material Icons";
	font-weight: normal;
	font-style: normal;
	font-size: 22px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-feature-settings: "liga";
}

.video-js .vjs-zoom-duck {
	font-family: "VideoJS";
	cursor: pointer;
	font-weight: 400;
	font-style: normal;
}

.video-js .vjs-zoom-duck .vjs-icon-placeholder:before {
	content: "\f110";
}

.video-js .vjs-zoom-duck__container {
	right: 45px;
	bottom: 50px;
	padding: 10px;
	visibility: hidden;
	position: absolute;
	opacity: 0;
	background-color: rgba(43, 51, 63, .7);
	transition: visibility .2s, opacity .2s;
}

.video-js .vjs-zoom-duck__container.open {
	display: flex;
	opacity: 1;
	visibility: visible;
	flex-direction: column;
}

.video-js .vjs-zoom-duck__space {
	width: 22px;
	height: 22px;
	display: inline-block;
}

.video-js .vjs-zoom-duck__button {
	cursor: pointer;
	border: none;
	width: 22px;
	height: 22px;
	border-radius: 100%;
}

.video-js .vjs-zoom-duck__button:hover {
  padding-left: 0px;
  padding-top: 0px;
	color: rgba(43, 51, 63, .7);
	background-color: white;
}
