.embedv2,
.embedv2 .embed-placeholder,
.embedv2 .embedv2-player {
    box-sizing: border-box;
}

.embedv2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.embedv2 .embed-placeholder {
    position: relative;
    width: 100%;
    max-width: 780px;
    border-radius: 12px;
    overflow: hidden;
    /* background: #000; */
}

.embedv2 .embed-placeholder picture,
.embedv2 .embed-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.embedv2 .embedv2-player,
.embedv2 .video-player {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.embedv2 .embed-placeholder-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.embedv2 .embed-placeholder-play button {
    appearance: none;
    border: none;
    background: transparent;
}

.embedv2 .embed-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35); */
}
.embedv2 .embed-play-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.2);
}
.embedv2 .embed-play-btn .triangle {
    width: 0;
    height: 0;
    border-left: 16px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 6px;
}

.embedv2 .embed-placeholder img {
    display: block;
    width: 100%;
    height: auto;
}

.video-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
}
.video-close-btn:hover {
  background: rgba(0,0,0,0.9);
}


@media (max-width: 767px) {
    .embedv2 .embed-placeholder {
        max-width: 100%;
        border-radius: 8px;
    }
    .embedv2 .embed-play-btn {
        width: 56px;
        height: 56px;
    }
    .embedv2 .embed-play-btn .triangle {
        border-left-width: 12px;
        border-top-width: 8px;
        border-bottom-width: 8px;
    }
}

.embedv2.embed-is-loaded .embed-placeholder-play {
    display: none;
}
