.popup {
	display: none;
	width: 80%;
	max-width: 800px;
	max-height: 95%;
	box-sizing: border-box;
	overflow: hidden;
	
	position: fixed;
    background-color: #555555;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    border: 2px solid black;
    z-index: 99;
}

.popup .content {
	padding: 20px;
}

.popupScroll {
	max-height: none;
    left: 50%;
    transform: translateX(-50%);
    
    top: 50px;
    bottom: 50px;
}

.popupScroll .scroll {
	overflow-y: scroll;
	position: absolute;
	top: 60px;
	bottom: 0;
	left: 20px;
	right: 20px;
	padding: 20px 0;
}

.popup h2 {
	background-color: rgba(0, 0, 0, 0.5);
	padding: 0 60px 0 20px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	margin: 0;
	position: relative;
}

.popup h2 a.closeButton {
	display: block;
	
	position: absolute;
	right: 15px;
	
	height: 25px;
	width: 25px;
}

.popup h2 a.closeButton svg {
	width: 100%;
	height: 100%;
}