﻿body {
	position: relative;
}

.clear-both {
	clear: both;
	width: 1px;
	height: 1px;
}

.flash-message {
	position: fixed;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
}

i.fa.fa-trash {
	color: lightgray;
	font-size: 2.2rem;
	cursor: pointer;
}

.commit-delete{
	cursor: pointer;
}

.cancel-delete {
	cursor: pointer;
}
/**********************************************************************************/
/*                             Top Header section                                 */
/**********************************************************************************/
#schema-metadata {
	display: none;
}

header {
	margin: 50px 25px 35px 25px;
	position: relative;
}

	header #header-logo {
		float: left;
	}

		header #header-logo img {
			max-height: 75px;
			max-width: 70%;
		}

	header #header-bylines {
		float: right;
		margin-top: 20px;
		margin-right: 50px;
	}

		header #header-bylines a {
			color: #63666a;
			text-decoration: none;
		}

		header #header-bylines div {
			float: left;
			margin-right: 2px;
			font-size: 13px;
			font-family: "Open Sans", sans-serif;
			font-weight: bold;
		}

		header #header-bylines #header-byline-separator {
			margin: 0 3px;
		}

		header #header-bylines div:last-child {
			margin-right: 0;
		}

	header #header-social {
		float: right;
		margin: 16px 20px 0 0;
	}

		header #header-social a {
			float: left;
			display: block;
			border-radius: 100px;
			border: 0;
			width: 24px;
			height: 24px;
			text-align: center;
			padding-top: 2px;
			margin-right: 5px;
		}

			header #header-social a:last-child {
				margin-right: 0;
			}

	header #header-language-selector {
		font-family: "Open Sans", sans-serif;
		font-size: 13px;
		font-weight: bold;
		line-height: 1.1em;
		color: #63666a;
		display: flex;
		position: absolute;
		top: 0;
		right: 20px;
	}

	header #header-language-selector-list {
		display: flex;
		padding-left: 10px;
		margin: 0;
	}

		header #header-language-selector-list li {
			list-style: none;
			text-transform: uppercase;
			padding: 0 4px;
			border-right: 2px #63666a solid;
		}

			header #header-language-selector-list li:last-child {
				border-right: 0;
			}

			header #header-language-selector-list li a,
			header #header-language-selector-list li a:hover,
			header #header-language-selector-list li a:active,
			header #header-language-selector-list li a:visited {
				text-decoration: none;
				color: #63666a;
			}

#nav {
	position: relative;
}

nav#navigation {
	clear: both;
	text-align: right;
	z-index: 999;
	transition-duration: 0.5s;
	transition-delay: 0s;
	transition-timing-function: ease;
	transition-property: background-color;
	padding: 0 10px;
}

	nav#navigation.fixedsticky {
		top: 0;
	}

	nav#navigation.fixedsticky-on {
		left: 45px;
		right: 45px;
	}

	nav#navigation.fixedsticky-off {
		position: relative;
		margin: 0 45px;
	}

	nav#navigation > ul {
		border: 0;
		float: right;
	}

		nav#navigation > ul > li > a {
			display: block;
			font-size: 13px;
			font-family: "Raleway", sans-serif;
			font-weight: bold;
			text-transform: uppercase;
			padding-bottom: 9px;
			padding-top: 25px;
			margin-bottom: 8px;
			border: 0;
			background: transparent;
			transition-duration: 0.5s;
			transition-delay: 0s;
			transition-timing-function: ease;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: flex-end;
		}

			nav#navigation > ul > li > a::after {
				content: " ";
				width: 22.5px;
				height: 3px;
				opacity: 0.4;
				margin: 6px auto 0;
				transition-property: background-color;
				transition-duration: 0.5s;
				transition-delay: 0s;
				transition-timing-function: ease;
			}

		nav#navigation > ul > li:hover > a::after,
		nav#navigation > ul > li.active > a::after {
			background-color: #ffffff;
		}

	nav#navigation.fixedsticky-on > ul > li > a::after {
		opacity: 1;
	}

	nav#navigation > ul > li.header-item.has-children {
		position: relative;
	}

		nav#navigation > ul > li.header-item.has-children::after {
			content: "\F0D7";
			font-family: FontAwesome;
			right: 4px;
			top: 23px;
			position: absolute;
		}

	nav#navigation > ul > li.contact-button {
		float: right;
	}

	nav#navigation > ul > li ul {
		position: absolute;
		left: 0;
		padding: 0;
		border-bottom-left-radius: 2px;
		border-bottom-right-radius: 2px;
		opacity: 0;
		pointer-events: none;
		transition-property: opacity;
		transition-duration: 0.5s;
		transition-delay: 0s;
		transition-timing-function: ease;
	}

	nav#navigation > ul > li.main-menu-right-align > ul {
		left: initial;
		right: 0;
	}

	nav#navigation > ul li:hover > ul {
		opacity: 1;
		pointer-events: all;
	}

	nav#navigation > ul > li > ul > li.has-children::after {
		content: "\F0DA";
		font-family: FontAwesome;
		position: absolute;
		right: 10px;
		top: 5px;
	}

	nav#navigation > ul > li > ul > li > ul {
		left: 200px;
		right: auto;
		top: -1px;
	}

	nav#navigation > ul > li.sub-menu-left > ul > li > ul {
		left: auto;
		right: 200px;
	}

	nav#navigation > ul > li ul > li {
		list-style: none;
		text-align: left;
		font-family: "Raleway", sans-serif;
		font-size: 14px;
		width: 200px;
		position: relative;
	}

		nav#navigation > ul > li ul > li > a {
			text-decoration: none;
			width: 100%;
			height: 100%;
			display: block;
			padding: 5px;
		}

@media screen and (min-width: 601px) {
	nav#navigation > ul > li.contact-button > a {
		display: block;
		float: right;
		text-align: center;
		font-family: "Raleway", sans-serif;
		font-size: 15px;
		font-weight: bold;
		text-transform: uppercase;
		border-radius: 2px;
		border-width: 2px;
		border-style: solid;
		background: transparent;
		transition-duration: 0.5s;
		transition-delay: 0s;
		transition-timing-function: ease;
		width: 179px;
		padding: 13px 30px;
		margin: 10px 0 10px 10px;
	}

		nav#navigation > ul > li.contact-button > a:hover {
			text-decoration: none;
		}
}

nav#navigation .mobile-menu-head {
	display: none;
}

/* Search Bar and Icon */
nav#navigation .search-icon {
	font-size: 20px;
}

nav#navigation .search-bar {
	margin-top: 15px;
	font-size: 20px;
	border-radius: 0px;
	height: 41px;
	width: 0vw;
	opacity: 0;
}

	nav#navigation .search-bar:focus {
		border-color: darkorange;
		box-shadow: 0 -0px 8px -0px rgba(255, 156, 38,.6);
	}

nav#navigation .search-content {
	position: absolute;
	background-color: white;
	border: 1px solid darkorange;
	box-shadow: 0 8px 8px -8px rgba(255, 156, 38,.6);
	border-top: solid 0px;
	min-width: 100%;
	max-height: 50vh;
	margin-top: -1px;
	overflow-y: auto;
	z-index: 1;
}

	nav#navigation .search-content a {
		color: black;
		font-size: 20px;
		margin: 3px 4px;
		padding: 9px 12px;
		display: block;
	}

	nav#navigation .search-content h {
		color: lightgray;
		font-size: 20px;
		margin: 3px 4px;
		padding: 9px 12px;
		display: block;
	}

	nav#navigation .search-content a:hover {
		background-color: #f1f1f1
	}

