﻿/*Customer will edit this to apply styles to ED wait time widget in order to fit into their own page.*/
body{
	font-size: 1em;
	font-family: Calibri, Helvetica, Arial, sans-serif;
}

div#edWaitTime {
	padding: 5px;
	margin: 3px;
}

h2#waitTimeTitle {
	font-size: 1.2em;
	color: #1B6DD1;
	font-family: Calibri, Helvetica, Arial, sans-serif;
}

ul#depTimes {
	padding: 4px 10px;
}

li.depAndTime {
	width: 200px;
	display: block;
	padding: 7px 0;
}

span.depDisplayName {
}

div.waitTimeSection {
}

span.waitTimeNumber {
	font-size: 1.4em;
	font-weight: bold;
	margin-left: 5px;
}

span.waitTimeUnit {
}

/* Time bracket can be used to set different text colors for different wait time. Brackets are time periods of 15 minutes, and longer than 120 minutes are all considered same bracket(8). */
div[data-timebracket='8'] {   /* 120+ minutes*/
	color: #EB0000; 
}
div[data-timebracket='7'] {   /* 106-120 minutes*/
	color: #CE4800;
}
div[data-timebracket='6'] {   /* 91-105 minutes*/
	color: #CE4800;
}
div[data-timebracket='5'] {   /* 76-90 minutes*/
	color: #CE4800;
}
div[data-timebracket='4'] {   /* 61-75 minutes*/
	color: #CE4800;
}
div[data-timebracket='3'] {   /* 46-60 minutes*/
	color: #986600;
}
div[data-timebracket='2'] {   /* 31-45 minutes*/
	color: #986600;
}
div[data-timebracket='1'] {   /* 16-30 minutes*/

}
div[data-timebracket='0'] {   /* 0-15 minutes*/
	color: #19831C;
}