#video_popup_container{
    display: none;
}
  
#video_popup_footer{
    z-index: 9999;
    position: fixed;
    bottom: 5%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 1.6rem;
}

#video_popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.873);
    z-index: 9998;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#video_popup_btn_close{
    background-color: #f2304a;
    color: #fff;
    padding: 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    cursor: pointer;
}

#video_popup_btn_close:hover{
    background-color: #b0172b;
}

.btnPlayVideo {
	padding: 5px 10px 5px 10px;
	float: right;
	border: 0;
	background-color: #ea4242;
	color: #fff;
	font-family: arial, sen-serif;
	font-size: 1.5rem !important;
}

@media screen and (max-width: 900px){
    .video_popup{
        height: 50%;
    }
}