nav#navigation .search-bar-mobile {
	border: 0px;
	border-bottom: 1px solid #d55c19;
	height: 34px;
	width: 0%;
	opacity: 0;
	padding-left: 2vw;
	font-size: 20px;
	color: #d55c19;
	display: none;
}

	nav#navigation .search-bar-mobile::-webkit-input-placeholder { /* Edge */
		color: #e0946c;
	}

	nav#navigation .search-bar-mobile:-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #e0946c;
	}

	nav#navigation .search-bar-mobile::placeholder {
		color: #e0946c;
	}

nav#navigation .search-icon-mobile {
	position: absolute;
	margin-left: 93%;
	padding: 0px;
	margin-top: 7px;
}

nav#navigation .search-content-mobile {
	border: 0px solid;
	border-bottom: 1px solid #d55c19;
	margin-top: 37px;
	box-shadow: none;
	font-family: "Open Sans", sans-serif;
}

	nav#navigation .search-content-mobile a {
		font-family: "Helvetica Neue",Helvetica,Arial,sans-serif !important;
		text-transform: none !important;
	}

	nav#navigation .search-content-mobile h {
		font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
		font-size: 15px;
		font-weight: bold;
	}
/**********************************************************************************/
/*                               Banner section                                   */
/**********************************************************************************/
#banner {
	top: -8px;
	position: relative;
	z-index: 1;
}

.banner-carousel {
	width: 100%;
	height: 515px;
	overflow: hidden;
	position: relative;
	text-align: center;
	display: none;
}

	.banner-carousel .carousel-inner {
		height: 100%;
	}

	.banner-carousel .active.left,
	.banner-carousel .active.right {
		left: 0 !important;
		transform: translate3d(0, 0, 0) !important;
	}

	.banner-carousel .item {
		position: absolute;
		text-align: center;
	}

	.banner-carousel .item {
		transition-property: opacity;
		transition-duration: 0.5s;
		transition-delay: 0s;
		transition-timing-function: linear;
		opacity: 0;
		display: block;
		height: 100%;
		width: 100%;
	}

		.banner-carousel .item.active {
			transition-property: opacity;
			transition-duration: 0.5s;
			transition-delay: 0s;
			transition-timing-function: linear;
			opacity: 1;
		}

		.banner-carousel .item.portrait-banner-item > div {
			position: relative;
			width: 49.5%;
			height: 100%;
			float: left;
		}

			.banner-carousel .item.portrait-banner-item > div + div {
				float: right;
			}

	.banner-carousel .controls {
		position: absolute;
		top: 445px;
		left: 50%;
	}

		.banner-carousel .controls .controls-inner {
			position: relative;
			left: -50%;
		}

		.banner-carousel .controls a {
			display: inline-block;
			font-family: "Open Sans", sans-serif;
			font-size: 12px;
			font-weight: bold;
			border-width: 2px;
			border-style: solid;
			border-radius: 2px;
			padding-top: 7px;
			width: 36px;
			height: 36px;
			text-decoration: none;
			margin-right: 10px;
			transition-duration: 0.5s;
			transition-delay: 0s;
			transition-timing-function: ease;
		}

			.banner-carousel .controls a:last-child {
				margin-right: 0;
			}

			.banner-carousel .controls a:hover {
				opacity: 0.5;
			}

	.banner-carousel .highlight-buttons {
		position: absolute;
		width: 100%;
		top: 300px;
		left: 50%;
	}

		.banner-carousel .highlight-buttons .highlight-buttons-inner {
			position: relative;
			left: -50%;
		}

		.banner-carousel .highlight-buttons a {
			display: inline-block;
			font-family: "Open Sans", sans-serif;
			font-size: 13px;
			font-weight: bold;
			border-width: 2px;
			border-style: solid;
			border-radius: 2px;
			padding: 14px;
			width: 156px;
			height: 50px;
			text-decoration: none;
			text-transform: uppercase;
			margin-right: 30px;
			transition-duration: 0.5s;
			transition-delay: 0s;
			transition-timing-function: ease;
		}

			.banner-carousel .highlight-buttons a:last-child {
				margin-right: 0;
			}

#banner-caption {
	position: absolute;
	top: 55px;
	z-index: 900;
	width: 100%;
	height: 245px;
	overflow: hidden;
	margin: -8px 0 0 0;
}

	#banner-caption #banner-caption-position-container {
		width: 95%;
		position: absolute;
		left: 50%;
		height: 100%;
	}

	#banner-caption #banner-caption-inner {
		position: relative;
		left: -50%;
		height: 100%;
	}

		#banner-caption #banner-caption-inner div {
			display: none;
			margin: 0 auto;
			font-family: "Open Sans", sans-serif;
			font-size: 70px;
			font-weight: bold;
			line-height: 1.15em;
			text-transform: uppercase;
			text-shadow: 2px 2px 2px #000000;
			text-align: center;
			padding: 18px 10px 18px 10px;
			position: absolute;
			width: 100%;
			bottom: 0;
		}

			#banner-caption #banner-caption-inner div.empty-caption {
				background-color: transparent !important;
			}

@media screen and (max-width: 1024px) {
	#banner-caption {
		height: 210px;
	}

		#banner-caption #banner-caption-inner div {
			font-size: 40px;
		}

	.portrait-banner #banner-caption #banner-caption-inner div {
		font-size: 30px;
	}
}

@media screen and (max-width: 900px) {
	#footer #footer-upper-banner #footer-copy {
		width: 95% !important;
	}

	header #header-logo {
		width: 100%;
	}
}


#banner-caption.portrait-banner #banner-caption-position-container {
	max-width: 1200px;
}

/**********************************************************************************/
/*                             About Us section                                   */
/**********************************************************************************/
#about #about-top-copy {
	text-align: center;
	padding-left: 20px;
}

	#about #about-top-copy .title {
		font-family: "Raleway", sans-serif;
		font-weight: 800;
		font-size: 30px;
		line-height: 36px;
		text-transform: uppercase;
		letter-spacing: 1px;
	}

	#about #about-top-copy .subtitle {
		font-family: "Raleway", sans-serif;
		font-weight: 800;
		font-size: 18px;
		line-height: 22px;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin-top: 1.2em;
	}

	#about #about-top-copy .body {
		font-family: "Open Sans", sans-serif;
		font-size: 24px;
		line-height: 36px;
		margin-top: 2em;
		white-space: pre-wrap;
	}

#about #about-bottom-copy {
	padding-top: 60px;
	margin-top: 64px;
}

	#about #about-bottom-copy .video {
		max-width: 520px;
		width: 40%;
		float: left;
		margin-left: 47px;
	}

	#about #about-bottom-copy .points {
		float: right;
		width: 44%;
		margin-right: 3%;
	}

		#about #about-bottom-copy .points ul li {
			display: block;
		}

			#about #about-bottom-copy .points ul li:before {
				content: "\e013";
				font-family: "Glyphicons Halflings";
				font-size: 18px;
				float: left;
				margin-top: 4px;
				margin-left: -56px;
			}

		#about #about-bottom-copy .points .points-heading {
			font-family: "Raleway", sans-serif;
			font-weight: 800;
			font-size: 16px;
			text-transform: uppercase;
			padding: 8px 0;
		}

		#about #about-bottom-copy .points .points-item {
			font-family: "Open Sans", sans-serif;
			font-size: 14px;
			font-weight: 400;
			margin: 10px 0 30px;
			line-height: 25px;
		}

	#about #about-bottom-copy .bottom-copy {
		clear: both;
		margin-left: 3.6%;
		margin-bottom: 110px;
		width: 93.6%;
	}

		#about #about-bottom-copy .bottom-copy .bottom-copy-header {
			font-family: "Raleway", sans-serif;
			font-size: 25px;
			font-weight: 800;
			letter-spacing: 1px;
			text-transform: uppercase;
			margin-bottom: 35px;
			padding-top: 20px;
		}

		#about #about-bottom-copy .bottom-copy .bottom-copy-body {
			font-family: "Open Sans", sans-serif;
			font-size: 14px;
			font-weight: 400;
			line-height: 25px;
		}

