@charset "UTF-8";
/*
	navy: #005488
	blue: #0085B2
	teal: #46B7D5
	lt-blue: #ABE0ED
	tan: #C5BCB5
	orange: #F18200 
	gray: #CCCCCC
*/

/*
-------------------------
Disable iOS Zoom
-------------------------
*/
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], input[type="text"]:focus,
textarea:focus, select:focus{
	font-size: 16px !important;
	box-shadow: none;
}

/* Readonly/disabled field styling */
input[readonly],
input[disabled],
textarea[readonly],
textarea[disabled],
select[disabled] {
  cursor: default;
  background-color: #e9ecef;
  color: #495057;
  opacity: 1;
}

/* Override Bootstrap 3 disabled form-control cursor */
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: default;
  background-color: #e9ecef;
}

/* Mobiscroll-driven inputs: look editable but open picker on click */
.form-control.mobi-picker,
.form-control.mobi-picker[readonly] {
  background-color: #fff;
  cursor: pointer;
}

/* ============================
   Loading Overlay
   ============================ */

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
}

#loadingOverlay[hidden] {
  display: none !important;
}

.loading-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Spinner */
.ec-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(0, 84, 136, 0.2);
  border-top-color: #005488;
  border-radius: 50%;
  animation: ec-spin 0.9s linear infinite;
}


/* Spin animation */
@keyframes ec-spin {
  to { transform: rotate(360deg); }
}

/* utility */
.d-none {
  display: none !important;
}

/*
-------------------------
Typography && Colors
-------------------------
*/

