/* PAGE HADER */
.calc-header{
	background-color: #454545;
    background: url('https://www.eiu.edu/myeiu/images/headers/MyEIUHomeHeader2.jpg');
    background-size: cover;
    background-position: center top;
    min-height: 400px;
    max-height: 500px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
	justify-content: center;
	border-bottom:3px solid #1c326b;
}

.calc-header h1{
	color: white;
    margin-top: 30px;
    font-family: "futura-pt-bold",sans-serif;
    opacity: .95;
    letter-spacing: -2px;
    font-size: 5.9375rem;
}

@media(max-width:768px){
	.calc-header{
		min-height:250px;
		max-height:350px;
	}
	.calc-header h1{
		font-size:3.4375rem;
	}
}

/* MAIN CONTAINER */
section#calc{
	font-size:16px;
	font-family:'museo-sans', sans-serif;
	margin:60px auto;
}

/* clearfix */
section#calc:after{
	content:'';
	display:table;
	clear:both;
}

@media(max-width:768px){
	section#calc{
		margin:0 auto;
		padding:0;
	}
}

/* SIDE NAV */
section#calc nav{
	width:20%;
	float:left;
}

section#calc nav  ul{
	margin:0;
	padding:0;
	list-style:none;
	border:1px solid #e5e5e5;
}

section#calc nav ul li{
	display:block;
	padding:12px 20px;
	border-bottom:1px solid #e5e5e5;
	font-size:16px;
	line-height:20px;
	position:relative;
	transition:0.1s;
	cursor:pointer;
	color:#7f7f7f;
}

section#calc nav ul li img.arrow{
	position:absolute;
	top:50%;
	right:20px;
	transform:translateY(-50%);
	height:18px;
	width:auto;
}

section#calc nav ul li:last-child{
	border-bottom:none;
}

section#calc nav ul li.active{
	background:#f1f1f1;
	color:#053685;
}

section#calc nav ul li.active:hover{
	color:#053685;
}

section#calc nav ul li:hover{
	background:#f1f1f1;
	transition:0.1s;
	color:#000;
}

section#calc nav ul li span{
	font-weight:700;
	display:inline-block;
	margin-right:16px;
	font-size:20px;
	line-height:20px;
	position:relative;
	top:2px;
}

section#calc nav a#reset_calc_btn{
	display:inline-block;
	margin-top:16px;
	color:#7f7f7f;
	text-decoration:none;
	padding:12px 20px;
	border:1px solid #e5e5e5;
	font-size:16px;
	line-height:16px;
}

section#calc nav a#reset_calc_btn:hover{
	background:#f1f1f1;
	color:#000;
}

section#calc nav a#reset_calc_btn span{
	display:inline-block;
	margin-right:16px;
	font-size:16px;
	line-height:16px;
	position:relative;
	top:0px;
}

@media(max-width:768px){
	section#calc nav{
		width:100%;
		float:none;
	}
}

/* MAIN CALC BOX */
section#calc section.box{
	width:calc(80% - 20px);
	float:right;
}

section#calc section.box header#calc_top{
	background:#053685;
	color:#fff;
	padding:12px 20px;
	font-size:20px;
	font-weight:700;
	text-align:left;
}

section#calc section.box div.calc_cont{
	border-left:1px solid #e8e8e8;
	border-right:1px solid #e8e8e8;
	border-bottom:1px solid #e8e8e8;
}

section#calc section.box div.calc_cont div.in-wrap{
	padding:24px;
}

section#calc section.box div.calc_cont div.calc_divider{
	height:2px;
	background:#e1e1e1;
	margin:32px 0;
}

section#calc section.box div.calc_cont button.calc_btn_blue{
	appearance:none;
	-webkit-appearance:none;
	outline:2px solid transparent;
	border:none;
	background:#053685;
	padding:10px 16px;
	color:#fff;
	transition:0.1s;
}

section#calc section.box div.calc_cont button.calc_btn_blue:hover{
	background:#1d4a91;
	transition:0.1s;
}

section#calc section.box div.calc_cont button.calc_btn_blue:focus{
	outline:2px dashed black;
}

