#myModal{
	width: 600px;
	height:330;
	background: #ffffff;
	color: #000000;
	font-size: .7em;
	text-align: center;
	box-sizing: border-box;
	border: 1px solid #333;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: none;
	z-index:1000;
}
#myModal .modal-top, #myModal .modal-bottom{
	width: 100%;
	position: relative;
}
#myModal .modal-top #closeBtn{
	position: absolute;
	top: 10px;
	right: 10px;
	background: transparent;
	border:0px;
	padding: 0px 8px;
	color: #333;
	cursor: pointer;
}

#myModal:hover .modal-top #closeBtn{
	padding-right: 7px;
	background: red;
	color: #fff;
}
#myModal .modal-bottom #startNowBtn{
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0,0,0,0.3);
	border:0px;
	padding: 0px 20px;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
	font-size: 17px;
	border-radius: 8px;
}

#myModal:hover .modal-bottom #startNowBtn{
	background: #FFE4C4;
	color: #fff;
}
#myModal .modal-content {
	text-align:left;
	padding-top: 40px;
	padding-left: 20px;
	padding-right: 20px;
}

#overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(128,128,128,0.5);
  backdrop-filter: blur(3px);
  z-index: 999;
}