@CHARSET "ISO-8859-1";

#duplicateChoiceModal {
	position: fixed;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	overflow: auto;
	overflow-y: auto;
	overflow-Y: initial !important;
	background-color: var(--esiigeneralbackground);
	border: 1px solid var(--esii);
	font-size: small;
	font-family: var(--esiifont);
	color: var(--esiitext);
	max-width: 90%;
	width: 800px;
	padding: 1rem;
	box-sizing: border-box;
}

body.modal-open::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 999;
	pointer-events: none;
}

#duplicateChoiceModal a {
	color: var(--esii);
	text-decoration: underline;
}

#duplicateChoiceModal a:visited {
	color: color-mix(in srgb, var(--esii) 70%, black 30%);
}

#duplicateChoiceModalContent{
	height: 100%;
	border-radius: 0%;
	position: relative;
}

#duplicateChoiceModalFooter{
	background-color: var(--esiigeneralbackground);
	padding: 0px;
	bottom: 0px;
	width: 100%;
	border-radius: 0%;
}

#duplicateChoiceModalConfirm{
	cursor: pointer;
	font-family: var(--esiifont);
	font-size: small;
	color: var(--esiitext);
	padding: 0.66rem 1.5rem 0.66rem 1.5rem !important;
	float: right;
}

#duplicateChoiceModalCancel{
	cursor: pointer;
	font-family: var(--esiifont);
	font-size: small;
	color: var(--esiitext);
	padding: 0.66rem 1.5rem 0.66rem 1.5rem !important;
	float: left;
}