lite-vimeo {
    font-size: 10px;
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    border-radius: 20px;
}
lite-vimeo > iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
lite-vimeo > iframe .player {
  max-width: 100% !important;
}

/* play button */
lite-vimeo > .ltv-playbtn {
    width: 12em;
    height: 12em;
    background: rgba(23,35,34,.75);
    z-index: 1;
    opacity: 0.8;
    border-radius: 100%;
    transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
    outline: 0;
    border: 2px solid white;
    cursor: pointer;
}
lite-vimeo:hover > .ltv-playbtn {
    background-color: var(--black-bg-70);
    opacity: 1;
}
/* play button triangle */
lite-vimeo > .ltv-playbtn::before {
    content: '';
    background-image: url('../img/play-button.png');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 67px;
    height: 67px;
}
lite-vimeo > .ltv-playbtn,
lite-vimeo > .ltv-playbtn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-42%, -50%, 0);
}
@media only screen and (max-width: 769px) {
  lite-vimeo > .ltv-playbtn {
    width: 8em;
    height: 8em;
  }
  lite-vimeo > .ltv-playbtn::before {
    width: 40px;
    height: 40px;
  }
}
/* Post-click styles */
lite-vimeo.ltv-activated {
    cursor: unset;
}
lite-vimeo.ltv-activated::before,
lite-vimeo.ltv-activated > .ltv-playbtn {
    opacity: 0;
    pointer-events: none;
}
lite-vimeo .player {
  max-width: 100% !important;
}
