#PopUpBackGround {
  position:absolute;
  left:0;
  top:0;
  z-index:9000;
  background-color: rgba(0,0,0,0.5);
  display:none;
  width: 100vw;
  height: 100vh;
}  

/* 
#PopUpWrapper {
  width: 700px;
  max-width: 90vw;
  height:auto;
  border-radius: 15px;
  text-align: center;
  background: white;
  padding: 0px 12px 40px 12px;
  margin: 40px 10px 10px -5px;
  background-color: rgba(255,255,255,255) !important;
}
 */

#PopUpWrapper {

	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	
	width: 700px;
	max-width: 80vw;
	height:auto;
	border-radius: 15px;
	text-align: center;
	background: white;
	padding: 12px 12px 40px 12px;
	margin: 10px 0px 10px 0px !important;
	background-color: rgba(255,255,255,255) !important;
	box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
	border: 2px solid #cccccc;
}

#PopUpCloseWrapper {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	text-align: right;
}

#PopUpClose {
	cursor: pointer;
}

#PopUpIFrameWrapper h1 {

	font-size: 1.4em;
  	padding: 10px 0px 10px 0px;
  	margin: 0px 0px 0px 0px;
}
#PopUpIFrameWrapper h2 {

	font-size: 1.4em;
  	padding: 0px 0px 10px 0px;
  	margin: 0px 0px 0px 0px;
}
#PopUpIFrameWrapper h3 {

	font-size: 1.4em;
  	padding: 0px 0px 5px 0px;
  	margin: 0px 0px 0px 0px;
}
#VideoIframeWrapper {

  	padding: 0px 0px 0px 0px;
  	margin: -20px 0px 0px 0px;
}


#PopUpArrow {
  width: 70vw;
  max-width: 300px;
  height:auto;
  margin-top: 28px !important;
}

iframe {
	margin-top: 24px !important;
}

#PopUpCloseWrapper {
	display: inline-block;
	width: 100%;
	text-align: right;
	vertical-align: middle;
}
#PopUpCloseWrapper a {
	display: inline-block;
	vertical-align: middle;
	line-height: 0;
	cursor: pointer;
	padding: 2px
}

.circle {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid #0083be;
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.circle:hover {
	border: 2px solid red;
}

.cross {
	position: absolute;
	width: 80%;
	height: 2px;
	background-color: #0083be;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	cursor: pointer;
}

.cross:hover {
  background-color: red
}

.cross::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  top: 0;
  left: 0;
  transform: rotate(90deg); /* Rotate the pseudo-element to complete the X */
}
@media screen and (max-width: 480px) {

	#PopUpWrapper {
		padding: 5px 5px 30px 5px;
	}
}