#about-top-container {
	display: flex;
	align-items: center;
	margin: 50px auto 0;
	width: 95%;
}

#about-top-side-image {
	max-width: 400px;
	min-width: 250px;
	width: 100%;
}

	#about-top-side-image img {
		width: 100%;
	}

/**********************************************************************************/
/*                             Mortgages section                                  */
/**********************************************************************************/
#mortgages .heading {
	margin-top: 160px;
	font-family: "Raleway", sans-serif;
	font-size: 25px;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
}

#mortgages .panes {
	margin-top: 66px;
	margin-bottom: 140px;
}

	#mortgages .panes .pane {
		float: left;
		text-align: center;
	}

	#mortgages .panes .pane-count-3 {
		width: 33.3%;
	}

	#mortgages .panes .pane-count-2 {
		width: 50%;
	}

	#mortgages .panes .pane-count-1 {
		width: 100%;
	}

	#mortgages .panes .pane .pane-icon {
		border-radius: 100px;
		background-position: center center;
		width: 100px;
		height: 100px;
		text-align: center;
		font-size: 40px;
		padding-top: 22px;
		margin: 0 auto;
		background-image: url('/assets/images/blank.gif');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 50px 50px;
		transition-duration: 0.5s;
		transition-delay: 0s;
		transition-timing-function: ease;
	}
	/*#mortgages .panes .pane .pane-icon:hover {
  background-image: url('/assets/images/circle.png');
}*/
	#mortgages .panes .pane .pane-heading {
		font-family: "Raleway", sans-serif;
		font-weight: 800;
		font-size: 16px;
		text-transform: uppercase;
		margin-top: 36px;
	}

	#mortgages .panes .pane .pane-text {
		width: 90%;
		margin: 0 auto;
		font-family: "Open Sans", sans-serif;
		font-weight: 400;
		font-size: 14px;
		line-height: 25px;
		margin-top: 16px;
	}

#mortgages .application .text-wrapper {
	width: 50%;
	margin: 65px 0 60px 70px;
	float: left;
}

#mortgages .application .app-heading {
	font-family: "Raleway", sans-serif;
	font-size: 25px;
	font-weight: 800;
	text-transform: uppercase;
}

#mortgages .application .blurb {
	font-family: "Open Sans", sans-serif;
	font-size: 13px;
	font-weight: 400;
}

#mortgages .application .apply-button {
	float: right;
	margin: 53px 65px 0 0;
}

	#mortgages .application .apply-button a {
		border-radius: 2px;
		background-color: transparent;
		border-width: 2px !important;
		border-style: solid !important;
		background-image: none !important;
		width: 294px;
		text-transform: uppercase;
		font-family: "Open Sans", sans-serif !important;
		font-size: 20px;
		font-weight: 700;
		padding: 20px 0;
		transition-duration: 0.5s;
		transition-delay: 0s;
		transition-timing-function: ease;
	}

		#mortgages .application .apply-button a:hover,
		#mortgages .application .apply-button a:active,
		#mortgages .application .apply-button a:focus {
			text-decoration: none;
		}

#mortgages .application .mortgage-application-success-message {
	color: white;
	font-size: 18px;
	margin-top: 22px;
	width: 250px;
}

#mortgages .types-of-mortgages .types-heading {
	font-family: "Raleway", sans-serif;
	font-size: 25px;
	font-weight: 800;
	letter-spacing: 1px;
	margin: 95px 0 65px 0;
	text-transform: uppercase;
	text-align: center;
}

#mortgages .types-of-mortgages #types-accordion {
	width: 88%;
	margin: 0 auto;
	border-width: 4px;
	border-style: solid;
}

	#mortgages .types-of-mortgages #types-accordion .panel {
		border-width: 2px;
		border-style: solid;
	}

		#mortgages .types-of-mortgages #types-accordion .panel + .panel {
			margin-top: 0;
		}

	#mortgages .types-of-mortgages #types-accordion .accordion-header {
		width: 100%;
	}

		#mortgages .types-of-mortgages #types-accordion .accordion-header h3 {
			text-align: center;
			margin: 0;
		}

			#mortgages .types-of-mortgages #types-accordion .accordion-header h3 a {
				text-decoration: none;
				font-family: "Open Sans", sans-serif;
				font-size: 24px;
				font-weight: 700;
				display: block;
				width: 100%;
				padding: 10px 0;
			}

				#mortgages .types-of-mortgages #types-accordion .accordion-header h3 a.collapsed {
					font-weight: 400;
				}

	#mortgages .types-of-mortgages #types-accordion .panel-body {
		padding: 0;
	}

		#mortgages .types-of-mortgages #types-accordion .panel-body img {
			width: 17%;
			float: left;
			margin: 29px 1.7%;
		}

		#mortgages .types-of-mortgages #types-accordion .panel-body p {
			font-family: "Open Sans", sans-serif;
			font-size: 14px;
			font-weight: 400;
			line-height: 20px;
			margin-left: 23%;
			margin-top: 24px;
			width: 72%;
		}

/**********************************************************************************/
/*                               Rates section                                    */
/**********************************************************************************/
#rates .rates-heading {
	font-family: "Raleway", sans-serif;
	font-size: 25px;
	font-weight: 800;
	letter-spacing: 1px;
	margin: 95px 0 65px 0;
	text-transform: uppercase;
	text-align: center;
}

#rates .rates-blurb {
	margin: 50px 0 30px;
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
}

#rates .rates-container {
	border-width: 75px;
	border-style: solid;
	width: 72%;
	margin: 0 auto;
	padding: 50px;
}

	#rates .rates-container #brokertools-RatesTable .brokertool-rates-header {
		display: none;
	}

	#rates .rates-container #brokertools-RatesTable div {
		border: 0 !important;
		border-radius: 0;
		box-shadow: none;
		font-family: "Open Sans", sans-serif !important;
		font-size: 26px;
	}

		#rates .rates-container #brokertools-RatesTable div.brokertools-rates-column {
			margin: 0 !important;
		}

	#rates .rates-container #brokertools-RatesTable span.brokertools-rates-term-long-text {
		display: inline !important;
	}

	#rates .rates-container #brokertools-RatesTable span.brokertools-rates-term-short-text {
		display: none !important;
	}

	#rates .rates-container #brokertools-RatesTable div {
		font-weight: normal;
	}

		#rates .rates-container #brokertools-RatesTable div.brokertools-rates-column div:not(:first-child) {
			padding-top: 15px;
			padding-bottom: 15px;
		}

		#rates .rates-container #brokertools-RatesTable div.brokertools-rates-table-header {
			font-family: "Open Sans", sans-serif !important;
			font-size: 30px;
			line-height: 32px;
			font-weight: 400;
			padding-top: 35px;
			padding-bottom: 35px;
		}

		#rates .rates-container #brokertools-RatesTable div.middle-padding {
			display: none;
		}

		#rates .rates-container #brokertools-RatesTable div.brokertools-rates-disclaimer {
			font-size: 14px;
			font-style: normal;
		}

	#rates .rates-container #brokertools-RatesTable .brokertools-rates-rates {
		z-index: 1;
	}

	#rates .rates-container .rates-disclaimer {
		font-family: "Open Sans", sans-serif;
		font-size: 14px;
		font-style: normal;
		padding: 0.5em 1.5em;
	}

/**********************************************************************************/
/*                            Calculators section                                 */
/**********************************************************************************/
#calculators .calculators-heading {
	font-family: "Raleway", sans-serif;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 1px;
	margin: 95px 0 17px 0;
	text-transform: uppercase;
	text-align: center;
}

#calculators .calculators-subheading {
	font-family: "Raleway", sans-serif;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 1px;
	margin-bottom: 53px;
	text-transform: uppercase;
	text-align: center;
}

