.popup {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
}
.popup-container {
	width: 600px;
    max-width: 96%;
	background-color: #fff;
	box-shadow: 0px 0px 14px -3px #000;
	position: relative;
	border-radius: 16px;
}
.popup-header,
.popup-footer {
	padding: 15px 30px;
}
.popup-content {
	padding: 5px 30px;
}
.popup-header h3 {
	color: #212121;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}
.popup-close {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 8px;
	right: 8px;
	background-image: url('/assets/images/icon-close-gray.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 14px auto;
	z-index: 4;
}
@media only screen and (max-width: 768px) {
	.popup-header,
	.popup-footer {
		padding: 15px;
	}
	.popup-content {
		padding: 0 15px;
	}
}