/**
 * Стили для плагина "Ленивая загрузка"
 *
 * @version     1.006
 */

.lazyload{
    display: none;
}

body.js .lazyload{
    display: block;
}

.video{
    position: relative;
    background-color: #000;
}

.video.full_size{
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100% !important;
    padding-bottom: 56.25%;
}

.video__link{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video__media{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video__button{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: none;
    padding: 0;
    width: 68px;
    height: 48px;
    border: none;
    background-color: transparent;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.video__button-shape{
    fill: #212121;
    fill-opacity: 0.8;
}

.video__button-icon{
    fill: #FFF;
}

.video__button:focus{
    outline: none;
}

.video--enabled:hover .video__button-shape,
.video__button:hover .video__button-shape,
.video__button:focus .video__button-shape{
    fill: #F00;
    fill-opacity: 1;
}

.video_caption{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    text-align: center;
}

/* Enabled */
.video--enabled{
    cursor: pointer;
    border: none;
}

.video--enabled .video__button{
    display: block;
}
