.timedPopup-overlay {
	position:fixed;
	top:0;
	left:0;
	height:100%;
	width:100%;
/* 	display:flex; */
  display:none;
	justify-content:center;
	align-items:center;
	z-index:999;
	visibility:hidden;
	transition:visibility 0s linear 0.3s,background 0.3s ease;
}
.timedPopup-overlay.active{
	visibility:visible;
	background:rgba(0,0,0,0.4);
	transition:visibility 0s linear 0s,background 0.3s ease;
}
.timed-Popup-background {
	position:fixed;
	top:0;
	left:0;
	height:50%;
	width:50%;
	display:flex;
	justify-content:center;
	align-items:center;
	z-index:1000;
	visibility:hidden;
}
.timedPopup {
	position:relative;
	width:calc(100% - 40px);;
	max-width:360px;
	background:#fff;
	box-sizing: border-box;
	max-height: calc(100vh - 40px);
	transition: all 0.3ms ease;
	overflow-y: auto;
}
.timedPopup-overlay.active .timedPopup{
	overflow: auto;
}
.timedPopup__close{
	position: absolute;
	top:20px;
	right:20px;
	color: black;
	height:35px;
	cursor: pointer;
}
.timedPopup__top {
	width:100%;
	padding-bottom:calc(9/20 * 100%);
	background:no-repeat 50% 50%/cover;
}
.timedPopup__top--video {
	padding-bottom:0;
}
.timedPopup__video {
	width:100%;
}
.timedPopup__text {
	padding:25px;
	text-align:center;
}
.timedPopup__title {
	font-family: 'New Century Schoolbook LT';
	font-size: 25px;
    margin-bottom: 0.6em;
    display: block;
}
.timedPopup a.timedPopup__button {
	color:#FFF;
	background:#000;
	padding:10px 20px;
	text-decoration:none;
	border:1px solid #000;
	transition:all 0.3s ease;
}
.timedPopup a.timedPopup__button:hover {
	color:#000;
	background:#fff;
}