@charset "UTF-8";

.DialogUtils_glasspane {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	background: rgba(0, 0, 0);
	opacity: 0;
	cursor: default;
	transition: opacity 300ms;
}

.DialogUtils_dialog {
	position: fixed;
	max-width: 80vw;
	max-height: 80vh;
	z-index: 10000;
	background: rgba(0,0,0,0);
	border: solid medium black;
	border-radius: 5px;
	cursor: default;
	font-family:Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
	font-size: 1.2rem;
	font-weight: 400;
	scrollbar-color: rgba(0, 0, 0, 0.2) rgba(255, 255, 255, 0);
	overflow-y: auto;
	transition: opacity 1s;
}

.DialogUtils_dialog table {
	padding: 2px;
}

#DialogUtils_icon_area {
	padding: 10px;
	background: rgba(255, 5, 150, 0.8);
}

#DialogUtils_text1 {
	padding: 10px;
	background: rgba(255, 255, 255, 0.8);
	font-weight: bold;
}

#DialogUtils_text2 {
	padding: 10px;
	background: rgba(255, 255, 255, 0.8);
}

#DialogUtils_button_area {
	padding: 10px;
	background: rgba(255, 255, 255, 0.8);
}

.DialogUtils_button {
	background-color: rgb(255, 138, 255, 0.4);
	color: black;
	padding: 5px;
	border: solid medium;
	border-color: #E54EFF;
	border-radius: 10px;
	transition: background-color 0.3s, border-color 0.3s;
	font-family:Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
	font-size: 1.1rem;
	font-weight: 400;
}

.DialogUtils_button:hover {
	background-color: rgba(229, 78, 255, 0.5);
}

.DialogUtils_button:active {
	border-color: white;
}
