/*
; @package    Content - Just a Youtube Plugin (FREE)
; @author     ADETA, info@adeta.lv
; @copyright  (C) 2025 dev.adeta.lv
; @license    GNU General Public License version 2 or later, see license.txt
; CSS file
*/

.justayoutube {
    position: relative;
    padding-bottom: 56.23%;
    /* Use 75% for 4:3 videos */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 5px;
}

.justayoutube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
}

.justayoutube img {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    transition: .4s all;
}

.justayoutube img:hover {
    filter: brightness(75%);
}

.justayoutube .play {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    background: url("../images/youtube-play-icon.svg") no-repeat center center;
    background-size: contain;
    cursor: pointer;
}