#calculators .calculators-container {
	border-width: 75px;
	border-style: solid;
	width: 72%;
	margin: 0 auto;
	padding: 50px;
}

	#calculators .calculators-container h3 {
		border-radius: 0;
		font-family: "Open Sans", sans-serif !important;
	}

	#calculators .calculators-container input,
	#calculators .calculators-container select {
		border-radius: 0;
	}

	#calculators .calculators-container .button-container {
		border-radius: 0;
	}

	#calculators .calculators-container input[type=text],
	#calculators .calculators-container input[type=number],
	#calculators .calculators-container select {
		border-width: 2px;
		border-style: solid;
		background-image: none;
		box-shadow: none;
		text-shadow: none;
	}

	#calculators .calculators-container button {
		font-family: "Open Sans", sans-serif;
		font-size: 20px;
		height: 40px;
		border-radius: 2px;
		text-shadow: none !important;
		transition-duration: 0.5s;
		transition-delay: 0s;
		transition-timing-function: ease;
	}

	#calculators .calculators-container label[for$=drpCalculatorChoice] {
		margin-top: 7px;
	}

/**********************************************************************************/
/*                            Testimonials section                                */
/**********************************************************************************/
#testimonials .testimonials-heading {
	font-family: "Raleway", sans-serif;
	font-size: 25px;
	font-weight: 800;
	letter-spacing: 1px;
	margin: 95px 0 17px 0;
	text-transform: uppercase;
	text-align: center;
}

#testimonials #testimonials-carousel {
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
}

	#testimonials #testimonials-carousel .carousel-inner {
	}

	#testimonials #testimonials-carousel .item {
		transition-duration: 0.5s;
		transition-delay: 0s;
		transition-timing-function: ease;
		padding-bottom: 30px;
	}

		#testimonials #testimonials-carousel .item.active {
			transition-duration: 0.5s;
			transition-delay: 0s;
			transition-timing-function: ease;
		}

	#testimonials #testimonials-carousel .testimonial-body {
		font-family: "Open Sans", sans-serif;
		font-size: 18px;
		font-style: italic;
		text-align: center;
		font-weight: 400;
		line-height: 32px;
	}

	#testimonials #testimonials-carousel .testimonial-credit {
		font-family: "Open Sans", sans-serif;
		font-size: 18px;
		text-align: center;
		font-weight: 700;
		line-height: 22px;
		text-transform: uppercase;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
	}

	#testimonials #testimonials-carousel ol.carousel-indicators {
		margin-left: -30.5%;
		bottom: -45px;
	}

		#testimonials #testimonials-carousel ol.carousel-indicators li {
			width: 12px;
			height: 12px;
			margin: 0 0 0 9px;
		}

/**********************************************************************************/
/*                              Subscribe section                                 */
/**********************************************************************************/
#subscribe {
	width: 100%;
}

	#subscribe #subscribe-layered-background {
		width: 100%;
		height: 340px;
		position: relative;
		margin-top: 130px;
	}

		#subscribe #subscribe-layered-background > div {
			width: 100%;
			height: 340px;
		}

		#subscribe #subscribe-layered-background .inner1 {
			position: absolute;
			top: 0;
			left: 0;
		}

		#subscribe #subscribe-layered-background .inner2 {
			position: absolute;
			top: 0;
			left: 0;
			background-repeat: no-repeat;
			background-size: cover;
			opacity: 0.15;
		}

		#subscribe #subscribe-layered-background #subscribe-container {
			position: absolute;
			top: 0;
			left: 0;
		}

	#subscribe #subscribe-header {
		font-family: "Raleway", sans-serif;
		font-size: 20px;
		line-height: 24px;
		font-weight: 800;
		letter-spacing: 1px;
		text-transform: uppercase;
		text-align: center;
		margin-top: 80px;
	}

	#subscribe #subscribe-subheader {
		font-family: "Open Sans", sans-serif;
		font-size: 14px;
		font-weight: 400;
		text-align: center;
		margin-top: 22px;
	}

	#subscribe #subscribe-form {
		text-align: center;
		margin-top: 30px;
	}

		#subscribe #subscribe-form input[type=email] {
			background-color: transparent;
			border-width: 2px;
			border-style: solid;
			text-transform: uppercase;
			font-family: "Raleway", sans-serif;
			font-size: 12px;
			font-weight: 800;
			width: 265px;
			padding: 10px;
			vertical-align: top;
		}

			#subscribe #subscribe-form input[type=email]:focus {
				outline: none;
			}

		#subscribe #subscribe-form input[type=submit] {
			font-family: "Open Sans", sans-serif;
			font-size: 14px;
			letter-spacing: 1px;
			font-weight: 700;
			text-transform: uppercase;
			border: 0;
			height: 41px;
			width: 93px;
			padding: 0;
			vertical-align: top;
			margin-left: 4px;
		}

		#subscribe #subscribe-form #RecaptchaNewsletterSubscribeField > div {
			margin: 20px auto 0;
		}

/**********************************************************************************/
/*                                 Blog section                                   */
/**********************************************************************************/
#blog #blog-heading {
	font-family: "Raleway", sans-serif;
	font-size: 25px;
	font-weight: 800;
	letter-spacing: 1px;
	margin: 95px 0 17px 0;
	text-transform: uppercase;
	text-align: center;
}

#blog #blog-entries {
	-js-display: flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 100%;
	overflow: hidden;
}

	#blog #blog-entries .blog-entry {
		margin: 45px 1.5% 0;
		flex: 0 1 47%;
		-js-display: flex;
		display: flex;
		flex-direction: column;
		/* Following should be ignored on any browser that supports display: flex */
		float: left;
		width: 47%;
	}

#blog #blog-single-entry .blog-entry {
	width: 90%;
	margin: 0 auto;
	background: transparent;
}

	#blog #blog-entries .blog-entry .blog-image,
	#blog #blog-single-entry .blog-entry .blog-image {
		width: 100%;
		height: 515px;
		position: relative;
	}

#blog #blog-entries .blog-entry .blog-details {
	margin: 0 auto;
	width: 88%;
	flex-grow: 1;
	-js-display: flex;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#blog #blog-single-entry .blog-entry .blog-details {
	margin-top: 30px;
}

#blog #blog-entries .blog-entry .blog-byline,
#blog #blog-single-entry .full-byline .blog-byline {
	font-family: "Raleway", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 25px;
	margin-top: 26px;
}

#blog #blog-single-entry .full-byline .blog-byline {
	margin-bottom: 30px;
}

#blog #blog-entries .blog-entry .blog-title,
#blog #blog-single-entry .full-byline .blog-title {
	font-family: "Raleway", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	margin-top: 4px;
}

#blog #blog-single-entry .full-byline .blog-title {
	font-size: 32px;
	margin-bottom: 40px;
}

#blog #blog-entries .blog-entry .blog-excerpt,
#blog #blog-single-entry .blog-entry .blog-body {
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #777777;
	line-height: 25px;
	margin: 13px 0;
}

#blog #blog-single-entry .blog-entry .blog-body {
	padding-bottom: 10px;
}

#blog #blog-entries .blog-entry a.blog-read-more {
	display: block;
	width: 140px;
	height: 45px;
	font-family: "Open Sans", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 16px;
	text-align: center;
	text-transform: uppercase;
	border-radius: 2px;
	padding-top: 13px;
	margin-top: auto;
	margin-bottom: 28px;
	transition-duration: 0.5s;
	transition-delay: 0s;
	transition-timing-function: ease;
}

	#blog #blog-entries .blog-entry a.blog-read-more:hover {
		text-decoration: none;
		background-color: transparent;
	}

