.ut-lazy-vimeo-button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: #000000;
    cursor: pointer;
}

.ut-lazy-vimeo-button img {
    display: block;
    transition: filter 180ms ease, transform 180ms ease;
}

.ut-lazy-vimeo-button:hover img,
.ut-lazy-vimeo-button:focus-visible img {
    filter: brightness(0.9);
    transform: scale(1.015);
}

.ut-lazy-vimeo-button:focus-visible {
    outline: 4px solid #f7c948;
    outline-offset: 4px;
}

.ut-lazy-vimeo-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ut-lazy-vimeo-play::before {
    content: "";
    width: 84px;
    height: 84px;
    border: 3px solid rgba(255, 255, 255, 0.94);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.ut-lazy-vimeo-play::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-38%, -50%);
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
    border-left: 32px solid #ffffff;
}

@media (max-width: 480px) {
    .ut-lazy-vimeo-play::before {
        width: 72px;
        height: 72px;
    }

    .ut-lazy-vimeo-play::after {
        border-top-width: 18px;
        border-bottom-width: 18px;
        border-left-width: 28px;
    }
}