/* Fill Colors */
.navy{background-color: #005488;}
.blue{background-color: #0085B2;}
.teal{background-color: #46B7D5;}
.lt-blue{background-color: #ABE0ED;}
.orange, .orange:visited{background-color: #fba919;}
.orange:hover, .orange:active, .orange:focus{background-color: #ffb431;}
.white{background-color: #FFFFFF;}
.gray{background-color: #CCCCCC;}
.default{background-color: #333333;}

/*Main Menu Blue Button Colors*/
.blue-btn, .blue-btn:visited{background-color: #0085B2; color: #FFF;}
.blue-btn:hover, .blue-btn:active, .blue-btn:focus{background-color: #0085B2; color: #FFF;}

/*Facebook Button*/
.fb-btn{
	font-weight: 700;
	font-size: 14px;
	padding: 15px 30px;
	box-shadow: 0;
	background-color: #4267B2 !important;
	color: #FFF;
  margin-top: 30px;
}
.fb-btn:hover,
.fb-btn:active,
.fb-btn:focus{
	background-color: #4462a1 !important;
	color: #FFF;
}

.fb-btn > i{
	color: #FFF;
	float: left;
	padding: 0;
	font-size: 20px;
}

/*Sign In With Email Button*/
.email-btn{
	font-weight: 700;
	font-size: 14px;
	padding: 15px 30px;
	box-shadow: 0;
	background-color: #fba919 !important;
	color: #FFF;
  margin-top: 10px;
  margin-bottom: 30px;
}
.email-btn:hover,
.email-btn:active,
.email-btn:focus{
	background-color: #ffb431 !important;
	color: #FFF;
}

.email-btn > i{
	color: #FFF;
	float: left;
	padding: 0;
	font-size: 20px;
}

p.OR {
	font: 2rem sans-serif;
  margin-top: 30px;
	margin-bottom: 20px;
  text-align: center;
  color: #DDD;
  font-weight: bold;
  position: relative;
  z-index: 1;
	text-transform: uppercase;
}
p.OR:before {
  border-top: 2px solid #DDD;
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
p.OR span {
  background: #fff;
  padding: 0 15px;
}


.fullWidth{
	width: 100% !important;
}

/*main menu button text color*/
button#apply{
	color: white;
}

/* Link Colors */
.link-navy, .link-navy:visited,
.a4d .panel .link-navy, .a4d .panel .link-navy:visited,
.a4d .panel .link-navy:active, .a4d .panel .link-navy:focus{
	color:#005488 !important;
	text-decoration:none !important;
	font-style:italic;
	transition: color .2s;
	cursor:pointer;
}
.link-navy:hover, .link-navy:active, .link-navy:focus,
.a4d .panel .link-navy:hover{
	color:#0072b8 !important;
	text-decoration:none !important;
}

.link-white, .link-white:visited{
	color:#FFFFFF !important;
	text-decoration:underline;
	font-style:italic;
	transition: color .2s;
	cursor:pointer;
}
.link-white:hover, .link-white:active, .link-white:focus{
	color:#FFFFFF !important;
	text-decoration:underline !important;
}

/* Font Colors */
.text-navy{color:#005488;}
.text-blue{color:#0085b2;}
.text-teal{color:#46b7d5 !important;}
.text-light-blue{color:#abe0ed;}
.text-gold{color:#bcafa7 !important;}
.text-white{color:#ffffff;}
.text-default{color:#333333;}

.text-green{color:#44aa24;}

/*Font Weights */
.thin-weight{font-weight:100;}
.thin-italic-weight{font-weight:100; font-style:italic;}
.light-weight{font-weight:300;}
.normal-weight{font-weight:400;}
.semi-bold-weight{font-weight:600;}
.bold-weight{font-weight:700;}
.extra-bold-weight{font-weight:800;}
.light-italic-weight{font-weight:300; font-style:italic;}
.normal-italic-weight{font-weight:400; font-style:italic;}
.semi-bold-italic-weight{font-weight:600; font-style:italic;}
.bold-italic-weight{font-weight:700; font-style:italic;}
.extra-bold-italic-weight{font-weight:800; font-style:italic;}

.font-size__14{
	font-size: 14px;
}
.font-size__16{
	font-size: 16px;
}
.font-size__26{
	font-size: 26px;
}



/* Page Heading */
h1, h2, h3, h4, h5, h6 {
	color: #333333;
  	margin: 0;
  	padding: 0;
}
h4.heading-label{
	font-size: 16px;
	color: #333;
	font-weight: 700;
	padding-top: 20px;
}

@media(max-width: 776px){
	h1.text-teal.extra-bold-weight{
		font-size: 26px;
	}
}

/* Paragraph Helper Tags */
p.desc{
  padding-top: 20px;
  color: #333;
}
p.disclaimer{
	color: #959595;
	display:inline-block;
	font-size: 14px;
	font-style: italic;
}
.optional{
	color: #959595;
	font-style:italic;
	font-weight: 400;
	padding-left: 5px;
}
.amountInfo{
	color: #959595;
	font-size: 14px;
	font-style:italic;
	font-weight: 400;
	/*padding-left: 5px;*/
}



/*
-------------------------
Helpers
-------------------------
*/
#brokers-only{display:none;}
.__display-inline{
	display: inline;
}
.__margin-25{
	margin: 25px 0;
}
.__margin-top-40{
	margin-top: 40px;
}
.__margin-top-50{
	margin-top: 50px;
}
.__padding-top-20{
	padding-top: 20px;
}


/*
-------------------------
Wrapper & Container
-------------------------
*/
#row-container{
	padding-top: 30px;
	padding-bottom: 30px;
}
.headerContainer + #row-container{
	padding-top: 0px;
}
.col-md-7,
.col-md-4 {
	padding: 0;
}



/*
-------------------------
Breadcumb Nav
-------------------------
*/
.breadcrumb > li.active{
	color: #0085b2;
	font-weight: 700;
}
.breadcrumb > li{
	color: #0085b2;
}
.breadcrumb > li + li:before{
	color: #0085b2;
	font-weight: normal;
}



/*
-------------------------
Form
-------------------------
*/
form{
	margin-top: 30px;
}
.form-horizontal .form-group{
	margin-left: 0;
	margin-right: 0;
}
.form-group.radio-group{
	display: inline-block;
	margin-bottom: 0;
}
@media(max-width:768px){

}
.form-control{
	box-shadow: none;
}
.form-control:focus{
	border-color: #46b7d5;
	box-shadow: none;
}
#form-buttons{
	margin-top: 20px;
	margin-bottom: 20px;
}
label[class="radio-selection"]{
	font-weight: 400;
	color: #333;
	text-transform: none;
	font-size: 14px;
}
.btn-back{
	color: #959595;
	background-color: transparent;
	border: 0;
	padding-right: 20px;
	line-height: 50px;
	outline: none;
}
@media(max-width:768px){
	.btn-back{
		padding-right: 0;
	}
}
.btn-back:hover{
	color: #afafaf;
	text-decoration: none;
}



.showHide{
	padding-left: 8px;
	font-size: 14px;
	color: #333;
}


/*
-------------------------
Live Chat
-------------------------
*/
a.lhn_help_btn, a.lhn_help_btn:visited{
	background:url(/assets/images/icons/help_btn.png) !important;
}

/*
-------------------------
Sidebar
-------------------------
*/
.sidebar-main{
	background-color: #fcfcfc;
	border: 1px solid #f1f1f1;
	border-radius: 4px;
	display: block;
}
/*sidebar-header*/
.sidebar-header{
  text-align: center;
  color: white;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: #65d3f1;
  background: -moz-linear-gradient(-45deg,  #65d3f1 0%, #0085b2 100%);
  background: -webkit-linear-gradient(-45deg,  #65d3f1 0%,#0085b2 100%);
  background: linear-gradient(135deg,  #65d3f1 0%,#0085b2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#65d3f1', endColorstr='#0085b2',GradientType=1 );
  box-shadow: 0px 5px 10px -4px #444;
}
/* header image */
.sidebar-header > img{
	width: 100%;
	margin: 0 auto;
}
/* header amount */
.sidebar-request-amount{
	padding: 20px 0;
}
.sidebar-request-amount > span{
	color: white;
	/*font-size: 1.25rem;*/
	font-style: italic;
}
.sidebar-request-amount > h2{
	color: white;
	font-size: 5rem;
	font-weight: 700;
}
/*sidebar-body*/
.sidebar-body{
  color: #959595;
  font-size: 12px;
  text-align: center;
  margin: 0;
  padding: 20px 10px;
}
.sidebar-body > article{
	padding-bottom: 5px;
}
h5.sidebar-heading {
	color: #959595;
	font-weight: 700;
	margin-bottom: 5px;
}
h6.agent-kuddos{
	color: #959595;
	font-weight: 700;
	margin-bottom: 5px;
}
/*sidebar-buttons*/
.sidebar-buttons{
	text-align: center;
	padding-bottom: 30px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}
.sidebar-buttons > button,
.sidebar-buttons > a{
	background: none;
	border-radius: 4px;
	font-size: 13px;
	padding: 10px 15px;
	text-decoration: none;
}
.sidebar-btn-phone,
.sidebar-btn-phone:visited {
  color: #0085B2 !important;
  border: 1px solid #0085B2;
  transition: border .2s, color .2s, box-shadow .2s, ease-in;
}

.sidebar-btn-phone:hover,
.sidebar-btn-phone:active,
.sidebar-btn-phone:focus {
  color: #46b7d5 !important;
  border: 1px solid #46b7d5;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.sidebar-btn-chat,
.sidebar-btn-chat:visited {
  color: #FBA919;
  border: 1px solid #FBA919;
  transition: border .2s, color .2s, box-shadow .2s, ease-in;
}

.sidebar-btn-chat:hover,
.sidebar-btn-chat:active,
.sidebar-btn-chat:focus {
  color: #ffb431;
  border: 1px solid #ffb431;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/*sidebar privacy*/
.sidebar-privacy{
	margin-top: 20px;
	text-align: center;
	padding-left: 25px;
}


/*
-------------------------
User Alert
-------------------------
*/
/*icon*/
.fa-question-circle:before{
	font-size: 12px;
	vertical-align: baseline;
}
/*alert*/
.alert-tip{
	background-color:#46B7D5;
	border-color:transparent;
	color:#FFFFFF;
	font-size: 12px;
	padding: 15px;
	margin-bottom: 15px;
	border: 0;
	border-radius: 4px;
}
.alert-promocode{
	font-size: 12px;
	font-weight: 600;
	color: #46B7D5;
	font-style:italic;
}
a[class="alert-link"]{
	color: #ffffff;
	text-decoration: underline;
}
.close{
	text-shadow: none;
	outline: 0;
	border: 0;
}

/*
-------------------------
Datepicker
-------------------------
*/
.datepicker{
	font-family: "Open Sans", Arial !important;
	padding: 20px !important;
}
.input-group-addon{
	background-color: #fcfcfc;
	border: 1px solid #cccccc;
  display:inline;
  position:relative;
  top:8px;
}
i.glyphicon.glyphicon-calendar{
	padding: 0 10px;
	color: #46b7d5;
}
table td[class="new day"],
table td[class="day"],
table td[class="old day"]{
	background-color: #FFFFFF;
  font-weight:bold;
  color:#000000;
}
.datepicker table tr td.new, .datepicker table tr td.old{
  font-weight:normal;
  color:#FFFFFF !important;
}
.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover{
  color:#cccccc !important;
}
.datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left.datepicker-orient-top{
	border: 2px solid #46b7d5;
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.2);
	padding: 0;
	margin: 0;
}
.datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left.datepicker-orient-bottom{
	border: 2px solid #46b7d5;
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.2);
	padding: 0;
	margin: 0;
}
table[class=" table-condensed"]{
	box-shadow: none;
}
.promo-container > input{
	width: 250px;
	display: inline;
	padding-top: 10px;
	margin-top: 8px;
}

/*
-------------------------
Promocode
-------------------------
*/
.promo-container{
  padding-top: 0px;
  }
.promo-container > a{
	color: #0085b2;
	font-size: 14px;
}
input#apply_PromotionCode{
	width: 200px;
	display: inline;
}
.promo-container #hpc{
  cursor:pointer;
}
.promo-apply{
  cursor:pointer;
	font-size: 14px;
	color: #fba919;
	padding-left: 10px;
}
.promo-apply:hover{
	font-size: 14px;
	color: #ffb431;
	padding-left: 10px;
	text-decoration: underline;
}

/*Promo Header on promo.php*/
.promo-main{
	padding: 50px 30px 0 30px;
}
@media(min-width: 480px){
	.promo-heading{
		display: none;
	}
}

/*
-------------------------
Media Queries
-------------------------
*/
@media (max-width: 991px){
#sidebar-main{
	width: 100%;
	margin-top: 30px;
}

.sidebar-container{
	display: none;
}

.inner{text-align: left !important;}
}
@media (max-width: 768px){
#form-buttons{
	float: none;
	width: 100%;
}
.btn-primary, .btn-back{
	clear: both;
	width: 100%;
}
.promo-container{
	text-align: left;
	margin-top: 0;
	margin-bottom: 20px;
}
.promo-body > .disclaimer {
	text-align: left;
}
}


/*
-------------------------
Tabs
-------------------------
*/
#lm-li {
  list-style: none;
  text-align: left;
}

.lm-p {
  text-align: left;
}
.lm-row{
	margin-bottom: -50px;
}
.lm-container {
  margin-top: 0;
  vertical-align: middle;
}

.lm-icon {
  padding-right: 8px;
}

.lm-icon-text {
  margin-top: 20px;
  margin-left: 20px;
  font-size: 12px;
  vertical-align: middle;
  text-align: left;
}
#underwriting-small, #agreements-small {
	display: none;
}
.panes {
  height: auto !important;
}

@media (max-width: 991px) {
  .lm-icon-text {
    display: inline-block;
    margin-top: 8px;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .lm-read {
    margin-bottom: 20px;
  }
  .lm-icon-group {
    padding-left: 0;
  }
  .lm-icon-text {
    display: inherit;
    margin-top: 30px;
  }
  #underwriting-small, #agreements-small{
	display: block;
}
#underwriting, #agreements{
	display: none;
}
}

.left{float:left}
.right{float:right}
.clear{clear:both}

/* DJS */
.has-error .help-block{
	margin: 0px;
	font-size: 80%;
	font-style: italic;
}
.hideOnLoad {
  	display:none;
}

/*main navigation join & login buttons*/
#loginButton {
	margin-top: 0px;
	border: 0px;
	font-size: 14px;
	font-weight: 600;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2) inset;
	width: 125px;
}
#navJoinButton {
	margin-top: 0px;
	border: 0px;
	font-size: 14px;
	font-weight: 600;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2) inset;
	width: 125px;
}

/* DJS */
html, body {
  	height: 100%;
}
body {
  	background-color: #c6c6c6;
  	background: linear-gradient( 180deg, #DDD, #EEE, #FFF, #FFF );
  	background-attachment: fixed;
  	font-size: 16px;
  	font-family: "Open Sans", Arial;
  	font-weight: 400;
}

/*main heading size & colors*/
h1,
h2,
h3 {
  	font-weight: 400;
  	color: #0085B2;
  	margin: 0;
  	padding: 0;
}
h1 strong,
h2 strong,
h3 strong {
  	font-weight: 700;
  	color: #46B7D5;
}
h4 {
  	font-weight: 400;
  	color: #0085B2;
  	margin: 0;
  	padding: 0;
}

/*main colors*/
/*a {color: #005488; text-decoration: underline;}*/
.white {background-color: #FFF; color: #0085B2;}
.orange {background-color: #fba919; color: #FFF;}
.orange:hover {color: #FFF;}
/*.navy {background-color: #0085B2; color: #FFF;} //duplicate*/
.navy-link:hover, .navy-link:active, .navy-link:focus{background-color: #0085B2; color: #FFF; outline: none;}
.tan {background-color: #C5BCB5; color: #FFF;}
.teal {
  	background-color: #46B7D5 !important;
  	color: #FFF !important;
  	margin-bottom: 20px;
}

.teal-rounded{border-radius: 8px;}
.teal h2,
.teal h3 {
  	/*text-shadow: 1px 1px 2px rgba(0,0,0,.5);*/
  	color: #FFF !important;
}
.teal h2 strong,
.teal h3 strong {
  	color: #FFF !important;
}
.teal .map {
  	background-image: url("/assets/images/header/WhoWeAre-header.jpg");
  	background-position: center center;
  	background-size: 1198px 415px;
  	background-repeat: no-repeat;
}
.white-text {
  	color: white !important;
  	/*text-shadow: 1px 2px 2px #000, 0 0 0 #000, 1px 2px 7px #000;*/
}
.white-text strong {
  	color: #FFF !important;
  	margin-top: 5px;
  	display: block;
}
.teal-text {
	color: #069 !important;
}
.teal-text strong {
  	color: #069 !important;
  	/*text-shadow: 1px 2px 2px #FFF, 0 0 0 #FFF, 1px 2px 7px #FFF;*/
}
.lt-teal {
  	background: #f1fafc url("/assets/images/css/teal-bg.png") top left repeat  !important;
}
.lt-blue {
  	background: #ececfb url("/assets/images/css/lt-blue-bg.png") top left repeat  !important;
}
.lt-gray {
  	background-color: #EEE;
  	background: linear-gradient( 180deg, #FFF, #FFF, #EEE, #DDD );
}

.inner {
  	max-width: 1200px;
  	background-color: #FFF;
  	margin: 0 auto;
  	position: relative;
  	padding: 0px 20px 40px;
}
.innerLogos {
  	max-width: 1200px;
  	background-color: #f9f9f9;
  	margin: 0 auto;
  	position: relative;
  	padding: 0px 20px;
}
.innerLogosLP {
  	max-width: 1200px;
  	background-color: #FFFFFF;
  	margin: 0 auto;
  	position: relative;
  	padding: 0px 20px;
}
.innershort {
  	max-width: 1200px;
  	background-color: #FFF;
  	margin: 0 auto;
  	position: relative;
  	padding: 0px;
}
.narrow {
  	width: 80%;
  	margin: 0 auto;
}
.wider {
  	width: 90%;
  	margin: 0 auto;
}
.widest {
  	width: 100%;
  	margin: 0 auto;
}
.pullquote {
  	font-style:italic;
  	font-size: 14px;
  	font-weight:500;
}
.pullquote strong {
  	color: #FFF !important;
  	font-size: 22px;
  	font-weight:800;
}
.pullquote H2 {
  	color: #575757 !important;
  	font-size: 22px;
  	font-weight:600;
}
.pullquote H3 {
  	color: #FFF !important;
  	font-size: 20px;
  	font-weight:600;
  	border-radius:10px;
  	margin: 20px;
  	padding: 20px;
}
.top-spacer {
  	padding-top: 50px;
}
.bottom-spacer {
  	padding-bottom: 50px;
}
.row.spacer .col-sm-4,
.row.spacer .col-sm-6,
.row.spacer .col-sm-8 {
  	padding: 0 30px;
}
/*
.border-right { 
    border-right: 1px solid #CCC;
}
*/
.modal-open .col-sm-4.small {
  	border-left: 1px solid #CCC;
}
div.big, div p.big {
  	font-size: 18px;
}
.md-text {
  	font-size: 14px !important;
}
.responsive {
  	max-width: 100%;
  	height: auto;
}
.testimonial {
  	margin: 20px 0 0;
  	background-color: #FFF;
  	box-shadow: 0 0 10px rgba(0,0,0,.3);
  	padding: 20px;
  	color: #000;
  	text-shadow: none;
  	font-size: 14px;
  	height: 340px;
}
.testimonial .quote {
  	font-style: italic;
  	font-size: 120%;
}
.testimonial .name {
  	font-weight: bold;
  	font-size: 120%;
  	margin: 25px 0 -3px;
}
.testimonial .location {
  	color: #999;
}
.services {
  	padding: 20px;
  	text-shadow: none;
  	font-size: 14px;
  	text-align: center;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
}
.services .title {
  	font-size: 20px;
  	font-weight: bold;
}
.modal-body small {
  	display: block;
  	font-size: 11px;
  	line-height: 120%;
}
.modal-body h3 {
  	font-size: 25px;
  	margin-top: 10px;
}
.modal-body .row {
  	padding-bottom: 0;
}
.modal-header {
  	background-color: #EEE;
  	border-radius: 7px 7px 0 0;
}
.modal-body {
  	padding-bottom: 0px;
}

#navBar {
  	position: fixed;
  	top: 0;
  	left: 0;
  	right: 0;
  	z-index: 10;
}
#menuSelect {
  	display: none;
  	width: 100%;
  	margin-top: 95px;
}
#navBar .inner {
  	background-color: #FFF;
  	height: 130px;
  	-webkit-transition: all 1s;
  	transition: all 1s;
}
.subnav #navBar .inner {
  	height: 160px;
}
#navBar .inner.scrolled {
  	box-shadow: 0 15px 12px -18px rgba(0, 0, 0, 1);
  	-webkit-transition: all 1s;
  	transition: all 1s;
  	opacity: .98;
}
#navBar .topBar {
  	background-color: #46B7D5;
  	padding: 5px 20px;
  	text-align: right;
  	text-transform: uppercase;
  	letter-spacing: 2px;
  	margin: 0 -20px;
}
#navBar .topBar a.btn {
  	border: 0px;
  	font-size: 12px;
  	font-weight: 600;
  	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  	box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2) inset;
  	width: 100px;
}
.navbar{
	max-width: 1200px;
	margin: 0 auto;
	border: 0;
	border-radius: 0;
}
#brand{
	width: 250px;
	/*border: 1px solid orange;*/
}
.navbar-brand{
    margin: 0;
    padding: 0;
	width: auto;
	height: 10px;
}

ul.nav.navbar-nav.pull-right{
	margin-top: 10px;
}
@media screen and (max-width: 767px){
.navbar-brand{
	padding-left: 15px;
}
.img-focus{
	text-align: center;
	padding-top: 30px;
}
}

#menu {
  	margin-top: 30px;
  	font-size: 15px;
  	float: right;
}
#menu ul {
  	margin: 0;
  	padding: 0;
  	list-style: none;
  	float: right;
  	clear: both;
}
#menu li {
  	float: left;
  	padding: 0 10px;
}
#menu a {
  	display: block;
  	padding: 5px 16px;
}
#menu a {
	color: #000;
	text-transform: uppercase;
	border: 1px solid #FFF;
}
#menu a:hover {
	border: 1px solid #EEE;
	border-radius: 5px;
	text-decoration: none;
	background-color: #EEE;
	background: linear-gradient( 180deg, #FFF, #F7F7F7 );
}
#menu .active a {
	color: #46B7D5;
	border: 1px solid #EEE;
	border-radius: 5px;
	text-decoration: none;
	background: linear-gradient( 180deg, #FFF, #F7F7F7 );
}
#submenu {
	font-size: 16px;
	background-color: #EEE;
	background: linear-gradient( 180deg, #FFF, #DDD );
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	margin-top: 100px;
	height: 40px;
	margin: 90px -20px 0;
}
#submenu a {
	padding: 5px 20px;
	display: inline-block;
	font-size: 13px;
	color: #777;
	border: 1px solid #CCC;
	background-color: transparent;
	border-radius: 5px;
	margin: 3px 5px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#submenu a.selected {
	background-color: #FFF;
	border: 1px solid #CCC;
	color: #000;
}
#submenu a:hover {
	text-decoration: none;
	color: #000;
	border: 1px solid #AAA;
}
.highlight #submenu a {
	background-color: #f1fafc;
	border-color: #46B7D5;
	color: #46B7D5;
	font-size: 14px;
	font-weight: bold;
	padding: 5px 25px;
	margin: 3px 5px;
}
.highlight #submenu a:hover {
  	color: #0085B2;
}
.highlight #submenu a.selected {
  	background-color: #FFF;
}
#submenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	text-align: center;
}
#submenu li {
	display: inline;
	margin: 0;
	padding: 0;
	width: auto;
}
#hdr .inner {
  	padding: 0;
}
#hdr img {
  	width: 100%;
}
#hdr .desc {
	width: 80%;
	top: 8%;
	position: absolute;
	left: 10%;
}
#hdr .desc h1 {
	font-weight: 800;
	margin: 0;
	padding: 0;
	font-size: 45px;
	line-height: 100%;
}
#hdr .desc h2 {
	font-size: 35px;
	margin: 10px 0 20px 0;
	padding: 0;
	line-height: 100%;
}

