﻿/* @see [SP]/gruntfile.js  */
/* Nerdery Colors 
---------------------------------------*/
/* PSL colors */
/* search box colors */
/* footer colors */
/* Custom Select
---------------------------------------*/
/* Spacing */
/* Social Colors */
/* Checklist Colors */
/* mixins.less */
/* overwriting the floating of the bootstrap grid 
--------------------------------------------------- */
.container {
  position: relative;
}
@media (max-width: 767px) {
  .container {
    width: 100% !important;
  }
}
/*
.col-sm-4, .col-sm-6, .col-sm-12 {
	display: inline-block;
	float: none;
	vertical-align: top;
}
*/
/* on the landing page this is causing issues so re-add the float */
/*
.landing-page .col-sm-4, .landing-page .col-sm-6, .landing-page .col-sm-12 {
    float: left !important;
}

.col-sm-4 {
	width: 31%;
	@media (max-width:767px) {
		width: 100%;
	}
}

.col-sm-6 {
	width: 48%;
	@media (max-width:767px) {
		width: 100%;
	}
}

.col-sm-12 {
	width: 98%;
}
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  line-height: 1.2;
}
.tag {
  display: inline-block;
  padding: 0.2em 0.5em;
  font-size: 80%;
  background: rgba(255, 255, 255, 0.6);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.tag:hover {
  text-decoration: none;
}
.opener {
  font-size: 200%;
  font-weight: 300;
}
@media (max-width: 767px) {
  .opener {
    font-size: 140%;
  }
}
/* classes for image positioning */
.right {
  float: right;
  margin-left: 1em;
  max-width: 50% !important;
}
.left {
  float: left;
  margin-right: 1em;
  max-width: 50% !important;
}
.center {
  display: block;
  max-width: 100%;
  margin: 0 auto 0.5em;
}
.disclaimer {
  font-style: italic;
  color: #999;
}
.button {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  padding: 0.5em 1.5em;
  font-weight: 600;
  border: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}
