.popupContainer{
	position: fixed;
	top: 120px;
	z-index: 100px;
	width: 95%;
	max-height: calc(100vh - 170px);
	margin-left: 2.5%;
	margin-right: 2.5%;
	background-color: #2d4b1e;
	overflow-y: scroll;
}

.popupTopBar{
	width: 95%;
	min-height: 50px;
	height: auto;
	background-color: #2d4b1e; 
	padding: 0;
	margin: 0;
	position: fixed;
	top: 120px;
	left: 2.5%;
}

.popupTopBar-col-container{
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
	background-color: #2d4b1e; 
}
	
.popupTopBar-col-1{
	display: table-cell;
	width: calc(95vw - 50px);
	height: auto;
	min-height: 50px;
	line-height: 50px;
	padding: 0;
	background-color: #2d4b1e;
	vertical-align: middle;
}

.popupTopBar-col-2{
	display: table-cell;
	width: 50px;
	height: 50px;
	background-color: #777;
	vertical-align: middle;
}

.closeButtonImage{
	padding: 5px;
	width: 40px;
	height: 40px;
	background-color: #777;
}

.popupBackgroundShade{
	position: fixed;
	top: 0;
	z-index: 99px;
	width: 100vw;
	height: 100vh;
	opacity: .7;
	background-color: #000;
}

.popupContents{
	width: 95%;
	padding-left: 2.5%;
	padding-right: 2.5%;
	background-color: #eee;
}

.popupFormCheckbox{
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 0;
}

.popupFormCheckbox:checked{
	background-color: #777;
}

@media screen and (min-width: 780px){
	.popupContainer{
		width: 741px;
		top: 150px;
		margin-left: calc(50vw - 370px);
		margin-right: calc(50vw - 370px);
	}
	
	.popupTopBar{
		width: 741px;
		top: 150px;
		left: calc(50vw - 370px);
		right: calc(50vw - 370px);
	}
	
	.popupTopBar-col-1{
		width: 691px;
	}
}