#blog a.blog-view-more {
	display: block;
	width: 140px;
	height: 45px;
	font-family: "Open Sans", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 16px;
	text-align: center;
	text-transform: uppercase;
	border-radius: 2px;
	padding-top: 13px;
	margin: 64px auto 40px;
	transition-duration: 0.5s;
	transition-delay: 0s;
	transition-timing-function: ease;
}

	#blog a.blog-view-more:hover {
		text-decoration: none;
		background-color: transparent;
	}

#blog #blog-pagination {
	text-align: center;
	margin-top: 10px;
	padding: 0;
}

	#blog #blog-pagination li {
		list-style: none;
		display: inline-block;
		margin: 0;
	}

		#blog #blog-pagination li a {
			font-family: "Open Sans", sans-serif;
			font-weight: bold;
			text-align: center;
			border-radius: 3px;
			text-decoration: none;
			display: block;
			padding: 4px 8px;
			width: 100%;
			height: 100%;
		}

#blog #other-blog-posts {
	width: 90%;
	margin: 70px auto 20px;
}

	#blog #other-blog-posts .heading {
		font-family: "Raleway", sans-serif;
		font-size: 20px;
		font-weight: bold;
		text-transform: uppercase;
		text-align: center;
		margin: 20px 0;
	}

	#blog #other-blog-posts .blog-entry {
		width: 32%;
		margin-left: 2%;
		float: left;
		background: transparent;
	}

		#blog #other-blog-posts .blog-entry:nth-child(2) {
			margin-left: 0;
		}

		#blog #other-blog-posts .blog-entry .blog-image {
			width: 100%;
			height: 300px;
			position: relative;
		}

			#blog #other-blog-posts .blog-entry .blog-image a {
				display: block;
				width: 100%;
			}

		#blog #other-blog-posts .blog-entry .blog-title a {
			font-family: "Raleway", sans-serif;
			font-size: 18px;
			font-weight: bold;
			margin: 10px 0;
			display: block;
			text-decoration: none;
		}

#blog .share-heading {
	font-family: "Raleway", sans-serif;
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	margin: 20px 0;
}

#blog #blog-share-links {
	display: table;
	table-layout: fixed;
	margin: 0 auto;
	text-align: center;
	padding: 0;
	border-radius: 3px;
}

	#blog #blog-share-links li {
		display: table-cell;
		list-style: none;
		width: 100px;
		text-indent: 0;
		margin: 0;
		padding: 0;
	}

		#blog #blog-share-links li:first-child {
			border: 0;
		}

		#blog #blog-share-links li a {
			display: block;
			padding: 15px 0;
			font-size: 16px;
			transition-duration: 0.5s;
			transition-delay: 0s;
			transition-timing-function: ease;
		}

/**********************************************************************************/
/*                               Contact section                                  */
/**********************************************************************************/
#contact {
	max-width: 800px;
	width: 90%;
	margin: 0 auto;
}

	#contact #contact-heading {
		font-family: "Raleway", sans-serif;
		font-size: 25px;
		font-weight: 800;
		letter-spacing: 1px;
		margin: 165px 0 17px 0;
		text-transform: uppercase;
		text-align: center;
	}

	#contact #contact-call-to-action {
		font-family: "Raleway", sans-serif;
		font-size: 20px;
		font-weight: 700;
		line-height: 24px;
		text-align: center;
		letter-spacing: 1px;
		margin-bottom: 40px;
	}

		#contact #contact-call-to-action p {
			white-space: pre-wrap;
		}

		#contact #contact-call-to-action em {
			font-size: 30px;
			line-height: 36px;
			text-transform: uppercase;
			font-style: normal;
		}

	#contact #contact-form input[type=text],
	#contact #contact-form input[type=email],
	#contact #contact-form textarea {
		font-family: "Open Sans", sans-serif;
		font-size: 15px;
		font-weight: 400;
		line-height: 29px;
		padding: 6px 6px 6px 11px;
		border-width: 1px;
		border-style: solid;
	}

	#contact #contact-form input[type=text],
	#contact #contact-form input[type=email] {
		width: 32.333333%;
		height: 46px;
	}

		#contact #contact-form input[type=text] + input,
		#contact #contact-form input[type=email] + input {
			margin-left: 1.5%;
		}

	#contact #contact-form textarea {
		margin-top: 21px;
		width: 100%;
		height: 160px;
	}

	#contact #contact-form input[type=submit] {
		display: block;
		margin: 30px auto 0;
		width: 130px;
		height: 45px;
		border: 0;
		font-family: "Open Sans", sans-serif;
		font-size: 14px;
		font-weight: 700;
		text-transform: uppercase;
		border-radius: 2px;
		transition-duration: 0.5s;
		transition-delay: 0s;
		transition-timing-function: ease;
	}

		#contact #contact-form input[type=submit]:hover {
			background-color: transparent;
			color: #63666a;
		}

	#contact #contact-form #RecaptchaContactFormField > div {
		margin: 10px auto 0;
	}

/**********************************************************************************/
/*                                 Map section                                    */
/**********************************************************************************/
#map .map-embed {
	display: block;
	width: 100%;
	height: 400px;
	margin-top: 43px;
}

/**********************************************************************************/
/*                                Footer section                                  */
/**********************************************************************************/
#footer #footer-upper-banner {
	width: 100%;
	min-height: 325px;
}

#footer #footer-upper-banner-container {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
}

#footer #footer-upper-banner #footer-copy {
	float: left;
	margin-top: 53px;
	width: 30%;
	margin-left: 3%;
	font-family: "Open Sans", sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 25px;
}

#footer #footer-upper-banner #footer-quick-links {
	float: left;
	width: 15%;
	min-width: 200px;
	margin-top: 53px;
	margin-left: 2%;
}

#footer #footer-upper-banner #footer-hours-of-operation {
	float: left;
	width: 15%;
	min-width: 200px;
	margin-left: 2%;
	margin-top: 53px;
}

#footer #footer-upper-banner #footer-contact-info {
	float: left;
	width: 15%;
	min-width: 200px;
	margin-top: 53px;
}

#footer #footer-upper-banner .heading {
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 19px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#footer #footer-upper-banner .heading-underline {
	width: 40px;
	height: 2px;
	margin-top: 11px;
}

#footer #footer-upper-banner ul {
	padding: 0;
	margin-top: 25px;
}

#footer #footer-upper-banner li {
	list-style-position: outside;
	list-style: none;
}

#footer #footer-upper-banner #footer-quick-links .links-list li a {
	font-family: "Open Sans", sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 25px;
	text-decoration: underline;
}

#footer #footer-upper-banner #footer-contact-info .contact-list li {
	position: relative;
	padding-left: 32px;
	padding-bottom: 18px;
	font-family: "Open Sans", sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
}

	#footer #footer-upper-banner #footer-contact-info .contact-list li i {
		position: absolute;
		top: 4px;
		left: 0;
		color: #a7a7a7;
	}

	#footer #footer-upper-banner #footer-contact-info .contact-list li .nobreak {
		display: block;
	}

	#footer #footer-upper-banner #footer-contact-info .contact-list li.email {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	#footer #footer-upper-banner #footer-contact-info .contact-list li.mobile i {
		font-size: 18px;
		top: 0;
	}

#footer #footer-upper-banner #footer-logo {
	width: 11%;
	margin-top: 53px;
	float: left;
	margin-left: 2%;
}

	#footer #footer-upper-banner #footer-logo img {
		width: 100%;
	}

	#footer #footer-upper-banner #footer-logo .footer-img {
		width: 100%;
		height: 15vw;
		min-width: 140px;
		min-height: 140px;
		max-width: 200px;
		background-image: url("../images/tmg-footer-logo.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: top;
	}