#hdr .hpg-vid {
	font-size: 15px;
	bottom: 0%;
	position: absolute;
	right: 44%;
	border:thin #f18200 solid;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-box-shadow: -2px 3px 6px -1px rgba(0,0,0,0.75);
	-moz-box-shadow: -2px 3px 6px -1px rgba(0,0,0,0.75);
	box-shadow: -2px 3px 6px -1px rgba(0,0,0,0.75);
}
#hdr .hpg-vid:hover {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	
	-ms-transform:scale(1.025); /* IE 9 */
	-moz-transform:scale(1.025); /* Firefox */
	-webkit-transform:scale(1.025); /* Safari and Chrome */
	-o-transform:scale(1.025); /* Opera */
	transform:scale(1.025);
	-webkit-box-shadow: -2px 3px 15px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: -2px 3px 15px 0px rgba(0,0,0,0.75);
	box-shadow: -2px 3px 15px 0px rgba(0,0,0,0.75);
}
#hdr .vid-text {
  	margin: auto 0;
  	color: #FFF;  
}
#hdr a{
  	color: #FFF;
}
#hdr .grow {
	font-size: 12px;
}
/*#hdr2 {
	margin-top: 130px;
}*/

.activelphead {
	display: none;
}

#hdr2 .inner {
  	padding: 0;
}
#hdr2 img {
  	width: 100%;
}
#hdr2 .desc {
	width: 80%;
	bottom: 30%;
	position: absolute;
	left: 10%;
}
#hdr2 .desc h1 {
	font-weight: 800;
	margin: 0;
	padding: 0;
	font-size: 45px;
	line-height: 100%;
}
#hdr2 .desc h2 {
	font-size: 35px;
	margin: 10px 0 20px 0;
	padding: 0;
	line-height: 100%;
}

