.popupOverlay{
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
}
.popup{
	box-shadow: 0 0 1vh 0 rgba(0, 0, 0, 0.4);
	padding: 3vh;
	width: calc(90% - 3vh);
	position: fixed;
	background-color: #fff;
	overflow: scroll;
}
.popup .buttons{
	margin-top: 10vh;
}
.popup .button{
	display: inline-block;
	float: right;
	margin-left: 2vh;
}
.popup .button.confirm{
	background-color: #608dac;
}
.popup .button.cancel{
	background-color: #ccc;
}