.lite-vimeo {
    background-color: #000;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
  }

  .lite-vimeo-playbtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background-color: rgba(0, 173, 239, 0.9);
    border-radius: 10px;
    transition: background-color 0.2s;
  }

  .lite-vimeo-playbtn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
  }

  .lite-vimeo:hover .lite-vimeo-playbtn {
    background-color: rgba(0, 173, 239, 1);
  }