#hdr2 .desc h3 {
	font-size: 25px;
	font-style: italic;
	margin: 10px 0 20px 34px;
	padding: 0;
	line-height: 100%;
}

/* Buttons */
.btn_override {
	 background-color: #FBA919 !important;
	 border:none;
}
.btn {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
  	border: 0;
	box-shadow: 0;
}
.btn-primary{
	font-weight: 700;
	font-size: 14px;
	padding: 15px 30px;
	box-shadow: 0;
}
/* changed djs -- added .no-touch */
.btn:hover, .btn:active, .btn:focus {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-ms-transform:scale(1.025);
	-moz-transform:scale(1.025);
	-webkit-transform:scale(1.025);
	-o-transform:scale(1.025);
	transform:scale(1.025);
	box-shadow: 0 0 10px rgba(0,0,0,.2);
	outline: none;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus{
	background-color: #FFB431 !important;
}

#hdr2 .btn:hover {
	border-top: 1px solid rgba(0, 0, 0, 0.3);
	border-left: 1px solid rgba(0, 0, 0, 0.3);
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 0 0 transparent;
	margin-bottom: -2px;
	margin-top: 2px;
}
#hdr2 .btn {
	font-weight: 700;
	font-size: 25px;
	line-height: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	border-right: 1px solid rgba(0, 0, 0, 0.3);
	border-top: 1px solid rgba(255, 255, 255, 0.66);
	border-left: 1px solid rgba(255, 255, 255, 0.66);
	color: #FFF;
	box-shadow: 0 0 5px rgba(0,0,0,.3);
	-webkit-transition: all .3s;
	transition: all .3s;
}
#hdr2 .btn small {
	font-size: 15px;
	font-weight: 300;
	display: block;
}
#hdr2 .btn:hover small {
  	font-weight: 600;
}
#hpgslider .btn {
	font-weight: 600;
	font-size: 25px;
	line-height: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	border-right: 1px solid rgba(0, 0, 0, 0.3);
	border-top: 1px solid rgba(255, 255, 255, 0.66);
	border-left: 1px solid rgba(255, 255, 255, 0.66);
	color: #FFF;
	box-shadow: 0 0 5px rgba(0,0,0,.3);
	-webkit-transition: all .3s;
	transition: all .3s;
}
#hpgslider .btn small {
	font-size: 15px;
	font-weight: 300;
	display: block;
}
#hpgslider .btn:hover small {
	font-weight: 600;
}
/* -- end buttons --*/

