/**
* Web: https://noembed.com
* Edit by ThamLV Y2021M11D05
*/
.youtube-player {
    position: relative;
    padding-bottom: 56.25%; /* Use 75% for 4:3 videos */
    width: 100%;
    max-width: 100%;
    height: 0;
    background: #000;
    margin: 15px auto;
    overflow: hidden;
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
}

.youtube-lazy-player {
    position: relative;
    margin: auto;
    padding-bottom: 56.25%; /* Use 75% for 4:3 videos */
    height: 0;
    max-width: 100%;
    background: #000;
    overflow: hidden;
}

.youtube-lazy-player .youtube-lazy-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    cursor: pointer;
}

.youtube-lazy-player .youtube-lazy-image:hover {
    -webkit-filter: brightness(75%);
}

.youtube-lazy-player .youtube-lazy-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    margin: -36px auto auto -36px;
    background: url("themes/fnail03c/assets/images/play.png") no-repeat center center;
    background-size: 100%;
    opacity: 0.7;
    cursor: pointer;
}

.youtube-lazy-player:hover .youtube-lazy-play {
    background: url("themes/fnail03c/assets/images/play-hover.png") no-repeat center center;
    background-size: 100%;
    opacity: 1;
}

.youtube-lazy-player .youtube-lazy-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 7px;
    margin: auto;
    color: #fff;
    text-shadow: 1px 1px #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 13px;
}