.popup{
	font-size: 16px;
	background: yellow;
	border: solid 1px black;
	border-radius: 10px;
	text-align: center;
	z-index: 9999;
	max-width: 600px;
	overflow: auto;
	padding: 40px;
	display:none;
	color: black;
}
.popup .title{
	font-weight: bold;
	font-size: 2em;
	line-height: 2em;
	position: relative;
	color: black;
	margin-top:0;
}
.popup .close{
	position: absolute;
	right: -20px;
	top: -20px;
	font-size: .5em;
	border: solid 1px #ccc;
	padding: 5px;
	line-height: .9em;
	background: #ccc;
	border-radius: 5px;
	cursor: pointer;
}
.popup p{
	font-weight: normal;
	font-size: 1.5em;
	line-height: 1.5em;
}
@media (max-width: 575.98px) {
	.popup{
		font-size: 9px;
		padding: 5px;
		width: 80vw;
	}
}

// Medium devices (tablets, less than 992px)
@media (max-width: 991.98px) {
	.popup{
		font-size: 9px;
		padding: 5px;
		width: 50vw;
	}
}