#hpgslider p.small {
	font-size: 13px;
	text-align: center;
	padding-top: 7px;
}
#hdr .ftr {
  	padding: 15px 30px;
  	background-color: #0085B2;
  	color: #ABE0ED;
  	font-size: 20px;
  	line-height: 120%;
}
#hdr .ftr span, #hdr .ftr a {
  	color: #FFF;
  	font-weight: 600;
}
#hdr .ftr a {
  	text-decoration: underline;
}
#hdr .ftr img {
  	width: auto;
}
#hdr2 .ftr {
  	padding: 15px 30px;
  	background-color: #0085B2;
  	color: #ABE0ED;
  	font-size: 20px;
  	line-height: 120%;
}
#hdr2 .ftr span, #hdr .ftr a {
  	color: #FFF;
  	font-weight: 600;
}
#hdr2 .ftr a {
	color: #fff;
  	text-decoration: underline;
}
#hdr2 .ftr img {
  	width: auto;
}
#content .inner {
  	padding-top: 60px;
}
#content #widebtn {
  	width: 500%;
  	margin: 0 auto 10px;
  	font-size: 550%; 
  	border: 3px double orange;
}
h2 {
  	font-size: 38px;
}
h2.center {
  	text-align: center;
}
h3 {
  	font-size: 30px;
}
.h3_override{
	margin-bottom: 50px;	
}
h1.center, h2.center, h3.center {
	display: block;
	text-align: center;
}
p.center {
	display: block;
	width: 75%;
	margin: 0px auto;
	text-align: center;
	font-size: 18px;
}
#content .tabWrapper {
	position: relative;
	padding-top: 30px;
}
.tabWrapper ul.navi {
	list-style: none;
	margin: 0;
	padding: 0;
}
.tabWrapper ul.navi li {
	position: absolute;
	top: 45%;
	left: 5%;
	width: 50px;
	height: 50px;
	background-color: #46B7D5;
	text-align: center;
	font-weight: bold;
	font-size: 30px;
	line-height: 30px;
	color: #FFF;
	padding: 10px;
	border-radius: 50% 50% 50% 50%;
	cursor: pointer;
}
.tabWrapper ul.navi li.nextBtn {
	left: auto;
	right: 5%;
}
.tabs {
	margin: 0 auto;
	padding: 10px;
	border-radius: 30px;
	border: 1px solid #DDD;
	background-color: #EEE;
	width: 80%;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 60px;
}
.tabs.twoTabs li {
  	width: 50%;
}
.tabs li {
	margin: 0;
	padding: 0;
	display: block;
	border: 1px solid #FFF;
	background-color: #DDD;
	width: 33%;
	float: left;
	border-right: 0px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 40px;
}
.tabs li a {
	text-align: center;
	font-size: 16px;
	display: block;
	padding-top: 8px;
	height: 40px;
	color: #666;
}
.tabs li:first-child {
  	border-radius: 20px 0 0px 20px;
}
.tabs li:last-child {
  	border-radius: 0px 20px 20px 0px;
}
.tabs li:hover {
  	box-shadow: inset 0px 0px 3px rgba(0,0,0,.5);
}
.tabs li.active {
  	background-color: #46B7D5;
  	box-shadow: inset 2px 2px 4px rgba(0,0,0,.5);
}
.tabs li.active a {
  	color: #FFF;
  	text-decoration: none;
}
.tabs a,
#content .tabs a:hover,
#content .tabs a:active {
  	text-decoration: none;
}
.tabs a:hover {
  	color: #000;
}
.panes {
  	width: 80%;
  	margin: 0 auto;
  	padding: 50px 20px;
}
.modal-body .tabWrapper .panes {
  	padding: 10px 0 !important;
  	height: auto !important;
}
.modal-body ul.navi {
  	display: none;
}
.panes .pane {
  	display: none;
}
#logoSlider {
	overflow: hidden;
	height: 90px;
	margin: 20px -20px 0;
	white-space: nowrap;
}
#sliderWrapper .inner {
	padding: 30px 20px;
}
.sliderInner {
	white-space: nowrap;
	display: inline;
	padding: 40px 0;
}
.sliderInner img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	margin: 0px 10px;
}
.sliderInner img:hover {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-ms-transform: scale(1.2); /* IE 9 */
	-moz-transform: scale(1.2); /* Firefox */
	-webkit-transform: scale(1.2); /* Safari and Chrome */
	-o-transform: scale(1.2); /* Opera */
	transform: scale(1.2);
	cursor: pointer;
}
span.wTw {
	color:#47b7d5;
}
span.cYe {
	color:#0085b2;
}
.text-decoration-underline {
	text-decoration:underline;
}
#brandlogos {
	color: #000;
	background-color: #FFF; 
	border-radius: 20px; 
	padding: 16px; 
	font-size: 32px; 
	width:150px; 
	height: 150px;
	-webkit-box-shadow: 0px 0px 25px 2px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 25px 2px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 25px 2px rgba(0,0,0,0.75);
}
.col-centered{
    float: none;
    margin: 0 auto;
}
#videos {
	margin: 0px -20px;
	padding: 50px 30px;
	text-align: center;
	box-shadow: inset 0 19px 19px -19px rgba(0,0,0,.5), inset 0 -19px 19px -19px rgba(0,0,0,.5);
}
#videos img {
	max-width: 27%;
	margin: 0 1%;
	box-shadow: 0 0 10px rgba(0,0,0,.5);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#videos img:hover {
  	box-shadow: 0px 0px 0px transparent;
  	-webkit-transition: all 0.5s ease;
  	-moz-transition: all 0.5s ease;
  	-o-transition: all 0.5s ease;
  	-ms-transition: all 0.5s ease;
  	transition: all 0.5s ease;
  	-ms-transform:scale(1.025);
  	-moz-transform:scale(1.025);
  	-webkit-transform:scale(1.025);
  	-o-transform:scale(1.025);
	transform:scale(1.025);
  	cursor: pointer;
}
#subContent {
  	text-align: center;
}
.rowshort {
  	padding-bottom: 0px;
}
#footer {
  	font-size: 10px;
}
a[href^="tel"]:link, a[href^="tel"]:visited{
	color: #000;
}
#footer .inner {
  	padding: 20px 30px 50px;
  	background-color: #CCC;
}
#subContent .inner {
  	padding: 50px 0 50px 0;
}
#subContent .text-left li {
  	margin-top: 15px;
}
.how-it-works #content .row {
  	margin-top: 0px;
}
.how-it-works #content .panes {
  	padding-top: 40px;
}
.how-it-works #subContent h3 strong {
  	display: block;
}
.how-it-works .pane .btnContainer {
  	text-align: center;
}
.how-it-works .pane .btnContainer .btn {
  	width: 80%;
  	margin: 0 auto 10px;
  	font-size: 150%; 
  	border: 3px double orange;
}
.noUi-connect {
  	background: none repeat scroll 0 0 #46B7D5;
}







/* ### NEW SLIDER ### */
.shadowline-divider{
	position: absolute;
	top: 0;
	z-index: 1;
	opacity: 0.5;
	width: 100%;
}

/* Pricing Table */
table {
  border-spacing: 0;
  border-collapse: collapse;
}

#feeTable {
  border: 10px solid #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100% !important;
  font-size: 12px;
}

#feeTable td {
  background-color: #eee;
  line-height: 16px;
  padding: 10px;
  text-align: right;
}

#advanceAmount {
  font-weight: bold;
  color: #0085B2;
}

input[id="advanceInputField"] {
  color: #0085b2;
  font-size: 16px;
  font-weight: bold;
  text-align: right;
}

.strikeFee {
  color: #cc5c5d;
  text-decoration: line-through;
}
.strikeFee{display: inline;}
span.green {
  color: #01aa24;
  display: inline;
}

#feeTable tr.underline td {
  border-bottom: 1px solid #CCC;
}

/*Price Slider Fee Table*/
.priceSlider #feeTable{
  width: 100%;
}
@media(min-width: 580px){
.priceSlider #feeTable{
  width: 100%;
  max-width: 50%;
} 
}

/*Price Slider H3*/
.priceSlider h3{font-size: 24px;}

/*Price Slider Disclaimer Section*/
.advanceDisclaimer{
	text-align: left;
	color: #959595;
	font-size: 14px;
	font-style: italic;
	margin-top: 60px;
}
.advanceDisclaimer li:nth-child(1){
	color: #333333;
}





#commission {
  	margin: 30px 0 50px 0;
}
#partner .inner {
  	padding-top: 20px;
  	font-size: 120%;
}
#partner p.center {
  	width: 90%;
}
#partner blockquote {
  	margin: 10px 30px;
  	text-align: center;
  	font-family: Georgia;
  	font-style: italic;
  	opacity: .7;
  	border: 0;
}

#commissionWrapper h2 {
  	margin-bottom: 20px;
}
.lhn_help_btn {
    top: 225px !important;
}
.lhn_help_container {
    top: 215px !important;
}
#lhnHocButton.lhntab {
    top: 130px !important;
}
#brokerButton {
	margin-bottom:20px;
}

/* Privacy Policy Section*/
.collapsePP {
  	font-size: 20px;
  	display:block;
  	color:#46B7D5;
}
.collapsePP + input { 
  	display:none;
}
.collapsePP + input + * {
  	display:none;
  	text-align:left;
}
.collapsePP + input:checked + * {
  	display:block;
}
.disclaimer {
	color:#DADADA;
}
.indent {
	margin-left:40px;
	width:80%;
}



/* Form Radio Add On */
.selection input[name=button] {
    display:none;
}
.orA {
	margin-top:50px;
}
.indent2 {
	text-align:left;
	width:100%;
	font-size:13px;
}
.indent2 li {
	padding-bottom:12px;
}
.panel-body {
	background-color: #d6f4fb;
	border-radius: 5px;
	/*border: 1px solid #abe0ed;
	margin-bottom: 10px;*/
}
.securedGroup {
	text-align:left;
}
.buttons {
	line-height: 92px;
	margin-top:20px;
}



/* Inman Video LP */
.info {
	padding-left:40px;
	color:gray;
}
.blurb {
	margin-top:20px;
	color:gray;
}
span.inmanTitle {
	font-size:18px;
	color:blue;
}
.videoSpace {
	margin-top:20px;
	margin-bottom:20px;
}



/* Quote Carousel */
#carousel {
  	background-color:#0085b2;
  	padding:20px;
  	margin:0 auto;
  	text-align:center;
  	max-width:1200px;
}
#quote-carousel {
  	margin-top: 30px;
  	font-family:open-sans, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
  	font-size:18px;
  	color:#FFF;
}
.agentNameTestimonial {
	font-size:14px;
}
/* control buttons  */
#quote-carousel .carousel-control {
  	background: none;
  	color:#005488;
  	font-size: 2.3em;
  	text-shadow: none;
  	margin-top: 30px;
}
/* previous button  */
#quote-carousel .carousel-control.left {
  	left: -100px;
}
/* next button  */
#quote-carousel .carousel-control.right {
  	right: -100px !important;
}
/* changes the position of the indicators */
#quote-carousel .carousel-indicators {
  	right: 50%;
  	top: auto;
  	bottom: 0px;
  	margin-right: -19px;
}
/* changes the color of the indicators */
#quote-carousel .carousel-indicators li {
  	background: #c0c0c0;
}
#quote-carousel .carousel-indicators .active {
  	background: #333333;
}
.wallpaper-lp-main {
	margin:auto;
	text-align:center;
	margin-bottom:20px;
	margin-top:10px;
}
.faqs {
	margin-top:13%;
}
.faqs2 {
	margin-top:11%;
}
.faqsSignup {
	margin-top:12%;
}
/*LANDING PAGES*/
.indentLp {
	margin-left:10px;
	width:80%;
}
.remaxLogo {
	position:relative;
	display:inline-block;
	top:-60px;
	height:50px;
}
.amLogo {
	position:relative;
	display:block;
	top:-60px;
	height:50px;
	text-align:right;
}
.moveMeUp {
	position:relative;
	top:-30px;
}