.button:hover,
.button:active,
.button:focus {
  outline: none;
  text-decoration: none;
}
.button.blue {
  background: #005ca9;
  color: #fff;
}
.button.blue:hover,
.button.blue:active,
.button.blue:focus {
  background: #004076;
}
.button.clear {
  background: transparent;
  border: 2px solid #005ca9;
  color: #005ca9;
}
.button.clear:hover,
.button.clear:active,
.button.clear:focus {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #004076;
  color: #004076;
}
.button.orange {
  color: #005ca9;
  background: #fbbf11;
}
.button.orange:hover,
.button.orange:active,
.button.orange:focus {
  background: #fccc43;
  color: #004076;
}
.button.orange-clear {
  background: transparent;
  border: 2px solid #fbbf11;
  color: #fff;
}
.button.orange-clear:hover,
.button.orange-clear:active,
.button.orange-clear:focus {
  background: rgba(255, 255, 255, 0.1);
}
.button.light-blue {
  background: #b1d8e9;
  color: #005ca9;
}
.button.light-blue:hover,
.button.light-blue:active,
.button.light-blue:focus {
  background: #89c4de;
  color: #004076;
}
.button.blue-medium-light {
  color: white;
  background: #5faee3;
  border-bottom: 3px solid #1d6fa5;
  background-image: -webkit-linear-gradient(top, #5faee3, #3498db);
}
.button.green {
  background: #92ef72;
  color: #2e860f;
}
.button.green:hover,
.button.green:active,
.button.green:focus {
  background: #6fea44;
  color: #1e580a;
}
.button.red {
  background: #fa9d8d;
  color: #f6492b;
}
.button.red:hover,
.button.red:active,
.button.red:focus {
  background: #f8735c;
  color: #b32108;
}
.button.load {
  border: 3px solid #cfe3f3;
  color: #cfe3f3;
  background: transparent;
  width: 100%;
  display: block;
}
.button.promotional {
  vertical-align: top;
  font-size: 115%;
  font-weight: 900;
  margin-bottom: 0.5em;
}
.btn-success.btn-accent:not([disabled]) {
  background: #1bd41b;
}
.btn-success.btn-accent:not([disabled]):hover,
.btn-success.btn-accent:not([disabled]):focus,
.btn-success.btn-accent:not([disabled]):active {
  background: #52e952;
}
/* custom select styles */
span.select {
  display: inline-block;
  background-color: #fff;
  background-image: url("../images/select-arrow-sprite.jpg");
  background-repeat: no-repeat;
  border: 2px solid #000;
  padding: 0.25em 0.5em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  margin: 0 0.3em;
}
span.select select {
  background: transparent;
  width: 100%;
  font-size: 100%;
  line-height: 1.2;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  outline: none;
  padding: 0.3em;
}
/* newsletter form - this is the one that shows in the footer, NOT the modal version */
form.newsletter input.email {
  border: 0;
  background: #d6e8f4;
  padding: 0.5em 1em;
  margin-right: -5px;
  color: #005ca9;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -ms-border-radius: 3px 0 0 3px;
  -o-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
form.newsletter input.email:-webkit-input-placeholder {
  color: #005ca9;
}
form.newsletter .button {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -ms-border-radius: 0 3px 3px 0;
  -o-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
/* sitecore generated overrides 
----------------------------------- */
/* error messages */
.scfValidationSummary {
  border: 1px solid #f6492b;
  color: #f6492b;
  margin-bottom: 1em;
  padding: 1em;
}
.scfValidationSummary ul {
  list-style: none;
}
/* container */
.scfSingleLineTextBorder {
  margin-bottom: 1em;
}
/* label */
.scfSingleLineTextLabel,
.scfDropListLabel,
.scfMultipleLineTextLabel,
.scfEmailLabel {
  text-align: right;
  padding-right: 1em !important;
  font-family: "Lato", "Myriad Pro", "Open Sans", sans-serif;
}
/* text input */
.scfSingleLineGeneralPanel {
  padding: 0.5em;
  font-size: 100%;
}
/* dropdown */
/* textarea */
span.scfCheckbox {
  float: left;
  margin-left: 30%;
}
span.scfCheckbox input[type="checkbox"] {
  float: left;
}
span.scfCheckbox label {
  font-weight: 400;
  clear: none;
  display: inline-block;
  width: 80%;
  margin-left: 0.5em;
}
/* submit button */
.scfSubmitButtonBorder input {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  padding: 0.5em 1.5em;
  font-weight: 600;
  border: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  color: #fff;
  background: #005ca9;
  margin-left: 30%;
}
/* required "*" */
span.scfRequired,
span.scfValidatorRequired {
  color: #f6492b;
  float: left;
  padding-left: 0.5em;
}
:required::-webkit-input-placeholder:after,
.conditionally-required::-webkit-input-placeholder:after {
  content: ' *';
}
:required:-moz-placeholder:after,
.conditionally-required:-moz-placeholder:after {
  /* Firefox */
  content: ' *';
}
:required:-ms-input-placeholder:after,
.conditionally-required:-ms-input-placeholder:after {
  content: ' *';
}
.search-form {
  display: inline-block;
}
.search-form-fields {
  display: inline-block;
}
.search-form-fields .form-fields {
  display: inline-block;
  padding-bottom: 10px;
}
.search-form-fields .form-fields .form-control {
  /*width: 400px !important;*/
}
.search-form-fields .form-submit {
  display: inline-block;
}
/* Newsletter form in the footer */
.newsletter-form {
  text-align: right;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .newsletter-form {
    text-align: inherit;
  }
}
@media (max-width: 767px) {
  .newsletter-form {
    text-align: center;
  }
}
.newsletter-form .form-fields {
  display: inline-block;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .newsletter-form .form-fields {
    width: 54%;
  }
}
@media (max-width: 767px) {
  .newsletter-form .form-fields {
    display: block;
  }
}
.newsletter-form .form-fields .form-control {
  width: 240px;
  font-size: 18px;
  padding: 12px 16px 11px;
  height: auto;
  line-height: 1;
  vertical-align: top;
}
@media (max-width: 767px) {
  .newsletter-form .form-fields .form-control {
    width: 100%;
    margin-bottom: 5px;
  }
}
.newsletter-form .button.orange {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  font-size: 18px;
  font-weight: bolder;
  margin-left: -10px;
  height: 47px;
  color: #fff;
  vertical-align: top;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.newsletter-form .validation-summary-errors ul {
  list-style: none;
}
.newsletter-form .validation-summary-errors ul li {
  font-style: italic;
  padding-top: 5px;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  color: yellow;
}
.newsletter-form .terms {
  margin: 10px 0 30px 130px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .newsletter-form .terms {
    margin: 0;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .newsletter-form .terms {
    margin: 0 0 30px;
  }
}
.newsletter-form .terms label {
  font-weight: 400;
}
/* modal version of the newsletter form */
.newsletter-modal-form .form-fields {
  display: inline-block;
  padding-bottom: 10px;
}
.newsletter-modal-form .form-fields .form-control {
  width: 440px !important;
}
.newsletter-modal-form .form-submit {
  display: inline-block;
}
.newsletter-modal-form .terms {
  margin-right: 1em;
}
.newsletter-modal-form .terms label {
  font-weight: 400;
}
.validation-summary-errors ul,
.validation-summary-errors li {
  color: #f6492b;
}
/* Long Form edvisors.com/contact/unsubscribe */
.content.opt-out-form .banner {
  background-color: #1A4D7E;
}
.content.opt-out-form .no-banner {
  border: 1px solid #005ca9;
}
.content.opt-out-form .file-types input {
  width: auto;
  display: block;
  margin: 0 auto 1em;
}
.content.opt-out-form .collapse-left {
  padding-left: 0;
  margin-left: 17px;
}
.content.opt-out-form form {
  padding-bottom: 2em;
}
.content.opt-out-form form .form-control {
  font-size: 120%;
  height: 2.5em;
}
.content.opt-out-form form label {
  font-size: 100%;
}
.content.opt-out-form form .button {
  font-size: 120%;
}
.content.opt-out-form form .blue {
  border-bottom: 5px solid #004076;
}
.content.opt-out-form form .blue:hover,
.content.opt-out-form form .blue active,
.content.opt-out-form form .blue focus,
.content.opt-out-form form .blue visited {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}
.content.opt-out-form form .field-validation-error {
  display: none;
}
.content.opt-out-form form .form-group strong {
  font-size: 25px;
  color: #4C4848;
}
.content.opt-out-form form .form-group p {
  font-weight: lighter;
  color: #3C3535;
}
.content.opt-out-form form .text-center {
  margin: 50px 0 20px;
}
.content.opt-out-form .col-sm-12 {
  padding-left: 0;
}
.content.opt-out-form img {
  padding: 20px;
}
.utility .category-highlight h1 {
  font-size: 300%;
}
.dob-mm {
  padding-right: 1px;
}
.dob-mm .form-control {
  padding-right: 8px;
}
.dob-dd {
  padding-left: 7px;
  padding-right: 8px;
}
.dob-yyyy {
  padding-left: 0px;
}
.dob-yyyy .form-control {
  padding-left: 8px;
  padding-right: 2px;
}
.school-row {
  margin-bottom: 10px;
}
.student-info .help-block,
.additional-info .help-block,
.single-page .help-block {
  margin-top: 0px;
  margin-bottom: 20px;
}
.slc-widget {
  background: #e7f2fb;
  padding: 15px;
  border-radius: 4px;
}
.slc-widget .collapse-left {
  padding-left: 0 !important;
}
.slc-widget .widget-body {
  padding: 0;
}
.slc-widget .widget-body .section-title {
  font-weight: bolder;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 22px;
  color: #428bca;
}
.slc-widget .widget-body p {
  text-align: center;
  font-style: italic;
  font-size: 14px;
  color: #666;
}
.slc-widget .widget-body form {
  padding: 0 !important;
  background: transparent !important;
}
.slc-widget .widget-body form .error-messages p {
  text-align: left;
  color: red;
  font-style: italic;
  padding-left: 1em;
}
.slc-widget .widget-body form .defaulted {
  margin-bottom: 0;
}
.slc-widget .widget-body form .defaulted label {
  display: block;
}
.slc-widget .widget-body form .defaulted .radio {
  display: inline-block;
  width: 23%;
  margin-top: 0;
  margin-left: 0;
}
.slc-widget .widget-body form .defaulted .radio input[type="radio"] {
  margin-left: 0;
}
.slc-widget .widget-body form .agree label {
  font-size: 12px;
}
.slc-widget .widget-body form .agree label .checkbox {
  margin-top: 0;
}
.slc-widget .widget-body form .cta {
  text-align: center;
  margin-top: -10px;
}
.slc-widget .widget-body form .cta .button {
  font-size: 22px;
  border-bottom: 3px solid #936000;
  background: #ffb62e;
}
.slc-widget .widget-body form .typeahead.dropdown-menu {
  text-align: left;
  max-height: 240px;
  overflow-y: scroll;
  padding: 0;
}
.slc-widget .widget-body form .typeahead.dropdown-menu li a {
  font-size: 16px;
  white-space: normal;
}
/**
 * newer style forms based on the checklist styles
 */
.form .form-control {
  border: 2px solid #5dc2d4;
}
.form .has-error .form-control {
  border: 2px solid #f6492b;
}
.form small.help-block {
  margin-bottom: 0;
}
.form .add-school a {
  font-weight: bold;
  color: #fff;
  background: #5dc2d4;
  padding: 3px 8px 5px;
  text-decoration: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.form .add-school a:hover {
  text-decoration: none;
}
.form .remove-div a {
  color: #f6492b;
}
.form .submit {
  text-align: center;
}
.form .submit .button {
  display: inline-block;
  width: auto;
}
.form .submit .button.green {
  color: #fff;
  background: #1bd41b;
  font-size: 1.3rem;
  text-shadow: none;
  font-weight: 900;
}
.form .submit .button.green:hover,
.form .submit .button.green:focus,
.form .submit .button.green:active {
  background: #3ce63c;
}
@media (min-width: 768px) {
  .form .submit .button.green {
    font-size: 2rem;
  }
}
.header-links-wrapper {
  float: right;
  font-size: 0.8rem;
}
.header-links-wrapper a {
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0);
  padding: 0.1rem 0.25rem;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  text-decoration: none;
}
.header-links-wrapper a:hover,
.header-links-wrapper a:active {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.2);
}
.form-container.account-edit .header-links-wrapper a {
  color: #5dc2d4;
  margin-right: -0.25rem;
}
.form-container.account-edit .header-links-wrapper a:hover,
.form-container.account-edit .header-links-wrapper a:active {
  color: #fff;
  background: #5dc2d4;
}
div[data-fv-password-meter-bar="true"] {
  margin-top: 5px;
  height: 22px;
  margin-bottom: 10px;
}
.form-group.no-margin {
  margin-bottom: 0;
}
/**
    styles for edvisors.com/contact/unsubscribe/confirm form 
**/
.utility .category-highlight h1 {
  font-size: 300%;
  font-weight: 600;
}
.st_fblike_hcount,
.plusone-wrapper,
.st_twitter_hcount,
.st_email_hcount {
  display: inline-block !important;
  vertical-align: middle;
}
.plusone-wrapper {
  width: 60px;
  padding-top: 6px;
}
.st_twitter_hcount .st-twitter-counter {
  height: 22px !important;
}
.st_twitter_hcount .stButton_gradient {
  height: 22px !important;
}
.st_email_hcount .st-email-counter {
  height: 22px !important;
}
.st_email_hcount .stButton_gradient {
  height: 22px !important;
}
@media (min-width: 768px) {
  .share {
    position: fixed;
    left: 0;
    top: 291px;
    width: 52px;
    padding: 8px 8px 2px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    -ms-border-radius: 0 4px 4px 0;
    -o-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
    height: 154px;
  }
}
@media (max-width: 1024px) {
  .share {
    display: none;
  }
}
.share .label {
  display: block;
  color: #333;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
  padding-left: 0;
}
.share .totalShares {
  display: inline-block;
  float: right;
  font-size: 13px;
  color: #666;
}
.share .stButton .stFb,
.share .stButton .stTwbutton,
.share .stButton .stMainServices {
  min-height: 24px !important;
  height: 24px !important;
}
.share .stButton_gradient {
  height: 23px !important;
}
.share .rss {
  display: inline-block;
  width: 28px;
  height: 28px;
  vertical-align: top;
  margin-left: 3px;
}
.share .rss a {
  color: #fbbf11;
  display: block;
  margin-top: -3px;
  font-size: 28px;
  line-height: 1;
}
.share .print {
  display: inline-block;
  width: 28px;
  height: 28px;
  vertical-align: top;
  margin-left: 3px;
}
.share .print a {
  color: #333;
  display: block;
  margin-top: -3px;
  font-size: 28px;
  line-height: 1;
}
#st-2 {
  margin-left: 9px !important;
}
#st-2 .st-btn {
  height: 32px!important;
  width: 32px !important;
  margin-bottom: 5px !important;
  border-radius: 4px !important;
  padding: 4px !important;
}
#st-2 .st-toggle {
  display: none !important;
}
/* ask the edvisor bubble */
.ask-the-edvisor .share {
  float: none;
  margin-top: 0;
}
.ask-the-edvisor .share .label {
  color: #fff;
  margin-bottom: 5px;
}
.ask-the-edvisor .share .totalShares {
  color: #ddd;
}
/* category page version */
.category-page .share {
  margin-bottom: 0;
}
/* Sticky Sidebar Version 
---------------------------------------------*/
/*
.share {
	position: fixed;
	left: 0;
	top: 30%;
	width: 52px;
	padding: 8px 8px 2px;
	background: rgba(0,0,0,0.1);
	margin: 0;
	.round(4px 0 0 4px);
	@media (max-width:767px) {
		top: auto;
		bottom: -2px;
		right: -16px;
		width: 210px;
		padding: 4px 0 0 1px;
		.round(4px 0 0 0);
	}

	.totalShares {
		text-align: center;
		color: rgba(0,0,0,0.4);
		line-height: 1;
		@media (max-width:767px) {
			float: left;
			padding-top: 0.25em;
			margin-left: 0.25em;
			margin-right: 0.25em;
		}

		.count {
			font-weight: 700;
			display: block;
		}

		.text {
			font-weight: 400;
			display: block;
			font-size: 10px;
			margin-bottom: 0.5em;
		}
	}
		
}
*/
.continue {
  background: #7f8c8d url(/Content/images/blurred-college-background.jpg) center center no-repeat;
  background-size: cover;
}
.continue header {
  background: #2c3e50;
  border-bottom: 10px solid #005ca9;
  text-align: center;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.continue header nav {
  display: none;
}
.continue article {
  padding: 30px 0;
}
@media (max-width: 767px) {
  .continue article {
    padding: 0;
  }
}
.continue h1 {
  font-weight: 900;
  text-align: center;
  font-size: 24px;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .continue h1 {
    font-size: 48px;
  }
}
.continue .emailed-content {
  text-align: center;
}
.continue .emailed-content p {
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  text-align: center;
}
.continue h2 {
  font-weight: 900;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  color: #fff;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .continue h2 {
    font-size: 18px;
  }
}
.continue .disclaimer {
  margin-bottom: 1em;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  text-align: center;
  font-size: 120%;
}
.continue .disclaimer a {
  color: #ecf0f1;
}
.continue footer {
  background: #dfe4e4;
}
.continue .offer-header {
  padding: 0 30px 30px;
  display: none;
}
.continue .offer-wrapper {
  background: #fff;
  position: relative;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 0 30px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /*.mobile-icon {
            display: none;
        }*/
}
.continue .offer-wrapper .offer-image-wrapper {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding-top: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .continue .offer-wrapper .offer-image-wrapper {
    width: 20%;
    padding-top: 20px;
  }
}
@media (min-width: 992px) {
  .continue .offer-wrapper .offer-image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.continue .offer-wrapper .offer-image-wrapper img {
  max-height: 80px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .continue .offer-wrapper .offer-image-wrapper img {
    max-width: 100%;
  }
}
.continue .offer-wrapper .offer-text {
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  .continue .offer-wrapper .offer-text {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .continue .offer-wrapper .offer-text {
    width: 57%;
    margin-bottom: 0;
  }
}
.continue .offer-wrapper .offer-text p {
  font-size: 14px;
  margin-bottom: 0.25em;
}
@media (min-width: 768px) {
  .continue .offer-wrapper .offer-text p {
    font-size: 18px;
  }
}
.continue .offer-wrapper .offer-text ul {
  margin-bottom: 0;
  padding-top: 20px;
  font-size: 14px;
  /*@media (min-width:768px) {
					font-size: 16px;
				}*/
}
.continue .offer-wrapper .offer-button {
  display: inline-block;
  vertical-align: top;
  padding-top: 30px;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .continue .offer-wrapper .offer-button {
    width: 22%;
    text-align: right;
    padding-top: 50px;
    margin-left: 10px;
  }
}
@media (min-width: 992px) {
  .continue .offer-wrapper .offer-button {
    margin-left: 0;
    padding-top: 30px;
  }
}
.continue .offer-wrapper .offer-button .button {
  min-width: 176px;
  text-align: center;
  border: 0;
  font-weight: 900;
  padding: .5em 1em;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
  display: inline-block;
  border-radius: 8px;
  font-size: 130%;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .continue .offer-wrapper .offer-button .button {
    font-size: 16px;
  }
}
.continue .offer-wrapper.featured {
  border: 10px solid #ff9c00;
  background: #fff url("https://d36r1vmv00ls1r.cloudfront.net/content/psl/images/featured-lender-badge.gif") no-repeat 0 50%;
  min-height: 141px;
}
@media (max-width: 767px) {
  .continue .offer-wrapper.featured {
    background-image: none;
    border: 2px solid #ff9c00;
  }
}
.continue .offer-wrapper.secondary img,
.continue .offer-wrapper.default img {
  display: block;
  margin: 0 auto;
  padding: 20px 10px 10px;
}
.continue .offer-wrapper.secondary h3,
.continue .offer-wrapper.default h3 {
  font-weight: 700;
}
.continue .offer-wrapper.secondary p,
.continue .offer-wrapper.default p {
  font-size: 16px;
}
.continue .offer-wrapper.secondary ul,
.continue .offer-wrapper.default ul {
  font-size: 16px;
  margin-bottom: 0;
  padding: 10px;
}
.continue .offer-wrapper.secondary .offer-link,
.continue .offer-wrapper.default .offer-link {
  text-align: center;
  margin-bottom: 10px;
}
.continue .offer-wrapper.default {
  min-height: 340px;
}
/* --------------------------
   College Ave Offer 
--------------------------- */
.offer-wrapper.collegeave {
  padding-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .offer-wrapper.collegeave .offer-text {
    width: 50%;
    margin-bottom: 0;
  }
}
.offer-wrapper.collegeave .offer-button {
  padding-top: 27px;
}
/* ------------------------
   Custom pieces for CESI 
--------------------------*/
.cesi .offer-image-wrapper {
  padding-top: 0 !important;
}
.cesi .offer-image-wrapper img {
  width: 120px;
  height: auto;
}
.cesi-form {
  position: absolute;
  top: 30px;
  right: 5px;
  width: 500px;
}
.cesi-form .cesi-phone-field {
  width: 240px;
  margin-right: 50px;
  display: inline-block;
}
.cesi-form .cesi-phone-field .form-control {
  margin-bottom: 5px;
}
.cesi-form .cesi-phone-field label {
  font-size: 14px;
  font-weight: normal;
}
.cesi-form .cesi-offer-button {
  display: inline-block;
  width: auto;
  padding-top: 20px !important;
}
.cesi-disclaimer {
  font-size: 12px;
  margin: 0;
  text-align: center;
  color: #333;
}
/* -----------------------
   Offer Forms
------------------------*/
.offer-form small.help-block {
  font-size: 14px;
}
.offer-form .agree-field {
  text-align: center;
}
.offer-form .agree-field label {
  font-size: 12px;
  font-weight: normal;
}
/* -------------------------
   Citizens-Charter Form 
---------------------------*/
@media (min-width: 768px) {
  .continue .offer-wrapper.citizens .offer-image-wrapper,
  .continue .offer-wrapper.charterone .offer-image-wrapper {
    padding-top: 20px;
  }
}
.continue .offer-wrapper.citizens .offer-text,
.continue .offer-wrapper.charterone .offer-text {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .continue .offer-wrapper.citizens .offer-text,
  .continue .offer-wrapper.charterone .offer-text {
    margin-bottom: 16px;
  }
}
.continue .offer-wrapper.citizens .citizens-charter-form,
.continue .offer-wrapper.charterone .citizens-charter-form {
  width: 100%;
  margin: 20px 0 0;
}
@media (min-width: 992px) {
  .continue .offer-wrapper.citizens .citizens-charter-form,
  .continue .offer-wrapper.charterone .citizens-charter-form {
    width: 430px;
    margin-left: 190px;
    margin-top: 12px;
  }
}
@media (min-width: 1200px) {
  .continue .offer-wrapper.citizens .citizens-charter-form,
  .continue .offer-wrapper.charterone .citizens-charter-form {
    width: 580px;
  }
}
.continue .offer-wrapper.citizens .citizens-charter-form .citizens-charter-email,
.continue .offer-wrapper.charterone .citizens-charter-form .citizens-charter-email {
  margin-bottom: 0;
  text-align: left;
  font-size: 14px;
  padding: 6px 12px;
}
.continue .offer-wrapper.citizens .citizens-charter-form .offer-button,
.continue .offer-wrapper.charterone .citizens-charter-form .offer-button {
  padding-top: 10px;
  width: 100%;
  margin: 0;
}
@media (min-width: 992px) {
  .continue .offer-wrapper.citizens .citizens-charter-form .offer-button,
  .continue .offer-wrapper.charterone .citizens-charter-form .offer-button {
    position: absolute;
    top: 46px;
    right: 36px;
    padding-top: 0;
  }
}
.lender-icons {
  text-align: center;
}
.lender-icons .parent-plus-icon,
.lender-icons .mobile-icon {
  display: inline-block;
  width: 32px;
  vertical-align: top;
}
.lender-icons .parent-plus-icon img,
.lender-icons .mobile-icon img {
  width: 100%;
}
.lender-icons .parent-plus-icon .fa-2x,
.lender-icons .mobile-icon .fa-2x {
  font-size: 1.2rem;
  color: #005ca9;
}
.lender-icons .parent-plus-icon .fa-2x .fa-mobile,
.lender-icons .mobile-icon .fa-2x .fa-mobile {
  font-size: 2rem;
}
.lender-icons .parent-plus-icon {
  padding-top: 0.25rem;
}
.lender-icons .mobile-icon {
  padding-top: 0.14rem;
}
/* Consolidation Quiz */
.quiz form fieldset {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 1em;
  margin-bottom: 0;
}
.quiz form fieldset legend {
  border: 0;
  font-size: 1.1rem;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .quiz form fieldset legend {
    float: left;
    width: 49%;
    padding-top: 0;
    border: 0;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .quiz form fieldset legend {
    width: 65%;
  }
}
.quiz form fieldset .radios {
  font-size: 1.3rem;
  margin-bottom: 0;
  text-align: center;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .quiz form fieldset .radios {
    float: right;
    text-align: left;
    margin-left: 0;
  }
}
.quiz form fieldset .radios small.help-block {
  margin: 0;
  text-align: right;
}
.quiz form fieldset .radios .radio {
  display: inline-block;
  margin-top: 0;
}
.quiz form fieldset .radios .radio input {
  position: absolute;
  opacity: 0;
}
.quiz form fieldset .radios .radio .score {
  font-size: 14px;
  color: #999;
  display: block;
  text-align: center;
}
.quiz form fieldset.borderless {
  border: 0;
  margin-bottom: 0;
}
.quiz form fieldset.borderless legend {
  border: 0;
}
.quiz form p.disclaimer {
  padding: 30px 30px 0;
}
.quiz form .button {
  width: 100%;
  font-size: 120%;
}
html,
body {
  background: #fff;
  font-family: "Lato", "Myriad Pro", "Open Sans", sans-serif;
  font-size: 100%;
}
.print-only {
  display: none;
}
/* header.less */
header {
  background: #0d4d7f;
  position: relative;
}
@media (max-width: 767px) {
  header {
    height: 50px;
  }
}
header .utility-links {
  text-align: right;
  float: right;
  padding-top: 0.5em;
}
@media (max-width: 767px) {
  header .utility-links {
    display: none;
  }
}
header .utility-links ul {
  list-style: none;
  padding: 0;
}
header .utility-links ul li {
  display: inline-block;
  vertical-align: middle;
}
header .utility-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  font-size: 100%;
  margin: 0 0.5em;
}
header .utility-links ul li a.icon {
  margin: 0;
  font-size: 80%;
}
header .utility-links ul li a.icon .fa-inverse {
  color: #005ca9;
}
header .utility-links ul li a:hover {
  color: #ffffff;
}
header .logo {
  color: #fff;
  padding: 1em 0;
  float: left;
}
@media (max-width: 767px) {
  header .logo {
    padding: 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .logo {
    width: 140px;
  }
}
header .logo img {
  height: 50px;
}
@media (max-width: 767px) {
  header .logo img {
    height: 30px;
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .logo img {
    width: 100%;
    height: auto;
  }
}
header .site-search {
  float: right;
  text-align: right;
  padding-top: 20px;
}
@media (max-width: 767px) {
  header .site-search {
    display: none;
  }
}
header .site-search .form-control {
  width: auto;
  display: inline-block;
}
header .site-search .has-feedback .form-control {
  padding-left: 32.5px;
  padding-right: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  header .site-search .has-feedback #SearchTerm {
    width: 140px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .site-search .has-feedback #submit-search {
    padding: 0.4em 0.6em;
  }
}
header .site-search .has-feedback .form-control-feedback {
  top: 0;
  left: 0;
  right: auto;
  color: #999;
}
header .site-search .has-feedback .button.orange {
  color: #fff;
  font-weight: bolder;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}
header .site-search .zopim-chat {
  margin-left: 10px;
}
@media (max-width: 767px) {
  header .site-search.active {
    display: block;
    float: none;
    width: 100%;
    position: absolute;
    top: 50px;
    text-align: center;
    background: #005ca9;
    padding-top: 16px;
    margin-left: -15px;
    z-index: 999;
  }
  header .site-search.active .form-control {
    width: 210px;
  }
}
@media (max-width: 767px) and (min-width: 480px) {
  header .site-search.active .form-control {
    width: 320px;
  }
}
header .account-links {
  float: left;
  display: none;
  margin-right: 1rem;
  margin-top: 20px;
  margin-left: 13em;
}
@media (max-width: 1200px) {
  header .account-links {
    margin-left: 50px;
  }
}
@media (max-width: 992px) {
  header .account-links {
    margin-left: 20px;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  header .account-links {
    display: block;
  }
}
header .account-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .account-links ul li {
  display: inline-block;
}
header .account-links ul li a {
  display: block;
  color: #fff;
  font-weight: bolder;
  background: rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  text-decoration: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
header .account-links ul li a:hover,
header .account-links ul li a:focus,
header .account-links ul li a:active {
  background: #04a4db;
}
@media (max-width: 992px) {
  header .account-links ul li a {
    font-size: 12px;
  }
}
header .account-links ul li.dropdown {
  padding-top: 0;
}
header .account-links ul li.dropdown a {
  display: block;
  color: #fff;
  font-weight: bolder;
  background: rgba(0, 0, 0, 0.1);
  padding: 0.25rem 1rem 0.1rem;
  text-decoration: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
header .account-links ul li.dropdown a:hover,
header .account-links ul li.dropdown a:focus,
header .account-links ul li.dropdown a:active {
  background: #04a4db;
}
header .account-links ul li.dropdown a .icon {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  font-size: 1rem;
}
header .account-links ul li.dropdown a .icon .fa-circle {
  color: rgba(0, 0, 0, 0.1);
}
header .account-links ul .dropdown-menu {
  background-color: #0d4d7f;
  border: none;
}
header .account-links ul .dropdown-menu li {
  display: block;
  padding-top: 0;
}
header .account-links ul .dropdown-menu li a {
  display: block;
  width: 100%;
  color: #fff;
  padding: 0.66rem 1rem;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  font-size: 1rem;
}
header .account-links ul .dropdown-menu li a:hover,
header .account-links ul .dropdown-menu li a:focus,
header .account-links ul .dropdown-menu li a:active {
  background: #04a4db;
}
header .nav-toggles {
  display: none;
}
@media (max-width: 767px) {
  header .nav-toggles {
    display: block;
    position: absolute;
    bottom: 0;
    right: 1em;
  }
  header .nav-toggles .chat-toggle,
  header .nav-toggles .menu-toggle,
  header .nav-toggles .search-toggle {
    float: left;
    margin-left: 3px;
  }
  header .nav-toggles .chat-toggle a,
  header .nav-toggles .menu-toggle a,
  header .nav-toggles .search-toggle a {
    display: block;
    background: #005ca9;
    color: #fff;
    text-decoration: none;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    -ms-border-radius: 3px 3px 0 0;
    -o-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    font-size: 120%;
    padding: 0.5em 0.8em;
    font-weight: 600;
    opacity: 0.8;
  }
  header .nav-toggles .menu-toggle.active a,
  header .nav-toggles .search-toggle.active a {
    opacity: 1;
    background: gradient(#1473bd, #005ca9);
    margin-bottom: -1px;
  }
}
@media (max-width: 416px) {
  header .nav-toggles .chat-toggle a,
  header .nav-toggles .menu-toggle a,
  header .nav-toggles .search-toggle a {
    font-size: 90%;
  }
}
@media (max-width: 320px) {
  header .nav-toggles {
    right: 3px;
  }
}
.no-chat .account-links {
  margin-left: 19.5rem;
}
@media (max-width: 1200px) {
  .no-chat .account-links {
    margin-left: 10rem;
  }
}
@media (max-width: 1024px) {
  .no-chat .account-links {
    margin-left: 9.5rem;
  }
}
@media (max-width: 992px) {
  .no-chat .account-links {
    margin-left: 8rem;
  }
}
[data-edv-component="get-student-loan-handbook-link"] {
  font-style: normal;
  font-weight: bold;
}
@media (max-width: 320px) {
  [data-edv-component="get-student-loan-handbook-link"] {
    font-size: 12px;
  }
}
/* navigation.less */
.navigation {
  background: #005ca9;
}
@media (max-width: 767px) {
  .navigation {
    display: none;
    height: 0;
    overflow: hidden;
  }
}
.navigation .container {
  text-align: center;
}
.navigation .nav-section {
  background: #005ca9;
  display: inline-block;
  margin: 0;
  vertical-align: top;
  text-align: center;
  width: auto;
  padding: 0;
  position: relative;
}
@media (max-width: 767px) {
  .navigation .nav-section {
    display: block;
    border-bottom: 1px solid #1473bd;
    width: auto;
    text-align: left;
    margin: 0 1em;
    padding: 0.25em 15px;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.navigation .nav-section a,
.navigation .nav-section .menu-root {
  color: #fff;
  display: block;
  padding: 20px 12px;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 767px) {
  .navigation .nav-section a,
  .navigation .nav-section .menu-root {
    padding: 10px 20px;
  }
}
.navigation .nav-section a h4,
.navigation .nav-section .menu-root h4 {
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 767px) {
  .navigation .nav-section a h4,
  .navigation .nav-section .menu-root h4 {
    /*display: inline-block; 
                    cursor: pointer;
                    width: 100%; 
                    padding: 10px 1em;
                    margin: 0;*/
  }
}
.navigation .nav-section a .sub-nav,
.navigation .nav-section .menu-root .sub-nav {
  display: none;
  font-style: italic;
  line-height: 1.3;
}
.navigation .nav-section a .sub-nav ul,
.navigation .nav-section .menu-root .sub-nav ul {
  list-style: none;
  padding: 0;
}
.navigation .nav-section a .sub-nav ul li a,
.navigation .nav-section .menu-root .sub-nav ul li a {
  padding: 10px 12px;
}
.navigation .nav-section a .sub-nav ul li a:hover,
.navigation .nav-section .menu-root .sub-nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.navigation .nav-section.last,
.navigation .nav-section:nth-child('last') {
  border-bottom: 0;
}
.navigation .nav-section:hover {
  background: #1473bd;
}
.navigation .nav-section:hover a,
.navigation .nav-section:hover a:hover {
  color: #fff;
  text-decoration: none;
}
.navigation .nav-section:hover .sub-nav {
  display: block;
  position: absolute;
  left: 0;
  top: 56px;
  z-index: 999;
  width: 100%;
  padding: 10px 20px 20px;
  background: #1473bd;
  color: #fff;
  text-align: left;
}
@media (max-width: 767px) {
  .navigation .nav-section:hover .sub-nav {
    display: none;
  }
}
.navigation .nav-section.last:hover {
  border-bottom: 0;
}
@media (max-width: 767px) {
  .navigation .nav-section.featured-nav.active .nav-section.featured-nav:hover .sub-nav,
  .navigation .nav-section.featured-nav .sub-nav {
    display: block !important;
    position: relative !important;
    left: auto;
    top: auto;
    padding: 10px 0 0;
  }
  .navigation .nav-section.featured-nav.active .nav-section.featured-nav:hover .sub-nav ul li a,
  .navigation .nav-section.featured-nav .sub-nav ul li a {
    display: block !important;
  }
}
.navigation.active {
  display: block;
  height: auto;
}
.navigation.active .nav-section.active .arrow {
  top: 10px;
}
.navigation.active .nav-section.active .sub-nav {
  display: block;
}
.subpage .navigation .nav-section:hover .sub-nav {
  display: none !important;
}
.subpage .navigation .nav-section.featured-nav:hover .sub-nav {
  display: block !important;
}
@media (max-width: 767px) {
  .subpage .navigation .nav-section.featured-nav .sub-nav {
    display: block !important;
    position: relative !important;
    left: auto;
    top: auto;
    padding: 10px 0 0;
  }
}
@media (min-width: 768px) {
  .nav-section.profile-nav {
    display: none;
  }
}
/* homepage.less */
.homepage .typeahead.dropdown-menu {
  max-height: 240px;
  overflow-y: scroll;
}
.homepage .typeahead.dropdown-menu li a {
  white-space: normal;
}
.homepage .homepage-articles-news {
  position: relative;
  padding-top: 40px;
}
.homepage .homepage-articles-news h2 {
  color: #2980b9;
  font-size: 36px;
}
.homepage .homepage-articles-news .articles {
  overflospadding-left: 50px;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .homepage .homepage-articles-news .articles {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.homepage .homepage-articles-news .articles h2 {
  color: #2980b9;
  overflow: hidden;
}
.homepage .homepage-articles-news .articles .seasonal-image {
  float: left;
  width: 175px;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .homepage .homepage-articles-news .articles .seasonal-image {
    display: none;
  }
}
.homepage .homepage-articles-news .articles .seasonal-image img {
  width: 100%;
  height: auto;
}
.homepage .homepage-articles-news .articles .article-list {
  margin-left: 205px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .homepage .homepage-articles-news .articles .article-list {
    margin-left: 0;
  }
}
.homepage .homepage-articles-news .articles .article-list .article h3 {
  font-size: 18px;
  font-weight: bolder;
  margin-bottom: 5px;
}
.homepage .homepage-articles-news .articles .article-list .article .tags {
  /* Add back when tag is converted to link */
  /*.tag:hover {
                            background: darken(#e8f1f9, 5%);
                        }*/
}
.homepage .homepage-articles-news .articles .article-list .article .tags .tag {
  background: #e8f1f9;
  color: #666;
  margin-right: 2px;
  margin-bottom: 4px;
}
.homepage .homepage-articles-news .news h2 {
  color: #2e860f;
}
.homepage .homepage-articles-news .news .article {
  margin-bottom: 50px;
}
.homepage .homepage-articles-news .news .article h3 a {
  color: #333;
}
.homepage .homepage-articles-news .news .article .reference {
  font-size: 12px;
  color: #666;
  font-style: italic;
}
.homepage .homepage-articles-news .news .article p {
  font-size: 18px;
}
.homepage .homepage-articles-news .news .article .cta a {
  font-weight: bolder;
  color: #2e860f;
  font-size: 18px;
}
.homepage .homepage-articles-news .news-logos {
  text-align: center;
}
@media (max-width: 767px) {
  .homepage .homepage-articles-news .news-logos {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .homepage .homepage-articles-news .news-logos img {
    max-width: 100%;
  }
}
.homepage .homepage-articles-news .news-logos .disclaimer {
  font-size: 18px;
  margin: 20px 0 40px;
}
.homepage .homepage-articles-news .top-lenders-wrapper {
  margin-bottom: 40px;
  margin-top: 10px;
}
.homepage .homepage-articles-news .top-lenders-wrapper .widget-heading {
  font-weight: 300;
  line-height: 1.2;
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 10px;
}
.homepage-calculator {
  background: url("../images/calculator-bg-image.jpg");
  background-size: cover;
}
@media (min-width: 768px) {
  .homepage-calculator {
    background-position: -240px 0;
    background-size: none;
  }
}
@media (min-width: 1650px) {
  .homepage-calculator {
    background-position: 0 0;
    background-size: cover;
  }
}
.homepage-calculator h1 {
  font-weight: 900;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-size: 64px;
  margin: 0;
  padding: 30px 15px 30px 15px;
  color: #fff;
}
@media (max-width: 1024px) {
  .homepage-calculator h1 {
    font-size: 54px;
  }
}
.homepage-calculator .left-spacing {
  width: 33.33%;
  float: left;
}
@media (max-width: 767px) {
  .homepage-calculator .left-spacing {
    width: 0%;
  }
}
.homepage-calculator .side-calculator {
  width: 66.67%;
  float: right;
}
@media (max-width: 767px) {
  .homepage-calculator .side-calculator {
    width: 100%;
    margin: 0 auto;
    float: none;
  }
}
.homepage-calculator .disclaimer {
  color: #fff;
  padding-right: 30px;
  padding-left: 30px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.homepage-calculator .disclaimers {
  padding-bottom: 30px;
}
.homepage-highlight {
  background: #0a0d11;
  color: #fff;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .homepage-highlight {
    width: 100%;
    min-width: 0;
  }
}
.homepage-highlight h1 {
  font-weight: 900;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-size: 48px;
  margin: 0;
  padding: 30px 15px 0 15px;
}
.homepage-highlight .homepage-quads .highlight-bg,
.homepage-highlight .top-row.left-side,
.homepage-highlight .top-row.right-side {
  background: #2c3e50 url("../images/homepage-highlight-bg-gradient.png") repeat-x;
}
.homepage-highlight .highlight-section.center-cta {
  float: none;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .homepage-highlight .highlight-section.center-cta {
    width: 100%;
  }
}
.homepage-highlight .highlight-section {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0;
  float: left;
}
@media (min-width: 768px) {
  .homepage-highlight .highlight-section {
    width: 50%;
  }
}
.homepage-highlight .highlight-section .highlight-bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.homepage-highlight .highlight-section .highlight-bg .highlight-content {
  width: 585px;
}
@media (max-width: 767px) {
  .homepage-highlight .highlight-section .highlight-bg .highlight-content {
    width: 100%;
  }
}
.homepage-highlight .highlight-section .highlight-bg .highlight-content h2 {
  margin-top: 0;
  font-weight: bolder;
  font-size: 36px;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}
.homepage-highlight .highlight-section .highlight-bg .highlight-content p {
  font-size: 18px;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}
.homepage-highlight .highlight-section.center-cta .highlight-content {
  margin: 0 auto;
  text-align: center;
  padding-right: 60px;
  padding-left: 60px;
}
@media (max-width: 767px) {
  .homepage-highlight .highlight-section.center-cta .highlight-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.homepage-highlight .highlight-section.left-side .highlight-content {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 85px;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .homepage-highlight .highlight-section.left-side .highlight-content {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }
}
.homepage-highlight .highlight-section.right-side .highlight-content {
  padding-left: 85px;
  padding-right: 70px;
}
@media (max-width: 767px) {
  .homepage-highlight .highlight-section.right-side .highlight-content {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }
}
.homepage-highlight .highlight-section.right-side .highlight-content #lenderLogos {
  width: 92%;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .homepage-highlight .highlight-section.right-side .highlight-content #lenderLogos {
    width: 100%;
  }
}
.homepage-highlight .highlight-section.right-side .highlight-content #lenderLogos td {
  padding-right: 5px;
}
.homepage-highlight .highlight-section.right-side .highlight-content #lenderLogos td#college-ave-row {
  padding-right: 10px;
}
.homepage-highlight .highlight-section.top-row.left-side .highlight-bg,
.homepage-highlight .highlight-section.top-row.right-side .highlight-bg {
  height: 435px;
  /*overflow: hidden;*/
}
.homepage-highlight .highlight-section.top-row.left-side .highlight-bg .highlight-content,
.homepage-highlight .highlight-section.top-row.right-side .highlight-bg .highlight-content {
  padding-top: 60px;
}
@media (max-width: 767px) {
  .homepage-highlight .highlight-section.top-row.left-side .highlight-bg .highlight-content,
  .homepage-highlight .highlight-section.top-row.right-side .highlight-bg .highlight-content {
    padding-top: 35px;
  }
}
.homepage-highlight .highlight-section.top-row.left-side .highlight-bg {
  background: url("../images/homepage-psl-bg.jpg") no-repeat top right;
}
.homepage-highlight .highlight-section.top-row.right-side .highlight-bg {
  background: url("../images/homepage-slc-bg.jpg") no-repeat top left;
}
.homepage-highlight .highlight-section.bottom-row .highlight-bg {
  height: 495px;
  overflow: hidden;
}
.homepage-highlight .highlight-section.bottom-row .highlight-bg .highlight-content {
  padding-top: 60px;
}
@media (max-width: 767px) {
  .homepage-highlight .highlight-section.bottom-row .highlight-bg .highlight-content {
    padding-top: 35px;
  }
}
.homepage-highlight .highlight-section.bottom-row .highlight-bg .highlight-content h3 {
  margin: 0;
  font-weight: bolder;
}
.homepage-highlight .highlight-section.bottom-row.left-side {
  background: #0d4d7f;
}
.homepage-highlight .highlight-section.bottom-row.left-side .highlight-bg {
  background: url("../images/homepage-ask-bg.jpg") no-repeat top right;
}
.homepage-highlight .highlight-section.bottom-row.right-side {
  background: #2e860f;
}
.homepage-highlight .highlight-section.bottom-row.right-side .highlight-bg {
  background: url("../images/homepage-sp-bg.jpg") no-repeat top left;
}
.homepage-highlight.homepage-single-cta h1 {
  background: transparent;
  margin-bottom: 40px;
  display: none;
}
.homepage-highlight.homepage-single-cta .highlight-bg {
  min-height: 385px;
}
.homepage-highlight.homepage-single-cta .highlight-bg .highlight-content {
  width: 100%;
  padding-bottom: 30px;
  border-radius: 8px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .homepage-highlight.homepage-single-cta .highlight-bg .highlight-content {
    padding-top: 35px;
  }
}
.homepage-highlight.homepage-single-cta .highlight-bg .highlight-content h2 {
  font-size: 400%;
  font-weight: 900;
}
@media (max-width: 767px) {
  .homepage-highlight.homepage-single-cta .highlight-bg .highlight-content h2 {
    font-size: 250%;
  }
}
.homepage-highlight.homepage-single-cta .highlight-bg .highlight-content p {
  font-size: 200%;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .homepage-highlight.homepage-single-cta .highlight-bg .highlight-content p {
    font-size: 150%;
  }
}
.homepage-highlight.homepage-single-cta .highlight-bg .highlight-content form {
  width: 40%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .homepage-highlight.homepage-single-cta .highlight-bg .highlight-content form {
    width: 80%;
  }
}
.homepage-highlight.homepage-single-cta .highlight-bg .highlight-content #lenderLogos {
  margin-bottom: 20px;
  width: 40%;
  margin: 0 auto;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .homepage-highlight.homepage-single-cta .highlight-bg .highlight-content #lenderLogos {
    width: 80%;
  }
}
.homepage-highlight.homepage-single-cta .highlight-bg .highlight-content #lenderLogos table {
  table-layout: fixed;
}
@media (max-width: 768px) {
  .homepage-highlight.homepage-single-cta .highlight-bg .highlight-content #lenderLogos tr {
    display: block;
  }
}
.homepage-highlight.homepage-single-cta .highlight-bg .highlight-content #lenderLogos td {
  padding-right: 15px;
}
@media (max-width: 768px) {
  .homepage-highlight.homepage-single-cta .highlight-bg .highlight-content #lenderLogos td {
    display: block;
    padding: 15px;
  }
}
.homepage-highlight.homepage-single-cta .highlight-bg .highlight-content #lenderLogos td#college-ave-row {
  padding-right: 10px;
}
.highlight-bg.hero-cta .highlight-content .button.orange {
  font-size: 18px;
  padding-top: 0.6em;
  height: 47px;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .highlight-bg.hero-cta .highlight-content .button.orange {
    height: auto;
  }
}
.highlight-bg.psl .highlight-content p {
  margin-bottom: 10px;
}
.highlight-bg.psl .highlight-content .lender-images {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .highlight-bg.psl .highlight-content .lender-images img {
    max-width: 100%;
  }
}
.highlight-bg.psl .highlight-content .hero-typeahead-form #typeahead-input {
  margin-bottom: 5px;
}
.highlight-bg.psl .highlight-content .hero-typeahead-form .module-school-name {
  font-size: 18px;
  padding: 12px 16px 11px;
  /*width: 260px;*/
  height: auto;
  line-height: 1;
}
@media (max-width: 767px) {
  .highlight-bg.psl .highlight-content .hero-typeahead-form .module-school-name {
    width: 100%;
    margin-bottom: 5px;
  }
}
.highlight-bg.psl .highlight-content .hero-typeahead-form #EDV_LW_submit {
  font-size: 18px;
  font-weight: bolder;
  height: 47px;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  width: 100%;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 992px) {
  .highlight-bg.psl .highlight-content .hero-typeahead-form #EDV_LW_submit {
    margin-left: 5px;
  }
}
.highlight-bg.psl .highlight-content .hero-typeahead-form .error-messages {
  color: red;
  font-style: italic;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
.highlight-bg.psl .highlight-content .hero-typeahead-form .typeahead.dropdown-menu {
  text-align: left;
  max-height: 240px;
  overflow-y: scroll;
}
.highlight-bg.psl .highlight-content .hero-typeahead-form .typeahead.dropdown-menu li a {
  font-size: 16px;
  white-space: normal;
}
.highlight-bg.psl .highlight-content .hero-typeahead-form .typeahead.dropdown-menu li:nth-child('first') {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -ms-border-radius: 3px 3px 0 0;
  -o-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.highlight-bg.psl .highlight-content .hero-typeahead-form .typeahead.dropdown-menu li:nth-child('last') {
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  -ms-border-radius: 0 0 3px 3px;
  -o-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}
.highlight-bg.psl .highlight-content .hero-typeahead-form .twitter-typeahead {
  width: 100%;
}
.highlight-bg.ask .mark-k {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  .highlight-bg.ask .mark-k {
    display: none;
  }
}
.highlight-bg.ask .highlight-content {
  padding-left: 40px;
}
.highlight-bg.ask .highlight-content .question-block {
  background: #fff;
  color: #333;
  position: relative;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  margin-right: 180px;
  padding: 10px 20px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .highlight-bg.ask .highlight-content .question-block {
    margin-right: 0;
  }
}
.highlight-bg.ask .highlight-content .question-block .question {
  font-size: 18px;
  font-weight: bold;
}
.highlight-bg.ask .highlight-content .question-block .answer {
  font-size: 16px;
}
.highlight-bg.ask .highlight-content .question-block .arrow {
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 16px solid #fff;
  position: absolute;
  bottom: 40px;
  right: -16px;
}
@media (max-width: 767px) {
  .highlight-bg.ask .highlight-content .question-block .arrow {
    display: none;
  }
}
.highlight-bg.ask .highlight-content .cta a {
  color: #fff;
  font-weight: bolder;
  font-size: 18px;
  margin-left: 10px;
}
.checklist-hero {
  background: url("../images/survival-guide-hero.jpg") no-repeat center center;
  background-size: cover;
}
.checklist-hero h2 {
  line-height: 0.9;
  margin: 1rem auto;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
  width: 100%;
  font-size: 3rem !important;
}
@media (min-width: 768px) {
  .checklist-hero h2 {
    width: 50%;
    font-size: 5rem !important;
  }
}
.checklist-hero p.slogan {
  font-weight: 700;
  font-size: 1rem;
  width: 90%;
  line-height: 1.2;
  margin: 1.5rem auto;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .checklist-hero p.slogan {
    width: 58%;
    font-size: 2rem;
  }
}
.checklist-hero .cta {
  margin-bottom: 1.5rem;
}
.checklist-hero .cta .button {
  background: #1bd41b;
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.checklist-hero .cta .button:hover,
.checklist-hero .cta .button:focus,
.checklist-hero .cta .button:active {
  background: #3ce63c;
}
@media (min-width: 768px) {
  .checklist-hero .cta .button {
    font-size: 2.5rem;
    padding: 1.5rem 3.5rem;
  }
}
.checklist-hero .cta .button .fa {
  font-size: 1rem;
  line-height: 1;
  vertical-align: middle;
  margin-right: 0.33rem;
}
@media (min-width: 768px) {
  .checklist-hero .cta .button .fa {
    font-size: 4rem;
    margin-right: 0.66rem;
  }
}
.checklist-hero p.follow-tagline {
  font-weight: lighter;
  font-style: italic;
  font-size: 2rem;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
}
.no-gutter {
  margin-right: 0;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}
.i-am-a,
.filter-bar {
  background: #cfe3f3;
  padding: 1em 1em 0;
  text-align: center;
}
@media (max-width: 767px) {
  .i-am-a,
  .filter-bar {
    padding-bottom: 1em;
  }
}
.i-am-a p,
.filter-bar p {
  font-weight: 600;
  color: #222;
  font-size: 120%;
  margin-bottom: 0;
}
.i-am-a p span.line,
.filter-bar p span.line {
  margin-bottom: 1em;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .i-am-a p span.line,
  .filter-bar p span.line {
    display: block;
    text-align: center;
    margin-bottom: 1em;
  }
}
.i-am-a p span.quote,
.filter-bar p span.quote {
  width: 25px;
  height: 22px;
  background-image: url("../images/quote-sprite.png");
  background-position: 0 0;
  display: inline-block;
  vertical-align: top;
  margin: 0 0.3em;
}
@media (max-width: 767px) {
  .i-am-a p span.quote,
  .filter-bar p span.quote {
    display: none;
  }
}
.i-am-a p span.quote.right-quote,
.filter-bar p span.quote.right-quote {
  background-position: 0 -22px;
}
.i-am-a p span.select,
.filter-bar p span.select {
  border: 0;
  width: 240px;
  background-position: 197px center;
}
.i-am-a p span.select.topic select,
.filter-bar p span.select.topic select {
  padding-right: 32px;
}
.i-am-a p span.select.topic select .select-cover,
.filter-bar p span.select.topic select .select-cover {
  background-image: url("../images/select-arrow-sprite.jpg");
  background-repeat: no-repeat;
  border: 1px solid lime;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
}
.i-am-a p span.select::-ms-expand,
.filter-bar p span.select::-ms-expand {
  display: none;
}
.i-am-a p .button,
.filter-bar p .button {
  padding-top: 0.5em;
  padding-bottom: 0.4em;
  vertical-align: top;
}
@media (max-width: 767px) {
  .i-am-a p .button,
  .filter-bar p .button {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .i-am-a.search-bar {
    display: none;
  }
}
@media (max-width: 767px) {
  .i-am-a.search-bar.active {
    display: block;
  }
}
.content.edgov-school {
  /**/
}
.content.edgov-school h2 {
  font-size: 24px;
  white-space: nowrap;
}
.content.edgov-school ul,
.content.edgov-school ol {
  padding: 0 1.5em;
  margin-bottom: 1.5em;
  list-style-position: outside;
}
.content.edgov-school ul li,
.content.edgov-school ol li {
  margin-bottom: 0.5em;
}
.content.edgov-school dl dt,
.content.edgov-school dl dd {
  float: left;
  padding: 5px 0;
}
.content.edgov-school dl dt {
  clear: left;
  margin-right: 10px;
  margin-left: 10px;
}
.content.edgov-school img {
  max-width: 100%;
  height: auto;
}
.content.edgov-school .tooltip.in {
  opacity: 1;
}
.content.edgov-school .edgov-school-details.row {
  margin-bottom: 60px;
}
.content.edgov-school .overview .details h3 {
  font-size: 20px;
  white-space: nowrap;
}
.content.edgov-school .overview .links .phone-number {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}
@media (max-width: 375px) {
  .content.edgov-school .overview .links .phone-number {
    margin: 10px 0 0 0;
    display: block;
  }
}
.content.edgov-school .overview .description {
  margin-top: 20px;
  margin-bottom: 20px;
}
.content.edgov-school .overview .chart {
  height: 200px;
  background-color: #FFF;
  max-width: 116px;
  margin: 0px auto;
  position: relative;
}
.content.edgov-school .overview .chart-col {
  padding-top: 60px;
  background-color: #EFEFEF;
  min-height: 510px;
  /* allows for dynamic display of legend without height offsets */
}
.content.edgov-school .overview .chart-col h3 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
.content.edgov-school .overview .chart-col.disabled .chart:after {
  content: attr(data-disabled-text);
  margin: 0;
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 16px;
}
.content.edgov-school .overview .chart-col.disabled .median {
  visibility: hidden;
}
.content.edgov-school .overview .chart-col.disabled .amount,
.content.edgov-school .overview .chart-col.disabled .chart-label,
.content.edgov-school .overview .chart-col.disabled .legend,
.content.edgov-school .overview .chart-col.disabled .legend-label {
  display: none;
}
.content.edgov-school .overview .chart-col.avg-annual .chart .amount {
  background-color: #FABE1D !important;
  height: 20%;
}
.content.edgov-school .overview .chart-col.avg-annual .chart .median {
  bottom: 15%;
}
.content.edgov-school .overview .chart-col.grad-rate .chart .amount {
  background-color: #065CA7 !important;
  height: 20%;
}
.content.edgov-school .overview .chart-col.grad-rate .chart .median {
  bottom: 15%;
}
.content.edgov-school .overview .chart-col .chart .amount {
  height: 33%;
  background-color: #12D325 !important;
  position: absolute;
  bottom: 0px;
  left: 0px;
  max-height: 100%;
  width: 100%;
  z-index: 10;
}
.content.edgov-school .overview .chart-col .chart .median {
  height: 4px;
  background: #000 !important;
  position: absolute;
  bottom: 45%;
  width: 120%;
  left: -10%;
  z-index: 11;
  pointer-events: none;
}
.content.edgov-school .overview .chart-col .chart-label {
  text-align: center;
  font-size: 24px;
  padding-top: 10px;
}
.content.edgov-school .overview .chart-col .chart-label i {
  font-size: 18px;
  bottom: 2px;
  position: relative;
}
.content.edgov-school .overview .chart-col .legend {
  background-color: #fff;
  border: 1px solid #ccc !important;
  height: 30px;
  width: 30px;
  margin: 20px auto 5px auto;
  position: relative;
}
.content.edgov-school .overview .chart-col .legend .median {
  background-color: #000 !important;
  height: 4px;
  width: 150%;
  margin-left: -25%;
  margin-top: 11px;
}
.content.edgov-school .overview .chart-col .legend-label {
  font-size: 14px;
  text-align: center;
}
.content.edgov-school .overview .avg-debt .amount {
  font-size: 24px;
  color: green;
}
.content.edgov-school .overview .avg-debt .note {
  font-size: 10px;
}
.content.edgov-school .left-gutter {
  display: none;
}
@media (min-width: 768px) {
  .content.edgov-school .left-gutter {
    display: block;
    position: absolute;
    top: 0;
    left: -140px;
    text-align: right;
    min-width: 160px;
  }
}
.content.edgov-school .left-gutter .banner-ad-rendering-120x600,
.content.edgov-school .left-gutter .banner-ad-rendering-160x600 {
  margin-bottom: 30px;
}
.content.edgov-school .left-gutter .disclaimer {
  font-size: 11px;
  text-align: right;
  padding-right: 10px;
}
.content.edgov-school .right-gutter {
  display: none;
}
@media (min-width: 768px) {
  .content.edgov-school .right-gutter {
    display: block;
    position: absolute;
    top: 0;
    right: -140px;
    text-align: left;
    min-width: 160px;
  }
}
.content.edgov-school .right-gutter .banner-ad-rendering-120x600,
.content.edgov-school .right-gutter .banner-ad-rendering-160x600 {
  margin-bottom: 30px;
}
.content.edgov-school .right-gutter .disclaimer {
  font-size: 11px;
  text-align: left;
  padding-left: 10px;
}
.edgov-typeahead-banner.container {
  padding-left: 0px;
}
.edgov-typeahead-banner.container .col {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .edgov-typeahead-banner.container #user-input-wrapper {
    width: 80%;
    margin: 0 auto;
  }
}
.edgov-typeahead-banner.container .tt-suggestion.tt-selectable {
  cursor: default;
}
.edgov-typeahead-banner.container .tt-suggestion.tt-selectable:hover {
  color: #fff;
  background-color: #005ca9;
}
.edgov-typeahead-banner.container .twitter-typeahead {
  width: 100%;
}
@media (max-width: 991px) {
  .edgov-typeahead-banner.container .twitter-typeahead {
    width: 100%;
  }
}
.edgov-typeahead-banner.container .twitter-typeahead .form-control {
  height: 38px;
  width: 100%;
}
@media (max-width: 991px) {
  .edgov-typeahead-banner.container .twitter-typeahead .form-control {
    white-space: inherit;
  }
}
@media (min-width: 992px) {
  .edgov-typeahead-banner.container #submit-wrapper {
    padding-left: 0;
  }
}
.edgov-typeahead-banner.container #submit-wrapper input[type=submit].button.orange {
  color: #fff;
  width: 100%;
  white-space: inherit;
}
.edgov-bottom {
  clear: both;
  background: #e7f2fb;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .chart-col {
    min-height: 320px;
  }
}
hr {
  border-top: 1px dashed #04a4db;
}
.modal-header {
  border-bottom: 1px none transparent;
}
.featured-category-articles {
  background: #e7f2fb;
  padding: 4em 0;
}
@media (max-width: 767px) {
  .featured-category-articles {
    padding: 0;
  }
}
.featured-category-articles .article {
  display: inline-block;
  vertical-align: top;
  width: 32%;
  padding-bottom: 2em;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .featured-category-articles .article {
    width: 100%;
    display: block;
  }
}
.featured-category-articles .article .image {
  position: relative;
}
.featured-category-articles .article .image a {
  display: block;
  width: 100%;
  height: 100%;
}
.featured-category-articles .article .image a img {
  width: 100%;
  height: auto;
}
.featured-category-articles .article h3 a {
  color: #005ca9;
}
.featured-category-articles .article .tags {
  margin-bottom: 1em;
}
.featured-category-articles .article p {
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .featured-category-articles .article .cta {
    margin-bottom: 2em;
  }
}
.article-detail .article-selected-topic {
  margin-bottom: 15px;
}
.article-selected-topic span {
  color: #005ca9;
  display: inline-block;
  font-size: 24px;
  padding-top: 10px;
}
.article-selected-topic span em {
  font-size: 16px;
  font-style: normal;
}
.article-selected-topic select#topic {
  float: right;
  padding: 8px;
  margin-top: 5px;
}
.in-the-news {
  padding: 4em 0;
}
@media (max-width: 767px) {
  .in-the-news {
    padding: 0;
  }
}
.in-the-news h2,
.in-the-news h3,
.in-the-news a {
  color: #2e860f;
}
.in-the-news h2 {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  font-size: 320%;
  margin-right: 1em;
}
@media (max-width: 767px) {
  .in-the-news h2 {
    width: 100%;
    font-size: 180%;
    margin-right: 0;
  }
}
.in-the-news .article {
  display: inline-block;
  vertical-align: top;
  width: 65%;
  margin-bottom: 3em;
}
@media (max-width: 767px) {
  .in-the-news .article {
    width: 100%;
  }
}
.in-the-news .article h3 {
  margin-bottom: 0.25em;
}
@media (max-width: 767px) {
  .in-the-news .article h3 {
    font-size: 120%;
    margin-top: 0;
  }
}
.in-the-news .article .tag:hover {
  text-decoration: none;
}
.in-the-news .article .reference {
  color: rgba(0, 0, 0, 0.5);
  font-size: 90%;
  margin-bottom: 1.0em;
}
.in-the-news .article p {
  margin-bottom: 1.5em;
}
.in-the-news .news-logos {
  text-align: center;
}
.in-the-news .news-logos img {
  width: 49%;
  height: auto;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .in-the-news .news-logos img {
    width: 100%;
    max-width: 470px;
    height: auto;
    margin-bottom: 1em;
  }
}
@media (max-width: 767px) {
  .in-the-news .news-logos p.disclaimer {
    margin-bottom: 2em;
  }
}
/* subpage.less */
.subpage {
  /* article.less */
  /* ask-the-edvisor.less */
  /* contact page */
  /* table with social icons */
  /* Long Form */
  /* In the News page */
  /** styles for /contact/unsubscribe/confirm */
}
.subpage .button {
  border-radius: 8px;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
}
.subpage .button.blue {
  padding: 10px 25px;
  border-bottom: 3px solid #012A4C;
  margin: 20px 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .subpage .button.blue {
    top: -24px;
    position: relative;
  }
}
.subpage .button.red {
  border-bottom: 3px solid #bf2718;
}
.subpage .breadcrumbs {
  font-size: 90%;
  padding: 2em 0 0;
}
@media (max-width: 767px) {
  .subpage .breadcrumbs .container > div {
    line-height: 2;
  }
  .subpage .breadcrumbs .container > div > i {
    padding: 0 5px;
  }
}
.subpage .category-highlight {
  position: relative;
  padding-bottom: 2em;
  /*
	.share {
		font-size: 110%;
		font-size: 600;
		text-transform: uppercase;
		color: lighten(@color-blue, 20%);
		float: right;
		margin-top: -1em;
		margin-right: 1em;
		
		a {
			margin-left: 0.3em;
			color: lighten(@color-blue, 30%);
			font-size: 130%;
		}
		
		a:hover, a:focus, a:active {
			color: @color-blue;
		}
	}
	*/
}
.subpage .category-highlight h1 {
  color: #083c6b;
  font-size: 360%;
  padding-top: 0.5em;
  margin-bottom: 0.3em;
}
@media (max-width: 767px) {
  .subpage .category-highlight h1 {
    font-size: 240%;
    color: #005ca9;
  }
}
.subpage .featured-articles.ask .article {
  width: 48% !important;
}
.subpage .article.press .article-date {
  color: #666;
  margin-bottom: 0.5em;
}
.subpage .content {
  padding-top: 2em;
}
.subpage .content h1 {
  color: #005ca9;
  font-size: 300%;
  font-weight: 600;
}
.subpage .content .opener {
  font-size: 200%;
  font-weight: 300;
}
@media (max-width: 767px) {
  .subpage .content .opener {
    font-size: 125%;
  }
}
.subpage .content blockquote.callout-left,
.subpage .content blockquote.callout-Left,
.subpage .content blockquote.callout-right,
.subpage .content blockquote.callout-Right {
  font-size: 80%;
}
@media (min-width: 768px) {
  .subpage .content blockquote.callout-left,
  .subpage .content blockquote.callout-Left,
  .subpage .content blockquote.callout-right,
  .subpage .content blockquote.callout-Right {
    color: #666;
    border: 0;
    padding: 15px;
  }
}
.subpage .content blockquote.callout-left img.callout-icon,
.subpage .content blockquote.callout-Left img.callout-icon,
.subpage .content blockquote.callout-right img.callout-icon,
.subpage .content blockquote.callout-Right img.callout-icon {
  margin-right: 0.25em;
}
.subpage .content blockquote.callout-left b,
.subpage .content blockquote.callout-Left b,
.subpage .content blockquote.callout-right b,
.subpage .content blockquote.callout-Right b {
  color: #005ca9;
}
.subpage .content .callout-left,
.subpage .content .callout-Left {
  clear: left;
}
@media (min-width: 768px) and (max-width: 991px) {
  .subpage .content .callout-left,
  .subpage .content .callout-Left {
    float: left;
    width: 90px;
    margin-left: -90px;
  }
}
@media (min-width: 992px) {
  .subpage .content .callout-left,
  .subpage .content .callout-Left {
    float: left;
    width: 180px;
    margin-left: -180px;
  }
}
.subpage .content .callout-right,
.subpage .content .callout-Right {
  clear: right;
}
@media (min-width: 768px) and (max-width: 991px) {
  .subpage .content .callout-right,
  .subpage .content .callout-Right {
    float: right;
    width: 90px;
    margin-right: -90px;
  }
}
@media (min-width: 992px) {
  .subpage .content .callout-right,
  .subpage .content .callout-Right {
    float: right;
    width: 180px;
    margin-right: -180px;
  }
}
.subpage .content .category {
  position: relative;
  margin-bottom: 2em;
  padding-top: 2em;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.subpage .content .category .category-summary {
  margin-bottom: 2em;
}
.subpage .content .category .category-summary h2 {
  font-size: 240%;
  color: #005ca9;
}
.subpage .content .category h1 {
  margin-top: 0;
}
.subpage .content .category .share {
  position: absolute;
  top: 0.5em;
  right: 1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.subpage .content .category .share a {
  font-size: 140%;
  margin-left: 0.33em;
  color: rgba(255, 255, 255, 0.5);
}
.subpage .content .category .share a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.subpage .content .category .articles {
  margin-top: 1em;
}
.subpage .content .category .articles:before,
.subpage .content .category .articles:after {
  content: " ";
  display: table;
}
.subpage .content .category .articles:after {
  clear: both;
}
.subpage .content .category .article-summary {
  margin-bottom: 2em;
}
.subpage .content .category .article-summary a.image img {
  width: 100%;
  height: auto;
}
.subpage .content .category .article-summary .author-info {
  margin-bottom: 0.5em;
  font-size: 90%;
  color: rgba(0, 0, 0, 0.6);
}
.subpage .content .category .article-summary .tags {
  margin-bottom: 0.5em;
}
.subpage .content .category .article-summary .tags .tag {
  background: #e3eff8;
}
.subpage .content .category:nth-child(1) {
  border-top: 0;
  padding-top: 0;
}
.subpage .content .psl-widget {
  margin-bottom: 1em;
  padding: 1em 1em 2em 1em;
  border: 3px solid #005ca9;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.subpage .content .psl-widget .container {
  width: 100% !important;
}
.subpage .content .psl-widget .container .private-loan-message {
  display: block;
  margin-bottom: 10px;
}
.subpage .content .psl-widget .container .private-loan-message.long-text {
  font-size: 30px;
}
.subpage .content .psl-widget .container .stackedRow {
  padding: 40px;
}
@media (max-width: 992px) {
  .subpage .content .psl-widget .container .stackedRow {
    padding: 20px;
  }
}
.subpage .content .psl-widget .dropdown-menu {
  padding: 0 !important;
  max-height: 240px;
  overflow-y: scroll;
}
.subpage .content .psl-widget .dropdown-menu li a {
  white-space: normal;
}
.subpage .content .typeahead.dropdown-menu {
  max-height: 240px;
  overflow-y: scroll;
}
.subpage .content .typeahead.dropdown-menu li a {
  white-space: normal;
}
.subpage .content.landing-page {
  padding-top: 0;
}
.subpage .content.landing-page .landing-page-highlight {
  background: #2d3f51 url("/Content/images/edv-landing-page-hero-image.jpg") right top no-repeat;
  background-size: auto 100%;
  color: #fff;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .subpage .content.landing-page .landing-page-highlight {
    background-position: left top;
  }
}
.subpage .content.landing-page .landing-page-highlight .breadcrumbs {
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}
.subpage .content.landing-page .landing-page-highlight .breadcrumbs a {
  color: #cfe3f3;
  text-decoration: underline;
}
.subpage .content.landing-page .landing-page-highlight h1 {
  color: #fff;
  font-weight: 900;
  font-size: 42px;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}
.subpage .content.landing-page .landing-page-highlight .opener {
  color: #fff;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
  font-size: 16px;
}
.subpage .content.landing-page .landing-page-highlight .opener p {
  margin-bottom: 0;
}
.subpage .content.landing-page .landing-page-highlight .cta {
  margin-top: 20px;
}
.subpage .content.landing-page .landing-page-highlight .cta a {
  color: #fff;
  font-size: 20px;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}
.subpage .content.landing-page .section-content {
  position: relative;
  padding-top: 30px;
  /* our 3 column adjustments */
}
.subpage .content.landing-page .section-content .left-column {
  float: left;
}
@media (max-width: 767px) {
  .subpage .content.landing-page .section-content .left-column {
    float: none;
  }
}
.subpage .content.landing-page .section-content .right-column {
  float: right;
}
@media (max-width: 767px) {
  .subpage .content.landing-page .section-content .right-column {
    float: none;
  }
}
.subpage .content.landing-page .section-content .left-gutter {
  display: none;
}
@media (min-width: 768px) {
  .subpage .content.landing-page .section-content .left-gutter {
    display: block;
    position: absolute;
    top: 0;
    left: -200px;
    text-align: right;
    min-width: 160px;
  }
}
.subpage .content.landing-page .section-content .left-gutter .banner-ad-rendering-120x600,
.subpage .content.landing-page .section-content .left-gutter .banner-ad-rendering-160x600 {
  margin-bottom: 30px;
}
.subpage .content.landing-page .section-content .left-gutter .disclaimer {
  font-size: 11px;
  text-align: right;
  padding-right: 10px;
}
.subpage .content.landing-page .section-content .right-gutter {
  display: none;
}
@media (min-width: 768px) {
  .subpage .content.landing-page .section-content .right-gutter {
    display: block;
    position: absolute;
    top: 0;
    right: -200px;
    text-align: left;
    min-width: 160px;
  }
}
.subpage .content.landing-page .section-content .right-gutter .banner-ad-rendering-120x600,
.subpage .content.landing-page .section-content .right-gutter .banner-ad-rendering-160x600 {
  margin-bottom: 30px;
}
.subpage .content.landing-page .section-content .right-gutter .disclaimer {
  font-size: 11px;
  text-align: left;
  padding-left: 10px;
}
.subpage .content.landing-page .section-content .section-categories .section-title,
.subpage .content.landing-page .section-content .featured-articles .section-title,
.subpage .content.landing-page .section-content .related-articles .section-title {
  line-height: 1.2;
  margin-bottom: 10px;
  color: #666;
  font-weight: bolder;
  margin-top: 0;
  font-size: 20px;
}
.subpage .content.landing-page .section-content .section-categories ul.article-list,
.subpage .content.landing-page .section-content .featured-articles ul.article-list,
.subpage .content.landing-page .section-content .related-articles ul.article-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.subpage .content.landing-page .section-content .section-categories ul.article-list li,
.subpage .content.landing-page .section-content .featured-articles ul.article-list li,
.subpage .content.landing-page .section-content .related-articles ul.article-list li {
  margin: 0;
}
.subpage .content.landing-page .section-content .section-categories ul.article-list li a,
.subpage .content.landing-page .section-content .featured-articles ul.article-list li a,
.subpage .content.landing-page .section-content .related-articles ul.article-list li a {
  text-decoration: underline;
  border-top: 1px dashed #ddd;
  padding: 10px 0;
  display: block;
}
.subpage .content.landing-page .section-content .section-categories .banner-ad-rendering-300x250,
.subpage .content.landing-page .section-content .featured-articles .banner-ad-rendering-300x250,
.subpage .content.landing-page .section-content .related-articles .banner-ad-rendering-300x250 {
  width: 100%;
  margin-bottom: 30px;
}
.subpage .content.landing-page .section-content .section-categories .banner-ad-rendering-300x250 img,
.subpage .content.landing-page .section-content .featured-articles .banner-ad-rendering-300x250 img,
.subpage .content.landing-page .section-content .related-articles .banner-ad-rendering-300x250 img {
  width: 100%;
  max-width: 300px;
}
@media (max-width: 767px) {
  .subpage .content.landing-page .section-content .section-categories .banner-ad-rendering-300x250,
  .subpage .content.landing-page .section-content .featured-articles .banner-ad-rendering-300x250,
  .subpage .content.landing-page .section-content .related-articles .banner-ad-rendering-300x250 {
    width: 100%;
    text-align: center;
  }
}
.subpage .content.landing-page .section-content .section-categories .banner-ad-rendering-234x60,
.subpage .content.landing-page .section-content .featured-articles .banner-ad-rendering-234x60,
.subpage .content.landing-page .section-content .related-articles .banner-ad-rendering-234x60 {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .subpage .content.landing-page .section-content .section-categories .banner-ad-rendering-234x60,
  .subpage .content.landing-page .section-content .featured-articles .banner-ad-rendering-234x60,
  .subpage .content.landing-page .section-content .related-articles .banner-ad-rendering-234x60 {
    width: 100%;
    text-align: center;
  }
}
.subpage .content.landing-page .section-content .section-categories .section-title {
  font-weight: bolder;
  margin-top: 0;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #005ca9;
}
.subpage .content.landing-page .section-content .section-categories ul.article-list li a {
  font-size: 18px;
}
.subpage .content.landing-page .section-content .section-categories ul.aricle-list li a:hover {
  background: #cfe3f3;
}
.subpage .content.landing-page .section-content .section-categories ul.article-list li.active a,
.subpage .content.landing-page .section-content .section-categories ul.article-list li.active a:hover {
  font-weight: bolder;
  text-decoration: none;
  color: #f6492b;
  background: transparent;
}
.subpage .content.landing-page .section-content .section-categories .banner-ad-rendering-300x250 {
  float: right;
}
@media (max-width: 767px) {
  .subpage .content.landing-page .section-content .section-categories .banner-ad-rendering-300x250 {
    float: none;
  }
}
.subpage .content.landing-page .section-content .featured-articles a.headline {
  font-weight: bolder;
  font-size: 18px;
}
.subpage .content.landing-page .section-content .featured-articles div {
  font-size: 16px;
}
.subpage .content.landing-page .section-content .related-articles .section-title {
  font-size: 16px;
}
.subpage .content.landing-page .section-content blockquote {
  border-left: none;
  font-size: 16px;
  color: #777373;
  font-weight: 600;
  padding: 0 0;
}
.subpage .content.landing-page .section-content blockquote .fa-quote-left {
  padding-right: 5px;
}
.subpage .content.landing-page .section-content blockquote .fa-quote-right {
  padding-left: 5px;
}
.subpage .content.landing-page .section-content blockquote .fa-quote-left,
.subpage .content.landing-page .section-content blockquote .fa-quote-right {
  color: #005CA9;
}
.subpage .content.landing-page .section-content blockquote footer {
  display: -webkit-box;
  padding: 10px 0 0 0;
}
.subpage .content.article-detail p,
.subpage .content.article-detail ul,
.subpage .content.article-detail ol {
  font-size: 16px;
}
.subpage .content.article-detail h1 {
  margin-top: 0;
}
.subpage .content.article-detail .article-info {
  position: relative;
  /*
		.share {
			float: right;
			margin-top: -0.5em;
			text-transform: uppercase;
			color: lighten(@color-blue, 20%);
			
			a {
				font-size: 140%;
				margin-left: 0.33em;
				color: lighten(@color-blue, 30%);
			}
			
			a:hover {
				color: @color-blue;
			}
		}
		*/
}
.subpage .content.article-detail .article-info .author-info {
  margin-bottom: 1em;
}
.subpage .content.article-detail .article-info .tags {
  margin-bottom: 1em;
}
.subpage .content.article-detail .article-info .tags .tag {
  background: #cfe3f3;
}
.subpage .content.article-detail h2,
.subpage .content.article-detail h3 {
  padding-top: 0.5em;
  margin-bottom: 0.5em;
}
.subpage .content.article-detail ul,
.subpage .content.article-detail ol {
  padding: 0 1.5em;
  margin-bottom: 1.5em;
  list-style-position: outside;
}
.subpage .content.article-detail ul li,
.subpage .content.article-detail ol li {
  margin-bottom: 0.5em;
}
.subpage .content.article-detail img {
  max-width: 100%;
  height: auto;
}
.subpage .content.article-detail .left-gutter {
  display: none;
}
@media (min-width: 768px) {
  .subpage .content.article-detail .left-gutter {
    display: block;
    position: absolute;
    top: 0;
    left: -140px;
    text-align: right;
    min-width: 160px;
  }
}
.subpage .content.article-detail .left-gutter .banner-ad-rendering-120x600,
.subpage .content.article-detail .left-gutter .banner-ad-rendering-160x600 {
  margin-bottom: 30px;
}
.subpage .content.article-detail .left-gutter .disclaimer {
  font-size: 11px;
  text-align: right;
  padding-right: 10px;
}
.subpage .content.article-detail .right-gutter {
  display: none;
}
@media (min-width: 768px) {
  .subpage .content.article-detail .right-gutter {
    display: block;
    position: absolute;
    top: 0;
    right: -140px;
    text-align: left;
    min-width: 160px;
  }
}
.subpage .content.article-detail .right-gutter .banner-ad-rendering-120x600,
.subpage .content.article-detail .right-gutter .banner-ad-rendering-160x600 {
  margin-bottom: 30px;
}
.subpage .content.article-detail .right-gutter .disclaimer {
  font-size: 11px;
  text-align: left;
  padding-left: 10px;
}
.subpage #articleHighlights ul {
  list-style-type: none;
  padding: 0px;
}
.subpage #articleHighlights .modal-header h3 {
  text-align: center;
  border-top: 0px !important;
}
.subpage #articleHighlights .modal-body {
  text-align: center;
}
.subpage #articleHighlights .modal-body .stMainServices {
  height: 30px !important;
}
.subpage .content.glossary .heading {
  margin-bottom: 1em;
}
.subpage .content.glossary .heading h1 {
  margin-top: 0;
}
.subpage .content.glossary .heading .search-term {
  font-style: italic;
  color: #555;
}
.subpage .content.glossary .glossary-search {
  text-align: right;
}
.subpage .content.glossary .glossary-search form {
  padding-top: 1em;
}
.subpage .content.glossary #glossary-search {
  width: 363px;
  display: inline-block !important;
}
@media (max-width: 380px) {
  .subpage .content.glossary #glossary-search {
    width: 100%;
  }
}
.subpage .content.glossary #glossary-topics {
  padding: 6px 12px 6px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 363px;
}
@media (max-width: 380px) {
  .subpage .content.glossary #glossary-topics {
    width: 100%;
  }
}
.subpage .content.glossary #glossary-topics-button {
  width: 151px;
}
.subpage .content.glossary .glossary-links {
  text-align: center;
  margin-bottom: 2em;
}
.subpage .content.glossary .glossary-links .btn-group {
  margin-left: 0;
  float: none;
}
.subpage .content.glossary .glossary-term {
  padding: 2em 0 3em;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.subpage .content.glossary .glossary-term:before,
.subpage .content.glossary .glossary-term:after {
  content: " ";
  display: table;
}
.subpage .content.glossary .glossary-term:after {
  clear: both;
}
.subpage .content.glossary .glossary-term .definition {
  display: inline-block;
  vertical-align: middle;
}
.subpage .content.glossary .glossary-term .definition dl dt {
  font-size: 180%;
  font-weight: 300;
  color: #005ca9;
}
.subpage .content.glossary .glossary-term .definition dl .tags {
  margin-bottom: 0.5em;
}
.subpage .content.glossary .glossary-term .definition dl .tags .tag {
  background: #e3eff8;
}
.subpage .content.glossary .glossary-term .sample-sentence {
  font-size: 120%;
  font-weight: 300;
  font-style: italic;
  color: rgba(0, 0, 0, 0.6);
  padding-left: 2em;
}
@media (min-width: 768px) {
  .subpage .content.glossary .glossary-term .sample-sentence {
    padding-top: 2.5em;
    /* padding-top: 3.5em; padding once tags return */
  }
}
.subpage .content.glossary .glossary-term .related-articles span.heading {
  display: block;
  margin: 0;
  font-weight: 600;
}
.subpage .content.glossary .glossary-term .related-articles ul {
  list-style: none;
}
.subpage .content.glossary .glossary-term .related-articles ul .fa {
  color: #ccc;
}
.subpage .content.glossary .glossary-term .tags-section span.heading {
  display: block;
  margin: 0;
  font-weight: 600;
}
.subpage .content.glossary .glossary-term .tags-section .tags {
  padding-left: 40px;
}
.subpage .content.glossary .glossary-term .tags-section .tags .fa {
  color: #ccc;
}
.subpage .content.glossary .glossary-term:first-child {
  border-top: 0;
  padding-top: 0;
}
.subpage .content.glossary .left-gutter {
  display: none;
}
@media (min-width: 768px) {
  .subpage .content.glossary .left-gutter {
    display: block;
    position: absolute;
    top: 0;
    left: -180px;
    text-align: right;
    min-width: 160px;
  }
}
.subpage .content.glossary .left-gutter .banner-ad-rendering-120x600,
.subpage .content.glossary .left-gutter .banner-ad-rendering-160x600 {
  margin-bottom: 30px;
}
.subpage .content.glossary .left-gutter .disclaimer {
  font-size: 11px;
  text-align: right;
  padding-right: 10px;
}
.subpage .content.glossary .right-gutter {
  display: none;
}
@media (min-width: 768px) {
  .subpage .content.glossary .right-gutter {
    display: block;
    position: absolute;
    top: 0;
    right: -180px;
    text-align: left;
    min-width: 160px;
  }
}
.subpage .content.glossary .right-gutter .banner-ad-rendering-120x600,
.subpage .content.glossary .right-gutter .banner-ad-rendering-160x600 {
  margin-bottom: 30px;
}
.subpage .content.glossary .right-gutter .disclaimer {
  font-size: 11px;
  text-align: left;
  padding-left: 10px;
}
.subpage .highlight.ask-the-edvisor.ask-the-edvisor-highlight.show-image {
  background-image: none;
  /* removed per #30807 url("../images/feature-bookcase.jpg")*/
}
.subpage .highlight.ask-the-edvisor {
  margin-top: 2em;
  background-repeat: no-repeat;
  background-position: right 70px;
  /* min-height: 460px; */
  /* removed per #30807 */
  position: relative;
}
@media (max-width: 767px) {
  .subpage .highlight.ask-the-edvisor {
    min-height: 0;
    background-image: none;
  }
}
.subpage .highlight.ask-the-edvisor h1 {
  color: #083c6b;
  font-size: 360%;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .subpage .highlight.ask-the-edvisor h1 {
    font-size: 240%;
    color: #005ca9;
  }
}
.subpage .highlight.ask-the-edvisor .person {
  width: 45%;
  position: absolute;
  bottom: 0;
  right: 3em;
  display: none;
  /* removed per #30807 */
}
@media (max-width: 767px) {
  .subpage .highlight.ask-the-edvisor .person {
    display: none;
  }
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor {
  background: #005ca9;
  color: #fff;
  display: inline-block;
  width: 55%;
  padding: 2em;
  margin-bottom: 3em;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  /*
		.share {
			position: absolute;
			top: 0.5em;
			right: 1em;
			text-transform: uppercase;
			color: rgba(255,255,255,0.5);
			
			a {
				font-size: 140%;
				margin-left: 0.33em;
				color: rgba(255,255,255,0.5);
			}
			
			a:hover {
				color: rgba(255,255,255,0.8);
			}
		}
		*/
}
@media (max-width: 767px) {
  .subpage .highlight.ask-the-edvisor .ask-the-edvisor {
    width: 100%;
    padding: 1em;
    margin-bottom: 2em;
  }
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor h2 {
  font-size: 340%;
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .subpage .highlight.ask-the-edvisor .ask-the-edvisor h2 {
    font-size: 180%;
  }
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .question.featured {
  font-size: 190%;
  margin-top: 0.5em;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.1em;
}
@media (max-width: 767px) {
  .subpage .highlight.ask-the-edvisor .ask-the-edvisor .question.featured {
    font-size: 140%;
  }
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .question.featured a {
  color: #fff;
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .question.featured a:hover,
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .question.featured a:active,
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .question.featured a:focus {
  text-decoration: none;
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .author-info {
  font-size: 90%;
  margin-bottom: 0.5em;
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .author-info a {
  color: #cfe3f3;
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .tags {
  font-size: 90%;
  margin-bottom: 1em;
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .tags .tag {
  color: #005ca9;
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .tags .tag:hover {
  color: #005ca9;
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .answer {
  margin-bottom: 2em;
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .answer a {
  color: #cfe3f3;
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .answer a:hover,
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .answer a:focus,
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .answer a:active {
  color: #a6cbe9;
  text-decoration: none;
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .cta {
  margin-bottom: 0;
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .cta .button {
  padding: 0.6em 1em;
  margin-right: 0.5em;
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .cta .button.orange-clear {
  padding: 0.48em 2em;
}
.subpage .highlight.ask-the-edvisor .ask-the-edvisor .arrow {
  position: absolute;
  top: 50%;
  right: -16px;
  background: url("../images/blue-arrows.png") no-repeat -16px 0;
  height: 32px;
  width: 16px;
}
@media (max-width: 767px) {
  .subpage .highlight.ask-the-edvisor .ask-the-edvisor .arrow {
    display: none;
  }
}
.subpage .filter-bar.ask-faqs .button {
  margin-bottom: 1em;
}
.subpage .content.ask-the-edvisor .item {
  padding: 3em 0 2em;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.subpage .content.ask-the-edvisor .item:before,
.subpage .content.ask-the-edvisor .item:after {
  content: " ";
  display: table;
}
.subpage .content.ask-the-edvisor .item:after {
  clear: both;
}
.subpage .content.ask-the-edvisor .item .col-sm-4 {
  float: left;
}
@media (max-width: 767px) {
  .subpage .content.ask-the-edvisor .item .col-sm-4 {
    width: 100% !important;
  }
}
.subpage .content.ask-the-edvisor .item .question {
  font-size: 140%;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.1em;
}
.subpage .content.ask-the-edvisor .item .question span.quote {
  width: 25px;
  height: 22px;
  background-image: url("../images/quote-sprite.png");
  background-position: -26px 0;
  display: inline-block;
  vertical-align: top;
  margin: 0 0.3em;
}
@media (max-width: 767px) {
  .subpage .content.ask-the-edvisor .item .question span.quote {
    display: none;
  }
}
.subpage .content.ask-the-edvisor .item .question span.quote.right-quote {
  background-position: -26px -22px;
}
.subpage .content.ask-the-edvisor .item .author-info {
  font-size: 90%;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.5em;
}
.subpage .content.ask-the-edvisor .item .tags {
  margin-bottom: 1em;
}
.subpage .content.ask-the-edvisor .item .tags .tag {
  background: #cfe3f3;
}
.subpage .content.ask-the-edvisor .item:first-child {
  border-top: 0;
  padding-top: 1em;
}
.subpage .content.search-results .item {
  padding: 3em 0 2em;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.subpage .content.search-results .item:before,
.subpage .content.search-results .item:after {
  content: " ";
  display: table;
}
.subpage .content.search-results .item:after {
  clear: both;
}
.subpage .content.search-results .item .col-sm-4 {
  float: left;
}
@media (max-width: 767px) {
  .subpage .content.search-results .item .col-sm-4 {
    width: 100% !important;
  }
}
.subpage .content.search-results .item .article,
.subpage .content.search-results .item .glossary-item {
  font-size: 140%;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.1em;
}
.subpage .content.search-results .item .question {
  font-size: 140%;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.1em;
}
.subpage .content.search-results .item .question span.quote {
  width: 25px;
  height: 22px;
  background-image: url("../images/quote-sprite.png");
  background-position: -26px 0;
  display: inline-block;
  vertical-align: top;
  margin: 0 0.3em;
}
@media (max-width: 767px) {
  .subpage .content.search-results .item .question span.quote {
    display: none;
  }
}
.subpage .content.search-results .item .question span.quote.right-quote {
  background-position: -26px -22px;
}
.subpage .content.search-results .item .author-info {
  font-size: 90%;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.5em;
}
.subpage .content.search-results .item .tags {
  margin-bottom: 1em;
}
.subpage .content.search-results .item .tags .tag {
  background: #cfe3f3;
}
.subpage .content.search-results .item:first-child {
  border-top: 0;
  padding-top: 1em;
}
.subpage .content.search-results #SearchTerm {
  width: 612px !important;
}
.subpage .content.search-results .banner-ad-rendering-300x250 {
  padding: 20px 5px;
}
.subpage .content.contact {
  padding-bottom: 2em;
}
.subpage .contact-social {
  border: none;
  border-collapse: collapse;
}
.subpage .contact-social td {
  text-align: center;
  width: 25%;
  border: none;
}
@media (max-width: 563px) {
  .subpage .contact-social td {
    width: 50%;
    display: inline-block;
  }
}
.subpage .contact-social td img {
  width: 64px;
  height: 64px;
}
.subpage .contact-social td p {
  text-align: center;
}
.subpage .content.long-form form {
  margin-bottom: 60px;
}
.subpage .content.long-form form h3 {
  color: #005ca9;
}
.subpage .content.long-form form .cta.submit {
  text-align: center;
  font-size: 130%;
}
.subpage .long-form-thank-you {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .subpage .long-form-thank-you .signup-next-steps {
    padding-left: 40px;
    border-left: 1px dashed #bbb;
  }
}
@media (max-width: 768px) {
  .subpage .content.book-download h1 {
    font-size: 250%;
  }
}
.subpage .content.book-download img.fafsa-book-img {
  float: left;
  width: 80px;
  margin-right: 1em;
  padding-top: 20px;
}
.subpage .content.book-download .sidebar-info {
  font-size: 90%;
}
.subpage .content.book-download .sidebar-info h4 {
  color: #005ca9;
}
.subpage .content.book-download .sidebar-info ul {
  list-style-position: inside;
}
.subpage .content.book-download .subpage .content .fafsa-form .submit {
  text-align: center;
}
.subpage .content.book-download .collapse-left {
  padding-left: 0;
  margin-left: 17px;
}
@media (max-width: 767px) {
  .subpage .content.book-download .collapse-left.dob-yyyy,
  .subpage .content.book-download .collapse-left.dob-dd {
    margin-left: 0px;
  }
}
@media (max-width: 767px) {
  .subpage .content.book-download .dob-dd {
    padding-right: 0px;
    width: 26%;
  }
}
.subpage .content.book-download form {
  padding-top: 2em;
  padding-bottom: 2em;
  margin-left: 80px;
}
@media (min-width: 768px) {
  .subpage .content.book-download form .form-group .col-sm-6 {
    width: 48%;
  }
}
.subpage .content.book-download form .additional-school {
  padding-left: 0px;
}
.subpage .content.book-download form .remove-div {
  font-size: large;
  padding-top: 8px;
}
.subpage .content.book-download form #add-school {
  padding-bottom: 10px;
}
.subpage .content.book-download form .form-control {
  font-size: 120%;
  height: 2.5em;
}
.subpage .content.book-download form label {
  font-size: 120%;
  font-weight: 500;
  padding-top: 10px;
  padding-left: 4px;
}
@media (min-width: 768px) {
  .subpage .content.book-download .graduation-date .col-xs-6 {
    width: 47%;
  }
}
@media (min-width: 768px) {
  .subpage .content.book-download form .button {
    font-size: 180%;
  }
}
.subpage .content.book-download #submit-form {
  width: 100%;
  display: block;
}
.subpage .content.book-download input[type=text]:required,
.subpage .content.book-download select:required,
.subpage .content.book-download input[type=text].conditionally-required,
.subpage .content.book-download select.conditionally-required {
  background-color: white;
}
.subpage .content.book-download img {
  display: block;
  max-width: 100%;
  height: auto;
}
.subpage .content.in-the-news h2 {
  width: auto;
}
.subpage .content.in-the-news .news-logos {
  margin: 2em 0;
}
.subpage .content.in-the-news .press-item {
  margin-bottom: 2em;
}
.subpage .content.in-the-news .press-item .media-logo {
  width: auto;
  height: 40px;
  margin-bottom: 0.5em;
  display: block;
}
.subpage .content.in-the-news .press-item .media-logo img {
  width: auto;
  max-width: 100%;
  max-height: 40px;
  margin: auto;
}
.subpage .content.in-the-news .press-item .press-source-info {
  margin: 0;
}
.subpage .content.in-the-news .press-item .press-source-info .author {
  font-weight: bold;
}
.subpage .content.in-the-news .press-item .news-date {
  color: #666;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .subpage .content.in-the-news .col-sm-6 {
    float: none;
    display: inline-block;
    width: 49%;
    vertical-align: top;
  }
}
.subpage .tools h1 {
  padding-bottom: 30px;
}
.subpage .tools .results-title {
  padding-left: 30px;
}
.subpage .tools .calculator-title {
  padding-left: 15px;
}
.subpage .tools fieldset {
  margin-top: 30px;
}
.subpage .tools .panel-heading {
  background-color: #005ca9;
  border-color: #005ca9;
  color: #fff;
}
.subpage .tools .panel-heading .panel-title {
  font-size: 18px;
  font-weight: 400;
}
.subpage .tools .banner-ad-rendering-300x250 {
  padding: 20px 5px;
}
.subpage .tools .banner-ad-rendering-300x250 img {
  width: 100%;
  max-width: 300px;
}
.subpage .tools .list-group {
  margin-bottom: 0;
}
.subpage .tools .field-info {
  position: absolute;
  top: 10px;
  right: 5px;
}
@media (min-width: 768px) {
  .subpage .tools .field-info {
    position: :after relative;
    top: auto;
    right: :after auto;
  }
}
@media (max-width: 767px) {
  .subpage .tools .field-info {
    margin-top: -10px;
  }
}
.subpage .tools .field-info i {
  font-size: 18px;
}
@media (min-width: 768px) {
  .subpage .tools .field-info i {
    font-size: 24px;
    margin-top: 5px;
  }
}
.subpage .tools .legend-info {
  float: right;
  padding-left: 30px;
}
@media (min-width: 768px) {
  .subpage .tools .legend-info {
    position: :after relative;
    top: auto;
    right: :after auto;
  }
}
@media (max-width: 767px) {
  .subpage .tools .legend-info {
    margin-top: -10px;
  }
}
.subpage .tools .legend-info i {
  font-size: 18px;
}
@media (min-width: 768px) {
  .subpage .tools .legend-info i {
    font-size: 24px;
    margin-top: 5px;
  }
}
.subpage .tools .submit {
  text-align: center;
}
.subpage .tools table td:nth-child(1) {
  font-weight: 700;
}
.subpage .tools table th:nth-child(2),
.subpage .tools table th:nth-child(3) {
  text-align: center;
  width: 20%;
}
.subpage .tools table td:nth-child(2),
.subpage .tools table td:nth-child(3) {
  text-align: right;
  width: 20%;
}
.subpage .tools .results h3 {
  color: #005ca9;
}
.subpage .tools .results .col-sm-12 {
  padding-bottom: 30px;
}
.subpage .tools .attention {
  font-weight: 700;
  color: #005ca9;
}
.subpage .tools .related-content h4 {
  color: #005ca9;
  font-size: 180%;
}
.subpage .tools .related-content a {
  text-decoration: none;
  color: #333;
}
.subpage .tools .related-content a i {
  color: #005ca9;
}
.subpage .tools .related-content a:hover {
  text-decoration: underline;
}
.subpage .tools .related-content ul {
  list-style: none;
  padding: 0;
  padding-bottom: 20px;
}
.subpage .tools .related-content ul li {
  margin-bottom: 0.5em;
}
.subpage .jump-menu {
  margin-bottom: 2em;
  font-weight: 600;
}
.subpage .jump-menu .select {
  border: 2px solid rgba(0, 0, 0, 0.2);
  width: 240px;
  background-position: 195px 50%;
  font-weight: normal;
}
.subpage table {
  margin: 2em 0;
  border-collapse: collapse;
  font-size: 80%;
  color: #333;
  width: 100%;
}
.subpage table caption {
  font-weight: 700;
  text-align: left;
  font-size: 140%;
  margin-bottom: 1em;
}
.subpage table thead th {
  font-weight: 700;
  background: #cfe3f3;
  border: 1px solid rgba(0, 0, 0, 0.2);
  vertical-align: bottom;
  padding: 0.5em;
}
.subpage table tbody td {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.5em;
  vertical-align: top;
}
.subpage table tbody td p {
  font-size: 13px !important;
}
.subpage table ul {
  font-size: 100% !important;
}
.subpage .lender-links {
  padding: 30px 0;
}
.subpage .lender-links table td {
  border: none;
  vertical-align: initial;
}
.subpage table.striped tbody tr:nth-child(even) {
  background: #e7f2fb;
}
.subpage table.data th {
  text-align: center;
}
.subpage table.data th[rowspan] {
  text-align: left;
}
.subpage .box-content {
  background: #005ca9;
  color: #fff;
  padding: 2em;
  margin-bottom: 1em;
  clear: both;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.subpage .box-content h2,
.subpage .box-content h3,
.subpage .box-content h4 {
  border-top: none !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.subpage .box-content .cta .button {
  display: block;
  text-align: center;
}
.subpage .box-content .cta .button.orange {
  color: #333;
}
.subpage .box-content ul li,
.subpage .box-content ol li {
  margin-bottom: 0 !important;
}
.subpage .box-content ul:last-child {
  margin-bottom: 0;
}
.subpage .box-content.clear {
  background: #fff;
  border: 2px solid #005ca9;
  color: #333;
  clear: both;
}
.subpage .box-content.clear h2,
.subpage .box-content.clear h3 {
  color: #005ca9;
}
.subpage .rating {
  text-align: center;
  padding: 2em 0;
}
.subpage .rating .question {
  font-size: 190%;
  vertical-align: middle;
  display: inline-block;
  margin-right: 1em;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
}
.subpage .next-steps {
  background: #e7f2fb;
  padding: 2em 0;
  margin-top: 2em;
}
.subpage .next-steps .section-title {
  color: #005ca9;
  font-size: 180%;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 10px;
}
.subpage .next-steps a {
  text-decoration: none;
  color: #333;
}
.subpage .next-steps a i {
  color: #005ca9;
}
.subpage .next-steps a:hover {
  text-decoration: underline;
}
.subpage .next-steps ul {
  list-style: none;
  padding: 0;
}
.subpage .next-steps ul li {
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .subpage .next-steps ul li {
    margin-bottom: 1em;
    margin-top: 1em;
  }
}
.subpage .utility h1 {
  font-size: 300%;
  margin-bottom: 20px;
  padding-top: 0;
  color: #005ca9;
}
.subpage .utility h3 {
  margin: 0;
  font-weight: bolder;
  font-style: italic;
}
.subpage .utility p {
  margin: 0;
  font-weight: 600;
  color: #423E3E;
}
.subpage .utility .confirm-form {
  padding-top: 50px;
}
.subpage .utility .confirm-form strong {
  font-size: 21px;
  color: #4C4848;
}
.subpage.apply h1,
.subpage.apply.lender-form h1 {
  text-align: center;
  color: #fff;
  margin-top: 0;
  font-size: 37px;
  font-weight: 900;
}
.subpage.apply p,
.subpage.apply.lender-form p {
  text-align: center;
  color: #fff;
  padding: 0 3em;
  font-size: 22px;
  line-height: 1.66;
  margin-bottom: .66em;
}
.subpage.apply .disclaimer,
.subpage.apply.lender-form .disclaimer {
  font-size: 16px;
}
.subpage.apply .disclaimer p,
.subpage.apply.lender-form .disclaimer p {
  font-size: 16px !important;
}
.subpage.apply .disclaimer a,
.subpage.apply.lender-form .disclaimer a {
  color: #fff;
  text-decoration: underline;
}
.subpage.apply .disclaimer a:hover,
.subpage.apply.lender-form .disclaimer a:hover {
  color: #428bca;
}
.subpage span.twitter-typeahead {
  width: 100%;
}
.load-more {
  display: block;
  padding: 2em 5em;
  text-align: center;
}
.biography-highlight .author-image {
  float: left;
  margin-right: 1em;
}
/* footer.less */
footer .footer-top {
  background: #005ca9;
  color: #fff;
  padding: 2em 0;
  text-align: center;
}
footer .footer-top .section-title {
  font-size: 36px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  footer .footer-top .fa-stack {
    display: block;
    margin: 0 auto;
  }
}
footer .footer-top .fa-inverse {
  color: #0d4d7f;
}
footer .footer-top p {
  font-size: 18px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  footer .footer-top p {
    font-size: 80%;
  }
}
footer .footer-top a {
  color: rgba(255, 255, 255, 0.5);
}
footer .footer-top a:hover {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px) {
  footer .footer-top .newsletter input.email {
    width: 65%;
  }
}
footer .footer-top #newsletter-link {
  font-weight: bold;
  color: #e7f2fb;
}
footer .footer-top #newsletter-link:hover {
  color: #fff;
}
footer .footer-top ul.social-links {
  text-align: left;
  font-size: 18px;
  list-style: none;
  padding: 0;
}
@media (max-width: 767px) {
  footer .footer-top ul.social-links {
    padding: 0;
    text-align: center;
  }
}
footer .footer-top ul.social-links li {
  display: inline-block;
}
@media (max-width: 767px) {
  footer .footer-top ul.social-links li {
    margin: 0 5px;
  }
}
footer .footer-top ul.social-links li a {
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
}
footer .footer-top ul.social-links li a .fa-inverse {
  color: #0d4d7f;
}
@media (max-width: 320px) {
  footer .footer-top ul.social-links li:nth-child(1) {
    display: block;
    margin-bottom: 0.5em;
  }
}
footer .footer-bottom {
  background: #0d4d7f;
  color: #fff;
  text-align: center;
  padding: 50px 15px;
}
footer .footer-bottom p {
  font-size: 16px;
}
footer .footer-bottom ul {
  list-style: none;
  margin-bottom: 10px;
  padding: 0;
}
@media (max-width: 767px) {
  footer .footer-bottom ul {
    line-height: 2;
  }
  footer .footer-bottom ul:last-of-type {
    margin-bottom: 3rem !important;
  }
}
footer .footer-bottom ul li {
  display: inline-block;
}
footer .footer-bottom ul li a {
  font-weight: 700;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0 6px;
  font-size: 16px;
}
footer .footer-bottom ul li:nth-child(1) a {
  border-left: 0;
}
.edv-exit-modal .modal-body {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.edv-exit-modal .modal-body h2 {
  color: #fb4311;
  width: 60%;
  margin: 10px 0;
  font-weight: 900;
}
.edv-exit-modal .modal-body ul {
  list-style: none;
  padding-left: 0;
  font-size: 16px;
  margin-bottom: 1em;
}
.edv-exit-modal .modal-body .cta .button {
  background: #fbbf11;
  border-bottom: 5px solid #d1a012;
  font-size: 18px;
  margin-bottom: 30px;
  color: #fff !important;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}
.edv-exit-modal .modal-body .close {
  position: absolute;
  top: 3px;
  right: 10px;
  font-size: 32px;
  font-weight: 900;
}
.alternate-exit-modal .modal-body,
.subpage.apply,
.exit-modal-with-landing-form .modal-body {
  /*
  ol {
      padding: 0;
      text-align: center;
  }

  ol li {
      display: inline-block;
      width: 30%;
      font-weight: bold;
  }
      */
}
.alternate-exit-modal .modal-body h1,
.subpage.apply h1,
.exit-modal-with-landing-form .modal-body h1 {
  color: #2980b9;
  font-size: 32px;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 767px) {
  .alternate-exit-modal .modal-body h1,
  .subpage.apply h1,
  .exit-modal-with-landing-form .modal-body h1 {
    font-size: 24px;
    margin-top: 0;
  }
}
.alternate-exit-modal .modal-body p,
.subpage.apply p,
.exit-modal-with-landing-form .modal-body p {
  color: #666;
  text-align: center;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .alternate-exit-modal .modal-body p,
  .subpage.apply p,
  .exit-modal-with-landing-form .modal-body p {
    font-size: 14px;
    padding: 0;
  }
}
.alternate-exit-modal .modal-body .steps,
.subpage.apply .steps,
.exit-modal-with-landing-form .modal-body .steps {
  text-align: left;
  padding-left: 16%;
  margin-bottom: 10px;
}
@media (min-width: 440px) {
  .alternate-exit-modal .modal-body .steps,
  .subpage.apply .steps,
  .exit-modal-with-landing-form .modal-body .steps {
    padding-left: 26%;
  }
}
@media (min-width: 600px) {
  .alternate-exit-modal .modal-body .steps,
  .subpage.apply .steps,
  .exit-modal-with-landing-form .modal-body .steps {
    padding-left: 0;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .alternate-exit-modal .modal-body .steps,
  .subpage.apply .steps,
  .exit-modal-with-landing-form .modal-body .steps {
    font-size: 130%;
  }
}
.alternate-exit-modal .modal-body .steps .icon-stack,
.subpage.apply .steps .icon-stack,
.exit-modal-with-landing-form .modal-body .steps .icon-stack {
  display: block;
  margin-bottom: 0.5em;
}
@media (min-width: 600px) {
  .alternate-exit-modal .modal-body .steps .icon-stack,
  .subpage.apply .steps .icon-stack,
  .exit-modal-with-landing-form .modal-body .steps .icon-stack {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .alternate-exit-modal .modal-body .steps .icon-stack,
  .subpage.apply .steps .icon-stack,
  .exit-modal-with-landing-form .modal-body .steps .icon-stack {
    margin-bottom: 1em;
  }
}
.alternate-exit-modal .modal-body .steps .icon-stack .fa-circle,
.subpage.apply .steps .icon-stack .fa-circle,
.exit-modal-with-landing-form .modal-body .steps .icon-stack .fa-circle {
  color: #2980b9;
}
.alternate-exit-modal .modal-body .steps .icon-stack .text,
.subpage.apply .steps .icon-stack .text,
.exit-modal-with-landing-form .modal-body .steps .icon-stack .text {
  color: #fff;
  font-style: normal;
  /*font-size: 20px;*/
  padding-top: 0;
}
@media (min-width: 600px) {
  .alternate-exit-modal .modal-body .steps .icon-stack .text,
  .subpage.apply .steps .icon-stack .text,
  .exit-modal-with-landing-form .modal-body .steps .icon-stack .text {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .alternate-exit-modal .modal-body .steps .icon-stack .text,
  .subpage.apply .steps .icon-stack .text,
  .exit-modal-with-landing-form .modal-body .steps .icon-stack .text {
    font-size: 24px;
  }
}
.alternate-exit-modal .modal-body .steps .icon-stack .description,
.subpage.apply .steps .icon-stack .description,
.exit-modal-with-landing-form .modal-body .steps .icon-stack .description {
  font-weight: bold;
  font-size: 16px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .alternate-exit-modal .modal-body .steps .icon-stack .description,
  .subpage.apply .steps .icon-stack .description,
  .exit-modal-with-landing-form .modal-body .steps .icon-stack .description {
    font-size: 16px;
  }
}
.alternate-exit-modal .modal-body form,
.subpage.apply form,
.exit-modal-with-landing-form .modal-body form {
  background: #F7F7EF;
  padding: 15px;
  border: #3498db 2px solid;
  margin-bottom: 20px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .alternate-exit-modal .modal-body form,
  .subpage.apply form,
  .exit-modal-with-landing-form .modal-body form {
    padding: 30px;
    border: 30px solid #3498db;
  }
}
.alternate-exit-modal .modal-body form .typeahead.dropdown-menu,
.subpage.apply form .typeahead.dropdown-menu,
.exit-modal-with-landing-form .modal-body form .typeahead.dropdown-menu {
  max-height: 240px;
  overflow-y: scroll;
}
.alternate-exit-modal .modal-body form .typeahead.dropdown-menu li a,
.subpage.apply form .typeahead.dropdown-menu li a,
.exit-modal-with-landing-form .modal-body form .typeahead.dropdown-menu li a {
  white-space: normal;
}
.alternate-exit-modal .modal-body form .school-name,
.subpage.apply form .school-name,
.exit-modal-with-landing-form .modal-body form .school-name {
  font-size: 16px;
  padding: 12px;
}
@media (min-width: 768px) {
  .alternate-exit-modal .modal-body form .school-name,
  .subpage.apply form .school-name,
  .exit-modal-with-landing-form .modal-body form .school-name {
    font-size: 20px;
    height: auto;
  }
}
.alternate-exit-modal .modal-body form .submit,
.subpage.apply form .submit,
.exit-modal-with-landing-form .modal-body form .submit {
  margin-top: 10px;
  margin-bottom: 0;
}
.alternate-exit-modal .modal-body form .submit .button,
.subpage.apply form .submit .button,
.exit-modal-with-landing-form .modal-body form .submit .button {
  width: 100%;
  font-size: 14px;
}
@media (min-width: 768px) {
  .alternate-exit-modal .modal-body form .submit .button,
  .subpage.apply form .submit .button,
  .exit-modal-with-landing-form .modal-body form .submit .button {
    font-size: 22px;
  }
}
.alternate-exit-modal .modal-body .disclaimer,
.subpage.apply .disclaimer,
.exit-modal-with-landing-form .modal-body .disclaimer {
  margin-bottom: 10px;
}
section[data-edv-component="student-loan-handbook-form"] .container h1,
section[data-edv-component="fafsa-download-form"] .container h1 {
  text-align: center;
  margin-top: 0;
  font-size: 37px;
  font-weight: 900;
  margin-bottom: .66em;
}
section[data-edv-component="student-loan-handbook-form"] .container form input,
section[data-edv-component="fafsa-download-form"] .container form input,
section[data-edv-component="student-loan-handbook-form"] .container form select,
section[data-edv-component="fafsa-download-form"] .container form select {
  font-size: 20px;
  padding: 12px;
  height: auto;
}
@media (max-width: 767px) {
  section[data-edv-component="student-loan-handbook-form"] .container form,
  section[data-edv-component="fafsa-download-form"] .container form {
    border: 2px solid #005ca9 !important;
    margin-bottom: 20px;
    padding: 20px !important;
  }
  section[data-edv-component="student-loan-handbook-form"] .container form .school-name,
  section[data-edv-component="fafsa-download-form"] .container form .school-name {
    font-size: 14px;
  }
  section[data-edv-component="student-loan-handbook-form"] .container form .submit,
  section[data-edv-component="fafsa-download-form"] .container form .submit {
    margin: 10px 0 0 !important;
  }
  section[data-edv-component="student-loan-handbook-form"] .container form .submit .button,
  section[data-edv-component="fafsa-download-form"] .container form .submit .button {
    font-size: 16px;
  }
}
section[data-edv-component="student-loan-handbook-form"] .container form .terms,
section[data-edv-component="fafsa-download-form"] .container form .terms {
  margin: 5px;
}
section[data-edv-component="student-loan-handbook-form"] .container .disclaimer,
section[data-edv-component="fafsa-download-form"] .container .disclaimer {
  padding: 30px;
}
@media (max-width: 767px) {
  section[data-edv-component="student-loan-handbook-form"] .container .disclaimer,
  section[data-edv-component="fafsa-download-form"] .container .disclaimer {
    margin-bottom: 0;
  }
}
section[data-edv-component="student-loan-handbook-form"] .container .disclaimer p,
section[data-edv-component="fafsa-download-form"] .container .disclaimer p {
  font-size: 16px;
}
section[data-edv-component="student-loan-handbook-form"] .container .disclaimer a,
section[data-edv-component="fafsa-download-form"] .container .disclaimer a {
  color: #fff;
  text-decoration: underline;
}
section[data-edv-component="student-loan-handbook-form"] .container .disclaimer a:hover,
section[data-edv-component="fafsa-download-form"] .container .disclaimer a:hover {
  color: #428bca;
}
section[data-edv-component="student-loan-handbook-form"] .container .exit-modal-with-landing-form .modal-body button.close,
section[data-edv-component="fafsa-download-form"] .container .exit-modal-with-landing-form .modal-body button.close {
  margin-top: -10px;
  margin-right: -5px;
}
section[data-edv-component="student-loan-handbook-form"] .container .exit-modal-with-landing-form .modal-body h1,
section[data-edv-component="fafsa-download-form"] .container .exit-modal-with-landing-form .modal-body h1 {
  margin-bottom: 0;
  margin-top: 10px;
}
section[data-edv-component="student-loan-handbook-form"] .container .exit-modal-with-landing-form .modal-body section.content-wrap,
section[data-edv-component="fafsa-download-form"] .container .exit-modal-with-landing-form .modal-body section.content-wrap {
  margin-top: 20px;
}
section[data-edv-component="student-loan-handbook-form"] .container .exit-modal-with-landing-form .modal-body section.content-wrap form,
section[data-edv-component="fafsa-download-form"] .container .exit-modal-with-landing-form .modal-body section.content-wrap form {
  margin-bottom: 0;
}
section[data-edv-component="student-loan-handbook-form"] .container .exit-modal-with-landing-form .modal-body section.content-wrap .terms,
section[data-edv-component="fafsa-download-form"] .container .exit-modal-with-landing-form .modal-body section.content-wrap .terms {
  font-size: 90%;
  margin: 5px;
  line-height: 1.2;
}
section[data-edv-component="student-loan-handbook-form"] .container .student-loan-handbook-wrapper,
section[data-edv-component="fafsa-download-form"] .container .student-loan-handbook-wrapper {
  padding: 20px;
  background: white;
  border-radius: 6px;
  margin-top: 2rem;
}
section[data-edv-component="student-loan-handbook-form"] .container .student-loan-handbook-wrapper h1,
section[data-edv-component="fafsa-download-form"] .container .student-loan-handbook-wrapper h1 {
  color: #2980b9;
  text-shadow: none;
}
section[data-edv-component="student-loan-handbook-form"] .container .student-loan-handbook-wrapper p,
section[data-edv-component="fafsa-download-form"] .container .student-loan-handbook-wrapper p {
  color: #666;
  text-shadow: none;
}
section[data-edv-component="student-loan-handbook-form"] #call-to-action-paragraph-wrapper #conversion-completed-message-text,
section[data-edv-component="fafsa-download-form"] #call-to-action-paragraph-wrapper #conversion-completed-message-text {
  display: none;
}
section[data-edv-component="student-loan-handbook-form"].conversion-completed #call-to-action-paragraph-wrapper .private-loan-message,
section[data-edv-component="fafsa-download-form"].conversion-completed #call-to-action-paragraph-wrapper .private-loan-message,
section[data-edv-component="student-loan-handbook-form"].conversion-completed #call-to-action-paragraph-wrapper .message-text,
section[data-edv-component="fafsa-download-form"].conversion-completed #call-to-action-paragraph-wrapper .message-text {
  display: none;
}
section[data-edv-component="student-loan-handbook-form"].conversion-completed #call-to-action-paragraph-wrapper #conversion-completed-message-text,
section[data-edv-component="fafsa-download-form"].conversion-completed #call-to-action-paragraph-wrapper #conversion-completed-message-text {
  display: block;
}
section[data-edv-component="student-loan-handbook-form"].conversion-completed #call-to-action-paragraph-wrapper #conversion-completed-message-text p,
section[data-edv-component="fafsa-download-form"].conversion-completed #call-to-action-paragraph-wrapper #conversion-completed-message-text p {
  font-size: 120%;
}
section[data-edv-component="student-loan-handbook-form"].conversion-completed h1,
section[data-edv-component="fafsa-download-form"].conversion-completed h1,
section[data-edv-component="student-loan-handbook-form"].conversion-completed form,
section[data-edv-component="fafsa-download-form"].conversion-completed form {
  display: none;
}
.alternate-exit-modal .modal-title,
section[data-edv-component="student-loan-handbook-form"] .modal-title {
  font-size: 37px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0;
  margin-top: 10px;
  color: #2980b9;
  line-height: 1.2;
}
section[data-name="fafsa-download-exit-modal"] .modal-title,
section[data-name="age-gate"] .modal-title,
#email-this-article.modal .modal-title {
  font-weight: 300;
  text-align: center;
  font-size: 30px;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin: 0.83em 0;
}
section[data-name="landing-form"] .container h1 {
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  margin-bottom: .11em;
  /*
        margin-top: 0;
        font-size: 37px;
        font-weight: 900;
        */
}
section[data-name="landing-form"] .container p {
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  padding: 0 3em;
  font-size: 22px;
  line-height: 1.66;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  section[data-name="landing-form"] .container p {
    padding: 0;
  }
}
section[data-name="landing-form"].conversion-completed .container p {
  padding-top: 2em;
  font-size: 140%;
}
section[data-name="student-loan-guide-stalker"] .container form .terms {
  text-align: left;
}
#fafsa-download-exit-modal-form h5 {
  margin: 0;
}
#fafsa-download-exit-modal-form p.lead {
  text-align: inherit;
  padding: 0;
  margin-bottom: 5px;
}
/* banner ads */
@media (max-width: 564px) {
  .banner-ad {
    display: block;
    text-align: center;
    margin: 0 auto 2em;
  }
}
.banner-ad img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 564px) {
  .banner-ad img {
    width: auto !important;
    margin: 0 auto;
    max-width: 100%;
  }
}
.banner-ad .disclaimer {
  text-align: center;
  font-size: 70%;
  color: #666;
}
.banner-ad.right {
  margin: 1em 0 1em 1em;
}
/* Typeahead Banner */
section.typeahead-banner {
  background: #04a4db;
  padding: 10px 0 20px;
  text-align: center;
  font-size: 160%;
}
section.typeahead-banner .container {
  text-align: center;
}
section.typeahead-banner #typeahead-wrapper {
  width: 60%;
  margin: 0 auto;
}
section.typeahead-banner #typeahead-wrapper #typeahead-input input,
section.typeahead-banner #typeahead-wrapper #typeahead-cta input {
  width: 100%;
}
@media (max-width: 991px) {
  section.typeahead-banner #typeahead-wrapper #typeahead-input {
    margin-bottom: 5px;
  }
}
@media (min-width: 992px) {
  section.typeahead-banner #typeahead-wrapper #typeahead-input {
    padding: 5px 10px;
  }
}
@media (min-width: 992px) {
  section.typeahead-banner #typeahead-wrapper #typeahead-cta input {
    margin-left: 5px;
  }
}
section.typeahead-banner #typeahead-wrapper #banner_error_messages {
  font-size: 17px;
}
section.typeahead-banner #typeahead-wrapper #banner_error_messages p {
  padding-left: 0;
}
section.typeahead-banner .private-loan-message {
  color: #005ca9;
  font-weight: 700;
  font-size: 140%;
  color: white;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 767px) {
  section.typeahead-banner .private-loan-message {
    font-size: 120%;
  }
}
section.typeahead-banner .module-school-name {
  font-size: 22px;
  height: 44px;
  width: 380px;
}
section.typeahead-banner .EDV_LW_submit.button.red {
  font-size: 20px;
}
section.typeahead-banner .form-control {
  width: auto;
  display: inline-block;
  width: 300px;
  text-align: left;
}
section.typeahead-banner .error-messages p {
  text-align: left;
  color: red;
  font-style: italic;
  padding-left: 1em;
}
section.typeahead-banner .typeahead.dropdown-menu {
  text-align: left;
  max-height: 240px;
  overflow-y: scroll;
}
section.typeahead-banner .typeahead.dropdown-menu li a {
  white-space: normal;
}
section.typeahead-banner.type-2.psl-widget {
  background-color: white;
  padding: 0;
}
section.typeahead-banner.type-2.psl-widget .twitter-typeahead .tt-open {
  top: inherit !important;
}
@media (max-width: 992px) {
  section.typeahead-banner.type-2.psl-widget .twitter-typeahead .tt-open {
    top: 45px !important;
  }
}
section.typeahead-banner.type-2 .container {
  padding: 0 !important;
}
section.typeahead-banner.type-2 .private-loan-message {
  background-color: #326887;
  color: white;
  padding: 5px;
  margin-bottom: 0 !important;
}
@media (max-width: 991px) {
  section.typeahead-banner.type-2 {
    display: inline-block;
  }
  section.typeahead-banner.type-2 .module-school-name {
    margin-bottom: 15px;
    width: 80%;
  }
}
section.typeahead-banner.type-2 input.EDV_LW_submit.button.red {
  height: 42px;
  font-size: 18px;
  padding: 0 25px;
}
section.typeahead-banner .twitter-typeahead {
  display: initial !important;
}
section.typeahead-banner .twitter-typeahead .tt-open {
  top: inherit !important;
}
@media (max-width: 992px) {
  section.typeahead-banner .twitter-typeahead .tt-open {
    top: 45px !important;
  }
}
.clear:before,
.clear:after {
  content: " ";
  display: table;
}
.clear:after {
  clear: both;
}
.typeahead-container300x250 {
  width: 300px;
  height: 250px;
}
.typeahead-container300x250 .typeahead-widget300x250 {
  padding: 10px;
}
.typeahead-container300x250 .typeahead-widget300x250 #typeahead-form300x250 {
  background: transparent none no-repeat;
  border: 0;
  padding: 140px 0 0;
}
.typeahead-container300x250 .typeahead-widget300x250 #typeahead-form300x250 .stackedRow {
  padding-bottom: 7px;
}
.typeahead-container300x250 .typeahead-widget300x250 #typeahead-form300x250 .stackedRow .typeahead.dropdown-menu {
  max-height: 240px;
  overflow-y: scroll;
}
.typeahead-container300x250 .typeahead-widget300x250 #typeahead-form300x250 .stackedRow .typeahead.dropdown-menu li a {
  white-space: normal;
}
.typeahead-container300x250 .typeahead-widget300x250 #typeahead-form300x250 .stackedRow #error-messages {
  font-weight: bold;
  color: white;
  font-size: 11px;
}
.typeahead-container300x250 .typeahead-widget300x250 #typeahead-form300x250 .stackedRow #error-messages p {
  margin-bottom: -4px;
}
.typeahead-container300x250 .typeahead-widget300x250 #typeahead-form300x250 #school {
  border: 2px solid #333;
  padding: 0.5em;
  font-size: 14px;
  width: 100%;
}
.typeahead-container300x250 .typeahead-widget300x250 #typeahead-form300x250 .EDV_LW_submit {
  width: 99%;
}
#siteSearch {
  float: right;
}
.subpage.apply {
  background: url("/Content/images/blurred-college-background.jpg") center center no-repeat #7f8c8d;
  background-size: cover;
}
.subpage.apply article {
  background: #fff;
  padding: 10px;
  margin: 15px -15px 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 600px) {
  .subpage.apply article {
    padding: 10px 20px;
  }
}
@media (min-width: 992px) {
  .subpage.apply article {
    padding: 10px 30px;
    margin-bottom: 60px;
  }
}
.edv.well {
  background-color: #e7f2fb;
  margin-bottom: 1em;
  padding: 0.7em 1em 0.7em 1em;
  border: 3px solid #005ca9;
}
.edv.well h3 {
  color: #005ca9;
  font-weight: 700;
  font-size: 140%;
  margin-top: 0;
  margin-bottom: 27px;
}
.valign-children:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.valign-children .valign {
  display: inline-block;
  vertical-align: middle;
  float: none;
}
.discover-logo {
  width: 140px;
}
.age-gate-alpha .modal-header {
  background-color: #0d4d7f;
}
.age-gate-alpha .modal-header .edvisors-logo {
  height: 32px;
}
.subpage .content.article-detail .article-info {
  position: relative;
  overflow: auto;
  margin: .25em 0 .75em 0;
  padding: 0px;
}
.subpage .content.article-detail .author-info {
  margin: 0px;
  padding-bottom: 0px;
  float: left;
}
.subpage .content.article-detail .author-date {
  display: inline-block;
  float: left;
}
.subpage .content.article-detail .email-this-top {
  font-size: 14px;
  padding-top: 2px;
  float: left;
}
.subpage .content.article-detail .email-this-wrap {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  text-align: center;
}
.subpage .content.article-detail .email-this-wrap .section-title {
  font-weight: 300;
  line-height: 1.2;
  font-size: 24px;
  margin-bottom: 1em;
  padding: 0px;
  margin: 0 0 15px 0;
}
.email-this-modal h2 {
  margin-top: 10px;
}
.email-this-modal .close {
  position: absolute;
  top: 5px;
  right: 25px;
  opacity: .8;
}
.email-this-modal .article-description {
  margin: 15px 0 15px 0;
  position: relative;
  overflow: auto;
  font-size: 12px;
  border: 1px solid #ccc;
  padding: 15px;
}
.email-this-modal .article-description h3 {
  margin: 0 0 2px 0;
  padding: 0;
  line-height: 100%;
  font-size: 16px;
  font-weight: bold;
}
.email-this-modal .article-description .email-this-description p {
  font-size: 12px;
  margin-top: 10px;
  word-wrap: break-word;
}
.email-this-modal .email-this-image {
  margin-bottom: 10px;
}
.email-this-modal .email-this-image img {
  height: auto;
  width: 100%;
  margin: 0 auto 0 0;
  display: block;
}
.email-this-modal .submit {
  text-align: right;
}
.email-this-modal .submit #submit-email-this-form.disabled {
  background-color: #ccc;
  color: #fff;
  cursor: not-allowed;
}
.email-this-modal .terms {
  font-size: 12px;
}
.email-this-modal .terms input[type='checkbox'] {
  vertical-align: text-bottom;
}
.email-this-modal .terms .help-block {
  font-size: 14px;
}
.email-this-modal .email-this-confirmation {
  font-size: 32px;
  font-weight: bold;
  padding: 40px;
}
.email-this-modal .email-this-confirmation .start-over {
  color: #428bca;
  margin: 10px 0 0;
  float: right;
}
#student-loan-handbook-modal section.content-wrap {
  min-height: 100px;
}
#student-loan-handbook-modal section.content-wrap .help-block {
  color: red;
  text-align: left;
}
#student-loan-handbook-modal section.content-wrap #banner-form-stalker-message .terms {
  font-size: 22px;
}
#student-loan-handbook-modal section.content-wrap form {
  background: none;
  border: none;
  padding: 20px 0;
}
#student-loan-handbook-modal section.content-wrap form h1 {
  font-weight: 800;
  text-align: center;
  color: #3498db;
  margin: 0;
}
#student-loan-handbook-modal section.content-wrap form .input-wrapper {
  padding: 20px;
  border: 30px solid #3498db;
  border-radius: 6px;
}
#student-loan-handbook-modal section.content-wrap form .input-wrapper input,
#student-loan-handbook-modal section.content-wrap form .input-wrapper select {
  font-size: 20px;
  padding: 12px;
  height: auto;
}
#student-loan-handbook-modal section.content-wrap form .input-wrapper .submit.form-group {
  margin-top: 10px;
  margin-bottom: 0;
}
#student-loan-handbook-modal section.content-wrap form .input-wrapper .submit.form-group .button {
  font-size: 22px;
  width: 100%;
}
@media (max-width: 425px) {
  #student-loan-handbook-modal section.content-wrap form .input-wrapper .submit.form-group .button {
    font-size: inherit;
    white-space: normal;
  }
}
#student-loan-handbook-modal section.content-wrap form .private-loan-message {
  padding: 10px 0;
  text-align: center;
}
#student-loan-handbook-modal section.content-wrap form #email_stalker {
  margin-bottom: 10px;
}
#student-loan-handbook-modal section.content-wrap form .terms {
  font-size: 12px;
}
#student-loan-handbook-modal section.content-wrap form .blue-back {
  background-color: #005CA9;
}
#student-loan-handbook-modal section.content-wrap form .blue-back.b-top {
  padding-top: 20px;
}
#student-loan-handbook-modal section.content-wrap form .blue-back.b-bottom {
  padding-bottom: 20px;
}
#student-loan-handbook-modal section.content-wrap form .button.green {
  border-bottom: 3px solid #208e4e;
  background: #54d98c;
  background-image: -moz-linear-gradient(top, #54d98c, #2ecc71);
  background-image: -ms-linear-gradient(top, #54d98c, #2ecc71);
  background-image: -o-linear-gradient(top, #54d98c, #2ecc71);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#54d98c), to(#2ecc71));
  background-image: -webkit-linear-gradient(top, #54d98c, #2ecc71);
  background-image: linear-gradient(top, #54d98c, #2ecc71);
  color: white;
  margin-top: 20px;
  width: 100%;
}
section[data-edv-component="student-loan-handbook-form"].conversion-completed #student-loan-handbook-modal section.content-wrap {
  min-height: initial;
}
.panel-no-border {
  box-shadow: none;
}
#psl-calc .col-sm-6 {
  float: left;
}
/* classes for angular displaying */
a {
  cursor: pointer;
}
.ng-cloak {
  display: none;
}
.ng-hide-add {
  -webkit-transition: 0.2s linear all;
  -moz-transition: 0.2s linear all;
  -o-transition: 0.2s linear all;
  transition: 0.2s linear all;
  opacity: 1;
}
.ng-hide-add.ng-hide-add-active {
  opacity: 0;
}
.ng-hide-remove {
  -webkit-transition: 0.2s linear all;
  -moz-transition: 0.2s linear all;
  -o-transition: 0.2s linear all;
  transition: 0.2s linear all;
  opacity: 0;
}
.ng-hide-remove.ng-hide-remove-active {
  opacity: 1;
}
/* eof angular classes */
#psl-calc {
  background: #004f7c;
  padding: 2px;
  margin-bottom: 30px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  #psl-calc {
    padding: 20px 10px;
  }
}
@media (min-width: 992px) {
  #psl-calc {
    padding: 30px;
    font-size: 100%;
  }
}
#psl-calc input[type="date"] {
  line-height: 1 !important;
}
#psl-calc .heading {
  color: #fff;
  text-align: center;
  font-weight: 900;
  font-size: 16px;
  margin: 0;
  padding: 8px;
}
@media (min-width: 768px) {
  #psl-calc .heading {
    margin: -0.8em 0 0.5em;
    font-size: 24px;
  }
}
#psl-calc .heading .edvisors-logo {
  width: 120px;
  height: auto;
  vertical-align: top;
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #psl-calc .heading .edvisors-logo {
    display: inline-block;
    margin-right: 10px;
  }
}
#psl-calc .top-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 2px 2px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  -o-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
}
@media (min-width: 768px) {
  #psl-calc .top-section {
    padding: 10px;
  }
}
@media (min-width: 992px) {
  #psl-calc .top-section {
    padding: 30px 30px 10px;
  }
}
#psl-calc .top-section .school-field {
  padding: 0 10px;
}
@media (min-width: 768px) {
  #psl-calc .top-section .school-field {
    padding: 0;
  }
}
#psl-calc .top-section hr {
  display: none;
}
@media (min-width: 768px) {
  #psl-calc .top-section hr {
    display: block;
  }
}
#psl-calc .top-section h3 {
  margin-top: 0;
  text-align: center;
  font-weight: 900;
}
#psl-calc .top-section a {
  text-decoration: none;
}
#psl-calc .top-section a i.fa {
  color: #004f7c;
}
#psl-calc .top-section .edit-link {
  background: #3498db;
  color: #fff;
  padding: 3px 6px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
