<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/*
Begin dsp_TimeoutModal.css (in case cfincluded into a page, which we would normally never do). 

Author:					Seaquist, Alpha Omega Integration, Inc, for the US Small Business Administration. 
Date:					10/04/2019. 
Description:			Encapsulates the timeout modal dialog CSS for Content Security Policy Level 2 compliance. 
Input:					None. 
Output:					CSS rules. 
Revision History:		05/20/2021, SMJ:	OPMSDEV-2586: Modified to support new cafs css variables while
						still maintaining compatibility with SLAF styles
						10/04/2019, SRS:	CAFSOPER-3093: Original implementation. 
*/

/* SMJ: Need to fallback to slaf values if new cafs varaibles are not defined*/
:root {
	/* '--to' prefix stands for time out */
	--slaf-card-bg: #fefefe;
	--to-bg: var(--clr-card-bg, var(--slaf-card-bg));

	--slaf-shadow: 1px 1px #666;;
	--to-shadow: var(--sba-shadow, var(--slaf-shadow));

	--slaf-text: #333;
	--to-text: var(--clr-text, var(--slaf-text));
}

/* Modal Background (prevents update of anything with lower z-index) */
.prompt
	{
	background-color:										rgb(0,0,0);			/* Fallback color is black */
	background-color:										rgba(0,0,0,0.4);	/* Prefer black w/opacity */
	display:												none;				/* Hidden by default */
	height:													100%;				/* Full height */
	left:													0px;
	overflow:												auto;				/* Enable scroll if needed */
	padding-top:											100px;				/* Location of the box */
	position:												fixed;				/* Stay in place */
	top:													0px;
	width:													100%;				/* Full width */
	z-index:												10;					/* Sit on top */
	}

/* Modal Content */
.prompt-content
	{
	background-color:										var(--to-bg);
	box-shadow:												var(--to-shadow);
	color:													var(--to-text);
	font-size:												15px;
	line-height:											1.25rem;
	margin:													auto;
	max-width:												80%;
	padding:												20px;
	text-align:												left;
	width:													320px;
	}

.prompt-content .footer
	{
	text-align:												center;
	}

/*
End dsp_TimeoutModal.css (in case cfincluded into a page, which we would normally never do). 
*/
</pre></body></html>