/* Agent Marketing LP
--------------------*/
.am_disclaimer {
	font-size:10px;
	color:#7b7b7b
}


/* HAR LP
--------------------*/
span.regMark {
	font-size:12px;
	vertical-align:super;
}


/* New FORM LP Design
--------------------*/
.formBG {
	background-color:#005488;
}


/* Accounts page
--------------------*/
.glyphicon {
	color:#0085B2;
	padding:0 10px 10px 0;
}
.container-fluid {
  height: 50%;
}
.sideBarBGtop {
  background-color:#F6F6F6;
  height: 100%;
  padding:20px;
  border-top:2px solid #E5E5E5;
  border-left:2px solid #E5E5E5;
  border-top-left-radius:10px;
  border-right:2px solid #E5E5E5;
  border-top-right-radius:10px;
}
.sideBarBGbottom {
  background-color:#F6F6F6;
  height: 100%;
  padding:20px;
  border-left:2px solid #E5E5E5;
  border-bottom-left-radius:10px;
  border-right:2px solid #E5E5E5;
  border-bottom-right-radius:10px;
  border-bottom:2px solid #E5E5E5;
}
ul[class="accountChecks"] {
	list-style:none;
}
.accountChecks {
	margin-left:-10px;
}
.accountsHeading {
  font-size:18px;
}
.accountsParagraph {
  font-size:12px;
}
.indent3 {
	text-align:left;
	width:100%;
	font-size:12px;
}
.indent3 li {
	padding-bottom:25px;
}
.accountNeed {
	margin:20px 0 0 0;
	float:left;
}
.spcr {
	margin-bottom:50px;
}
.spcr2 {
	margin-bottom:50px;
}
.orange2 {
  	background-color: #f18200;
  	color: #FFF;
	margin-right:15px;
}




































/* Media Queries
--------------------*/
@media(max-width:479px){
.remaxLogo {
	display:none;
}
.amLogo {
	display:none;
}
.moveMeUp {
	position:relative;
	top:0;
}
}

/*  1024px  */
@media screen and (max-width: 1024px){
.services {
  	padding: 20px;
  	text-shadow: none;
  	height: 420px;
  	font-size: 14px;
  	text-align: center;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
}
.services .btn {
	/*bottom: 5%;
	left: 80px;
	position: absolute;*/
	align-content:center;
 }
.btn_override {
	 margin: 0 auto !important;
	 margin-left:0 auto;
	 margin-right:0 auto;
	 align-content:center !important;
}
#hdr .hpg-vid {
	font-size: 15px;
	bottom: 0%;
	position: absolute;
	right: 40%;
}
}

/*  1037px  */
@media(max-width:1037px){
.faqs {
	margin-top:190px;
}
.faqs2 {
	margin-top:170px;
}
.faqsSignup {
	margin-top:165px;
}
}

/*  1161px  */
@media(max-width:1161px){
.faqsSignup {
	margin-top:165px;
}
}

/*  1199px  */
@media(max-width:1199px){
.faqsSignup {
	margin-top:135px;
}
}

@media(max-width:990px){
.faqs {
	margin-top:195px;
}
.faqs2 {
	margin-top:175px;
}
}

@media (max-width:991px) and (min-width:850px){
.brkMe {
	display:none;
}
}

@media screen and (max-width: 980px) {
#menu a {
    display: block;
    padding: 3px 7px;
    font-size: 12px;
}
#hdr .desc h1 {
	margin-top: 20px;
    font-size: 25px;
}
#hdr .desc h2 {
    font-size: 30px;
    margin: 10px 0;
}
.services {
  	padding: 20px;
  	text-shadow: none;
  	height: 435px;
  	font-size: 14px;
  	text-align: center;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
}
.services .btn {
	/*bottom: 5%;
	left: 90px;
	position: absolute;*/
	align-content:center; 
}
}
@media screen and (max-width: 850px){
.tabWrapper ul.navi {
    width: 100%;
    text-align: center;
}
.panes {
    height: auto !important;
}
.tabWrapper ul.navi li {
    position: inherit;
    display: inline-block;
    margin: 10px;
}
.tabWrapper .panes {
    padding-top: 60px !important;
}
.panes .pane {
    padding-bottom: 20px;
}
.panes .row {
    padding-bottom: 40px;
}
.panes .col-sm-7 img {
    padding-top: 20px;
}
#navBar {
    position: relative;
}
#hdr {
    margin-top: 0;
}
#submenu {
    margin-top: 10px;
}
p.center, #content .tabs, #content .panes {
    width: 100%;
}
#hdr .desc h1 {
	margin-top: 20px;
    font-size: 35px;
}
#hdr .desc h2 {
    font-size: 25px;
}
#menu {
    float: none;
    margin: 90px auto 0px auto;
    width: 500px;
}
#menu ul {
    float: none;
}
#hdr .desc {
    width: auto;
    padding: 20px 30px;
    bottom: auto;
    left: auto;
    position: relative;
    text-align: center;
    color: #FFF;
    background-color: #0085B2;
}
#hdr .desc h1,
#hdr .desc h2,
#hdr .desc h1 strong,
#hdr .desc h2 strong {
    text-shadow: none;
    color: #FFF;
}
#hdr .desc h1 strong {
    display: inline;
}
h1 strong,
h2 strong,
h3 strong {
    display: block;
}
h1 br,
h2 br,
h3 br {
    display: none;
}
#footer .text-right {
    text-align: right !important;
    margin-top: 20px;
}
#hdr {
    text-align: center;
}
#hdr .ftr .pull-right {
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
#hdr .ftr a {
    display: block;
    margin-bottom: 20px;
}
#menu a {
    padding: 3px 3px;
}
#navBar .topBar {
    text-align: center;
}
.narrow {
    width: 100%;
}
.how-it-works .pane .btnContainer .btn {
    margin-top: 30px;
}
.border-right {
    border-right: 0px;
}
#tab1 .col-sm-5 {
    text-align: center;
}
.inner {
    text-align: center;
}
h2 {
    font-size: 28px;
}
.tabWrapper .panes .btn {
    margin-bottom: 10px;
}
.services {
  	padding: 20px;
  	text-shadow: none;
  	height: 420px;
  	font-size: 14px;
  	text-align: center;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
}
.services .btn {
	width: 150px;
	align-content:center;
}
span.wTw,
span.cYe {
	color:white;
}
/* Privacy Policy */
.DDtitle {
	text-align:left;
}
.indent {
	text-align:left;
	width:100% !important;
	margin-left:0;
}
.indentLp {
	text-align:left;
	width:100% !important;
	margin-left:0;
}
/* Inman Video LP*/
}
@media (max-width: 830px){ 
/* previous button  */
#quote-carousel .carousel-control.left {
  	display:none;
}
/* next button  */
#quote-carousel .carousel-control.right {
  	display:none;
}
}

/* Footer Fix (Centered) */
@media screen and (max-width: 767px){
#footer .text-left {
  text-align: center !important;
}
#footer .text-right {
	text-align: center !important;
}
.securedGroup {
	text-align:left;
}
.securedLogos {
	margin:auto;
	max-width:300px;
}
.safeNsecure {
	margin:auto;
	max-width:300px;
}
.sideBarBGtop {
	background-color:#F6F6F6;
	height: 100%;
	padding:20px;
	border:2px solid #E5E5E5;
	border-radius:10px;
}
.sideBarBGbottom {
	background-color:#F6F6F6;
	height: 100%;
	padding:20px;
	border:2px solid #E5E5E5;
	border-radius:10px;
	margin-top:50px;
}
.spcr2 {
	display:none;
}
.orange2 {
  	background-color: #f18200;
  	color: #FFF;
	width:100%;
}
}
@media screen and (max-width: 560px) {
/*mobile nav section*/
#menu, #submenu {
    display: none;
}
#navBar .topBar a.btn {
    font-size: 18px;
} 
#hdr2 {
	display: none;
}
	
.activelphead {
	display: inherit;
}
	
