/*
 # -----------------------------------------------------------------------------
 # ~/assets/theme/j1/modules/videojs/css/plugins/controls/css/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-2026 The Only Ducks
 # Copyright (C) 2023-2026 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-buttons {
    font-family: "VideoJS", sans-serif;
    font-weight: 400;
    font-style: normal;
    order: -1;  /* flex: place element always at FIRST position */
}

/* md-window */
.video-js .vjs-zoom-buttons .vjs-icon-placeholder:before {
    content: "\f128";
}

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

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

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

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

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