/*
 * @package     Joomla.Plugin
 * @subpackage  Content.ytvideo
 * @copyright   Copyright (C) Aleksey A. Morozov. All rights reserved.
 * @license     GNU General Public License version 3 or later; see http://www.gnu.org/licenses/gpl-3.0.txt
 */

.ytvideo {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.ytvideo-4-3 {
    padding-bottom: 75%;
}

.ytvideo-5-3 {
    padding-bottom: 60%;
}

.ytvideo-16-9 {
    padding-bottom: 56.25%;
}

.ytvideo-167-9 {
    padding-bottom: 53.89%;
}

.ytvideo-18-9 {
    padding-bottom: 50%;
}

.ytvideo-199-9 {
    padding-bottom: 45.22%;
}

.ytvideo-235-1 {
    padding-bottom: 42.45%;
}

.ytvideo-255-1 {
    padding-bottom: 39.21%;
}

.ytvideo-27-1 {
    padding-bottom: 37.04%;
}

.ytvideo-cover,
.ytvideo-cover:before,
.ytvideo iframe,
.ytvideo object,
.ytvideo embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.ytvideo-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.ytvideo-cover:before {
    content: '';
    transition: .3s all;
}

.ytvideo-cover:hover:before {
    background-color:rgba(0,0,0,.1);
}

.ytvideo-cover svg {
    pointer-events: none;
    max-width: 15%;
}

.ytvideo-cover #ytvideo_icon {
    fill: #212121;
    transition: .3s all;
}

.ytvideo-cover:hover #ytvideo_icon {
    fill: #f00;
}

.ytvideo-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px 20px;
    font-size: 1.2rem;
    line-height: 1.8;
    background-color: rgba(0,0,0,.2);
    color: #fff;
    text-shadow: 0 0 2px #222;
    text-align: center;
    z-index: 1;
}
