
div.popup{
	position: fixed;
	background-color: rgba(255, 255, 255, 0.99);
	top: 50vh;
	left: 50vw;
	max-height:85vh;
	max-width:85vw;
	min-width: 450px;
	padding: 39px 0 0 0;
	font-size: 11pt;
	z-index: 666;
	box-shadow: 0px 0px 20px 3px #183d74C0;
	opacity: 0;
	transform: translate(-50%, -60%) scale(0.9);
	transition: transform 0.3s, opacity 0.3s;
}

div.popup .popup-inner{
	box-sizing: content-box;
	width: 100%;
	background-color: #FFFFFF;
	overflow: hidden;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

div.popup.active{
	transform: translate(-52%, -50%) scale(1);
	opacity: 1;
}

div.popup::before{
	content: " ";
	display: block;
	position: fixed;
	top: -50vh;
	left: -80vw;
	height: 260vh;
	width: 200vw;
	z-index: -19;
	background-color: #00000040;
	box-shadow: inset 0px 30px 80px 50px #1f283580;
	backdrop-filter: blur(1px);
}

div.popup h2{
	position: fixed;
	width: 100%;
	background-color: #264675;
	color: #FFFFFF;
	margin: -39px 0 0 0;
	padding: 5px 16px;
	box-sizing: border-box;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.popup h2 input {
	float: right;
	border: 0px none;
}

.popup h2 input.clear {
	margin: -3px 0;
	background-color: rgb(217, 130, 106);
}

.popup h2 input.close {
	margin: 6px -5px -3px 8px;
	color: transparent;
	background-color: #FFFFFF;
	font-size: 1pt;
	height: 24px;
	width: 24px;
	--svg: url('../../../static/icons/x-symbol.svg');
}

.popup .video-embed {
	height: 75vh;
	width: 70vw;
}
.popup .video-embed iframe {
	margin: 6px 0 -7px 0;
}

.icon {
  display: inline-block;
  height: 32px;
  width: 32px;
  background: var(--bg-color);
  mask-image: var(--svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.mask {
  mask-image: var(--svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
