/*Overall font style*/
body {
	font-family: 'Oswald', sans-serif;
	font-family: 'Lato', sans-serif;	
}

/*Top Navigation Bar - font style*/
#header {
	font-family: 'Lato', sans-serif;
	border-bottom: 5px solid #8EDC9D;
	border-top: 5px solid #8EDC9D;
	margin-bottom: 2em;
}

/*Body - Opaque Flying Money Graphic after Top Navigation Bar*/
.navigation::after {
	content: "";
	background: url('../img/01-throwing-away-money.jpg');
	opacity: 0.2;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	z-index: -1;   
}

/*Top Navigation Bar - Reduce bottom margin and no round corners*/
.navbar-inverse {
	margin-bottom: 0px;
	border-radius: 0px;
}

/*Top Navigation Bar - WHO OWES WHO logo spacing*/
.navbar-brand {
  	padding: 24px 15px 0px 15px;
}

/*Top Navigation Bar - WHO OWES WHO logo spacing*/
.navigation .navbar-brand span {
	padding-left: 4px;
	padding-right: 4px;
}

/*Top Navigation Bar - WHO OWES WHO logo styling*/
#brand {
	font-family: 'Oswald', sans-serif;
	font-size: 18pt;
}

/*Top Navigation Bar - Shaded hover over links*/
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
	background-color: #080808;
}

/*Top Navigation Bar - "Settle your debts in fewer steps" subhead spacing and styling*/
#subheading {
	padding: 0px 0px 15px 62px;
	text-align: left;
	font-size: 11px;
	color: white;
}

/*Input Fields - Green borders, font style and spacing*/
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
	font-family: 'Lato', sans-serif;
    border: 3px solid #8EDC9D;
    border-radius: 4px;
}

/*Input Fields - Vertical spacing between input fields*/
.fields {
	padding-top: 9px;
	padding-bottom: 3px;
}

.fields:nth-child(odd) {
	background-color:#473E3F;
	border:1px solid #241d13;
	border-radius: 3px;
}

.form-inline .form-group {
	margin-bottom: 10px;
}

/*Input Fields - Horizontal spacing between input fields*/
.input-group {
	width: 100%;
	clear: both;
}

/*Input Fields - Vertical spacing at tablet screen size*/
.calc-results-wrap {
	clear: both;
}

@media (min-width: 768px) {
	.calc-results-wrap {
		clear: none;
	}
	.form-signin {
		width: 100%;
	}
}

/*Input Fields - Dollar logo styling*/
.input-group-addon {
    color: #473E3F;
    background-color: #8EDC9D;
    border: 1px solid #8EDC9D;
}

/*Well - Spacing and green styling*/
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #8EDC9D;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

/*Buttons - Remove button styling*/
.remove_Btn {
	background-color:#218C8D;
	border:1px solid #241d13;
	border-radius: 3px;
	width: 100%;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:15px;
	font-weight:bold;
	padding:9px 23px;
	text-decoration:none;
	text-shadow:0px -1px 0px #7a2a1d;
}

/*Buttons - Remove button hover styling*/
.remove_Btn:hover {
	background-color:#6CCECB;
}

/*Buttons - Remove button on-click styling*/
.remove_Btn:active {
	position:relative;
	top:1px;
}

/*Buttons - Remove button styling*/
.add_Btn {
	background-color:#218C8D;
	border:1px solid #241d13;
	border-radius: 3px;
	width: 100%;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:15px;
	font-weight:bold;
	padding:9px 5px;
	text-decoration:none;
	text-shadow:0px -1px 0px #7a2a1d;
}

/*Buttons - Add button hover styling*/
.add_Btn:hover {
	background-color:#6CCECB;
}

/*Buttons - Add button on-click styling*/
.add_Btn:active {
	position:relative;
	top:1px;
}

/*Buttons - Submit button styling*/
.submit_Btn {
	background-color:#473E3F;
	border:1px solid #241d13;
	border-radius: 3px;
	width: 100%;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:15px;
	font-weight:bold;
	padding:9px 23px;
	text-decoration:none;
	text-shadow:0px -1px 0px #7a2a1d;
}

/*Buttons - Add button hover styling*/
.submit_Btn:hover {
	background-color:#6CCECB;
}

/*Buttons - Submit button on-click styling*/
.submit_Btn:active {
	position:relative;
	top:1px;
}

#login-form {
	margin: 0px, 20%, 0px, 40%;
	/*width: 30%;*/
	/*align-items: center;*/
}