#footer #footer-lower-banner {
	border-top-width: 1px;
	border-top-style: solid;
}

	#footer #footer-lower-banner #footer-lower-banner-container {
		width: 90%;
		height: 100%;
		max-width: 1200px;
		margin: 0 auto;
		overflow: hidden;
	}

	#footer #footer-lower-banner #footer-social {
		float: left;
		margin-top: 21px;
	}

		#footer #footer-lower-banner #footer-social a {
			font-size: 15px;
			line-height: 18px;
		}

			#footer #footer-lower-banner #footer-social a + a {
				margin-left: 21px;
			}

	#footer #footer-lower-banner #footer-copyright {
		float: right;
		margin: 21px 0;
		font-family: "Open Sans", sans-serif;
		font-size: 13px;
		font-weight: 400;
		line-height: 16px;
	}

.weekday {
	color: #ffffff;
	display: flex;
}

.day {
	min-width: 30px;
	margin-left: 10px;
}
/**********************************************************************************/
/*                                 Custom Pages                                   */
/**********************************************************************************/
#page-content {
}

	#page-content .page-content-container {
		margin: 0 auto;
		width: 90%;
		overflow: hidden;
	}

	#page-content .page-byline {
		font-family: "Raleway", sans-serif;
		font-size: 14px;
		font-weight: 400;
		line-height: 25px;
		margin-top: 26px;
		margin-bottom: 30px;
	}

		#page-content .page-byline .page-title {
			font-family: "Raleway", sans-serif;
			font-size: 32px;
			font-weight: 700;
			line-height: 24px;
			color: #63666a;
			margin-top: 4px;
			margin-bottom: 40px;
		}

	#page-content .page-content-details {
		margin: 30px auto 0;
	}

	#page-content .page-content-body,
	.custom-content-component {
		font-family: "Open Sans", sans-serif;
		font-size: 14px;
		font-weight: 400;
		color: #777777;
		line-height: 25px;
		margin: 13px 0;
		padding-bottom: 10px;
	}

		#page-content .page-content-body img,
		.custom-content-component img {
			max-width: 100%;
		}

		#page-content .page-content-body .row,
		.custom-content-component .row {
			margin-left: 0;
			margin-right: 0;
		}

.home-page #page-content {
	display: none;
}

.custom-content-component {
	margin: 0 auto;
	width: 95%;
	overflow: hidden;
}

/**********************************************************************************/
/*                              Privacy Policy Page                               */
/**********************************************************************************/
#privacy-policy {
	text-align: justify;
	width: 90%;
	margin: 0 auto 80px;
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	color: #777777;
	line-height: 25px;
}

	#privacy-policy .page-title {
		font-family: "Raleway", sans-serif;
		font-size: 25px;
		font-weight: 800;
		letter-spacing: 1px;
		margin: 95px 0 17px 0;
		text-transform: uppercase;
		text-align: center;
		color: #63666a;
	}

	#privacy-policy h4 {
		font-family: "Raleway", sans-serif;
		font-size: 18px;
		font-weight: 800;
		letter-spacing: 1px;
		margin: 35px 0 17px 0;
		text-transform: uppercase;
		color: #63666a;
	}

/**********************************************************************************/
/*                                  Apply Page                                    */
/**********************************************************************************/
section#apply {
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
}

section#apply2 {
	min-height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
}

	section#apply2 div {
		flex: 0 1 auto;
	}

.title-apply-now {
	margin: .5em auto;
	font-family: "Raleway", sans-serif;
	font-weight: 800;
	font-size: 30px;
	line-height: 36px;
	text-transform: uppercase;
	letter-spacing: 1px;
	justify-content: center;
	display: flex;
	color: #63666a;
}

#formMortgageApplication h1 {
	margin-top: 3em !important;
	font-size: 18px;
	font-weight: bold;
	background-color: #f5f5f5 !important;
	text-transform: uppercase;
	padding: 2px;
	letter-spacing: 2px;
	/*margin: 1em 0;*/
}

#formMortgageApplication h2 {
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 10px;
}

.broker-selector label {
	padding: 5px;
	margin-bottom: 0;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}

.broker-selector .drop-down-container {
	padding: 5px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	border-top-right-radius: 6px;
}

.form-contents {
	width: 67%
}

.tab-content {
	margin-top: 2vh;
}

.wizard .nav-tabs {
	position: relative;
	margin-bottom: 0;
	border-bottom-color: transparent;
}

.wizard {
	position: relative;
	/*left: 11vw;*/
}

.connecting-line {
	height: 2px;
	background: #e0e0e0;
	position: absolute;
	width: 75%;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: 85%;
	z-index: 1;
}

.wizard .nav-tabs > li.active > a, .form-contents .nav-tabs > li.active > a:hover, .form-contents .nav-tabs > li.active > a:focus {
	color: #555555;
	cursor: default;
	border: 0;
	border-bottom-color: transparent;
}

span.round-tab {
	width: 75px;
	height: 75px;
	line-height: 75px;
	display: inline-block;
	border-radius: 50%;
	background: #fff;
	z-index: 2;
	position: absolute;
	left: -72%;
	text-align: center;
	font-size: 30px;
	color: #0e214b;
	font-weight: 500;
	color: rgb(51,51,51);
	border: 1px solid #ddd;
}

.wizard .nav-tabs > li {
	width: 20%;
}

.wizard li:after {
	content: " ";
	position: absolute;
	left: 46%;
	opacity: 0;
	margin: 0 auto;
	bottom: 0px;
	border: 5px solid transparent;
	transition: 0.1s ease-in-out;
}

.wizard .nav-tabs > li a {
	width: 30px;
	height: 30px;
	margin: 20px auto;
	border-radius: 100%;
	padding: 0;
	background-color: transparent;
	position: relative;
	top: 0;
}

	.wizard .nav-tabs > li a .list-text {
		position: absolute;
		top: 85px;
		font-style: normal;
		font-weight: 400;
		white-space: nowrap;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 12px;
		font-weight: 700;
		color: rgb(51,51,51);
	}

#initial {
	max-width: 100%;
}

a[data-toggle="collapse"]:after {
	font-family: 'FontAwesome';
	content: "\f068";
	float: right;
}

a[data-toggle="collapse"].collapsed:after {
	/* symbol for "collapsed" panels */
	content: "\f067";
}

/**********************************************************************************/
/*                                  Admin Login                                   */
/**********************************************************************************/
#full-window-container {
	width: 100%;
	height: 100vh;
	background-image: url('/assets/images/blur1920.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

#login-form {
	width: 95%;
	max-width: 800px;
	margin: 50vh auto 0;
	transform: translateY(-50%);
}

#login-logo {
	width: 100%;
	float: left;
	margin: -60px 0 0;
}

	#login-logo img {
		width: 100%;
		max-width: 339px;
	}

/**********************************************************************************/
/*                              Admin Settings Page                               */
/**********************************************************************************/
#admin-container {
	width: 95%;
	max-width: 1200px;
}

#component-list-nav {
	width: 300px;
	float: left;
	height: 100vh;
	background-color: #e0e0e0;
	overflow: auto;
}

	#component-list-nav .logo {
		width: 90%;
		max-height: 90px;
		padding: 5px;
		margin: 5px auto;
		display: block;
	}

	#component-list-nav h4 {
		font-family: Arial, sans-serif;
		font-size: 18px;
		font-weight: bold;
		margin: 1em;
		color: #2f2f2f;
	}

		#component-list-nav h4 a {
			color: #2f2f2f;
			text-decoration: none;
		}

	#component-list-nav ul.admin-nav-list li {
		list-style: none;
		font-size: 14px;
		padding: 2px 0;
	}

		#component-list-nav ul.admin-nav-list li a {
			text-decoration: none;
			display: block;
			width: 100%;
			height: 100%;
			color: #2f2f2f;
		}

			#component-list-nav ul.admin-nav-list li a i {
				display: inline-block;
				width: 20px;
				text-align: center;
			}

			#component-list-nav ul.admin-nav-list li a.active {
				font-weight: bold;
			}

	#component-list-nav #touch-handle {
		display: none;
	}