#psl-calc .top-section .remove-link i.fa {
  color: #e74c3c;
}
#psl-calc .top-section .remove-loan-link {
  position: absolute;
  color: #e74c3c;
  font-size: 14px;
  bottom: 10px;
  right: 15px;
}
#psl-calc .top-section .remove-loan-link i.fa {
  color: #e74c3c;
}
#psl-calc .loan-question legend {
  font-size: 95%;
  font-weight: 700;
  border: 0;
  margin: 0;
  padding-top: 5px;
}
#psl-calc .loan-question label {
  font-size: 95%;
  font-weight: 700;
  margin-left: 10px;
}
#psl-calc .loan-question input[type="radio"] {
  display: none;
}
#psl-calc .loan-question .radio-buttons {
  padding-left: 0;
}
#psl-calc .loans-container {
  margin-bottom: 20px;
  position: relative;
}
#psl-calc .loan-summary {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5em;
}
#psl-calc .loan-summary a,
#psl-calc .loan-summary span {
  display: inline-block;
  text-align: center;
  min-width: 15%;
  font-size: 16px;
}
#psl-calc .loan-result {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5em;
  font-size: 16px;
}
#psl-calc .loan-result .col-sm-4 {
  float: left;
}
#psl-calc form {
  /*.shadow();*/
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}
#psl-calc form .rows .form-control {
  font-size: 18px;
  height: 38px;
}
#psl-calc form .addRow {
  text-decoration: none;
}
#psl-calc form .addRow i.fa {
  color: #004f7c;
}
#psl-calc table {
  background: #fff;
  margin-bottom: 1em;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#psl-calc table th {
  color: #fff;
  background: #005ca9;
  border: 0;
  padding: 0.5em 1em;
  font-size: 18px;
}
#psl-calc table td {
  padding: 0.5em 1em;
  border-top: 1px solid #005ca9;
  font-size: 18px;
}
#psl-calc .payment-summary {
  text-align: center;
  font-size: 24px;
}
#psl-calc .loan-summary-heading {
  font-weight: 900;
  text-align: center;
}
#psl-calc .loan-form {
  padding: 10px;
  background: rgba(255, 255, 255, 0.5);
}
@media (min-width: 992px) {
  #psl-calc .loan-form {
    padding: 1em;
  }
}
@media (max-width: 767px) {
  #psl-calc .loan-form .form-group {
    position: relative;
  }
}
@media (max-width: 767px) {
  #psl-calc .loan-form .form-group label {
    font-size: 14px;
    display: block;
  }
}
@media (max-width: 767px) {
  #psl-calc .loan-form .form-group .col-sm-1 {
    position: absolute;
    top: 0;
    right: 0;
  }
}
#psl-calc .loan-form .advanced {
  padding-top: 1em;
}
#psl-calc .add-loan {
  border: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  color: #fff;
  background: #2e860f;
  font-size: 18px;
  padding: 6px 20px;
  -webkit-transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -ms-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
