/*
 * Light YouTube Embeds by @labnol
 * Credit: https://www.labnol.org/
 * 2021-03-17 https://www.labnol.org/internet/light-youtube-embeds/27941/
 */
  
  .youtube-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: none;
    margin: 5px;
	top: -120px;
	min-width:200px;
  }

  .youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
  }
@media (max-width: 400px) {
	.youtube-player {
		top: -80px;
		left: 0%;
	}
}
@media (min-width: 756px) {
	.youtube-player {
		top: 56px;
		left: 0%;
	}
}
@media (min-width: 1154px) {
	.youtube-player {
		top: 56px;
	}
}
  .youtube-player img {
    object-fit: contain;
    display: block;
    left: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    transition: 0.4s all;
  }

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

  .youtube-player .play {
    height: 100px;
    width: 100px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    /*background: url('//i.imgur.com/TxzC70f.png') no-repeat;*/
	background: url('/wp-content/uploads/2026/01/videoplay.png') no-repeat;
    cursor: pointer;
  }	