section#calc section.box div.calc_cont button.calc_btn_blue img.check{
	margin-right:10px;
	height:20px;
	width:auto;
	position:relative;
	top:-2px;
}

@media(max-width:768px){
	section#calc section.box{
		width:100%;
		float:none;
	}
	section#calc section.box div.calc_cont{
		border-left:none;
		border-right:none;
		border-bottom:none;
	}
}

/* INPUTS */
section#calc section.box div.calc_cont div.in-group{
	margin-bottom:24px;
}

section#calc section.box div.calc_cont div.in-group label{
	display:block;
	margin-bottom:10px;
	font-weight:700;
	font-size:1.1em;
}

section#calc section.box div.calc_cont div.in-group label small{
	display:block;
	font-size:0.8em;
	color:#666;
	font-weight:normal;
}

section#calc section.box div.calc_cont div.in-group input[type="text"],
section#calc section.box div.calc_cont div.in-group input[type="number"],
section#calc section.box div.calc_cont div.in-group select
{
	border:1px solid #ccc;
}

section#calc section.box div.calc_cont div.in-group input[type="text"]:focus,
section#calc section.box div.calc_cont div.in-group input[type="number"]:focus,
section#calc section.box div.calc_cont div.in-group select:focus
{
	border:1px solid #353535;
}

/* specific inputs */

/* select */
section#calc section.box div.calc_cont div.in-group div.sel_wrap{
	position:relative;
}

section#calc section.box div.calc_cont div.in-group div.sel_wrap select.in{
	width:100%;
	appearance:none;
	-webkit-appearance:none;
	background:#fff;
	border:1px solid #ccc;
	border-radius:0;
	padding:8px 12px;
}

section#calc section.box div.calc_cont div.in-group div.sel_wrap i.fa{
	font-size:24px;
	color:#a3a3a3;
	position:absolute;
	top:50%;
	right:12px;
	transform:translateY(-50%);
}

/* radio */
section#calc section.box div.calc_cont div.in-group div.radio_wrap{
	position:relative;
}

section#calc section.box div.calc_cont div.in-group div.radio_wrap div.radio_group{
	display:inline-block;
	margin-right:16px;
}

section#calc section.box div.calc_cont div.in-group div.radio_wrap div.radio_group label{
	display:inline-block;
	font-weight:normal;
	margin-left:4px;
	margin-bottom:0;
	cursor:pointer;
	font-size:0.9em;
	position:relative;
	top:1px;
}

/* text/number */
section#calc section.box div.calc_cont div.in-group input[type="text"],
section#calc section.box div.calc_cont div.in-group input[type="number"]
{
	width:100%;
	padding:8px 12px;
}

section#calc section.box div.calc_cont div.in-group div.split_input{
	display:flex;
	justify-content:space-between;
	position:relative;
}

section#calc section.box div.calc_cont div#scholarships div.in-group div.split_input{
	margin-bottom:16px;
}

section#calc section.box div.calc_cont div#scholarships div.in-group div.split_input input{
	width:calc(50% - 24px) !important;
}

section#calc section.box div.calc_cont div.in-group div.split_input input{
	width:calc(50% - 16px) !important;
}

section#calc section.box div.calc_cont div#scholarships div.in-group div.split_input i.fa{
	line-height:42px;
	cursor:pointer;
}

section#calc section.box div.calc_cont div#scholarships div.in-group div.split_input i.fa:hover{
	color:#950500;
}

/* scholarship add button */
section#calc section.box div.calc_cont button.scholarship_btn{
	appearance:none;
	-webkit-appearance:none;
	outline:none;
	border:1px solid #ccc;
	color:#053685;
	padding:8px 12px;
	background:#fff;
	transition:0.1s;
}

section#calc section.box div.calc_cont button.scholarship_btn i.fa{
	color:#a7cd32;
	margin-right:8px;
	position:relative;
	top:1px;
}

section#calc section.box div.calc_cont button.scholarship_btn:hover{
	border:1px solid #053685;
	transition:0.1s;
}

