lite-youtube {
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    cursor: pointer;
}

lite-youtube::after {
    content: "";
    display: block;
    padding-bottom: calc(100% / (16 / 9));
}

lite-youtube > iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

lite-youtube > .lty-playbtn {
    display: block;
    width: 68px;
    height: 60px;
    position: absolute;
    cursor: pointer;
    transform: translate3d(-50%, -50%, 0);
    top: 50%;
    left: 50%;
    z-index: 1;
    background: transparent url('../../images/anita/core/symbol_play.svg') no-repeat center;
    filter: grayscale(100%);
    transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
    border: none;
}

lite-youtube.has-label-play > .lty-playbtn {
    background-image: none;
    display: inline-block;
    position: absolute;
    width: auto;
    height: auto;
    filter: none;
    transform: translate(-50%, -50%);
}

lite-youtube:hover > .lty-playbtn,
lite-youtube .lty-playbtn:focus {
    filter: none;
}

/* Post-click styles */
lite-youtube.lyt-activated {
    cursor: unset;
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lty-playbtn {
    opacity: 0;
    pointer-events: none;
}

lite-youtube > .lty-playbtn .lyt-visually-hidden {
    display: none;
}

lite-youtube.has-label-play > .lty-playbtn .lyt-visually-hidden {
    background-color: #ef8087;
    color: #ffffff;
    border-radius: 9999px;
    padding: 8px 24px;
    border: 1px solid #ef8087;
    display: block;
}

lite-youtube.has-label-play > .lty-playbtn .lyt-visually-hidden:hover {
    background-color: white;
    color: #ef8087;
}
