
.video {
    width: 100%;
    height: 100%;
    position: relative;
}

.video .video-content {
    width: 100%;
    height: 100%;
}

.video .controls,
.video .play,
.video .pause {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.video .controls {
    border-radius: 10px;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.35);
    transition: all 200ms;
}

.video .play,
.video .pause {
    display: none;
    background: url("/static_v2/images/img/pause.png") center center/60px 60px no-repeat;
}

.video .play {
    background-image: url("/static_v2/images/img/play.png");
}