/*
 * Plugin Name: StickyVideo
 * Version: 1.0.0
 * Author: Dario Omar Badra
 * Author URI: https://dariobadra.com
 * Copyright (c) 2025 Dario Omar Badra. All Rights Reserved.
 */
 .video-contenedor-con-marco {
    position: relative;
    background-color: #1A1A1A; 
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.5); 
    margin: 40px auto;
    max-width: 900px;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    transform: translateZ(0);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.sticky-video-active {
    position: fixed !important;
    top: 20px;
    right: 20px;
    width: 320px !important;
    height: 180px !important;
    z-index: 9999;
    padding: 8px !important;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.7);
    transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
    .sticky-video-active {
        width: 240px !important;
        height: 135px !important;
        top: auto;
        bottom: 15px;
        right: 15px;
    }
}