/* STEP ONE */
section#calc section.box div.calc_cont#calc_one p{
	margin:0 0 24px 0;
	line-height:1.7;
}

/* RESULT BOX */
section#calc section.box div.calc_cont#calc_four div.result_box{
	background:#f8f8f8;
	padding:24px;
}

section#calc section.box div.calc_cont#calc_four div.result_box h2{
	font-size:1.5em;
	font-family:'museo-sans', sans-serif;
	font-weight:600;
	text-transform:none;
	text-align:left;
	margin:0 0 12px 0;
}

section#calc section.box div.calc_cont#calc_four div.result_box h2 small{
	display:block;
	font-size:0.7em;
	margin-top:4px;
}

section#calc section.box div.calc_cont#calc_four div.result_box h3{
	font-size:3em;
	font-weight:400;
	font-family:'museo-sans', sans-serif;
	margin:40px 0;
}

section#calc section.box div.calc_cont#calc_four div.result_box h3 span{
	font-weight:600;
	color:#053685;
}

/* breakdown */
section#calc section.box div.calc_cont#calc_four div.result_box div.breakdown{
	border-top:2px solid #e1e1e1;
	border-bottom:2px solid #e1e1e1;
	padding:12px 0;
	font-size:1.1em;
}

section#calc section.box div.calc_cont#calc_four div.result_box div.breakdown.minus{
	border-top:none;
	color:#053685;
}

section#calc section.box div.calc_cont#calc_four div.result_box div.breakdown ul{
	margin:0;
	padding:0 6px 0 24px;
	list-style:none;
}

section#calc section.box div.calc_cont#calc_four div.result_box div.breakdown ul li{
	position:relative;
	display:flex;
	justify-content:space-between;
	column-gap:15px;
}

section#calc section.box div.calc_cont#calc_four div.result_box div.breakdown.plus ul li:before{
	content:"+";
	display:inline-block;
	position:absolute;
	top:-1px;
	left:-20px;
}

section#calc section.box div.calc_cont#calc_four div.result_box div.breakdown.minus ul li:before{
	content:"\2212";
	display:inline-block;
	position:absolute;
	top:-1px;
	left:-18px;
}

section#calc section.box div.calc_cont#calc_four div.result_box div.breakdown.plus ul li:first-child:before{
	content:'';
}

/* total line */
section#calc section.box div.calc_cont#calc_four div.result_box div.total{
	margin-top:12px;
	font-weight:600;
	font-size:1.1em;
	padding:0 6px;
	margin-bottom:20px;

	display:flex;
	justify-content:space-between;
	column-gap:15px;
}


/* disclaimers */
section#calc section.box div.calc_cont#calc_four div.result_box p.disclaimers{
	font-size:0.8em;
}

section#calc section.box div.calc_cont#calc_four div.result_box p.disclaimers small{
	margin-right:8px;
}

/* bottom button */
section#calc section.box div.calc_cont#calc_four button.bottom_btn{
	appearance:none;
	-webkit-appearance:none;
	outline:none;
	display:block;
	width:100%;
	background:#053685;
	color:#fff;
	padding:12px 24px;
	font-size:1.15em;
	transition:0.1s;
	border:none;
}

section#calc section.box div.calc_cont#calc_four button.bottom_btn i.fa{
	margin-left:10px;
}

section#calc section.box div.calc_cont#calc_four button.bottom_btn:hover{
	background:#1d4a91;
	transition:0.1s;
}

section#calc section.box div.calc_cont#calc_four div#share_link{
	position:relative;
}

section#calc section.box div.calc_cont#calc_four div#share_link input{
	text-align:center;
	font-size:1.2em;
	width:100%;
	border:none;
	padding:20px 10px;
	border:1px solid #053685;
	border-top-width:0;
	outline:none;
	z-index:1;
	position:relative;
}

section#calc section.box div.calc_cont#calc_four div#share_link input:focus{
	outline:none;
}

section#calc section.box div.calc_cont#calc_four div#share_link i.fa{
	position:absolute;
	right:20px;
	top:50%;
	transform:translateY(-50%);
	z-index:10;
	font-size:1.2em;
	cursor:pointer;
}