@media (max-width: 767px) {
  #psl-calc .add-loan {
    margin: 10px auto;
    display: block;
  }
}
#psl-calc .add-loan:hover {
  background: #1e580a;
}
#psl-calc .advanced-toggle {
  /*margin-bottom: 1em;*/
}
#psl-calc .bottom {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px 2px;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  -o-border-radius: 0 0 8px 8px;
  border-radius: 0 0 8px 8px;
  text-align: center;
}
@media (min-width: 768px) {
  #psl-calc .bottom {
    padding: 30px;
  }
}
#psl-calc .bottom .button.red {
  font-size: 22px;
}
#psl-calc .bottom .submit a.disabled {
  opacity: 0.5;
  cursor: default;
}
#psl-calc .bottom .totals {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  font-size: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  margin-top: 30px;
}
#psl-calc .bottom .totals .grand-totals {
  padding-top: 10px;
}
#psl-calc .bottom .totals .chart-box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 0 10px;
  margin: 10px 0 0;
}
@media (min-width: 768px) {
  #psl-calc .bottom .totals .chart-box {
    padding: 0 20px;
    margin: 10px;
  }
}
#psl-calc .bottom .totals .chart-box .fees {
  background: #005ca9;
}
#psl-calc .bottom .totals .chart-box .interest {
  background: #f6492b;
}
#psl-calc .bottom .totals .chart-box .principal {
  background: #2e860f;
}
#psl-calc .bottom .totals .chart-box .legend {
  font-size: 11px;
}
#psl-calc .bottom .totals .chart-box .legend span {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  margin-left: 8px;
}
#psl-calc .bottom .totals .chart-box .chart {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
  padding: 20px 10px 0;
}
#psl-calc .bottom .totals .chart-box .chart .chart-fees {
  color: #fff;
  padding: 4px;
}
#psl-calc .bottom .totals .chart-box .chart .chart-interest {
  color: #fff;
  padding: 8px;
}
#psl-calc .bottom .totals .chart-box .chart .chart-principal {
  color: #fff;
  padding: 20px 8px;
}
#psl-calc .bottom .totals .chart-box .prepayment-disclosure {
  font-size: 12px;
}
#psl-calc .bottom .recommendations ul {
  font-size: 18px;
}
#psl-calc .bottom .mobile-icon {
  font-size: 1rem;
  font-weight: 700;
  color: #005ca9;
  margin-right: 13px;
  margin-top: 10px;
}
#psl-calc .bottom .mobile-icon .fa-2x {
  font-size: 1.34em;
}
#psl-calc .bottom .mobile-icon .fa-2x .fa-mobile {
  font-size: 1.54em;
}
@media (max-width: 768px) {
  #psl-calc .bottom .mobile-icon {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #psl-calc .bottom .mobile-icon {
    text-align: center;
  }
}
#psl-calc .tip {
  cursor: help;
  position: relative;
  display: inline-block;
  height: 1px;
}
#psl-calc .tip img {
  display: inline-block;
  position: absolute;
  top: -14px;
  left: 0;
  opacity: 0.425;
}
#psl-calc .tip img:hover {
  opacity: 1.0;
}
/* Bootstrap Tooltip Overrides */
.popover {
  max-width: 320px;
}
.popover .popover-content {
  font-size: 12px;
}
.lender-results .offer-header {
  display: none;
}
.lender-results .offer-wrapper {
  text-align: left;
  position: relative;
  background: #fff;
  margin-bottom: 10px;
  padding: 30px 30px 0;
  /* forms */
}
@media (min-width: 768px) {
  .lender-results .offer-wrapper {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    margin-bottom: 30px;
  }
}
.lender-results .offer-wrapper .offer-image-wrapper {
  text-align: center;
  margin-bottom: 10px;
}
.lender-results .offer-wrapper .offer-text {
  text-align: left;
}
.lender-results .offer-wrapper .offer-text ul {
  font-size: 14px;
  padding-right: 10px;
}
.lender-results .offer-wrapper .offer-button {
  text-align: center;
}
.lender-results .offer-wrapper.featured {
  border: 10px solid #ff9c00;
  background: #fff url("https://d36r1vmv00ls1r.cloudfront.net/content/psl/images/featured-lender-badge.gif") no-repeat 0 50%;
}
@media (max-width: 767px) {
  .lender-results .offer-wrapper.featured {
    background-image: none;
    border: 2px solid #ff9c00;
  }
}
.lender-results .offer-wrapper.mobile_friendly {
  border: 10px solid #ff9c00;
  background: #fff url("https://d36r1vmv00ls1r.cloudfront.net/content/psl/images/mobile-friendly-badge.gif") no-repeat 0 50%;
}
@media (max-width: 767px) {
  .lender-results .offer-wrapper.mobile_friendly {
    background-image: none;
    border: 2px solid #ff9c00;
  }
}
.cta.ribbon {
  background: #3498db;
  color: #fff;
  margin-left: -30px;
  margin-right: -30px;
  padding: 20px 15px 15px;
}
@media (min-width: 768px) {
  .cta.ribbon {
    padding-bottom: 20px;
  }
}
.cta.ribbon .text {
  text-align: center;
  font-style: italic;
  padding: 0.25em 0 10px;
  font-size: 14px;
}
@media (min-width: 600px) {
  .cta.ribbon .text {
    width: 60%;
    float: left;
    font-size: 18px;
    padding-top: 0.5em;
  }
}
@media (min-width: 768px) {
  .cta.ribbon .text {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .cta.ribbon .text {
    font-size: 32px;
  }
}
@media (min-width: 600px) {
  .cta.ribbon .cta {
    float: left;
    width: 38%;
  }
}
.cta.ribbon .cta .button {
  width: 100%;
  text-align: center;
  padding: 0.8em;
  font-size: 14px;
}
@media (min-width: 768px) {
  .cta.ribbon .cta .button {
    font-size: 20px;
  }
}
.button.red {
  color: #fff;
  background: #f6492b;
  font-size: 16px;
}
.lender-compare-heading {
  padding: 0px 0px 10px 30px;
  color: #fff;
  background: #3498db;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  -o-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
  margin: 0;
}
@media (max-width: 767px) {
  .lender-compare-heading {
    padding: 0;
  }
  .lender-compare-heading .col-sm-3,
  .lender-compare-heading .col-sm-9 {
    display: none;
  }
}
.lender-compare-heading .zopim-chat {
  margin-right: 20px;
}
.lender-compare {
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  -o-border-radius: 0 0 8px 8px;
  border-radius: 0 0 8px 8px;
  border: 2px solid #3498db;
  border-top: 0 !important;
}
@media (min-width: 768px) {
  .lender-compare {
    border: 3px solid #3498db;
  }
}
@media (min-width: 992px) {
  .lender-compare {
    border: 30px solid #3498db;
  }
}
.lender-compare .panel {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.lender-compare .panel-heading {
  min-height: 120px;
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.lender-compare .partner-logo {
  text-align: center;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .lender-compare .partner-logo {
    padding-top: 0;
    float: none;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .lender-compare .partner-logo img {
    max-width: 100%;
    height: auto;
  }
}
.lender-compare .partner-benefits {
  padding-top: 10px;
}
@media (max-width: 767px) {
  .lender-compare .partner-benefits {
    float: none;
    width: 100% !important;
  }
}
.lender-compare .partner-benefits ul {
  margin: 0;
  padding: 0;
  font-size: 14px;
}
@media (max-width: 767px) {
  .lender-compare .partner-benefits ul {
    padding-left: 20px;
  }
}
.lender-compare .partner-benefits ul li.noBullet {
  list-style: none;
}
.lender-compare .lender-toggler {
  cursor: pointer;
}
.lender-compare .partner-apply {
  padding-top: 20px;
}
@media (max-width: 767px) {
  .lender-compare .partner-apply {
    float: none;
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
  }
}
.lender-compare .partner-apply .button {
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 992px) {
  .lender-compare .partner-apply .button {
    font-size: 16px;
  }
}
.lender-compare .panel-body {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  padding: 10px 30px 30px;
  border: 0 !important;
}
.lender-compare .panel-body h3 {
  font-size: 16px;
}
@media (min-width: 992px) {
  .lender-compare .panel-body h3 {
    font-size: 22px;
  }
}
.lender-compare .panel-body p,
.lender-compare .panel-body ul,
.lender-compare .panel-body ol {
  font-size: 14px;
}
@media (min-width: 992px) {
  .lender-compare .panel-body p,
  .lender-compare .panel-body ul,
  .lender-compare .panel-body ol {
    font-size: 18px;
  }
}
.modal-body p,
.modal-body ul {
  font-size: 12px;
}
@media (min-width: 992px) {
  .modal-body p,
  .modal-body ul {
    font-size: 16px;
  }
}
.lender-compare-heading {
  position: relative;
  padding-top: 27px;
  font-size: 140%;
}
@media (max-width: 992px) {
  .lender-compare-heading {
    padding-top: 0;
  }
}
.lender-compare-heading .col-md-3 {
  position: absolute;
  bottom: 0;
}
.lender-compare-heading .col-sm-12 {
  left: 30px;
  margin-right: 30px;
  top: 20px;
}
.lender-compare-heading .benefits {
  left: 232px;
}
.lender-compare-heading .lenders {
  left: 60px;
}
.lender-compare-heading .phone-cta p {
  font-size: 80%;
  margin: 0;
}
.lender-compare-heading .phone-cta .have-questions {
  padding-left: 107px;
}
@media (max-width: 768px) {
  .lender-compare-heading .phone-cta .have-questions {
    padding-left: 78px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .lender-compare-heading .phone-cta .have-questions {
    padding-left: 121px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .lender-compare-heading .phone-cta .have-questions {
    padding-left: 88px;
  }
}
.lender-compare-heading .phone-cta .hours {
  padding-left: 88px;
}
@media (max-width: 768px) {
  .lender-compare-heading .phone-cta .hours {
    padding-left: 55px;
    padding-top: 5px;
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .lender-compare-heading .phone-cta .hours {
    padding-bottom: 20px;
    padding-left: 99px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .lender-compare-heading .phone-cta .hours {
    padding-left: 61px;
  }
}
.lender-compare-heading .phone-cta .button {
  background-color: #8e44ad;
  border-bottom: 3px solid #71368A;
  background-image: none;
  text-align: center;
  width: 81%;
  padding: 0 20px;
  margin-left: 45px;
  padding-bottom: 5px;
}
.lender-compare-heading .phone-cta .button:active,
.lender-compare-heading .phone-cta .button:hover,
.lender-compare-heading .phone-cta .button:focus {
  background: #9b50ba;
  background-image: -moz-linear-gradient(top, #9b50ba, #9b50ba);
  background-image: -ms-linear-gradient(top, #9b50ba, #9b50ba);
  background-image: -o-linear-gradient(top, #9b50ba, #9b50ba);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#9b50ba), to(#9b50ba));
  background-image: -webkit-linear-gradient(top, #9b50ba, #9b50ba);
  background-image: linear-gradient(top, #9b50ba, #9b50ba);
}
.lender-compare-heading .phone-cta .button i.fa.fa-phone.pull-left {
  font-size: 250%;
  margin: 0;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .lender-compare-heading .phone-cta .button i.fa.fa-phone.pull-left {
    font-size: 206%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .lender-compare-heading .phone-cta .button i.fa.fa-phone.pull-left {
    padding-top: 5px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .lender-compare-heading .phone-cta .button i.fa.fa-phone.pull-left {
    margin-left: -10px;
  }
}
.lender-compare-heading .phone-cta .button .call-us {
  font-size: 140%;
  margin: 0;
  margin-bottom: -17px;
}
.lender-compare-heading .phone-cta .button .phone-num {
  font-size: 80%;
  margin: 0;
  font-weight: 400;
  padding-top: 12px;
}
@media (max-width: 768px) {
  .lender-compare-heading .phone-cta .button .phone-num {
    padding-top: 5px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .lender-compare-heading .phone-cta .button .phone-num {
    padding-top: 10px;
  }
}
@media (max-width: 768px) {
  .lender-compare-heading .phone-cta .button {
    margin-left: 31px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .lender-compare-heading .phone-cta .button {
    width: 67%;
    padding-top: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .lender-compare-heading .phone-cta .button {
    margin-left: 33px;
  }
}
.subpage .sidebar .phone-cta {
  background: #3498db;
  color: #fff;
  margin-bottom: 30px;
  border-radius: 8px;
  text-align: center;
  padding: 20px 0;
}
.subpage .sidebar .phone-cta p {
  font-size: 94%;
  margin: 0;
  font-weight: bolder;
}
.subpage .sidebar .phone-cta .button {
  background-color: #8e44ad;
  border-bottom: 3px solid #71368A;
  background-image: none;
  width: 63%;
}
.subpage .sidebar .phone-cta .button:active,
.subpage .sidebar .phone-cta .button:hover,
.subpage .sidebar .phone-cta .button:focus {
  background: #9b50ba;
  background-image: -moz-linear-gradient(top, #9b50ba, #9b50ba);
  background-image: -ms-linear-gradient(top, #9b50ba, #9b50ba);
  background-image: -o-linear-gradient(top, #9b50ba, #9b50ba);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#9b50ba), to(#9b50ba));
  background-image: -webkit-linear-gradient(top, #9b50ba, #9b50ba);
  background-image: linear-gradient(top, #9b50ba, #9b50ba);
}
.subpage .sidebar .phone-cta .button i.fa.fa-phone.pull-left {
  font-size: 250%;
  margin: 0;
  padding-top: 4px;
}
@media (min-width: 768px) and (max-width: 992px) {
  .subpage .sidebar .phone-cta .button i.fa.fa-phone.pull-left {
    font-size: 169%;
  }
}
.subpage .sidebar .phone-cta .button .call-us {
  font-size: 140%;
  margin: 0;
  margin-bottom: -17px;
}
@media (max-width: 768px) {
  .subpage .sidebar .phone-cta .button .call-us {
    margin-left: 31px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .subpage .sidebar .phone-cta .button .call-us {
    font-size: 90%;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .subpage .sidebar .phone-cta .button .call-us {
    margin-left: 33px;
  }
}
.subpage .sidebar .phone-cta .button .phone-num {
  font-size: 90%;
  margin: 0;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .subpage .sidebar .phone-cta .button .phone-num {
    margin-left: 31px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .subpage .sidebar .phone-cta .button .phone-num {
    padding-top: 15px;
    font-size: 56%;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .subpage .sidebar .phone-cta .button .phone-num {
    margin-left: 33px;
  }
}
.sidebar .icon {
  font-size: 30px;
  color: rgba(0, 0, 0, 0.2);
  margin-right: 0.25em;
  float: left;
}
.sidebar .icon .fa-inverse {
  color: #fff;
}
.sidebar h3 {
  margin-top: 0;
  margin-bottom: 1em;
}
.sidebar p {
  font-size: 18px;
  margin-left: 1em;
  margin-bottom: 1.5em;
}
.sidebar .cta .button {
  font-size: 18px;
  font-weight: 900;
  width: 100%;
  text-align: center;
  border-bottom-width: 5px;
}
.sidebar .calculator {
  background: #8e44ad;
  color: #fff;
  padding: 15px;
}
@media (min-width: 768px) {
  .sidebar .calculator {
    padding: 30px;
  }
}
.sidebar .resources {
  background: #1fa48a;
  color: #fff;
  padding: 15px;
}
@media (min-width: 768px) {
  .sidebar .resources {
    padding: 30px;
  }
}
.sidebar .resources ul {
  list-style: none;
  font-size: 20px;
  margin: 0;
  padding: 0;
}
.sidebar .resources ul li a {
  text-decoration: none;
  display: block;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5em 0;
}
.sidebar .resources ul li a:hover,
.sidebar .resources ul li a:focus,
.sidebar .resources ul li a:active {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
aside {
  margin-top: 45px;
}
aside section {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: #ecf0f1;
  margin-bottom: 30px;
  border-radius: 8px;
}
aside section h3 {
  font-weight: 900;
}
@media (max-width: 767px) {
  .subpage .apply.lender-form article {
    padding-top: 20px;
  }
}
.subpage .apply.lender-form .lender {
  text-align: center;
  background: #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  padding: 30px 0;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  min-height: 257px;
}
.subpage .apply.lender-form .lender p {
  color: #999;
  text-shadow: none;
  font-size: 18px;
}
.subpage .apply.lender-form .lender ul {
  font-size: 14px;
  margin: 10px;
  padding-left: 20px;
  text-align: left;
}
.subpage .apply.lender-form .modal-body p {
  text-shadow: none;
  color: #333;
}
.subpage .apply3-form {
  background: url("/Content/images/blurred-college-background.jpg") center center no-repeat;
  background-size: cover;
  padding-bottom: 1px;
  -webkit-box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.2);
  -ms-box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.2);
  -o-box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.2);
}
.subpage .apply3-form h1 {
  margin: 0 auto;
  color: #fff;
  text-align: center;
  padding-top: 1em;
  font-weight: bolder;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  font-size: 2rem;
}
@media (min-width: 768px) {
  .subpage .apply3-form h1 {
    font-size: 3rem;
  }
}
.subpage .apply3-form p {
  color: #fff;
  /*font-size: (@default-font-size * 1.2);*/
  margin: 0.5em auto 1em;
  text-align: center;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.8);
}
@media (max-width: 767px) {
  .subpage .apply3-form p {
    font-size: 14px;
    width: 75%;
  }
}
.subpage .apply3-form form {
  border: 30px solid #3498db;
  background: #fff;
  margin-bottom: 60px;
  padding: 15px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .subpage .apply3-form form {
    padding: 30px;
  }
}
.subpage .apply3-form form input.school-name,
.subpage .apply3-form form input[name="email"] {
  font-size: 1rem;
  padding: 6px 12px;
}
.subpage .apply3-form form .privacy label {
  font-size: 0.8rem;
}
.subpage .apply3-form form.apply3 .school-name {
  font-size: 1rem;
  padding: 6px 12px;
}
.subpage .apply3-form form.apply3 .privacy label {
  font-size: 0.8rem;
}
.subpage .apply3-form form.apply3 .red {
  width: 100%;
}
/* Global Checklist Styles */
.checklist,
.checklist-form {
  background: url("../images/background-checklist.jpg") no-repeat center center;
  background-size: cover;
}
.checklist .existing-account-modal .modal-body,
.checklist-form .existing-account-modal .modal-body {
  font-size: 1.25rem;
  text-align: center;
}
.checklist .existing-account-modal .modal-body .fa,
.checklist-form .existing-account-modal .modal-body .fa {
  font-size: 2rem;
  vertical-align: middle;
}
.checklist .existing-account-modal .modal-body .button.orange,
.checklist-form .existing-account-modal .modal-body .button.orange {
  color: #fff;
  text-shadow: none;
  margin-left: 1rem;
}
.checklist .building-modal .modal-body,
.checklist-form .building-modal .modal-body {
  font-size: 1.25rem;
  text-align: center;
}
.checklist .building-modal .modal-body .icon,
.checklist-form .building-modal .modal-body .icon {
  display: inline-block;
  vertical-align: middle;
  color: #04a4db;
}
.checklist .building-modal .modal-body .fa,
.checklist-form .building-modal .modal-body .fa {
  font-size: 2rem;
  vertical-align: middle;
}
.checklist .building-modal .modal-body h3,
.checklist-form .building-modal .modal-body h3 {
  padding: 0 2rem;
}
.checklist .heading h1,
.checklist-form .heading h1 {
  color: #fff;
  font-weight: 900;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .checklist .heading h1,
  .checklist-form .heading h1 {
    font-size: 3rem;
  }
}
.checklist .form-container,
.checklist-form .form-container {
  border: 3px solid #5dc2d4;
  background: rgba(226, 241, 252, 0.98);
  margin-bottom: 60px;
  padding: 0;
}
.checklist .form-container .features,
.checklist-form .form-container .features,
.checklist .form-container .sidebar,
.checklist-form .form-container .sidebar {
  background: #5dc2d4;
  background-image: -moz-linear-gradient(top, #5dc2d4, #3ea9d9);
  background-image: -ms-linear-gradient(top, #5dc2d4, #3ea9d9);
  background-image: -o-linear-gradient(top, #5dc2d4, #3ea9d9);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5dc2d4), to(#3ea9d9));
  background-image: -webkit-linear-gradient(top, #5dc2d4, #3ea9d9);
  background-image: linear-gradient(top, #5dc2d4, #3ea9d9);
  color: #fff;
  margin: 0 15px;
  padding: 10px 15px;
}
@media (min-width: 768px) {
  .checklist .form-container .features,
  .checklist-form .form-container .features,
  .checklist .form-container .sidebar,
  .checklist-form .form-container .sidebar {
    margin-left: 15px;
    margin-right: 0;
    width: 30%;
    padding: 20px 24px;
  }
}
.checklist .password-modal .modal-title,
.checklist-form .password-modal .modal-title {
  font-weight: 900;
  color: #04a4db;
  text-align: center;
}
.checklist .password-modal .modal-body h4,
.checklist-form .password-modal .modal-body h4 {
  color: #04a4db;
  font-weight: bold;
}
.checklist .password-modal .modal-body p,
.checklist-form .password-modal .modal-body p {
  font-size: 1rem;
}
.checklist .password-modal .modal-body ul,
.checklist-form .password-modal .modal-body ul {
  font-size: 1rem;
}
.checklist .password-modal .modal-body .submit,
.checklist-form .password-modal .modal-body .submit {
  text-align: center;
}
.checklist .password-modal .modal-body .button,
.checklist-form .password-modal .modal-body .button {
  background: #1bd41b;
  font-size: 1.3rem;
  color: #fff;
  text-shadow: none;
}
.checklist .password-modal .modal-body .button i,
.checklist-form .password-modal .modal-body .button i {
  margin-right: 6px;
}
.checklist .password-modal .modal-body .button.danger,
.checklist-form .password-modal .modal-body .button.danger {
  background: #f6492b;
}
.checklist .password-modal .modal-body section.password-tips,
.checklist-form .password-modal .modal-body section.password-tips {
  display: none;
}
.checklist .password-modal .modal-body section.password-tips dl,
.checklist-form .password-modal .modal-body section.password-tips dl {
  margin-left: 6px;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.66);
}
@media (min-width: 768px) {
  .checklist .password-modal .modal-body section.password-tips,
  .checklist-form .password-modal .modal-body section.password-tips {
    display: block;
  }
}
.checklist .password-modal .form-group.submit,
.checklist-form .password-modal .form-group.submit {
  margin-top: 24px;
}
.checklist .save,
.checklist-form .save {
  background: #2e860f;
  color: #fff;
  position: fixed;
  bottom: 0;
  padding: 0.5rem 1rem;
  z-index: 999;
}
.checklist .save .icon,
.checklist-form .save .icon {
  display: inline-block;
}
.checklist .save .text,
.checklist-form .save .text {
  display: inline-block;
  font-weight: 700;
}
.checklist .save.saving,
.checklist-form .save.saving {
  right: 0px;
  background: #1bd41b;
}
.checklist .save.saved,
.checklist-form .save.saved {
  right: -20rem;
}
/* Checklist Lead Form 
-------------------------------------*/
.checklist-form .heading h1 {
  text-align: center;
}
.checklist-form .heading p {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 40px;
}
.checklist-form .form-container .features p {
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .checklist-form .form-container .features p {
    text-align: left;
    font-size: 1.66rem;
  }
}
.checklist-form .form-container .features ul {
  list-style: none;
  padding: 0;
}
.checklist-form .form-container .features ul li {
  border-top: 3px dotted #7cc9e7;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .checklist-form .form-container .features ul li {
    padding: 14px 0;
    font-size: 1.2rem;
  }
}
.checklist-form .form-container .features ul li .fa {
  color: #005ca9;
  font-size: 2.5rem;
}
.checklist-form .form-container .features ul li:before {
  font-family: FontAwesome;
  content: "\f05d";
  display: inline-block;
  margin-right: 0.5rem;
  color: rgba(0, 0, 0, 0.3);
}
.checklist-form .form-container .form {
  padding: 10px 30px 40px;
}
.checklist-form .form-container .form .form-control {
  border: 2px solid #5dc2d4;
}
.checklist-form .form-container .form .has-error .form-control {
  border: 2px solid #f6492b;
}
.checklist-form .form-container .form small.help-block {
  margin-bottom: 0;
}
.checklist-form .form-container .form .add-school a {
  font-weight: bold;
  color: #fff;
  background: #5dc2d4;
  padding: 3px 8px 5px;
  text-decoration: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.checklist-form .form-container .form .add-school a:hover {
  text-decoration: none;
}
.checklist-form .form-container .form .remove-div a {
  color: #f6492b;
}
.checklist-form .form-container .form .submit {
  text-align: center;
  margin-top: 36px;
}
.checklist-form .form-container .form .submit .button.green {
  color: #fff;
  background: #1bd41b;
  font-size: 1.3rem;
  text-shadow: none;
  font-weight: 900;
}
.checklist-form .form-container .form .submit .button.green:hover,
.checklist-form .form-container .form .submit .button.green:focus,
.checklist-form .form-container .form .submit .button.green:active {
  background: #3ce63c;
}
@media (min-width: 768px) {
  .checklist-form .form-container .form .submit .button.green {
    font-size: 2rem;
  }
}
/* Checklist itself 
---------------------------*/
.subpage .checklist {
  padding-top: 0;
}
.checklist {
  -webkit-box-shadow: inset 0 40px 95px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0 40px 95px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: inset 0 40px 95px rgba(0, 0, 0, 0.5);
  -o-box-shadow: inset 0 40px 95px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 40px 95px rgba(0, 0, 0, 0.5);
}
.checklist .heading {
  margin: 2rem 0;
}
.checklist .heading h1 {
  text-align: left;
}
.checklist .heading .social-share {
  float: right;
  margin-top: -0.5rem;
}
.checklist .heading .social-share a {
  text-decoration: none;
}
.checklist .heading .social-share a:hover {
  text-decoration: none;
}
.checklist .heading .social-share a:hover .facebook {
  color: #0078dc;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.checklist .heading .social-share a:hover .twitter {
  color: #33d6ff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.checklist .heading .social-share a:hover .googleplus {
  color: #dd4040;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.checklist .heading .social-share a:hover .email {
  color: #2ad617;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.checklist .heading .social-share .text.default {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1rem;
}
.checklist .heading .social-share .text.fixed {
  display: none;
}
.checklist .heading .social-share .icon {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checklist .heading .social-share .facebook {
  color: #005ca9;
}
.checklist .heading .social-share .twitter {
  color: #00ccff;
}
.checklist .heading .social-share .googleplus {
  color: #c72323;
}
.checklist .heading .social-share .email {
  color: #21a812;
}
.checklist .heading .social-share.fixed {
  position: fixed;
  right: 0;
  top: 0;
  width: auto;
  padding: 8px 8px 2px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0;
  -webkit-border-radius: 0 0 4px 0;
  -moz-border-radius: 0 0 4px 0;
  -ms-border-radius: 0 0 4px 0;
  -o-border-radius: 0 0 4px 0;
  border-radius: 0 0 4px 0;
  z-index: 9999;
  -webkit-transition: 0;
  -moz-transition: 0;
  -ms-transition: 0;
  -o-transition: 0;
  transition: 0;
}
@media (min-width: 768px) {
  .checklist .heading .social-share.fixed {
    width: 48px;
    left: -6px;
    top: 30%;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    -ms-border-radius: 0 4px 4px 0;
    -o-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
  }
}
.checklist .heading .social-share.fixed .text.default {
  display: none;
}
.checklist .heading .social-share.fixed .text.fixed {
  display: block;
  color: #333;
  font-weight: bold;
  font-size: 14px;
}
.checklist .form-container {
  background: #3ea9d9;
  margin-left: -18px;
  margin-right: -18px;
  border: 0;
  position: relative;
}
@media (min-width: 768px) {
  .checklist .form-container {
    margin-left: 0;
    margin-right: 0;
    border: 3px solid #5dc2d4;
  }
}
.checklist .form-container .checklist-loading {
  color: #04a4db;
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  padding-top: 2rem;
  text-align: center;
  z-index: 999;
}
.checklist .form-container .form {
  padding-right: 0;
}
.checklist .form-container .form .actions {
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) {
  .checklist .form-container .form .actions {
    padding: 0;
    display: block;
    bottom: auto;
    right: auto;
    float: right;
    margin-top: 1rem;
    margin-right: 1rem;
  }
}
.checklist .form-container .form .actions .btn {
  border: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  padding: 0.5rem 1rem;
}
.checklist .form-container .form .actions .btn .fa {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 0.33rem;
}
.checklist .form-container .form .actions .btn-success {
  background: #1bd41b;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checklist .form-container .form .actions .btn-success:hover {
  background: #3ce63c;
}
.checklist .form-container .form .actions .btn-primary {
  background: #04a4db;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checklist .form-container .form .actions .btn-primary:hover {
  background: #17c1fb;
}
.checklist .form-container .form .actions .btn-default {
  background: #c1bfbf;
  color: #565354;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checklist .form-container .form .actions .btn-default:hover {
  background: #dad9d9;
}
.checklist .form-container .form .nav-tabs {
  background: rgba(226, 241, 252, 0.9);
  padding-top: 1rem;
  padding-left: 1rem;
  border: 0;
}
.checklist .form-container .form .nav-tabs li {
  background: rgba(255, 255, 255, 0.3);
  border: 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.checklist .form-container .form .nav-tabs li a {
  border: 0;
  font-weight: 900;
  font-size: 1.1rem;
  color: #000;
  padding: 0.8rem 1.5rem;
}
.checklist .form-container .form .nav-tabs li a:hover {
  background: rgba(255, 255, 255, 0.2);
}
.checklist .form-container .form .nav-tabs li.active {
  background: #ffffff;
}
.checklist .form-container .form .tab-content {
  background: #fff;
  padding: 1rem;
}
.checklist .form-container .form .tab-content .btn-group .btn-group {
  display: inline-block;
  width: 50%;
}
@media (min-width: 768px) {
  .checklist .form-container .form .tab-content .btn-group .btn-group {
    display: table-cell;
    width: auto;
  }
}
.checklist .form-container .form .tab-content .btn-group .btn {
  border: 0;
}
.checklist .form-container .form .tab-content .btn-group .btn-default {
  background: #f2f2f2;
  color: #939393;
  font-weight: bold;
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checklist .form-container .form .tab-content .btn-group .btn-default:hover {
  background: #e5e5e5;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .checklist .form-container .form .tab-content .btn-group .btn-default {
    font-size: 0.7rem;
  }
}
.checklist .form-container .form .tab-content .btn-group .active {
  color: #333;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  font-weight: 900;
}
.checklist .form-container .form .tab-content h2 {
  font-size: 1.5rem;
  color: #04a4db;
  font-weight: 900;
}
.checklist .form-container .form .tab-content .progress {
  background: #c1bfbf;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  overflow: visible;
  height: 10px;
  position: relative;
}
.checklist .form-container .form .tab-content .progress .progress-bar {
  background: #1bd41b;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.checklist .form-container .form .tab-content .progress .progress-text {
  position: absolute;
  right: 0;
  bottom: -1.1rem;
  color: #333;
  font-weight: bold;
  font-size: 0.8rem;
}
.checklist .form-container .form .tab-content .expand-collapse {
  margin-bottom: 1rem;
}
.checklist .form-container .form .tab-content .expand-collapse .btn {
  border: 0;
  color: #333;
  font-weight: bold;
  background: #e5e5e5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checklist .form-container .form .tab-content .expand-collapse .btn:hover {
  background: #cccccc;
}
.checklist .form-container .form .tab-content .item .collapse-toggle {
  float: right;
  color: rgba(0, 0, 0, 0.3);
  font-size: 1.5rem;
  line-height: 0;
}
.checklist .form-container .form .tab-content .item input[type=checkbox] {
  display: none;
}
.checklist .form-container .form .tab-content .item .faux-checkbox {
  display: inline-block;
  vertical-align: top;
  font-size: 1.4rem;
  line-height: 1;
  width: 1.66rem;
}
.checklist .form-container .form .tab-content .item label {
  margin: 0;
  display: inline-block;
  vertical-align: top;
  max-width: 80%;
  margin-bottom: 0.5rem;
  line-height: 1.3rem;
}
.checklist .form-container .form .tab-content .item input[type=checkbox] + .faux-checkbox:before {
  font-family: FontAwesome;
  display: inline-block;
}
.checklist .form-container .form .tab-content .item input[type=checkbox] + .faux-checkbox:before {
  content: "\f096";
  letter-spacing: 10px;
}
.checklist .form-container .form .tab-content .item input[type=checkbox]:checked + .faux-checkbox:before {
  content: "\f14a";
  letter-spacing: 8.5px;
  color: #1bd41b;
}
.checklist .form-container .form .tab-content .item input[type=checkbox]:checked ~ label {
  opacity: 0.5;
}
.checklist .form-container .form .tab-content .item .icons {
  font-size: 60%;
  display: inline-block;
  vertical-align: top;
}
.checklist .form-container .form .tab-content .item .icons a {
  cursor: pointer;
  text-decoration: none;
}
.checklist .form-container .form .tab-content .item .icons a:hover {
  text-decoration: none;
}
.checklist .form-container .form .tab-content .item .icons .tip {
  color: #04a4db;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checklist .form-container .form .tab-content .item .icons .question {
  color: #e91e63;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checklist .form-container .form .tab-content .item .icons .definition {
  color: #ed8d1e;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checklist .form-container .form .tab-content .item .supplementals {
  margin-left: 1.66rem;
  margin-right: 1.66rem;
}
@media (min-width: 768px) {
  .checklist .form-container .form .tab-content .item .supplementals {
    margin-left: 3.6rem;
  }
}
.checklist .form-container .form .tab-content .item .supplementals .tips .tip,
.checklist .form-container .form .tab-content .item .supplementals .questions .question,
.checklist .form-container .form .tab-content .item .supplementals .definitions .definition {
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.2;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.checklist .form-container .form .tab-content .item .supplementals .tips .tip b,
.checklist .form-container .form .tab-content .item .supplementals .questions .question b,
.checklist .form-container .form .tab-content .item .supplementals .definitions .definition b {
  font-weight: 900;
}
.checklist .form-container .form .tab-content .item .supplementals .tips .tip .close-link,
.checklist .form-container .form .tab-content .item .supplementals .questions .question .close-link,
.checklist .form-container .form .tab-content .item .supplementals .definitions .definition .close-link {
  float: right;
  width: 1.66rem;
  text-align: center;
  margin-left: 0.5rem;
  margin-top: 0.33rem;
}
.checklist .form-container .form .tab-content .item .supplementals .tips .tip .close-link a,
.checklist .form-container .form .tab-content .item .supplementals .questions .question .close-link a,
.checklist .form-container .form .tab-content .item .supplementals .definitions .definition .close-link a {
  color: rgba(0, 0, 0, 0.3);
  font-size: 1.2rem;
}
.checklist .form-container .form .tab-content .item .supplementals .tips .tip .icon,
.checklist .form-container .form .tab-content .item .supplementals .questions .question .icon,
.checklist .form-container .form .tab-content .item .supplementals .definitions .definition .icon {
  float: left;
  font-size: 90%;
  margin-right: 0.5rem;
}
.checklist .form-container .form .tab-content .item .supplementals .tips .tip .icon .fa-inverse,
.checklist .form-container .form .tab-content .item .supplementals .questions .question .icon .fa-inverse,
.checklist .form-container .form .tab-content .item .supplementals .definitions .definition .icon .fa-inverse {
  font-size: 120%;
}
.checklist .form-container .form .tab-content .item .supplementals .tips .tip .text,
.checklist .form-container .form .tab-content .item .supplementals .questions .question .text,
.checklist .form-container .form .tab-content .item .supplementals .definitions .definition .text {
  margin-left: 3rem;
  margin-right: 2.5rem;
}
.checklist .form-container .form .tab-content .item .supplementals .tips .tip {
  background: #b3e4f4;
}
.checklist .form-container .form .tab-content .item .supplementals .tips .tip .fa-circle {
  color: #4abee5;
}
.checklist .form-container .form .tab-content .item .supplementals .questions .question {
  background: #f8bbd0;
}
.checklist .form-container .form .tab-content .item .supplementals .questions .question .fa-circle {
  color: #ef5d8f;
}
.checklist .form-container .form .tab-content .item .supplementals .definitions .definition {
  background: #faddbb;
}
.checklist .form-container .form .tab-content .item .supplementals .definitions .definition .fa-circle {
  color: #f2ad5d;
}
.checklist .form-container .form .tab-content .item.primary {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1rem 0 0.66rem 0;
}
.checklist .form-container .form .tab-content .item.secondary {
  margin-left: 1.66rem;
}
.checklist .form-container .form .tab-content .item.secondary label {
  max-width: 70%;
}
@media (min-width: 768px) {
  .checklist .form-container .form .tab-content .item.secondary label {
    max-width: 80%;
  }
}
.checklist .form-container .form .tab-content .item.secondary .supplementals {
  margin-left: 0;
}
@media (min-width: 768px) {
  .checklist .form-container .form .tab-content .item.secondary .supplementals {
    margin-left: 3.6rem;
  }
}
.checklist .form-container .form .tab-content .whole-page-checker {
  text-align: center;
  font-size: 1.25rem;
  padding: 2rem 0;
}
.checklist .form-container .form .tab-content .whole-page-checker input[type=checkbox] {
  display: none;
}
.checklist .form-container .form .tab-content .whole-page-checker .faux-checkbox {
  display: inline-block;
  vertical-align: top;
  font-size: 1.4rem;
  line-height: 1;
  width: 1.66rem;
}
.checklist .form-container .form .tab-content .whole-page-checker label {
  margin: 0;
  display: inline-block;
  vertical-align: top;
  max-width: 80%;
  margin-bottom: 0.5rem;
  line-height: 1.3rem;
}
.checklist .form-container .form .tab-content .whole-page-checker input[type=checkbox] + .faux-checkbox:before {
  font-family: FontAwesome;
  display: inline-block;
}
.checklist .form-container .form .tab-content .whole-page-checker input[type=checkbox] + .faux-checkbox:before {
  content: "\f096";
  letter-spacing: 10px;
}
.checklist .form-container .form .tab-content .whole-page-checker input[type=checkbox]:checked + .faux-checkbox:before {
  content: "\f14a";
  letter-spacing: 8.5px;
  color: #1bd41b;
}
.checklist .form-container .form .tab-content .whole-page-checker input[type=checkbox]:checked ~ label {
  opacity: 0.5;
}
.checklist .form-container .sidebar {
  margin: 0;
  padding-left: 30px;
}
@media (min-width: 768px) {
  .checklist .form-container .sidebar {
    width: 32.1%;
  }
}
.checklist .form-container .sidebar .student .student-info {
  margin-bottom: 1rem;
}
.checklist .form-container .sidebar .student .student-info h3 {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.checklist .form-container .sidebar .student .student-info h3 .icon {
  display: inline-block;
  font-size: 1rem;
}
.checklist .form-container .sidebar .student .student-info p {
  margin-left: 0;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.checklist .form-container .sidebar .student .student-schools {
  background: rgba(0, 0, 0, 0.1);
  padding: 0.25rem 1rem;
  margin-bottom: 1.5rem;
}
.checklist .form-container .sidebar .student .student-schools h4 {
  font-weight: 900;
}
.checklist .form-container .sidebar .student .student-schools ul {
  list-style: none;
  padding: 0;
}
.checklist .form-container .sidebar .opportunities h3 {
  font-weight: 900;
  opacity: 0.8;
  border-top: dotted 3px rgba(255, 255, 255, 0.2);
  padding-top: 1.25rem;
}
.checklist .form-container .sidebar .opportunities .ad {
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.1);
}
.checklist .form-container .sidebar .opportunities .ad .ad-heading {
  background: rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
}
.checklist .form-container .sidebar .opportunities .ad .ad-heading img {
  max-width: 80%;
  margin: 0 auto;
  display: block;
}
.checklist .form-container .sidebar .opportunities .ad .ad-content {
  padding: 0.5rem 1rem 1.5rem;
}
.checklist .form-container .sidebar .opportunities .ad .ad-content p {
  font-size: 1rem;
  line-height: 1.2;
  margin-left: 0;
}
.checklist .form-container .sidebar .opportunities .ad .ad-content .cta {
  text-align: center;
}
.checklist .form-container .sidebar .opportunities .ad .ad-content .cta a {
  color: #fff;
  text-decoration: none;
  text-shadow: none;
  display: inline;
  text-align: center;
  margin: 0 0.33rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .checklist .form-container .sidebar .opportunities .ad .ad-content .cta a {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
}
.checklist .form-container .sidebar .opportunities .ad .ad-content .disclaimer {
  color: #b7b7b7;
}
.checklist .form-container .sidebar .opportunities .ad.s3 .ad-heading {
  background: rgba(255, 255, 255, 0.8);
}
.checklist .form-container .sidebar .opportunities .ad.calculators .ad-content,
.checklist .form-container .sidebar .opportunities .ad.downloads .ad-content {
  padding: 0;
}
.checklist .form-container .sidebar .opportunities .ad.calculators .ad-content a,
.checklist .form-container .sidebar .opportunities .ad.downloads .ad-content a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  display: block;
}
.checklist .form-container .sidebar .opportunities .ad.calculators .ad-content a:hover,
.checklist .form-container .sidebar .opportunities .ad.downloads .ad-content a:hover,
.checklist .form-container .sidebar .opportunities .ad.calculators .ad-content a:focus,
.checklist .form-container .sidebar .opportunities .ad.downloads .ad-content a:focus,
.checklist .form-container .sidebar .opportunities .ad.calculators .ad-content a:active,
.checklist .form-container .sidebar .opportunities .ad.downloads .ad-content a:active {
  text-decoration: none;
  background: rgba(0, 0, 0, 0.1);
}
.checklist .form-container .sidebar .opportunities .ad.calculators .ad-content .icon,
.checklist .form-container .sidebar .opportunities .ad.downloads .ad-content .icon {
  font-size: 1.2rem;
  float: none;
  display: inline-block;
  margin-top: 0.25rem;
  vertical-align: middle;
}
.checklist .form-container .sidebar .opportunities .ad.calculators .ad-content p,
.checklist .form-container .sidebar .opportunities .ad.downloads .ad-content p {
  margin: 0;
  display: inline-block;
  max-width: 76%;
  vertical-align: middle;
}
.checklist .form-container > .row {
  margin-right: 0;
}
@media (min-width: 768px) {
  .checklist .form-container > .row {
    margin-right: -15px;
  }
}
.ng-hide-add {
  opacity: 1.0;
  display: block !important;
  transition: opacity 0.5s ease;
}
.ng-hide-add-active {
  opacity: 0;
}
.ng-show-add {
  opacity: 0;
  display: block !important;
  transition: opacity 0.5s ease;
}
.ng-show-add-active {
  opacity: 1;
}
.receipt {
  background: url(/Content/images/blurred-college-background.jpg) center center no-repeat #7f8c8d;
  background-size: cover;
  padding: 20px 0;
  /****** Style Star Rating Widget *****/
  /*.rating > input { display: none; } */
  /***** CSS Magic to Highlight Stars on Hover *****/
  /* hover previous stars in list */
}
.receipt h1 {
  font-size: 400%;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 20px;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
  color: white;
}
.receipt .clicked-lenders,
.receipt .lender-tips {
  background: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  padding: 30px;
  margin-bottom: 1rem;
}
.receipt .clicked-lenders .back-link,
.receipt .lender-tips .back-link {
  font-size: 1.9rem;
  font-weight: 700;
}
.receipt .clicked-lenders .back-link .fa,
.receipt .lender-tips .back-link .fa {
  color: #7f8c8d;
}
.receipt .clicked-lenders .back-link a,
.receipt .lender-tips .back-link a {
  text-decoration: underline;
}
.receipt .clicked-lenders h3,
.receipt .lender-tips h3 {
  font-weight: bolder;
  color: #f6492b;
  margin-top: 0;
}
.receipt .clicked-lenders .clicked-lender,
.receipt .lender-tips .clicked-lender {
  margin-bottom: 0.8rem;
  border: 1px solid #ccc;
}
.receipt .clicked-lenders .clicked-lender a.link,
.receipt .lender-tips .clicked-lender a.link {
  display: block;
  font-size: 1.5rem;
  padding: 0 0 0.5rem;
  text-decoration: none;
  color: #333;
}
.receipt .clicked-lenders .clicked-lender a.link img,
.receipt .lender-tips .clicked-lender a.link img {
  float: right;
  height: 35px;
  margin-top: -6px;
}
.receipt .clicked-lenders .clicked-lender a.link .lender-name,
.receipt .lender-tips .clicked-lender a.link .lender-name {
  vertical-align: middle;
  display: inline-block;
  padding-left: 0.25rem;
}
.receipt .clicked-lenders .clicked-lender a.link:before,
.receipt .lender-tips .clicked-lender a.link:before {
  font-family: "FontAwesome";
  content: "\f054";
  float: left;
  color: grey;
  display: inline-block;
  padding-top: 0.1rem;
}
.receipt .clicked-lenders .clicked-lender a.link.collapsed:before,
.receipt .lender-tips .clicked-lender a.link.collapsed:before {
  content: "\f078";
}
.receipt .clicked-lenders form legend,
.receipt .lender-tips form legend {
  font-size: 15px;
  margin-bottom: 0;
}
.receipt .clicked-lenders form label,
.receipt .lender-tips form label {
  font-size: 15px;
}
.receipt .clicked-lenders .return-link,
.receipt .lender-tips .return-link {
  text-align: center;
  clear: both;
}
.receipt .clicked-lenders .return-link .blue,
.receipt .lender-tips .return-link .blue {
  font-weight: 900;
  font-size: 20px;
  border-bottom: 3px solid #1d6fa5;
  background: #5faee3;
  background-image: -moz-linear-gradient(top, #5faee3, #3498db);
  background-image: -ms-linear-gradient(top, #5faee3, #3498db);
  background-image: -o-linear-gradient(top, #5faee3, #3498db);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5faee3), to(#3498db));
  background-image: -webkit-linear-gradient(top, #5faee3, #3498db);
  background-image: linear-gradient(top, #5faee3, #3498db);
}
.receipt .clicked-lenders .back-link-button,
.receipt .lender-tips .back-link-button {
  text-align: center;
  font-size: 16px;
}
.receipt .clicked-lenders fieldset,
.receipt .lender-tips fieldset {
  padding-top: 0;
}
.receipt .lender-tips h2,
.receipt .lender-tips h3 {
  color: #2c3e50;
  font-weight: bold;
  text-shadow: none;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.receipt .lender-tips ul {
  line-height: 1.4;
}
.receipt .lender-tips .lender-video {
  margin-bottom: 0.8rem;
}
.receipt .lender-tips #ytplayer {
  width: 100%;
  min-height: 240px;
}
@media (min-width: 992px) {
  .receipt .lender-tips #ytplayer {
    min-height: 300px;
  }
}
@media (min-width: 1200px) {
  .receipt .lender-tips #ytplayer {
    min-height: 340px;
  }
}
.receipt input[name="application_complete"],
.receipt input[name="lender_rating"] {
  display: none;
}
.receipt .rating {
  border: none;
  float: left;
}
.receipt .rating p {
  font-style: italic;
  color: #ccc;
}
.receipt .rating > label:before {
  margin: 5px;
  font-size: 1.25em;
  font-family: "FontAwesome";
  display: inline-block;
  content: "\f005";
}
.receipt .rating > label {
  color: #ddd;
  float: right;
}
.receipt .rating > input:checked ~ label,
.receipt .rating:not(:checked) > label:hover,
.receipt .rating:not(:checked) > label:hover ~ label {
  color: #FFD700;
}
.receipt .rating > input:checked + label:hover,
.receipt .rating > input:checked ~ label:hover,
.receipt .rating > label:hover ~ input:checked ~ label,
.receipt .rating > input:checked ~ label:hover ~ label {
  color: #FFED85;
}
.receipt .other-lenders {
  margin-bottom: 2rem;
}
.receipt .other-offers {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
}
.receipt .other-offers .button {
  font-weight: 900;
  font-size: 20px;
  border-bottom: 3px solid #1d6fa5;
  background: #5faee3;
  background-image: -moz-linear-gradient(top, #5faee3, #3498db);
  background-image: -ms-linear-gradient(top, #5faee3, #3498db);
  background-image: -o-linear-gradient(top, #5faee3, #3498db);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5faee3), to(#3498db));
  background-image: -webkit-linear-gradient(top, #5faee3, #3498db);
  background-image: linear-gradient(top, #5faee3, #3498db);
}
.receipt .other-offers h2 {
  text-align: center;
  margin-bottom: 1em;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.receipt .other-offers .item {
  text-align: center;
}
.receipt .other-offers .item a {
  text-decoration: none;
}
.receipt .other-offers .item span {
  display: block;
  text-align: center;
  margin: 0 auto;
}
.receipt .other-offers .item .logo {
  max-width: 90%;
}
.receipt .other-offers .item .logo img {
  max-width: 87%;
  height: auto;
}
.receipt .other-offers .item .service-text {
  display: inline-block;
  width: auto;
  margin: 10px auto;
}
.receipt .other-offers .item .fa-lg {
  font-size: 250%;
}
.receipt .other-offers .item .service-text {
  color: #fff;
  text-decoration: none;
}
.login {
  background: url("../images/background-checklist.jpg") no-repeat center center;
  background-size: cover;
}
.login form {
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 2rem;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.login form h2 {
  color: #04a4db;
  font-weight: 900;
  text-align: center;
  margin-top: 0;
}
.login form .submit .button {
  background: #fbbf11;
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
  font-size: 1.2rem;
}
.login form .submit .button:hover,
.login form .submit .button:focus,
.login form .submit .button:active {
  background: #fccc43;
}
.stalker {
  position: fixed;
  top: -500px;
  left: 0;
  width: 100%;
  padding: 1rem 0.5rem 0.5rem;
  z-index: 1000;
  background: #04a4db;
  color: #fff;
  text-align: center;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 568px) {
  .stalker {
    padding-top: 0.5rem;
  }
}
@media (min-width: 768px) {
  .stalker {
    padding: 1rem;
  }
}
.stalker .icon {
  float: left;
  font-size: 2rem;
  display: inline-block;
  line-height: 0;
}
@media (min-width: 568px) {
  .stalker .icon {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .stalker .icon {
    font-size: 3rem;
    float: none;
    vertical-align: middle;
  }
}
.stalker .private-loan-message.text {
  font-size: 0.8rem;
  color: white;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 600;
}
@media (min-width: 568px) {
  .stalker .private-loan-message.text {
    font-size: 0.9rem;
  }
}
@media (min-width: 680px) {
  .stalker .private-loan-message.text {
    font-size: 1rem;
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .stalker .private-loan-message.text {
    float: none;
    width: auto;
    display: inline-block;
    font-size: 1.6rem;
    padding: 0 0.5rem;
    vertical-align: middle;
  }
}
.stalker .input-wrapper {
  width: 80%;
  margin: 0 auto;
}
.stalker .input-wrapper [class^="col-"] {
  padding-left: 0;
  padding-right: 0;
}
.stalker .input-wrapper [class^="col-"]:first-child {
  padding-right: 5px !important;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .stalker .input-wrapper [class^="col-"]:first-child {
    margin-bottom: 0px;
  }
}
.stalker .input-wrapper input:not([type="checkbox"]) {
  width: 100%;
}
.stalker .input-wrapper input:not([type="checkbox"])[type="text"] {
  height: 48px;
}
.stalker .input-wrapper .EDV_LW_submit {
  float: left;
}
@media (max-width: 1200px) and (min-width: 992px) {
  .stalker .input-wrapper .EDV_LW_submit {
    font-size: 18px;
    height: 50px;
    padding: 2px;
  }
}
.stalker .input-wrapper span.twitter-typeahead {
  width: 100%;
}
.stalker .typeahead-banner .module-school-name {
  width: 100%;
}
.stalker .typeahead-banner .stackedRow .form-control {
  width: 80%;
}
.stalker.typeahead-banner #stalker-cta {
  font-size: 20px;
  padding: 16px;
  box-shadow: inset 0 -2px 0px 0px #256c25;
}
.stalker.typeahead-banner .twitter-typeahead {
  display: flex !important;
}
.stalker.typeahead-banner .twitter-typeahead .tt-open {
  top: 100% !important;
}
.stalker .cta {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}
@media (min-width: 568px) {
  .stalker .cta {
    position: absolute;
    top: 0;
    right: 0.5rem;
    width: auto;
  }
}
@media (min-width: 992px) {
  .stalker .cta {
    position: relative;
    margin-top: 0;
  }
}
.stalker .cta .button.orange {
  text-shadow: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
}
.stalker .cta .button.orange:hover,
.stalker .cta .button.orange:focus,
.stalker .cta .button.orange:active {
  background: #fccc43;
}
@media (min-width: 768px) {
  .stalker .cta .button.orange {
    font-size: 1.2rem;
  }
}
.stalker .close {
  position: absolute;
  top: -1px;
  right: 9px;
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  z-index: 9999;
  opacity: .8;
}
@media (max-width: 375px) {
  .stalker .close {
    font-size: 1.5rem;
    right: 7px;
    top: 1px;
  }
}
.stalker.stalking {
  top: 0;
}
.category-v2 ~ .stalker,
.content.article-detail.article-v2 ~ .stalker {
  display: none;
}
@media (max-width: 767px) {
  .category-v2 ~ .stalker,
  .content.article-detail.article-v2 ~ .stalker {
    display: unset;
  }
}
.inset.checklist-cta {
  padding: 1.5rem 1rem;
  margin-bottom: 1rem;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.inset.checklist-cta .icon {
  float: left;
  font-size: 3rem;
  display: inline-block;
  line-height: 0;
  vertical-align: middle;
  color: #04a4db;
}
.inset.checklist-cta .text {
  font-size: 1.0rem;
  color: #555;
  margin-left: 3.5rem;
}
@media (min-width: 768px) {
  .inset.checklist-cta .text {
    margin-left: 0;
    display: inline-block;
    font-size: 1.2rem;
    padding: 0 0.5rem;
    vertical-align: middle;
  }
}
.inset.checklist-cta .text b.name {
  font-weight: 900;
  color: #04a4db;
  display: block;
  font-size: 1.4rem;
  line-height: 1;
}
.inset.checklist-cta .cta {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .inset.checklist-cta .cta {
    width: auto;
    margin-top: 0;
  }
}
.inset.checklist-cta .cta .button.orange {
  text-shadow: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}
.inset.checklist-cta .cta .button.orange:hover,
.inset.checklist-cta .cta .button.orange:focus,
.inset.checklist-cta .cta .button.orange:active {
  background: #fccc43;
}
.inset.checklist-cta.bordered {
  padding: 1.2rem 0.66rem;
  border: 0.33rem solid #ade9fe;
}
.inset.checklist-cta.blue {
  background: #ade9fe;
}
.inset.checklist-cta.blue b.name {
  color: black;
}
.inset.checklist-cta.light-blue-green {
  background: #ade9fe;
  background-image: -moz-linear-gradient(left, #ade9fe, #c4f7c4);
  background-image: -ms-linear-gradient(left, #ade9fe, #c4f7c4);
  background-image: -o-linear-gradient(left, #ade9fe, #c4f7c4);
  background-image: -webkit-gradient(linear, left top, right top, from(#ade9fe), to(#c4f7c4));
  background-image: -webkit-linear-gradient(left, #ade9fe, #c4f7c4);
  background-image: linear-gradient(left, #ade9fe, #c4f7c4);
}
.inset.checklist-cta.light-blue-green b.name {
  color: black;
}
.inset.checklist-cta.blue-green {
  background: #49cefc;
  background-image: -moz-linear-gradient(left, #49cefc, #69ec69);
  background-image: -ms-linear-gradient(left, #49cefc, #69ec69);
  background-image: -o-linear-gradient(left, #49cefc, #69ec69);
  background-image: -webkit-gradient(linear, left top, right top, from(#49cefc), to(#69ec69));
  background-image: -webkit-linear-gradient(left, #49cefc, #69ec69);
  background-image: linear-gradient(left, #49cefc, #69ec69);
}
.inset.checklist-cta.blue-green .icon {
  color: #fff;
}
.inset.checklist-cta.blue-green b.name {
  color: black;
}
.top-lenders .top-lender {
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  padding-left: 0.2rem;
  padding-top: 0.4rem;
  text-align: center;
  height: 95px;
  margin-bottom: 0;
}
.top-lenders .top-lender a.image {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  float: left;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  width: 77px;
  height: 77px;
}
.top-lenders .top-lender a.image img {
  max-width: 66px;
  max-height: 66px;
  background-color: white;
  margin-top: 5px;
}
.top-lenders .top-lender a.image img.lender-bond {
  padding-top: 15px;
  padding-bottom: 15px;
}
.top-lenders .top-lender a.image img.lender-one {
  padding-top: 25px;
  padding-bottom: 24px;
}
.top-lenders .top-lender a.image img.lender-college {
  padding-top: 25px;
  padding-bottom: 22px;
}
.top-lenders .top-lender a.image img.lender-lendkey {
  padding-top: 25px;
  padding-bottom: 19px;
}
.top-lenders .top-lender a.image img.lender-discover {
  padding-top: 18px;
  padding-bottom: 18px;
}
.top-lenders .top-lender a.image img.lender-pnc {
  padding-top: 20px;
  padding-bottom: 20px;
}
.top-lenders .top-lender a.image img.lender-sallie {
  padding-top: 15px;
  padding-bottom: 18px;
}
.top-lenders .top-lender a.image img.lender-ismhelploan {
  padding-top: 16px;
  padding-bottom: 20px;
}
.top-lenders .top-lender .btn {
  float: right;
  margin-top: 20px !important;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
.opportunities .top-lenders .top-lender {
  border-top: none;
  padding-right: 0;
  padding-left: 0;
}
.opportunities .top-lenders .top-lender a.image {
  border-color: rgba(255, 255, 255, 0.2);
}
.opportunities .top-lenders .top-lender .btn-cta {
  width: inherit;
}
.article-detail .ad-content {
  float: right;
  margin-left: 15px;
}
.article-detail .ad-content p > span {
  font-style: italic;
  color: #999;
}
.article-detail .top-lenders {
  float: right;
  background: #fff;
}
.article-detail .top-lenders h3 {
  border: none !important;
  margin-top: 0;
  font-size: 18px;
}
.article-detail .top-lenders:after {
  clear: right;
}
.glossary .top-lenders {
  width: 100%;
  background: #fff;
}
@media (min-width: 768px) {
  .glossary .top-lenders {
    width: 300px;
    margin-left: 15px;
    padding-left: 15px;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.glossary .top-lenders h3 {
  border: none !important;
  margin-top: 0;
  font-size: 18px;
}
.category-v2 {
  min-height: 1400px;
}
.category-v2 h1 {
  margin: 0;
  padding-top: 10px;
  padding-bottom: 30px;
  color: #005ca9;
  font-weight: 900;
  font-size: 45px;
}
.category-v2 h3 {
  margin: 0;
  font-size: 135%;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 992px) {
  .category-v2 h3 {
    font-size: 110%;
  }
}
@media (max-width: 767px) {
  .category-v2 h3 {
    margin: 15px 0 5px 0;
    font-size: 110%;
  }
}
.category-v2 .featured a {
  display: inline-block;
  text-decoration: none;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .category-v2 .featured a {
    padding-bottom: 0;
  }
}
.category-v2 .featured span {
  color: red;
  font-weight: bolder;
  margin-left: 32px;
}
@media (max-width: 992px) {
  .category-v2 .featured span {
    margin-left: 15px;
    font-size: 82%;
  }
}
.category-v2 .row {
  padding-bottom: 30px;
}
.category-v2 .img-responsive a img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}
.article-detail {
  padding-top: 11px !important;
}
.article-detail h1 {
  margin: 0;
  font-weight: 900;
}
@media (max-width: 767px) {
  .article-detail h1 {
    font-size: 200% !important;
  }
}
.article-detail .article-info {
  margin-top: -7px;
  padding-bottom: 10px;
}
.article-detail .article-info .article-author a {
  color: #5a5a5a;
  font-size: 97%;
  font-weight: 900;
  text-decoration: none;
}
.article-detail .article-info .article-date {
  color: #5a5a5a;
}
.article-detail .article-info .article-date small {
  font-size: 79%;
}
.article-detail .article-content h2,
.article-detail .article-content h3 {
  color: #696565;
  font-size: 146%;
  font-weight: bolder;
}
.article-detail .article-content p {
  color: #5a5a5a;
}
.article-detail .article-content p img {
  width: 100%;
  margin-bottom: 20px;
}
.article-detail .resources {
  margin-top: 0 !important;
}
.article-detail .questions-heading h3,
.article-detail .calculator-heading h3 {
  margin-top: 0;
}
.article-detail .psl-sidebar.affix {
  top: 20px !important;
}
.psl-sidebar {
  width: 262px;
}
@media (max-width: 768px) {
  .psl-sidebar {
    width: 100%;
  }
}
.psl-sidebar .resources {
  margin-bottom: 25px;
  background-image: url(/content/images/bg-blue.png);
  background-size: cover;
  padding: 5px 15px;
}
.psl-sidebar .resources .steps {
  padding: 11px 0;
}
.psl-sidebar .resources .steps .icon-stack {
  margin-bottom: -3px;
}
.psl-sidebar .resources .steps .description {
  color: white;
  font-size: 88%;
  font-weight: bold;
}
.psl-sidebar .resources .steps .fa-stack {
  color: #005ca9;
}
.psl-sidebar .resources .steps .fa-stack strong {
  color: white;
}
.psl-sidebar .resources h3 {
  margin: 0;
  font-size: 128%;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding: 10px 0 13px;
  color: white;
}
@media (min-width: 768px) and (max-width: 992px) {
  .psl-sidebar .resources h3 {
    font-size: 100%;
  }
}
.psl-sidebar .resources .button {
  border-radius: 0px;
  background-color: #f6492b;
  color: white;
}
.psl-sidebar .resources #apply-form .form-control {
  height: 45px;
  border-radius: 0px;
  margin-bottom: 20px;
  font-size: 19px;
}
.psl-sidebar .resources #apply-form .twitter-typeahead .tt-menu.tt-open {
  top: 75% !important;
}
.psl-sidebar .questions-heading {
  background-color: #e3e3e3;
  padding: 5px 20px;
  text-align: center;
}
.psl-sidebar .questions-heading h3 {
  font-size: 107%;
  font-weight: 900;
}
.psl-sidebar .questions-heading h3 a {
  color: #5b5b5b;
}
.psl-sidebar .questions {
  margin-bottom: 25px;
  background-color: #f8f8f8;
  border: 1px solid #dedede;
}
.psl-sidebar .questions small {
  font-size: 70%;
  padding-left: 10px;
  font-weight: bold;
}
.psl-sidebar .questions small a {
  font-size: 84%;
  color: #444242;
  padding-right: 12px;
  text-decoration: none;
}
.psl-sidebar .questions ul {
  list-style: none;
  padding: 0px 20px;
}
.psl-sidebar .questions ul li {
  font-weight: bold;
  font-size: 15px;
}
.psl-sidebar .questions ul li a {
  text-decoration: none;
}
.psl-sidebar .questions ul li small {
  padding: 0;
  font-weight: bold;
  font-size: 70%;
}
.psl-sidebar .calculator-heading {
  background-image: url(/content/images/bg-orange.png);
  background-size: cover;
  padding: 5px 0;
}
.psl-sidebar .calculator-heading h3 {
  color: white;
  font-size: 127%;
  font-weight: 900;
}
.psl-sidebar .calculator {
  border: 1px solid #f6492b;
  padding: 10px 20px;
  background-color: white;
}
.psl-sidebar .calculator p {
  font-size: 100% !important;
  font-weight: 600 !important;
  color: #4a4040 !important;
}
.psl-sidebar .calculator .button {
  border-radius: 0;
  border-bottom: none;
  border: 2px solid #f6492b;
  background: none;
  color: #f6492b;
  text-shadow: none;
  font-weight: 900;
  margin-bottom: 10px;
}
.psl-stalker {
  background-image: url(/content/images/psl-stalker-bg.png);
}
.psl-stalker.stalker {
  padding-top: 5px;
}
.psl-stalker .psl-content-wrapper {
  text-align: left;
  margin-left: 20rem;
}
@media (max-width: 1200px) {
  .psl-stalker .psl-content-wrapper {
    margin-left: 13rem;
  }
}
@media (max-width: 992px) {
  .psl-stalker .psl-content-wrapper {
    text-align: center;
    margin-left: 0;
  }
}
.psl-stalker .psl-content-wrapper .psl-content-title {
  font-size: 2.5rem;
  font-weight: 900;
}
@media (max-width: 425px) {
  .psl-stalker .psl-content-wrapper .psl-content-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 320px) {
  .psl-stalker .psl-content-wrapper .psl-content-title {
    font-size: 1.4rem;
  }
}
.psl-stalker .psl-content-wrapper .psl-content-info {
  font-size: 1.3rem;
}
@media (max-width: 425px) {
  .psl-stalker .psl-content-wrapper .psl-content-info {
    font-size: 1rem;
  }
}
.psl-stalker a {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .psl-stalker a {
    margin-bottom: 5px;
  }
}
@media (max-width: 425px) {
  .psl-stalker a {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1rem !important;
    margin-top: 10px;
  }
}
.studentguide-stalker {
  background: #0d4d7f;
}
.studentguide-stalker.inverted {
  background: white;
}
.studentguide-stalker.inverted .stalker-text {
  color: #0d4d7f;
  margin: 0;
}
.studentguide-stalker.inverted .close {
  color: black;
}
.studentguide-stalker .button.green {
  color: #fff;
  background: #1bd41b;
  font-size: 20px;
  padding: 0.5em 0.5em;
}
.studentguide-stalker a {
  color: lemonchiffon;
}
span.twitter-typeahead .tt-menu {
  position: absolute !important;
  z-index: 1000;
  display: none;
  float: left !important;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: .25rem;
  max-height: 235px;
  overflow-y: auto;
}
span.twitter-typeahead .tt-suggestion {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
span.twitter-typeahead .tt-suggestion.tt-cursor {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}
.input-group span.twitter-typeahead {
  display: flex !important;
  align-items: center;
  position: relative;
  flex: 1 1 auto;
  width: 1%;
}
.input-group span.twitter-typeahead .tt-menu,
.input-group span.twitter-typeahead .tt-hint,
.input-group span.twitter-typeahead .tt-input {
  width: 100%;
}
/* loan-search-wrapper */
.loan-options-container {
  position: relative;
}
.loan-search-wrapper {
  display: none;
}
@media (max-width: 767px) {
  .loan-search-wrapper {
    display: block;
    position: absolute;
    width: 100%;
    top: -50px;
  }
  .loan-search-wrapper [data-name="loan-filter-button"] {
    display: block;
    background-color: #005ca9;
    border-radius: 1px;
    width: 100%;
    height: 50px;
    text-align: left;
  }
  .loan-search-wrapper [data-name="loan-filter-button"] i {
    transition: 300ms ease transform;
  }
  .loan-search-wrapper [data-name="loan-filter-button"]:not(.collapsed) i {
    transform: rotate(-180deg);
  }
  .loan-search-wrapper .well {
    border: 1px solid darkgrey;
    box-shadow: 2px 2px 4px #adadad;
    border-radius: 0 0 10px 10px;
  }
  .loan-search-wrapper .well .select2.select2-container {
    width: 100% !important;
    margin-bottom: 8px;
  }
  .loan-search-wrapper .well .select2.select2-container .select2-selection .select2-selection__rendered {
    margin: 0;
    padding: 0 5px;
  }
  .loan-search-wrapper .well .select2.select2-container .select2-selection .select2-selection__rendered:hover {
    cursor: default;
  }
  .loan-search-wrapper .well .select2.select2-container--default .select2-selection--multiple {
    min-height: 36px;
    overflow: hidden;
  }
  .loan-search-wrapper .well .select2.select2-container--default .select2-selection--multiple .select2-selection__clear {
    color: white;
    background-color: #005ca9;
    line-height: 1;
    font-size: 22px;
    padding: 0px 5px 0px 5px;
    margin: 5px 0px 0px 0px;
    border-radius: 5px;
    position: absolute;
    right: 5px;
  }
  .loan-search-wrapper .well .select2.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 5px;
    font-size: 14px;
    margin-bottom: 2.5px;
    padding: 5px 10px 5px 5px;
  }
  .loan-search-wrapper .well .select2.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
    font-size: 15px;
    line-height: 1;
    padding-right: 3px;
  }
  .loan-search-wrapper .well .select2-search__field {
    color: transparent;
    text-shadow: 0 0 0 red;
  }
  .responsive-stacked-table {
    font-family: Lato;
    width: 100%;
    border: 1px solid #ddd;
    border-collapse: collapse;
    table-layout: fixed;
  }
  .responsive-stacked-table thead {
    background: #eee;
    border-bottom: 3px solid #ddd;
  }
  .responsive-stacked-table thead {
    display: none;
  }
  .responsive-stacked-table tr,
  .responsive-stacked-table th,
  .responsive-stacked-table td {
    display: block;
  }
  .responsive-stacked-table th,
  .responsive-stacked-table td {
    padding: 10px;
    border-top: 1px solid #ddd;
  }
  .responsive-stacked-table tr.show-column {
    display: table-row !important;
  }
  .responsive-stacked-table tr.hide-column {
    display: none;
  }
  .responsive-stacked-table tr.even {
    background: white;
  }
  .responsive-stacked-table tr.even td {
    background: transparent !important;
  }
  .responsive-stacked-table tr.odd {
    background: #e7f2fb;
  }
  .responsive-stacked-table tr.odd td {
    background: transparent !important;
  }
  .responsive-stacked-table td {
    border-top: none;
  }
  .responsive-stacked-table td:first-child {
    border-top: 1px solid #ddd;
    font-weight: bold;
  }
  .responsive-stacked-table .fa {
    margin-right: 5px;
  }
  .responsive-stacked-table .fa-check-circle {
    color: #690;
  }
  .responsive-stacked-table .fa-times-circle {
    color: #c00;
  }
  .responsive-stacked-table.with-mobile-labels {
    font-size: 0.85em;
    margin-top: 100px;
  }
  .responsive-stacked-table.with-mobile-labels tr td:first-child {
    font-weight: 300;
  }
  .responsive-stacked-table.with-mobile-labels td {
    border: 0px none transparent;
  }
  .responsive-stacked-table.with-mobile-labels td:before {
    display: block;
    font-weight: bold;
    font-size: 18px;
  }
  .responsive-stacked-table.with-mobile-labels td:nth-of-type(1) {
    font-size: 24px;
    padding-bottom: 0;
  }
  .responsive-stacked-table.with-mobile-labels td:not(:nth-of-type(1)) {
    padding-left: 20px;
  }
  .responsive-stacked-table.with-mobile-labels td:nth-of-type(2):before {
    content: "Perkins Loans";
  }
  .responsive-stacked-table.with-mobile-labels td:nth-of-type(3):before {
    content: "Direct Subsidized Loans";
  }
  .responsive-stacked-table.with-mobile-labels td:nth-of-type(4):before {
    content: "Direct Unsubsidized Loans";
  }
  .responsive-stacked-table.with-mobile-labels td:nth-of-type(5):before {
    content: "Parent PLUS Loans";
  }
  .responsive-stacked-table.with-mobile-labels td:nth-of-type(6) {
    padding-bottom: 20px;
  }
  .responsive-stacked-table.with-mobile-labels td:nth-of-type(6):before {
    content: "Private Student Loans";
  }
}
@media (max-width: 1199px) {
  .container {
    width: auto;
    padding: 0 10px;
  }
}
.alert {
  margin-bottom: 0;
  border: none;
  border-radius: 1px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .alert {
    margin-bottom: 0px !important;
  }
}
@media (max-width: 362px) {
  .alert {
    padding-left: 0;
    padding-right: 0;
  }
}
.alert .container {
  display: flex;
}
.alert .container a {
  font-size: 11px;
}
@media (max-width: 991px) {
  .alert .container a {
    top: 69px;
  }
}
@media (max-width: 767px) {
  .alert .container a {
    top: 89px;
  }
}
.alert .container a:hover {
  cursor: pointer;
}
.alert .container i {
  font-size: 13px;
  margin-right: 5px;
}
.alert ~ .compare-lenders {
  margin-top: 15px;
}
#advertiserDisclosureModal .modal-content {
  z-index: 1;
}
#advertiserDisclosureModal .modal-content .modal-title {
  font-weight: 900;
  font-size: 1rem;
}
#advertiserDisclosureModal .modal-content .modal-body {
  text-align: center;
  color: #666;
  font-size: 0.875rem;
  z-index: -1;
}
#advertiserDisclosureModal .modal-content .modal-body p {
  margin: 0;
  font-size: 14px;
}
#advertiserDisclosureModal .modal-content .close {
  margin-right: 7px;
}