/*

TABLE OF CONTENTS

    1. CUSTOM FONT FACES
    2. TYPOGRAPHY
    3. MAIN STRUCTURE
    4. BUTTONS
    5. LISTS
    6. FORMS
    7. OUTAGES
    8. MAIN TEMPLATE STYLES
    X. MISCELLANEOUS / TO ORGANIZE

*/

/***************************************************************************
    1. CUSTOM FONT FACES
*/
@font-face {
	font-family: 'BC Sans';
	src: url('../fonts/BCSans/BCSans-Regular.woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'BC Sans';
	src: url('../fonts/BCSans/BCSans-Bold.woff');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'BC Sans';
	src: url('../fonts/BCSans/BCSans-Italic.woff');
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: 'BC Sans';
	src: url('../fonts/BCSans/BCSans-BoldItalic.woff');
	font-weight: bold;
	font-style: italic;
}

/***************************************************************************
    2. TYPOGRAPHY
*/
body, p, h1, h2, h3, h4, h5, header, footer {
	font-family: 'BC Sans', 'Noto Sans', Verdana, Arial, sans-serif;
	font-weight: 400;
	font-size: 18px;
}

p {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 24px;
	color: #494949;
}

h1 {
	font-size: 1.3em;
	font-weight: 400;
	color: #494949;
}

h2 {
	font-size: 1.5em;
	line-height: 1.3em;
	font-weight: 900;
	margin-top: 0px;
	margin-bottom: 24px;
}

h3 {
	font-size: 1.15em;
	font-weight: 700;
	margin-top: 0px;
}

h4 {
	font-size: 1em;
	line-height: 1.4em;
	font-weight: 600;
	margin-bottom: 10px;
	margin-top: 0px;
}

a {
	text-decoration: underline;
	color: #1a5a96;
}

a:hover {
	color: blue;
}

a:focus {
	outline: 4px solid #3B99FC;
	outline-offset: 1px;
}

a.external::after {
	font-family: 'FontAwesome';
	content: " \f08e";
}

/***************************************************************************
    3. MAIN STRUCTURE
*/
body {
	display: flex;
	flex-direction: column;
	height: 100vh;
}

header {
	background-color: #036;
	border-bottom: 2px solid #fcba19;
	padding: 0px;
	display: flex;
	height: 65px;
	width: 100%;
}

header h1 {
	font-weight: normal;
	margin: 0px;
	color: #ffffff;
}

header .banner {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 10px 0 0;
	height: 65px;
}

header .banner img {
	height: 45px;
}

header a.external::after {
	content: "";
}

@media screen and (min-width: 900px) {
	header h1 {
		font-size: 1.8em;
	}
}

@media screen and (min-width: 600px) and (max-width: 899px) {
	header {
		display: block;
	}
	header h1 {
		font-size: calc(7px + 2.2vw);
	}
}

@media screen and (max-width: 599px) {
	header {
		display: block;
		height: auto;
	}
	header .banner {
		display: block;
		height: auto;
	}
	header .banner img {
		height: 35px;
		margin: 7px 0px;
	}
	header h1 {
		font-size: 1.3em;
	}
}

section.main-content {
	flex-grow: 1;
	margin-top: 20px;
}

@media screen and (min-width: 600px) {
	section.main-content {
		margin-top: 30px;
	}
}

footer {
	background-color: #036;
	border-top: 2px solid #fcba19;
	color: #fff;
	font-size: 0.8em;
}

footer .container {
	display: flex;
	justify-content: left;
	flex-direction: row;
	text-align: left;
	height: 46px;
}

footer #environmentDiv {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	flex-grow: 1;
}

footer .gov {
	padding: 2px;
}

footer .gov:first-child {
	margin-right: 5px;
}

footer ul {
	flex-grow: 1;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0;
	color: #fff;
	list-style: none;
	align-items: center;
	height: 100%;
	padding-left: 0px;
}

