
.popWindow {
	position: absolute;
	top: 80px;
	z-index: 9;
	width: 800px;
	height: 400px;
	border-radius: 8px 8px 0 0;
	box-shadow: 8px 8px 6px -6px black;
	opacity: 0.9;
	display: none;
    justify-content: center;
}

.popWindowHeader {
	padding: 10px;
	z-index: 10;
	border-radius: 4px 4px 0 0;
	height: 40px;
	justify-content: space-between;
	display: flex;
	touch-action: none;
}

.popWindowHeader p{
	margin:0;
}
.popWindowHeader b {
	margin-top: 15px;
}

.windowActive {
	z-index: 100;
}

.windowTitle {
	position: relative;
	bottom: 14px;
}

.popWindowBody {
	padding: 20px;
    overflow:auto;
    height: calc(100% - 40px);
}

.popWindowCloseButton{
	cursor: pointer;
	position: relative;
	bottom: 9px;
	font-size: 24px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

.windowGroup p {
	cursor: default;
	margin-top: 0;
	margin-bottom: 1rem;
}
