/*--------------------------------------------------------------
# youtube-list.css
--------------------------------------------------------------*/
#openYoutubePopup{
	height: 100%;
	width: 100%;
	max-width: 525px!important;
	object-fit:cover;
	background-color: rgba(0, 0, 0, 0);
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	border:0;
	padding:0;
}
#openYoutubePopup img{
	width: 525px;
	object-fit:cover;
}
#openYoutubePopup.thumb-hq{
  height: 79%;
}
.youtube-background>div{
	display: flex;
	align-items: center;
}
.youtube-thumb-button {
	background-size: cover;
	background-position: center;
	width: 100%;
	overflow: hidden;
}
#youtubePopup {
	display: none;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	justify-content: center;
	align-items: center;
}
#youtubePopup .popup-content {
	border-radius: 10px;
	width: 90%;
	max-width: 960px;
	position: relative;
}
#youtubePopup .popup-contents {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}
#youtubePopup iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 8px;
}
#youtubePopup .close {
	position:absolute;
	top:0;
	right:20px;
	float: right;
	font-size: 25px;
	cursor: pointer;
	z-index:1000;
}
#youtubePopup .youtube-filter1{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40%;
	background: transparent;
	pointer-events: auto;
}
@media screen and (max-width:767px) {
	#openYoutubePopup {
		height: 45vw;
		width: 100%;
		max-width: 430px;
		margin:0 auto;
	}
	#youtubePopup .youtube-filter1{
		height: 40%;
	}
}
@media screen and (min-width:450px) {
#youtubePopup .youtube-filter2{
		position: absolute;
		bottom: 0;
		right: 0;
		width: 160px;
		height: 40px;
		background: transparent;
		pointer-events: auto;
	}
}