#hdr .desc h1 {
    font-size: 35px;
}
#hdr img {
    display: none;
}
#hdr .grow {
    display: none;
}
#menuSelect {
    display: block;
    z-index: 80;
    position: absolute;
    top: 50px;
    left: 20px;
    right: 20px;

    width: 80%;
}
#videos img {
    width: 85%;
    max-width: 85%;
    margin-bottom: 20px;
}
#content .tabs {
    height: auto;
    border-radius: 0;
}
#content .tabs li {
    width: 100%;
    float: none;
    border-right: 1px;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
    height: 40px;
}
#content .tabs.twoTabs li {
    width: 100%;
}
#content .tabs li:first-child {
    border-radius: 0;
}
#content .tabs li:last-child {
    border-radius: 0;
}
#content .panes {
    padding: 20px;
}
table td {
    font-size: 100%;
}
.how-it-works .pane .btnContainer .btn {
    font-size: 100%;
}
.services {
	padding: 20px 20px 75px;
	margin-bottom: 20px;
	text-shadow: none;
	height: auto;
	font-size: 14px;
	text-align: center;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.services .btn {
	width: 150px;
	align-content:center;
}
.lhn_help_btn {
	visibility: hidden;
}
.lhn_help_container {
	visibility: hidden;
}
}

/*-----------------------
Inman Video LP --------*/
@media (max-width: 768px) { 
/* Make the indicators larger for easier clicking with fingers/thumb on mobile */
#quote-carousel .carousel-indicators {
	bottom: -20px !important;  
}
#quote-carousel .carousel-indicators li {
	display: inline-block;
	margin: 0px 5px;
	width: 15px;
	height: 15px;
}
#quote-carousel .carousel-indicators li.active {
  	margin: 0px 5px;
 	width: 20px;
 	height: 20px;
}
#heading2{
  	margin-top:50px;
}
#loginLogo {
	margin-left:-10px;
	text-align:center;
}
.faqs {
	display:none;
}
.faqsSignup {
	display:none;
}
}
/* Inman Video LP*/
@media (min-width: 768px) { 
#quote-carousel {
  	margin-bottom: 0;
  	padding: 0 40px 30px 40px;
}
.extraSpace {
	max-width:100%;
}
}
@media (max-width: 430px) {  
.rwd-break {
    display:block;
}
.faqs {
	display:none;
}
}


/* -------- Testimonials Page ---------------- */

.testimonialpage {
  	background-color: #f7f7f7;
  	padding: 10px;
  	color: #000;
  	text-shadow: none;
	text-align: center;
  	font-size: 14px;
  	height: 430px;
}
.testimonialpage .quote {
  	font-style: italic;
  	font-size: 120%;
	padding-bottom: 20px;
	margin-top: 10px;
}

.testimonialpage .name {
  	font-weight: bold;
	color: #005488;
  	font-size: 120%;
}
.testimonialpage .location {
  	color: #999;
}

.control-box {
margin-top: -280px !important;
	margin-bottom: 230px;
}

.carouselcontainer {
  	max-width: 400px;
  
}

.left {
	margin-left: -10px !important;
}

.right {
	margin-right: -10px !important;
}