footer ul.legal {
	flex-direction: row-reverse;
}

footer ul li:first-child {
	padding-left: 0px;
}

footer ul li {
	padding: 0 9px;
	margin-bottom: 0;
	text-align: center;
}

footer ul li a {
	font-weight: normal; /* 400 */
	color: #fff;
	padding-left: 5px;
	padding-right: 5px;
	text-decoration: none;
}

footer a:hover {
	color: #fff;
	text-decoration: underline;
}

footer a:focus {
	color: #fff;
	outline: 4px solid #3B99FC;
	outline-offset: 1px;
}

footer a.external::after {
	content: "";
}

/* Once the links no longer fit across in one row */
@media screen and (max-width: 991px) {
	footer {
		height: auto;
	}
	footer .container {
		display: block;
		height: auto;
	}
	footer ul {
		display: block;
		text-align: left;
	}
	footer ul li:first-child {
		margin-top: 20px;
	}
	footer ul li {
		text-align: left;
		padding-left: 0px;
		padding-bottom: 10px;
	}
	footer hr {
		opacity: 10%;
	}
}

/***************************************************************************
    4. BUTTONS
*/
.btn-primary {
	background-color: #003366;
	border: none;
	border-radius: 4px;
	color: white;
	padding: 12px 32px;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	font-family: 'BC Sans', 'Noto Sans', Verdana, Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
}

.btn-primary:hover {
	text-decoration: underline;
	opacity: 0.80;
}

.btn-primary:focus {
	outline: 4px solid #3B99FC;
	outline-offset: 1px;
}

.btn-primary:active {
	opacity: 1;
}

.btn-default {
	background: none;
	border-radius: 4px;
	border: 2px solid #003366;
	padding: 10px 30px;
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	font-family: 'BC Sans', 'Noto Sans', Verdana, Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
	color: #003366;
}

.btn-default:hover {
	opacity: 0.80;
	text-decoration: underline;
	background-color: #003366;
	color: #FFFFFF;
}

.btn-default:active {
	opacity: 1;
}

@media ( max-width : 576px) {
	.btn-primary {
		width: 100%;
	}
	.btn-default {
		width: 100%;
	}
}

/***************************************************************************
    5. LISTS
*/
ul, ol {
	margin-left: 15px;
	padding-left: 15px;
}

ul>li, ol>li {
	margin-bottom: 10px;
}

ol.list-instruction, ul.list-instruction, ul.list-condensed {
	margin-left: 10px;
	padding-left: 10px; /* margin-top: 15px;  */
}

ol.list-instruction>li, ul.list-instruction>li {
	margin-bottom: 20px;
}

ul.list-condensed>li {
	margin-bottom: 7px;
}

/***************************************************************************
    6. FORMS
*/
input[type="radio"], input[type="checkbox"] {
	display: none;
}

input[type="radio"]:checked+label {
	background-image: url('../images/Icon_RadioSelected.png');
	background-size: 24px;
	background-repeat: no-repeat;
}

input[type="radio"]+label {
	background: url('../images/Icon_Radio.png') 0 0 no-repeat;
	padding-left: 32px;
	min-height: 31px;
	display: inline-block;
	padding-top: 2px;
	background-size: 24px;
	background-repeat: no-repeat;
}

input[type="checkbox"]:checked+label {
	background-image: url('../images/Icon_CheckboxSelected.png');
}

input[type="checkbox"]+label {
	background: url('../images/Icon_Checkbox.png') 0 0 no-repeat;
	padding-left: 32px;
	min-height: 31px;
	display: inline-block;
}

ul.radio {
	margin-top: 0px;
	list-style: none;
	margin-left: 0px;
	padding-left: 0px;
}

ul.radio>li {
	margin-bottom: 10px;
}

