/**
 * Yoice Portfolio Video Access
 * Frontend styles
 */

.ypva-video-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px 0;
}

.ypva-video-item {
    position: relative;
    width: 100%;
}

.ypva-video-hidden {
    display: none;
}

.ypva-html5-video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    background: #000;
}

.ypva-oembed-video {
    position: relative;
    width: 100%;
}

.ypva-oembed-video iframe,
.ypva-oembed-video video,
.ypva-oembed-video embed,
.ypva-oembed-video object {
    width: 100%;
    max-width: 100%;
}

.ypva-video-choice {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.ypva-video-choice-label {
    font-size: 14px;
    font-weight: 600;
}

.ypva-video-choice-button {
    cursor: pointer;
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 6px 12px;
    background: transparent;
    font-size: 13px;
    line-height: 1.2;
}

.ypva-video-choice-button:hover,
.ypva-video-choice-button:focus {
    opacity: 0.75;
}

.ypva-video-choice-button.ypva-active {
    font-weight: 700;
}