[data-trigger-fbv] {
    cursor: pointer;
}

.fbv-has-video {
    position: relative;
}

.fbv-wrapper {
    position: absolute;
    background-color: #000;
    width: 100%;
    opacity: 0;
    z-index: -5;
    height: 0;
    overflow: hidden;
}

.fbv-wrapper {
    max-height: -webkit-calc(100vh - 120px);
    max-height: calc(100vh - 120px);
}

.fbv-wrapper:after {
    content: '';
    display: block;
    padding-bottom: 56.25%;
}

.fbv-wrapper .fbv-video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.fbv-visible .fbv-wrapper {
    position: relative;
    height: auto;
    z-index: 5;
}

.fbv-visible .ui-content-box {
    position: absolute;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}