.input-error {
	background: transparent url('../images/attention.png') no-repeat left top;
	text-indent: 25px;
	color: #dc3c10;
	display: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) , only screen and (
		min--moz-device-pixel-ratio: 2) , only screen and (
		-o-min-device-pixel-ratio: 2/1) , only screen and (
		min-device-pixel-ratio: 2) , only screen and ( min-resolution: 192dpi)
		, only screen and ( min-resolution: 2dppx) {
	input[type="radio"]:checked+label {
		background-image: url('../images/Icon_RadioSelected@2x.png');
	}
	input[type="radio"]+label {
		background-image: url('../images/Icon_Radio@2x.png');
	}
}

/***************************************************************************
    7. OUTAGES
*/
.outageDiv {
	background-color: #f9f1c6;
	border-color: #faebcc;
	color: #6c4a00;
	margin-top: 20px;
	padding: 5px 15px;
	border: 1px solid transparent;
	border-radius: 4px;
}

.outageDiv a {
	color: #6c4a00;
}

.outageWarningImg {
	display: table-cell;
}

.outageWarningImg > h2 {
	margin: 0;
}

.outageMessage {
	display: table-cell;
	padding: 0px 10px;
	vertical-align: middle;
}

.outageDivTwo {
	font-size: 1.5em;
}

.noticeDiv {
	background-color: #d9eaf7;
	color: #313132;
	margin-top: 20px;
	padding: 5px 15px;
	border: 1px solid transparent;
	border-radius: 4px;
}
.noticeDiv a{
	color: #1a5a96;
}
/***************************************************************************
    8. MAIN TEMPLATE STYLES
*/
.section {
	padding: 0px;
	margin-bottom: 60px;
}

@media screen and (min-width: 767px) {
	.section {
		border: solid 1px #D7D8D8;
		padding: 25px;
		margin-bottom: 25px;
		border-radius: 5px 5px 0px 0px;
	}
}

.option-section {
	background-color: #DCE6EF;
	font-size: 21.6px;
	font-weight: 700;
	display: block;
	width: 100%;
	border-radius: 5px;
	text-decoration: none;
	padding: 15px;
}

.option-section i {
	padding-top: 5px;
	float: right;
}

.option-section-content {
	padding: 15px;
}

.section-condensed {
	border: solid 1px #D7D8D8;
	padding: 2px;
	margin-bottom: 25px;
	border-radius: 5px;
	margin-left: -15px;
	margin-right: -15px;
}

.section-extra {
	margin-top: 50px;
}

@media ( min-width : 576px) {
	.section-extra {
		margin-top: 0px;
	}
	.option-section {
		padding: 20px 24px;
	}
	.section-condensed {
		margin-left: 0px;
		margin-right: 0px;
	}
	.option-section-content {
		padding: 25px;
	}
}

/***************************************************************************
    X. MISCELLANEOUS / TO ORGANIZE
*/
.margin-bottom-50 {
	margin-bottom: 50px;
}

.margin-bottom-40 {
	margin-bottom: 40px;
}

.margin-bottom-25 {
	margin-bottom: 25px;
}

.margin-bottom-24 {
	margin-bottom: 24px;
}

.margin-bottom-3 {
	margin-bottom: 3px;
}

.margin-bottom-0 {
	margin-bottom: 0px;
}

.margin-bottom-10 {
	margin-bottom: 10px;
}

.margin-top-25 {
	margin-top: 25px;
}

.radio input[type="radio"] {
	display: none;
}

.radio input[type="radio"]:checked+span {
	background-image: url('../images/Icon_RadioSelected.png');
	background-size: 24px;
	background-repeat: no-repeat;
}

.radio input[type="radio"]+span {
	background: url('../images/Icon_Radio.png') 0 0 no-repeat;
	padding-left: 32px;
	min-height: 31px;
	display: inline-block;
	padding-top: 2px;
	background-size: 24px;
	background-repeat: no-repeat;
}

.radio label {
	padding-left: 0px;
}