#component-settings-pane {
	height: 100vh;
	padding: 20px;
	margin-left: 300px;
	overflow: auto;
}

	#component-settings-pane h1 i {
		font-size: 22px;
		display: none;
	}

	#component-settings-pane #region-popup .modal-body img {
		max-width: 100%;
	}

	#component-settings-pane .error {
		border-color: red;
	}

	#component-settings-pane .error-message {
		color: red;
	}

	#component-settings-pane .alert-row {
		margin-top: 2em;
		margin-bottom: 2em;
	}

	#component-settings-pane #save-container,
	#component-settings-pane .save-container {
		margin-top: 10px;
	}

		#component-settings-pane #save-container span,
		#component-settings-pane .save-container span {
			display: inline-block;
		}

	#component-settings-pane .welcome-page-content h2 {
		font-size: 18px;
		font-weight: bold;
	}

	#component-settings-pane .welcome-page-content .contact-list .item {
		width: 250px;
	}

		#component-settings-pane .welcome-page-content .contact-list .item .item-label {
			font-size: 12px;
			float: left;
			clear: left;
		}

		#component-settings-pane .welcome-page-content .contact-list .item .item-value {
			font-size: 12px;
			float: right;
			clear: right;
		}

.intro .intro-image {
	max-width: 100%;
	padding: 15px 0;
}

	.intro .intro-image img {
		max-width: 100%;
	}

.intro p {
	padding: 5px 0 5px 20px;
}

#component-settings-pane .field-notes {
	display: block;
	margin-bottom: 20px;
}

table tr th.numeric_id_column {
	width: 40px;
}

/**********************************************************************************/
/*                          Admin Settings - Top Banner                           */
/**********************************************************************************/
.vertically-aligned{
	margin-top:auto;
	margin-bottom:auto;
}

.vertically-aligned fa-trash{
	font-size: ;
}

#component-top-banner-container {
	width: 95%;
}

#show-photo-field {
	float: right;
	max-width: 50%;
}

	#show-photo-field input {
		vertical-align: middle;
		width: 36px;
		height: 36px;
		float: left;
		margin: 0;
	}

	#show-photo-field label {
		margin: 0;
		vertical-align: middle;
		display: table-cell;
		height: 36px;
	}

#banner-list {
	overflow: auto;
	height: 75vh;
	width: 100%;
}

	#banner-list .banner-item {
		display: table;
		width: 100%;
	}

		#banner-list .banner-item:hover {
			background-color: #d9f1fa;
		}

		#banner-list .banner-item .left-container {
			display: table-cell;
			width: 70px;
			vertical-align: middle;
		}

		#banner-list .banner-item .right-container {
			display: flex;
			flex-wrap: wrap;
		}

		#banner-list .banner-item .form-control {
			width: 100%;
		}

		#banner-list .banner-item .enabled-checkbox {
			height: 100%;
			width: 100%;
			text-align: center;
			position: relative;
		}

			#banner-list .banner-item .enabled-checkbox input {
				height: 36px;
				width: 36px;
			}

		#banner-list .banner-item .banner-image img {
			padding-top: 5px;
			max-height: 155px;
			width: 98%;
			max-width: 350px;
		}

		#banner-list .banner-item .caption-textbox {
			width: 100%;
		}

			#banner-list .banner-item .caption-textbox input {
				width: 98%;
				max-width: 700px;
				margin: 5px 0;
			}

/**********************************************************************************/
/*                          Admin Settings - Edit Page                            */
/**********************************************************************************/
#components-list .component-item {
	height: 75px;
	border: 1px #cccccc solid;
	border-radius: 5px;
	width: 32%;
	margin-right: 1%;
	margin-left: 0;
}

	#components-list .component-item,
	#components-list .component-item input,
	#components-list .component-item label {
		cursor: pointer;
	}

		#components-list .component-item:hover {
			background-color: #d9f1fa;
		}

#components-list input,
.large-toggle input {
	height: 36px;
	width: 36px;
	vertical-align: middle;
	margin-top: 18px;
}

#components-list label,
.large-toggle label {
	vertical-align: middle;
	margin-left: 10px;
	margin-top: 21px;
}

#component-settings-pane .permalink {
	display: block;
}

#component-settings-pane span[id$="lblUserMessage"] {
	display: inline-block;
}

#google-analytics-note {
	margin-top: 30px;
}

/**********************************************************************************/
/*                         Admin Settings - Menu Page                             */
/**********************************************************************************/
#section-menu-list {
	width: 100%;
	max-width: 400px;
}

#menu-items-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0;
}

	#menu-items-container > * {
		min-height: initial;
	}

	#menu-items-container > div:first-child {
		padding-right: 0;
	}

	#menu-items-container > div:last-child {
		padding-left: 0;
	}

	#menu-items-container .page-item.page-draft .fancytree-title {
		color: #999;
	}

	#menu-items-container .page-item.page-draft::after {
		content: "(draft)";
		color: #aaa;
		font-size: 11px;
	}

#component-settings-pane .fancytree-title {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	white-space: normal;
	margin: 0 0 0 5px;
	max-width: calc(100% - 37px);
}

#component-settings-pane li.editing .fancytree-title {
	margin: 0 0 0 5px;
}

#component-settings-pane span.fancytree-icon {
	background: none;
}

#component-settings-pane .page-item span.fancytree-icon::after {
	content: "\f15b";
	color: #888;
	font-family: FontAwesome;
	font-size: 14px;
}

#component-settings-pane .header-item span.fancytree-icon::after {
	content: "\f0e8";
	color: #333;
	font-family: FontAwesome;
	font-size: 14px;
}

#left-menu-container,
#non-menu-pages-parent {
	flex: 1 1 50%;
	align-self: flex-start;
}

#swap-icon {
	flex: 0 0 50px;
	text-align: center;
}

	#swap-icon i {
		font-size: 40px;
	}

/**********************************************************************************/
/*                   Admin Settings - Rates Table Component                       */
/**********************************************************************************/
#component-settings-pane table td input[type=checkbox] + label {
	font-weight: normal;
	margin-left: 1em;
}

/**********************************************************************************/
/*                    Admin Settings - Calculator Component                       */
/**********************************************************************************/
.calculator-list-item {
	width: 100%;
	border: 1px #cccccc solid;
	border-top: 0;
	margin: 0;
	padding: 0;
}

	.calculator-list-item:first-of-type {
		border-top: 1px #cccccc solid;
		border-radius: 5px 5px 0 0;
	}

	.calculator-list-item:last-of-type {
		border-radius: 0 0 5px 5px;
	}

	.calculator-list-item:hover {
		background-color: #d9f1fa;
	}

	.calculator-list-item .radio-button {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		padding: 0 10px;
	}

		.calculator-list-item .radio-button input {
			box-shadow: none;
			width: 34px;
		}

	.calculator-list-item .radio-label {
		display: table-cell;
		padding-right: 10px;
	}

		.calculator-list-item .radio-label .name {
			font-weight: bold;
			font-size: 16px;
			padding-top: 10px;
			cursor: default;
		}

		.calculator-list-item .radio-label .description {
			padding-bottom: 10px;
			cursor: default;
		}

/**********************************************************************************/
/*                   Admin Settings - Testimonials Component                      */
/**********************************************************************************/
.testimonial-edit-panel input[name$=chkApproved] {
	height: 36px;
	width: 36px;
	vertical-align: middle;
}

.testimonial-edit-panel .save-button {
	margin-top: 10px;
}

/**********************************************************************************/
/*                         Admin Settings - Blog section                          */
/**********************************************************************************/
#blog-post-list_wrapper {
	margin-top: 20px;
}

#blog-post-list tr {
	cursor: pointer;
}

#blog-post-list.table-disabled {
	opacity: 0.7;
	pointer-events: none;
}