.pricecallout{
text-align: center;
  color: white;
	line-height: 30px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: #65d3f1;
  background: -moz-linear-gradient(-45deg,  #65d3f1 0%, #0085b2 100%);
  background: -webkit-linear-gradient(-45deg,  #65d3f1 0%,#0085b2 100%);
  background: linear-gradient(135deg,  #65d3f1 0%,#0085b2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#65d3f1', endColorstr='#0085b2',GradientType=1 );
  box-shadow: 0px 5px 10px -4px #444;
padding: 10px;
	margin-top: 10px;

    }

@media (max-width: 768px) { 
  .pricecallout{
    margin-bottom: 10px;
  }
}


.pricecallout > span{
	font-size: 18px;
}


.newpromo {
   padding: 10px;
   border: 2px dashed #fba919;
	font-size: 12px;
}

.newpromobox {
   padding: 10px;
	background: #FCFCFC;
   border: 1px solid #adadad;
	-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
	font-size: 12px;
	color: #adadad;
}


.btn-modal {
  color: #fff;
  background-color: #6c757d;
  border: 2px solid #a5abaf;
  border-color: #a5abaf;
}
.btn-modal:focus,
.btn-modal.focus {
  color: #fff;
  background-color: #6c757d;
  border: 2px solid #a5abaf;
  border-color: #a5abaf;
}
.btn-modal:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #a5abaf;
}
.btn-modal:active,
.btn-modal.active,
.open > .dropdown-toggle.btn-modal {
  color: fff;
  outline: none;
  background-color: #449d44;
  border: 2px solid black;
  border-color: #255625 !important;
}
.btn-modal:active:hover,
.btn-modal.active:hover,
.open > .dropdown-toggle.btn-modal:hover,
.btn-modal:active:focus,
.btn-modal.active:focus,
.open > .dropdown-toggle.btn-modal:focus,
.btn-modal:active.focus,
.btn-modal.active.focus,
.open > .dropdown-toggle.btn-modal.focus {
  color: fff;
  outline: none;
  background-color: #449d44;
  border: 2px solid black;
  border-color: #255625 !important;
}
.btn-modal.disabled:hover,
.btn-modal[disabled]:hover,
fieldset[disabled] .btn-modal:hover,
.btn-modal.disabled:focus,
.btn-modal[disabled]:focus,
fieldset[disabled] .btn-modal:focus,
.btn-modal.disabled.focus,
.btn-modal[disabled].focus,
fieldset[disabled] .btn-modal.focus {
  background-color: #6c757d;
  border-color: #a5abaf;
}
.btn-modal .badge {
  color: #6c757d;
  background-color: #fff;
}


/* ============================
   A4D-Specific Styles
   (Merged from a4d.css)
   ============================ */

.alert-tip{
padding: 15px 15px 5px 15px;
}

#buttonContainer .help-block {
margin: 0px;
font-size: 80%;
font-style: italic;
color: #ed5654;
display: block;
}
.a4d form table .labelInfo, .a4d label .labelInfo {
line-height: 14px;
font-weight: 400;
position: relative
}
.a4d .alert, .hideOnLoad {
display: none
}
.productBox, .productBox img, .qmark {
cursor: pointer
}
#dts {
color: #000;
position: absolute;
float: left;
top: 37px;
left: 10px;
font-size: 10px;
z-index: 2
}
input {
box-shadow: none;
background-clip: padding-box
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
 -webkit-appearance:none;
 margin:0
}
.green {
color: #01AA24
}
.strikeFee {
color: #ED5654;
text-decoration: line-through
}
html {
overflow-y: scroll
}
.a4d .row {
width: 80%;
margin: 0 auto;
padding-bottom: 0
}
.a4d h4 {
margin-top: 3px
}
#agentButton, #brokerButton {
margin-top: 20px
}
i.glyphicon.glyphicon-usd {
padding: 0 10px 10px 0;
color: #959595;
left: 4px;
top: 2px
}
input[type=range]:focus+.rangeslider .rangeslider__handle {
box-shadow: 0 0 8px #0085b2
}
.a4d label .labelInfo {
color: grey;
font-size: 12px;
margin-bottom: 0!important
}
.a4d .amountInfo {
color: #727272;
font-size: 14px;
font-style: italic;
font-weight: 400
}
.a4d form table .labelInfo {
color: grey;
font-size: 12px
}
.max, .min {
color: #959595;
padding-top: 10px
}
#docusign_emailContent {
resize: vertical;
height: 300px;
min-height: 100px;
max-height: 350px
}
.a4d .alert {
font-size: 80%;
width: 80%;
margin: 0 auto 10px
}
.a4d .alert button {
margin-top: 0
}
div.ui-datepicker table {
border: 00px #fff;
box-sizing: content-box
}
#bridgeTable, .productBox {
-moz-box-sizing: border-box;
box-sizing: border-box;
}
div.ui-datepicker {
font-size: 62.5%
}
#slider {
padding-bottom: 00px!important;
padding-top: 20px;
width: 100%
}
.min {
padding-left: 10px
}
.max {
padding-right: 10px
}
#animated-text {
display: none!important;
padding-top: 10px;
padding-bottom: 0!important;
color: #46b7d5;
font-size: 12px;
font-style: italic;
line-height: 11px
}
output {
display: inline-block;
font-size: 2em
}
.capitalize {
text-transform: capitalize
}
.qmark {
color: #46B7D5
}
.top-spacer-20 {
padding-top: 20px
}
.top-margin-15 {
margin-top: 15px!important
}
.bottom-spacer-20 {
padding-bottom: 20px
}
.top-spacer-10 {
padding-top: 10px
}
.bottom-spacer-10 {
padding-bottom: 10px
}
.row.mainMenuRow {
width: 50%
}
.row.wide {
width: 70%
}
.row.narrow {
width: 60%
}
.row.full {
width: 100%
}
.a4d #navBar {
position: relative
}
.a4d #navBar .outer {
margin-top: 0
}
.a4d #navBar .inner {
height: 50px
}
.a4d #navBar .topBar {
text-align: left;
text-transform: none;
height: 50px;
padding-left: 10px;
padding-right: 10px
}
.a4d #navBar .topBar .btn {
box-shadow: none!important
}
.a4d #navBar .topBar img {
margin-top: 5px
}
#navName {
position: absolute;
font-size: 12px;
line-height: 12px;
text-align: right;
top: 13px;
right: 150px;
z-index: 1;
font-weight: 600
}
.a4d #navBar .topBar .btn {
position: absolute;
right: 20px;
top: 8px;
background-color: #fba919;
border: 0;
font-size: 14px;
font-weight: 700;
width: 110px
}
.updateButton {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: -moz-use-text-color -moz-use-text-color rgba(255,255,255,.3);
border-image: none;
border-style: none none solid;
border-width: 0 0 1px;
font-size: 12px;
font-weight: 600;
width: 75px;
margin-top: 1px;
padding-left: 0;
padding-right: 0
}
.a4d a.logo {
color: transparent;
margin-top: 0;
margin-left: 0;
top: 10px;
left: 7px;
width: 202px;
height: 30px;
background: url(/assets/images/logos/ecommission_logo_inner_rev.png) top no-repeat
}
#loginLogo {
width: 310px;
height: 75px;
text-indent: -10000px;
display: block;
background: url(/assets/images/logos/ecommission_logo_badge.png) top left no-repeat
}
.productBox {
width: 200px;
text-shadow: none;
font-size: 14px;
text-align: center;
box-sizing: border-box;
padding: 15px 10px
}
.productBox .title {
line-height: 20px;
margin-top: 10px;
font-size: 18px;
font-weight: 700
}
.productBox p {
font-size: 14px;
margin: 5px 0 0
}
.a4d #heading .inner {
padding-top: 0;
padding-bottom: 20px;
}
.headerContainer {
border-bottom: 1px solid #CCC;
padding-top: 00px;
padding-bottom: 10px;
margin-top: 10px;
margin-bottom: 0
}
#advanceSlider, .a4d form.application {
margin-top: 15px
}
.a4d #mainMenu .inner {
padding-top: 15px;
padding-bottom: 40px
}
.a4d #mainMenu .btn.btn-block {
margin-bottom: 10px
}
.a4d #mainMenu a .btn:hover {
text-decoration: none
}
#applyMenu .rollover {
cursor: pointer;
margin-top: 20px;
margin-bottom: 00px;
margin-right: 30px
}
#logout button, #logout p {
margin-top: 30px
}
.a4d .panel {
background-color: #46b7d5;
border: 0;
color: #FFF!important;
border-radius: 0!important;
box-shadow: none
}
.a4d .panel h4 {
color: #fff;
font-weight: 600
}
a.accordion-toggle {
text-decoration: none!important
}
.a4d .panel a:active, .a4d .panel a:focus, .a4d .panel a:hover, .a4d .panel a:visited, .a4d .panel h4:hover {
color: #fff;
text-decoration: none!important
}
.a4d .panel-body {
background-color: #FFF;
color: #333;
border-radius: 0
}
#bridgeTable, .a4d #feeTable {
border: 0;
box-shadow: 0 0 5px rgba(0,0,0,.2)
}
.fa-caret-down, .fa-caret-right {
color: #f18200
}
.summary-body .form-group {
margin-bottom: 0
}
.summary-detail {
padding-top: 0!important;
display: inline
}
#logout p {
margin-bottom: 00px
}
#logout .inner {
text-align: left
}
#bridgeTable td, #bridgeTable th {
padding: 5px;
font-size: 100%;
text-align: center;
line-height: 12px;
background-color: #EEE
}
.a4d form label {
margin-bottom: 0
}
sup {
font-weight: 400
}
#sliderArea {
padding: 20px;
background: url(/assets/images/css/teal-bg.png) top left #f1fafc!important;
width: 100%;
float: left;
margin-bottom: 20px
}
#advanceSlider {
margin-bottom: 5px
}
#bridgeTable {
border: 5px solid #FFF;
width: 40%;
box-sizing: border-box;
margin: 0 auto
}
#bridgeTable th {
border-bottom: 3px double #AAA
}
.a4d #feeTable td, .ddAdvanceField {
text-align: right
}
.a4d #feeTable {
border: 10px solid #FFF;
width: 60%;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin: 10px auto
}
.a4d #feeTable td {
background-color: #EEE;
padding: 10px;
font-size: 130%;
line-height: 16px
}
#advanceInputField, .ddAdvanceField {
width: 100px;
background-color: #FFF;
font-weight: 700;
color: #0085B2;
font-size: 100%
}
.a4d #feeTable tr.underline td {
border-bottom: 3px double #AAA
}
#advanceInputField-error {
font-weight: 400;
color: red
}
#updateAdvance {
margin-top: 15px;
margin-left: 10px
}
#advanceAmount, #advanceFee {
margin-top: 0
}
.a4d #footer {
padding-top: 0;
background-color: transparent
}
.a4d #footer .inner {
overflow: auto;
padding-top: 0;
padding-bottom: 0;
font-size: 10px
}
.a4d #footer .text-left {
margin: 20px 0;
text-align: left
}
.a4d #footer .text-right {
margin: 20px 0;
text-align: right
}

@media(max-width:479px) {
.a4d #footer .text-right {
margin: 0 0 20px
}
}
.a4d .breadcrumb {
text-align: left;
margin-top: 0;
margin-bottom: 40px;
width: 100%;
background-color: #FCFCFC;
border: 1px solid #F1F1F1;
font-size: 14px;
}
.agenttype {
display: inline-block
}

@media screen and (max-width:980px) {
.a4d #dts {
color: red
}
#applyMenu .rollover {
margin-right: 20px
}
.a4d .breadcrumb {
width: 100%
}
}

@media screen and (max-width:933px) {
.row.mainMenuRow {
width: 60%
}
.agenttype {
display: block
}
.break1, .break2 {
display: inline-block
}
.break1 {
text-align: left
}
}

@media screen and (max-width:850px) {
.a4d #dts {
color: #0F0
}
.a4d .row {
width: 90%
}
.a4d .row.wide {
width: 80%
}
.a4d .row.narrow {
width: 70%
}
.a4d .headerContainer {
margin-top: 30px;
text-align: left
}
.a4d #heading .inner {
padding-top: 0;
padding-bottom: 0;
}
.a4d #footer .inner {
font-size: 10px
}
}

@media screen and (max-width:768px) {
#advanceAmount, #advanceFee, #purchaseAmount, .updateButton {
margin-top: 5px
}
.row.mainMenuRow {
width: 70%
}
.a4d #dts {
color: #00F
}
.a4d #navName {
top: 55px;
text-align: right;
left: 0;
right: 20px
}
.a4d .breadcrumb {
width: 100%
}
.updateButton {
margin-left: 15px
}
#advanceAmount h3, #advanceFee h3, #purchaseAmount h3 {
text-align: center
}
}

@media screen and (max-width:560px) {
#advanceAmount h3, #advanceFee h3, #purchaseAmount h3, .a4d .headerContainer {
text-align: center
}
.row.mainMenuRow {
width: 80%
}
.a4d #dts {
color: #FF0
}
.a4d #navBar .topBar .btn {
top: 2px
}
.a4d table td {
font-size: 100%
}
.a4d .row {
width: 100%
}
.a4d .row.wide {
width: 90%
}
.a4d .row.narrow {
width: 80%
}
.a4d #navBar .topBar .btn {
width: 95px;
margin-top: 7px;
font-size: 11px
}
.a4d #heading .inner {
padding-top: 0;
padding-bottom: 0;
}
#applyMenu .rollover {
margin-top: 10px;
margin-bottom: 00px;
margin-right: 20px
}
#advanceAmount, #advanceFee, #purchaseAmount {
margin-top: 5px
}
}

@media screen and (max-width:401px) {
.row.mainMenuRow {
width: 100%
}
.brokerButton {
position: relative;
bottom: -23px;
padding-bottom: 30px
}
.break3 {
display: none
}
}