#blog-post-list .hidden-note {
	color: #aaaaaa;
	font-size: 12px;
	display: inline;
}

#component-settings-pane .blog-edit-photo {
	height: 100px;
}

#component-settings-pane .blog-edit-body {
	padding: 12px;
	background-color: #f6f6f6;
	border: 1px solid #cccccc;
	border-radius: 5px;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

#component-settings-pane .hidden-body-text {
	display: none;
}

#component-settings-pane .blog-photo-choice {
	width: 31%;
	height: 200px;
	border: 1px #63666a solid;
	border-radius: 3px;
	margin: 10px 1%;
	text-align: center;
	float: left;
	cursor: pointer;
	position: relative;
}

	#component-settings-pane .blog-photo-choice:hover {
		background-color: #d9f1fa;
	}

	#component-settings-pane .blog-photo-choice img {
		position: absolute;
		max-width: 95%;
		max-height: 95%;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

#component-settings-pane input.datepicker {
	width: 15%;
	min-width: 170px;
}

#component-settings-pane input.cropit-image-input {
	visibility: hidden;
}

input.cropit-image-zoom-input[type='range'] {
	-webkit-appearance: none;
	width: 200px;
}

	input.cropit-image-zoom-input[type='range']::-webkit-slider-runnable-track {
		-webkit-appearance: none;
		appearance: none;
		border-radius: 5px;
		/*box-shadow: inset 1px 1px 1px rgba(000,000,000,0.10);*/
		background-color: #eee;
		height: 5px;
		vertical-align: middle;
		border: none;
		cursor: pointer;
	}

	input.cropit-image-zoom-input[type='range']::-webkit-slider-thumb {
		-webkit-appearance: none;
		border-radius: 50%;
		background-color: #888;
		/*box-shadow: inset 0 0 0 4px #CCC, inset 0 0 4px #CCC, inset 0 0 0 4px #CCC;*/
		height: 15px;
		width: 15px;
		vertical-align: middle;
		border: none;
		cursor: pointer;
		margin-top: -4px;
		-webkit-transition: background 0.25s;
		-moz-transition: background 0.25s;
		-o-transition: background 0.25s;
		-ms-transition: background 0.25s;
		transition: background 0.25s;
	}

		input.cropit-image-zoom-input[type='range']::-webkit-slider-thumb:hover {
			background: #bbb;
		}

	input.cropit-image-zoom-input[type='range']:active::-webkit-slider-thumb {
		background: #bbb;
	}

	input.cropit-image-zoom-input[type='range']::-moz-range-track {
		-moz-appearance: none;
		border-radius: 5px;
		/*box-shadow: inset 1px 1px 1px rgba(000,000,000,0.10);*/
		background-color: #eee;
		height: 5px;
		vertical-align: middle;
		margin: 0;
		padding: 0;
		border: none;
		cursor: pointer;
	}

	input.cropit-image-zoom-input[type='range']::-moz-range-thumb {
		-moz-appearance: none;
		border-radius: 50%;
		background-color: #888;
		/*box-shadow: inset 0 0 0 4px #CCC, inset 0 0 4px #CCC, inset 0 0 0 4px #CCC;*/
		height: 15px;
		width: 15px;
		vertical-align: middle;
		border: none;
		cursor: pointer;
		margin-top: -4px;
		-webkit-transition: background 0.25s;
		-moz-transition: background 0.25s;
		-o-transition: background 0.25s;
		-ms-transition: background 0.25s;
		transition: background 0.25s;
	}

		input.cropit-image-zoom-input[type='range']::-moz-range-thumb:hover {
			background: #bbb;
		}

	input.cropit-image-zoom-input[type='range']:active::-moz-range-thumb {
		background: #bbb;
	}

input.cropit-image-zoom-input[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	animate: 0.2s;
	background: transparent;
	border-color: transparent;
	border-width: 39px 0;
	color: transparent;
}

input.cropit-image-zoom-input[type=range]::-ms-fill-lower {
	background: #CCC;
	border: 0px solid #000101;
	border-radius: 50px;
	box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

input.cropit-image-zoom-input[type=range]::-ms-fill-upper {
	background: #CCC;
	border: 0px solid #000101;
	border-radius: 50px;
	box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}

input.cropit-image-zoom-input[type=range]::-ms-thumb {
	/*box-shadow: inset 0 0 0 4px #CCC, inset 0 0 4px #CCC, inset 0 0 0 4px #CCC;*/
	border: 0px solid #000000;
	height: 15px;
	width: 15px;
	border-radius: 50%;
	background: #888;
	cursor: pointer;
	margin-top: -2px;
}

.about-me-side-image label {
	display: block;
}

.about-me-side-image .cropit-preview {
	width: 400px;
	height: 225px;
	cursor: all-scroll;
}

.about-me-side-image .zoom-slider {
	width: 400px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 9px 0 0 0;
}

	.about-me-side-image .zoom-slider input[type=range] {
		margin: 0 10px;
	}

	.about-me-side-image .zoom-slider i:first-of-type {
		font-size: 14px;
	}

	.about-me-side-image .zoom-slider i:last-of-type {
		font-size: 18px;
	}

.about-me-side-image .remove-image-button:hover {
	text-decoration: none;
}

.about-me-side-image .remove-image-button i {
	color: red;
}

/**********************************************************************************/
/*                   Admin Settings - Contact Form Component                      */
/**********************************************************************************/
.contact-call-1 {
	width: 40%;
	display: inline;
	margin-right: 0;
}

.contact-call-2 {
	width: 20%;
	display: inline;
	background-color: #ffa778;
	font-size: 16px;
	margin-left: 0;
	margin-right: 0;
}

.contact-call-3 {
	width: 40%;
	display: inline;
	margin-left: 0;
}

/**********************************************************************************/
/*                              Consent Form Page                                 */
/**********************************************************************************/
#consent > div {
	margin: 0 auto 30px;
}

/*Commented out to line it up the same as the application does*/
/*#consent #submit-container {
	text-align: center;
}*/

#consent #consent-heading {
	font-family: "Raleway", sans-serif;
	font-size: 25px;
	font-weight: 800;
	letter-spacing: 1px;
	margin: 95px 0 17px 0;
	text-transform: uppercase;
	text-align: center;
	color: #63666a;
}

#consent > .div.submitted :invalid,
#consent .form-control.error {
	border-color: red;
}
	
	#consent .error-message {
		color: red;
	}

.consent-form .thank-you-message {
	display: block;
	text-align: center;
	margin: 50px auto;
	font-weight: bold;
}

#consent .row * {
	z-index: 0;
}

#consent .required {
	color: salmon;
}

.recaptcha-verification {
	color: #ff0000;
	width: 100%;
}

.no-display {
	visibility: hidden;
}


/**********************************************************************************/
/*                              Extra Brokers Page                                */
/**********************************************************************************/
.clipboard-success-message-container {
	position: relative;
}

.clipboard-success-message {
	color: white;
	position: absolute;
	left: 0;
	bottom: -20px;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 3px;
	padding: 2px 5px;
	z-index: 9999;
	display: none;
}

/**********************************************************************************/
/*                              Application Wizzard                               */
/**********************************************************************************/
#formMortgageApplication :invalid,
#formMortgageApplication .invalid,
#formMortgageApplication .invalid-date {
	border-color: #ff0000;
}

.mb-15-px {
	margin-bottom: 15px;
}

.d-none {
	display: none;
}

.mortgage-application-success-message {
	color: green;
	font-weight: bold;
	font-size: 2rem;
	text-align: center;
}

#brokertools-MortgageApplications {
	text-align: center;
}

.social-faq {
	display: none !important;
}

button.close {
	border: 1px solid !important;
	border-radius: 50% !important;
	padding: 0px 5px !important;
	margin: 1px;
}
