/* Colors 

#12826c - Green
#184890 - Blue
#c82288 - Pink

*/

/* State Indicator for use in JS */
.grid-size-indicator {
    position: absolute;
    top: -999rem;
    left: -999rem;
}
/* XS */
.grid-size-indicator { z-index: 1; }
/* SM */
@media (min-width: 576px) {
	.grid-size-indicator { z-index: 2; }
}
/* MD */
@media (min-width: 768px) {
	.grid-size-indicator { z-index: 3; }
}
/* LG */
@media (min-width: 992px) {
	.grid-size-indicator { z-index: 4; }
}
/* XL */
@media (min-width: 1200px) {
	.grid-size-indicator { z-index: 5; }
}

/* ----------------------------------------------- */
/* All widths (XS through XL) */
/* ----------------------------------------------- */

.site-max-width {
	max-width:1170px;
}
iframe {
	border:0 none; /* frameborder=0 */
	overflow:hidden; /* scrolling=no */
	background-color:transparent; /* allowtransparency */
}
.img-fluid {
    height: auto !important;
}
img.float-left {
    margin-right:20px;
    margin-bottom:10px;
}
img.float-right {
    margin-left:20px;
    margin-bottom:10px;
}
.embed-responsive-video-container {
    max-width:640px;
}
main {
	display:block;
}
a.skip-to-main:focus {
	position: relative;
	display: block;
	text-align: center;
	width: 100%;
	height: auto;
	padding: 10px;
	margin: 0;
	overflow: visible;
    clip: auto;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}
.modal-title {
	order:-1;
	font-size:1.25rem;
}
.phone-number {
    white-space:nowrap;
}

body {
	font-family: 'Ubuntu', sans-serif;
    font-style:normal;
    font-weight:400;
    font-size: 1.125rem;
	color:#373944;
	line-height:1.5;
	background-color:#fff;
}
caption {
    caption-side: top;
}
hr {
    border-top:1px solid #ddd;
}
a,
a:hover {
	color:#184890;
}
strong {
    font-weight: 700;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
*:focus {
    outline:2px solid #c82288;
}

.page-content a {
	text-decoration:underline;
}
.page-content a:hover {
	text-decoration:none;
}
p,
ul,
ol {
    margin-bottom:1.5rem;
}
div.footnotes {
    margin-bottom: 1.5rem;
}
p.footnote {
    font-size:1rem;
    color:#767676;
    margin-bottom: .5rem;
}
.page-content {
    font-size:1.125rem;
}
/* Section Head */
.page-content h2,
h1.news-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
		color:#20285c;
}
/* Subhead */
.page-content h2.subhead {
    font-family: 'Poppins', sans-serif;
		font-size: 1.875rem;
		font-weight: 700;
		color: #184890;
}
.page-content h3 {
		font-family: 'Poppins', sans-serif;
		font-size: 1.25rem;
		font-weight: 700;
		color: #12826c;
}
.page-content h4 {
		font-family: 'Poppins', sans-serif;
		font-size: 1.125rem;
		font-weight: 700;
		color: #c82288;
}
.page-content h2 sup,
.page-content h3 sup {
    top:-1em;
    font-size: 50%;
}
.text-bold-1,
.text-bold-1 a {
	font-weight:700;
	color:#12826c; /* green */
}
.text-bold-2,
.text-bold-2 a {
	font-weight:700;
	color:#184890 /* blue */
}
.text-bold-3,
.text-bold-3 a {
	font-weight:700;
	color:#c82288; /* pink */
}
.text-18pt {
    font-size: 18pt;
}

.form-control {
    border-radius: 0.125rem;
    padding:0.375rem 0.75rem;
    box-shadow: inset 0.125rem 0.125rem 0.125rem 0 #eee;
}
::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
    color: #767676;
    opacity: 1;
}
::-moz-placeholder,
.form-control::-moz-placeholder {
    color: #767676;
    opacity: 1;
}
:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
    color: #767676;
    opacity: 1;
}
::-ms-input-placeholder,
.form-control::-ms-input-placeholder {
    color: #767676;
    opacity: 1;
}
::placeholder,
.form-control::placeholder {
    color: #767676;
    opacity: 1;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #373944;
    /*background-color: #e5eef6;*/
		background-color:transparent;
}

/* --------------- Buttons --------------- */



.btn {
    /* override */
    font-weight:700;
    font-size: 1.125rem;
    line-height: 1.5;
    padding:.1875rem 1.25rem .1875rem 1.25rem;
	border:2px solid transparent;
    border-radius:1.125rem/50%;
    text-decoration:none !important;
    white-space: normal;
}
.page-content .btn {
    margin-bottom:5px;
}
.btn-sm {
    /* override */
    font-weight:700;
    font-size: 1rem;
    line-height: 1.5;
    padding:.1875rem 1.25rem .1875rem 1.25rem;
	/*border:2px solid transparent;
    border-radius:1.125rem/50%;*/
    text-decoration:none !important;
    white-space: normal;
}
.btn-primary {
    background-color:#12826c;
    border-color: transparent;
	color:#fff;
    border-radius:1rem/50%;
}
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    background-color: #fff;
    border-color: #12826c;
    color:#12826c;
}
.btn-primary:focus {
    border-color: #fff;
    box-shadow: 0 0 0 .2rem rgba(168,34,140,0.5) !important;
}
.btn-secondary,
.btn-default {
    background-color:#c82288;
    border-color: transparent;
	color:#fff;
}
.btn-secondary:hover,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle,
.btn-default:hover,
.btn-default:not(:disabled):not(.disabled).active,
.btn-default:not(:disabled):not(.disabled):active,
.show > .btn-default.dropdown-toggle {
    background-color: #fff;
    border-color: #c82288;
    color:#c82288;
}
.btn-secondary:focus,
.btn-default:focus {
    border-color: #fff;
    box-shadow: 0 0 0 .2rem rgba(32,40,92,0.5) !important;
}
.btn-blue {
    background-color:#184890;
    border-color: transparent;
		color:#fff;
    border-radius:1rem/50%;
}
.btn-blue:hover,
.btn-blue:not(:disabled):not(.disabled).active,
.btn-blue:not(:disabled):not(.disabled):active,
.show > .btn-blue.dropdown-toggle {
    background-color: #fff;
    border-color: #184890;
    color:#184890;
}
.btn-blue:focus {
    border-color: #fff;
    box-shadow: 0 0 0 .2rem rgba(168,34,140,0.5) !important;
}

/* ----- List styles ----- */

.page-content ul {
	padding-left: 1rem;
}
.page-content ul:first-child,
.page-content ol:first-child {
    margin-top:0;
}
.page-content ul li {
	list-style-type:none;
	margin:0 0 .5rem 0;
	padding-left:1.5rem;
	text-indent:-.5rem;
}
.page-content ul li:before {
    content: '';
    display: inline-block;
    height: .5rem;
	width: .5rem;
	background-color: #c82288;
	border-radius: 50%;
    position: relative;
    left: -0.5rem;
    top: -.1rem;
}
.page-content ul li li {
	padding-left:0;
	text-indent:0;
}
/* Two Levels Deeps */
.page-content ul ul,
.page-content ul ol,
.page-content ol ul,
.page-content ol ol {
	margin-top:0;
    padding-left: 2rem;
}
.page-content ul ul li,
.page-content ol ul li {
	list-style-type:disc;
    padding-left:0;
	text-indent:0;
}
.page-content ul ol li {
	list-style-type:decimal;
}
.page-content ol ol li {
	list-style-type:lower-alpha;
}
.page-content ul ul li:before,
.page-content ol ul li:before,
.page-content ul ol li:before,
.page-content ol ol li:before {
    display:none;
}
/* Three Levels Deeps */
.page-content ol ol ul li,
.page-content ul ol ul li {
	list-style-type:disc;
}
.page-content ul ul ul li,
.page-content ol ul ul li {
	list-style-type:circle;
}
.page-content ul ol ol li,
.page-content ul ul ol li,
.page-content ol ul ol li {
	list-style-type:lower-alpha;
}
.page-content ol ol ol li {
	list-style-type:lower-roman;
}

/* Pipe separated lists */

ul.pipe-separated-list {
    list-style: none;
    padding:0;
    margin:0 0 .75rem 0;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}
ul.pipe-separated-list li {
    padding:0 .75rem;
    margin:0 0 .75rem 0;
    text-indent:0;
    border-left: 1px solid #ccc;
}
ul.pipe-separated-list li:first-child {
    padding-left: 0;
    border-left: 0 none;
}
ul.pipe-separated-list li:before {
    display: none;
}

/* Unstyled Lists */

ul.unstyled-list {
    list-style: none;
	margin:0 0 1.5em 0;
	padding:0;
}
ul.unstyled-list li {
	margin:0;
    padding:0;
	text-indent:0;
}
ul.unstyled-list li:before {
    display: none;
}
ul.unstyled-list li .btn {
    margin-bottom:10px;
}

/* --------------- Tables --------------- */

.table caption {
    caption-side: top;
    background-color: #184890;
    color: #fff;
    font-weight: 700;
    font-size: 1.3125rem;
    padding: 5px 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.table th {
    background-color: #f2f7ff;
    color: #0c2448;
    font-weight: 700;
    vertical-align: bottom;
    padding: .5rem 15px;
    border-color: #d9e6f2;
}
.table th[scope="row"],
.table th[scope="rowgroup"] {
    background-color: #f7fafc;
    color:#373944;
    font-weight: 400;
    vertical-align: top;
}
.table td {
    border-color: #d9e6f2;
    padding: .5rem 15px;
}

/* --------------- Header Alert ---------------*/

#header-alert {
	background-color:#fbe29d;
  color:#000;
	padding-top:15px;
	padding-bottom:10px;
  position:relative;
}
#header-alert:after {
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	display:block;
	width:100%;
	height:6px;
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, transparent, rgba(0,0,0,0.15)); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
	background-image:         linear-gradient(to bottom, transparent, rgba(0,0,0,0.15)); /* Chrome 26, Firefox 16+, IE 10+, Opera */
}
#header-alert .container-fluid {
	padding-right:35px; /* to make room for close icon */
}
#header-alert p {
	margin-bottom:10px;
	margin-left:60px;
}
#header-alert a {
	text-decoration:underline;
	color:#B71F7D;
}
#header-alert a:hover {
	text-decoration:none;
}
#header-alert .btn-close-alert {
	position:absolute;
	top:15px;
	right:15px;
	color:#000;
	text-decoration:none;
    background-color: transparent;
    border: 0 none;
    cursor: pointer;
}
#header-alert .btn-close-alert:hover {
    color:#B71F7D;
}

/* --------------- Header --------------- */

header {
	background-color:#fff;
}
.site-logo a {
    display: block;
}
.site-logo img {
    display:block;
    width:200px;
    margin:20px 0;
}


/* ----- Social Media Icons ----- */

#social-icons {
	list-style-type:none;
	margin:0;
	padding: 0;
}
#social-icons a {
	display: block;
	width:2.25rem;
	height:2.25rem;
	position: relative;
	border-radius: 50%;
	margin-right:6px;
}
#social-icons li:last-child a {
	margin-right: 0;
}
#social-icons svg {
	position: absolute;
	top:0.333rem;
	left:0;
	font-size: 1.5rem;
}
#social-icons svg.fa-facebook-f {
	left:.7rem;
}
#social-icons svg.fa-instagram {
	left:.5rem;
}
/*#social-icons svg.fa-twitter {
	left:.4rem;
	top:7px;
}*/
#social-icons a.fa-x-twitter svg {
	left:.4rem;
	top:7px;
}
#social-icons .item-1 a {
	background-color: #3b5998;
	color:#fff;
}
#social-icons .item-2 a {
	background-color: #000;
	color:#fff;
}
#social-icons .item-2 svg {
	fill:#fff;
}
#social-icons .item-3 a {
	background-color: #c13584;
	color:#fff;
}
#social-icons .item-1 a:hover {
	background-color: #fff;
	color:#3b5998;
	box-shadow: inset 0 0 0 2px #3b5998;
}
#social-icons .item-2 a:hover {
	background-color: #1da1f2;
	color:#000;
	box-shadow: inset 0 0 0 2px #000;
}
#social-icons .item-3 a:hover {
	background-color: #fff;
	color:#c13584;
	box-shadow: inset 0 0 0 2px #c13584;
}


/* --------------- Online Banking --------------- */

/*.online-banking-container {
	padding:15px;
}*/
.ob-btn {
	padding-bottom:5px;
}
/*.online-banking h2 {
	font-size: 1.5rem;
	font-weight: 700;
    color:#184890;
}
#login-info {
    background-color: transparent;
    padding:0;
    border: 0 none;
    cursor: pointer;
    color:#184890;
}
#login-info:focus {
	outline:0 none;
	color:#12826c;
}
#login-info.dropdown-toggle::after {
    display: none;
}
#login-info svg {
    width:1.625rem;
    height:1.625rem;
}

.online-banking label {
	margin:.25rem 0 0 0;
    color:#272727;
}
.online-banking .form-control-container {
	position: relative;
}
.online-banking .form-control {
	box-shadow: none;
	border-width: 2px;
	border-color:#cac8c7;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.online-banking .form-control:focus {
	border-color: #12826c;
}
.online-banking #btnHBLogin {
	background-color:#12826c;
	color:#fff;
    border-color: transparent;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding:9px 15px;
    font-size: 1.125rem;
    line-height: 0.9;
}
.online-banking #btnHBLogin:hover,
.online-banking #btnHBLogin:focus {
	background-color:#fff;
	border-color:#12826c;
	color:#12826c;
}
.online-banking .routing-number {
	font-size: .875rem;
}
*/

/* --------------- Rate Bar --------------- */

.rate-bar {
    background-color:#fbe29d;
    color:#000000;
    padding-top:5px;
    padding-bottom:25px;
    border-top:1px solid #fff;
    border-bottom:10px solid #c82288;
    position: relative;
  }
.rate-bar::after {
    content:'';
    display: block;
    width:100%;
    height:1px;
    background-color:#fff;
    position: absolute;
    bottom:0;
    left:0;
  }
.rate-bar h2 {
    text-align: center;
    margin-top:20px;
  }
.rate-bar h2 span {
    position: relative;
  }
.rate-bar h2 span::before {
    content:'';
    position: absolute;
    top:1rem;
    left:-115px;
    width:100px;
    height: .375rem;
    border-top:1px solid #000;
    box-shadow: 0 1px 0 #000;
}
.rate-bar h2 span::after {
    content:'';
    position: absolute;
    top:1rem;
    right:-115px;
    width:100px;
    height: .375rem;
    border-top:1px solid #000;
    box-shadow: 0 1px 0 #000;
}
.rate-bar p {
    margin-bottom:0;	
}
.rate-bar .rb-col > a:not(.btn) {
    color:#000000;
    display: block;
    width:100%;
}
.rate-bar .rb-col > a:hover,
.rate-bar .rb-col > a:focus {
    text-decoration: none;
}
.rate-bar a:hover h3,
.rate-bar a:hover .rb-number,
.rate-bar a:hover .rb-percent,
.rate-bar a:hover .rb-apr-apy {
	color:#184890;
}
.rate-bar p.rate-bar-footnote {
	text-align:center;
}
.rate-bar p.rate-bar-footnote a {
	color:#20285c;
	text-decoration: underline;
}
.rate-bar p.rate-bar-footnote a:hover {
	text-decoration: none;
}
.rate-bar p.rate-bar-footnote small {
    font-size:.875rem;
    display: block;
}
.rate-bar .rb-col {
	padding-top:15px;
	padding-bottom:15px;
}
.rate-bar table {
	line-height:1;
	margin:0 auto;
}
.rate-bar h3,
.rb-number,
.rb-percent,
.rb-apr-apy {
    font-weight: 700;
}
.rate-bar h3 {
    font-size:1rem;
    text-align:center;
	margin-bottom:0;
}
.rb-number {
	font-size:2.85rem;
	text-align:right;
	padding-right:.25rem;
}
.rb-percent {
	font-size:1.375rem;
	text-align:left;
	vertical-align:bottom;
}
.rb-apr-apy {
	text-align:left;
	vertical-align:top;
}

.fb-page {
    margin:15px 0;
}

/* --------------- Home News --------------- */

.home-news {
    margin:30px 0;
    background-size: 100% calc(100% - 20px);
}

.home-news h2 {
    font-size: 2.625rem;
    font-weight: 700;
    color:#12826c;
    margin-bottom:30px;
}
.home-news .news-item > a,
.news-content .news-item > a {
    color:#373944;
    display: block;
    text-decoration: none;
}
.home-news .news-item > a:hover,
.news-content .news-item > a:hover {
    text-decoration: none;
}
.home-news .news-item-caption h3,
.news-content .news-item-caption h2 {
    font-size: 1.3125rem;
    font-weight: 700;
    color:#184890;
    margin-bottom:.0625rem;
}
.home-news .news-item > a:hover h3,
.news-content .news-item > a:hover h2 {
    text-decoration: underline;
}
.home-news .news-item-image img,
.news-content .news-item-image img {
    display: block;
    margin-bottom:30px;
}

/* --------------- COOP Locator --------------- */

.coop-atm-locator,
.e-delivery,
.card-pointe {
    background-color: #184890;
    border-bottom:2px solid #fff;
}
.coop-atm-locator-title,
.coop-atm-locator-form {
    width: calc(100% - 2rem);
    max-width: 400px;
    margin:0 auto 5px;
}
.coop-atm-locator-title h2,
.e-delivery-title h2,
.card-pointe h2 {
    color:#fff;
    font-size:1.5625rem;
    font-weight:700;
		width:210px;
    width: calc(100% - 2rem);
    margin: 10px auto 0;
}
.e-delivery h2,
.card-pointe h2 {
	display:inline;
	position: relative;
}
.e-delivery h2 {
	top:-10px;
}
.card-pointe h2 {
	top:-7px;
}
.coop-atm-locator-title h2::before {
    content: '';
    width:85px;
    height:58px;
    background: url("../images/logo-coop-atm-locator.png") no-repeat left top;
    background-size: 72px 58px;
    float:left;
}
.coop-atm-locator-form .form-group {
	background-color:#fff;
	width: 100%;
	padding: .5em 10px .5em 5px;
	overflow:hidden;
	border-top-left-radius: 1.25em 50%;
	border-top-right-radius: 1.25em 50%;
	border-bottom-left-radius: 1.25em 50%;
	border-bottom-right-radius: 1.25em 50%;
	border:1px solid #fff;
    box-shadow: inset 2px 2px 2px 0 #eee;
}
.coop-atm-locator-form .form-group .form-control {
	border: 0 none;
	outline: 0 none;
	padding: .125em 10px;
	margin: 0;
	background: transparent;
	display: block;
	float: left;
	width:210px;
	/*width: calc(100% - 1.5em);*/
    line-height:20px;
    /* override .form-control */
    height: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.coop-atm-locator-form .form-group .searchButton {
	display:block;
	float: right;
	height: 1.5em;
	width: 1.5em;
}
.e-delivery-title,
.card-pointe-title {
	padding:15px 20px 5px;
}
.e-delivery .fa-cloud-download-alt,
.card-pointe .fa-dollar-sign {
	font-size:60px;
	margin-right:15px;
	color:#fff;
}
.card-pointe .fa-dollar-sign {
	font-size:50px;
	margin-right:10px;
	margin-left:7px;
}
.e-delivery-buttons ul,
.card-pointe-button ul {
	list-style-type: none;
	padding-left:0;
}
.card-pointe ul {
	text-align: center;
}
.e-delivery-buttons li {
	display: inline;
}
.e-delivery-buttons a.btn {
	width:49%;
}
.card-pointe-button a.btn {
	width:100%;
	display: block;
}

/*Before CardPointe*/

/*.coop-atm-locator,
.e-delivery {
    background-color: #184890;
    border-bottom:2px solid #fff;
}
.coop-atm-locator-title,
.coop-atm-locator-form {
    width: calc(100% - 2rem);
    max-width: 400px;
    margin:0 auto 5px;
}
.coop-atm-locator-title h2,
.e-delivery-title h2 {
    color:#fff;
    font-size:1.5625rem;
    font-weight:700;
		width:210px;
    width: calc(100% - 2rem);
    margin: 10px auto 0;
}
.e-delivery h2 {
	display:inline;
	position: relative;
	top:-10px;
}
.coop-atm-locator-title h2::before {
    content: '';
    width:85px;
    height:58px;
    background: url("../images/logo-coop-atm-locator.png") no-repeat left top;
    background-size: 72px 58px;
    float:left;
}
.coop-atm-locator-form .form-group {
	background-color:#fff;
	width: 100%;
	padding: .5em 10px .5em 5px;
	overflow:hidden;
	border-top-left-radius: 1.25em 50%;
	border-top-right-radius: 1.25em 50%;
	border-bottom-left-radius: 1.25em 50%;
	border-bottom-right-radius: 1.25em 50%;
	border:1px solid #fff;
    box-shadow: inset 2px 2px 2px 0 #eee;
}
.coop-atm-locator-form .form-group .form-control {
	border: 0 none;
	outline: 0 none;
	padding: .125em 10px;
	margin: 0;
	background: transparent;
	display: block;
	float: left;
	width:210px;
	/*width: calc(100% - 1.5em);*/
   /* line-height:20px;*/
    /* override .form-control */
   /* height: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.coop-atm-locator-form .form-group .searchButton {
	display:block;
	float: right;
	height: 1.5em;
	width: 1.5em;
}
.e-delivery-title {
	padding:15px 20px 5px;

}
.e-delivery .fa-cloud-download-alt {
	font-size:60px;
	margin-right:15px;
	color:#fff;
}
.e-delivery-buttons ul {
	list-style-type: none;
	padding-left:0;
}
.e-delivery-buttons li {
	display: inline;
}
.e-delivery-buttons a.btn {
	width:49%;
}
*/

/* --------------- Quick Links --------------- */

.quick-links {
    padding:0;
}
.quick-links ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.quick-links ul li {
	padding:0;
	margin:0;
    text-align:center;
}
.quick-links ul li a {
	display:block;
	background-color:#1f4c9a;
	color:#fff;
    font-size:1.125rem; /* 18px */
	font-weight:400;
	padding:13px 40px;
	border-bottom:1px solid #fff;
}
.quick-links span.fa-li {
    left:.5rem;
    top:.75rem;
}
.quick-links svg {
    font-size: 1.75rem;
    color:#fff;
 }
.quick-links ul li a:focus,
.quick-links ul li a:active,
.quick-links ul li a:hover {
	text-decoration:none;
	background-color:#3566b1;
}

/* --------------- Footer --------------- */

footer {
    background-color: #0c2448;
    color:#fff;
    padding:0 0 1.875rem 0;
    position: relative;
}
footer a,
footer a:hover {
    color:#fff;
}
.footer-text,
.footer-logos {
    margin-bottom:1.5rem;
		margin-top:40px;
}
.footer-text p,
.footer-text ul,
.footer-text ul li {
    margin-bottom:0;
}
.footer-text .pipe-separated-list li {
    border-color: #fff;
}
.footer-text strong {
    color:#90EEDC;
}
.footer-logos img {
    vertical-align: bottom;
}
.footer-logos .ehl-logo {
    margin-right:20px;
}
.tagline {
	text-align: center;
	background:#f2f7ff;
	color:#c82288;
	font-style: italic;
	font-weight: 700;
	font-size:1.5rem;
	padding:10px 15px;
	margin-bottom:1rem;
}
.tagline p {
	margin-top:1.5rem;
}

/* --------------- Forms --------------- */

.online-form h3 {
    background-color: #20285c;
    color: #fff;
    padding: 5px 15px;
    margin-bottom: 0;
}
.online-form h2.label-heading,
.online-form h3.label-heading {
    background-color: #f2f7ff;
    font-size: 1.125rem;
    font-weight:400;
    color: #20285c;
    padding: 3px 15px;
    margin:0 0 .5rem 0;
    line-height: 1.5;
}
.checkbox input,
.radio input {
    margin-right: .5rem;
}
.checkbox-list-horizontal label,
.radio-list-horizontal label {
    margin-right:1rem;
}
.checkbox-list-vertical label,
.radio-list-vertical label {
    width: calc(100% - 20px - .5rem);
    vertical-align: top;
}
.online-form .cms-recaptcha-wrap {
    margin-bottom: 1.5rem;
}
.dollar-amount-input .editing-form-control-nested-control {
    display: inline-block;
    margin-left:.5rem;
    width: calc(100% - 2rem);
}
.online-form input.form-control[type="number"] {
    display: inline-block;
}
.ErrorLabel {
    display: block;
    font-weight: 700;
    color:#cc0000;
    margin-bottom: 1.5rem;
}
.EditingFormErrorLabel {
    display: block;
    color:#cc0000;
}
.online-form .form-group > legend {
    font-size: 1.125rem;
}
.online-form .form-group > label,
.online-form .form-group > legend,
.online-form .form-group > span.EditingFormLabel {
    display: block;
    background-color:#f2f7ff;
    color: #20285c;
    padding:3px 15px;
    margin-bottom: .5rem;
}
.online-form .ExplanationText {
    padding:0 15px;
    color:#767676;
    font-size:0.875rem;
}
.online-form > fieldset,
.online-form > div[role="group"] > fieldset {
    margin-left: -15px;
    margin-right: -15px;
}
.online-form > fieldset > .row,
.online-form > div[role="group"] > fieldset > .row {
    margin-left: 0;
    margin-right: 0;
}
.online-form > fieldset > legend,
.online-form > div[role="group"] > fieldset > legend {
    font-size: 1.125rem;
    color:#fff;
    background-color:#184890;
    padding:3px 15px;
    margin-bottom:0;
    margin-left:15px;
    width:calc(100% - 30px);
}
@media (min-width: 768px) {
    .online-form {
        padding:0 15px;
    }
    .online-form h3,
    .online-form .form-group {
        margin-left:-15px;
        margin-right:-15px;
    }
    .online-form .form-group > .editing-form-control-nested-control,
    .online-form .form-group > p {
        margin-left: 15px;
        margin-right: 15px;
    }
    .online-form > fieldset > legend,
    .online-form > div[role="group"] > fieldset > legend {
        margin-left:0;
        width:100%;
    }
    .form-group-border-bottom-md {
        border-bottom:1px solid #ddd;
        margin-bottom:0;
    }
}
.form-horizontal .row.form-group label,
.form-horizontal .row.form-group span.EditingFormLabel {
    /* .col-form-label */
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}
.form-horizontal .row.form-group span.EditingFormLabel {
    display:inline-block;
}
@media (max-width: 767px) {
    .form-horizontal .row.form-group label,
    .form-horizontal .row.form-group span.EditingFormLabel {
        display: block;
        background-color:#f2f7ff;
        color: #20285c;
        padding:3px 15px;
        margin-bottom: .5rem;
    }
    .form-horizontal .row.form-group .radio label {
        display: inline;
        background-color: transparent;
        padding:7px 0;
        margin: 0 16px 0 0;
    }
}
.confirmation-message {
    background-color: #f4f9e7;
    color: #20285c;
    padding: 20px;
    border: 1px solid #dfecb6;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

/* --------------- Interior Pages --------------- */

.child-page-header {
    background-color:#f2f7ff;
    /*padding:20px 0;*/
    margin-bottom: 45px;
}
.child-page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color:#c82288;
    margin-bottom: 0;
}

/* --------------- Child Page Heading --------------- */

.child-page-header {
    margin-bottom: 40px;
}
.header-with-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 38.095238%;
		border-bottom:10px solid #c82288;
}
.header-with-image img {
    position: absolute;
    top: 0;
    right:0;
    display: block;
    height: 100%;
    width: auto;
}
/* For within CMS */
.child-page-header .image-selector-image-preview {
	z-index: -1;
}
.page-heading {
    padding:20px 15px;
		background:#f2f7ff;
		border-bottom:10px solid #e9eef4;
}
.page-heading h1 {
    font-size: 2.5rem;
    font-weight: 600;
    max-width: 1140px;
    margin: 0 auto;
		color:#20285c;
}
.page-heading h1 p {
	margin-bottom:0;
}
.header-with-image .page-heading {
    position: absolute;
    bottom: 10px;
    background-color: #f6f7fa;
    background-position: right top;
    background-size:cover;
    min-width: 55%;
		border-top-right-radius: 60px;
		border-bottom-right-radius: 60px;
		border-top-left-radius: 0px;
		border-bottom-left-radius: 0px;
}
.header-with-image .page-heading h1 {
    font-size: 1rem; /* 16px fallback if vw not supported */
    font-size: 4vw;
    padding: 0 10vw 0 0;
    max-width: none;
    margin:0;
		color:#20285c;
}


@media (min-width: 768px) {
    .header-with-image {
        padding-bottom: 19.047619%;
    }
    .header-image-pattern {
        padding-bottom: 19.047619%;
    }
    .header-with-image img {
        height: auto;
        width: 100%;
    }
    .header-with-image .page-heading {
        bottom:30%;
        padding-left: 7%;
    }
    .page-heading h1 {
        font-size: 2.5rem;
    }
    .header-with-image .page-heading h1 {
        font-size: 2rem;
        font-size: 3vw;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
	
		.header-with-image .page-heading {
   		bottom: 20% !important;
		}	
	.footer-text, .footer-logos {
		margin-top:0px;
		text-align:left !important;
	}
	
}


@media (min-width: 992px) {
    .page-heading h1 {
        font-size: 3rem;
    }
    .header-with-image .page-heading h1 {
        font-size: 2.5rem;
        font-size: 3vw;
    }
}



/* End Child Page Heading */

.child-nav,
.sb-tag-cloud {
    background-color:#f2f5f9;
    padding:1rem 0;
    margin-bottom: 20px;
}
.child-nav h2,
.sb-tag-cloud h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color:#c82288;
    padding:0 20px;
    margin-bottom: .5rem;
}
.child-nav ul {
    list-style: none;
    padding:0;
    margin:0;
}
.child-nav a {
    display: block;
    padding:.3125rem 20px;
    color:#20285c;
}
.child-nav a:hover,
.child-nav .CMSListMenuLinkHighlighted {
    text-decoration: none;
    background-color: #fff;
}
.child-nav .CMSListMenuLinkHighlighted {
    text-decoration: underline;
}

.sidebar-buttons:last-of-type {
    margin-bottom: 20px;
}
.sidebar-buttons ul {
    list-style: none;
    padding:0;
    margin:0;
}
.sidebar-buttons a {
    padding:.125rem 1.25rem .1875rem 1.25rem;
	font-size:1.125rem;
    font-weight:700;
	text-decoration:none !important;
    line-height: 1.5;
	border:2px solid transparent;
    border-radius:1.125rem/50%;
    display:block;
    width:100%;
    background-color:#c82288;
	color:#fff;
    text-align: center;
    margin-bottom: 10px;
    white-space: normal;
}
.sidebar-buttons a:hover {
    background-color: #fff;
    border-color: #c82288;
    color:#c82288;
}
.sidebar-buttons a:focus {
    outline: 0 none;
    border-color: #fff;
    box-shadow: 0 0 0 .2rem rgba(168,34,140,0.5) !important;
}
.sidebar-promo {
    margin-bottom: 20px;
}
.sidebar-promo a {
    display: block;
}
.sidebar-promo img {
    display: block;
    max-width: 100%;
    height: auto !important;
}

/* --------------- Blog --------------- */

#breadcrumbs {
    font-size:0.875rem; /* 14px */
    padding:8px 15px;
    margin-bottom:1.5rem;
    background-color: #f2f5f9;
}
#breadcrumbs a {
    color:#184890;
}
.blog-post .post-title {
		font-family: 'Poppins', sans-serif;
		font-size: 1.875rem;
		font-weight: 700;
		color: #184890;
}
.post-category {
    color:#767676;
}
.post-details {
    color:#767676;
}
.blog-post .post-details {
    padding-bottom:8px;
    border-bottom:1px solid #e1e1e1;
    margin-bottom: 20px;
}
.blog-post .post-teaser {
    margin-bottom: 1.5rem;
}
.sb-tag-cloud ul {
	padding: 0 20px 0 20px;
	margin: 0;
	list-style: none;
}
.sb-tag-cloud li {
	display: inline;
}
.sb-tag-cloud a {
	color: #20285c;
}
.page-content .read-more {
    text-align: right;
    font-weight: 700;
}
.read-more a {
    text-decoration: none;
}
.read-more .fa-chevron-circle-right {
    color: #c82288;
}
.read-more a:hover .fa-chevron-circle-right,
.read-more:hover .fa-chevron-circle-right {
    color:#12826c;
}

.blog-category-heading {
    background-color: #12826c;
    padding:8px 15px;
    color:#fff !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom:1.5rem;
}
.month-title {
    background-color: #f1f1f1;
    padding:8px 15px;
    color:#000;
    font-weight: 700;
    margin-bottom:1.5rem;
}

/* ----- Blog Post Summary ----- */

.blog-post-summary {
    border-bottom: 1px solid #ddd;
    margin-bottom:1.5rem;
}
.blog-post-summary a {
    text-decoration: none;
}
.blog-post-summary a:hover {
    text-decoration: underline;
}
.blog-post-summary .post-details {
    margin-bottom:10px;
}
.post-summary {
    margin-bottom:1.5rem;
}
.post-summary .post-teaser {
    margin-bottom:15px;
}
.post-summary a {
    color:#52575a;
}
.post-summary a:hover {
    text-decoration: none;
}
.post-summary a .read-more {
    margin:0;
    color:#12826c;
}

/* --------------- Blog Comments --------------- */

.BlogCommentsTitle {
    display: block;
    width:100%;
    border-bottom:3px solid #c82288;
    margin-bottom:1.5rem;
}
.CommentDetail {
    font-size: .875rem;
    padding: 10px;
}
.CommentDetail:nth-of-type(2n) {
    background: #fbfbfb;
}
.page-content h3.CommentUserName {
    font-size: 1rem;
    font-weight: 700;
    color:#52575a;
}
.CommentText {
    display: block;
    margin: 3px 0;
}
.CommentDate {
    color: #747474;
    font-size: 0.75rem;
}
.PostCommentSeparatorLine {
    background-color: #eeeff3;
    border: 0 none;
    color: #eeeff3;
    height: 1px;
    margin: 0;
}

.comments .InfoLabel,
.comments .ErrorLabel {
    display: block;
    margin: 1.5rem 0;
    font-weight: 700;
}
.comments .InfoLabel {
    padding: 8px 15px;
    background-color: #f2f7ff;
    border-radius: 5px;
}
.comments .ErrorLabel {
    padding: 8px 15px;
    background-color: #fae5e5;
    border-radius: 5px;
    color: #cc0000;
}
.BlogRequiredValidator {
    color: #cc0000;
}

div[id$="_pnlComment"] {
    margin-top:1.5rem;
}

.blog-subscribe-link {
    float:right;
}
div[id$="_pnlInfo"],
.comments .form-horizontal {
    clear: both;
}
.BlogCommentUrl,
#p_lt_ctl04_pageplaceholder_p_lt_ctl01_CommentView_commentView_ctrlCommentEdit_pnlUrl {
    display: none;
}

span.confirmation-info-label,
span.unsubscription-info-label {
    display: block;
    margin-bottom: 1.5rem;
}


/* Blog Pagination */

.blog-pagination {
	padding:10px 0 0 0;
	border-top: 1px solid #ddd;
	margin-bottom:30px;
}
.blog-pagination a,
.blog-pagination strong {
    display:inline-block;
    background-color:#0c2448;
	color:#fff;
	font-weight:700;
    text-decoration:none;
	padding:8px 12px !important;
	line-height:1;
	margin:0 0 6px 0;
}
.blog-pagination a:hover {
    color: #fff;
	background-color:#c82288;
}
.blog-pagination strong {
    color: #fff;
	background-color:#c82288;
	font-weight:700;
    cursor: default;
}
.pagination-details {
    margin-left:auto;
    font-size:0.875rem; /* 14px */
    color:#767676;
}



/* ----------------------------------------------- */
/* XS Only */
/* ----------------------------------------------- */

@media (max-width: 575px) {
	
}


/* ----------------------------------------------- */
/* SM and wider */
/* ----------------------------------------------- */

@media (min-width: 576px) {
	
}


/* ----------------------------------------------- */
/* SM Only */
/* ----------------------------------------------- */

@media (min-width: 576px) and (max-width: 767px) {
	
}

/* ----------------------------------------------- */
/* XS and SM Only */
/* ----------------------------------------------- */

@media (max-width: 767px) {

    .site-logo img {
      margin:20px auto;
    }
    #social-icons {
			margin-bottom:20px;
    }
    /*.online-banking-container {
      background:#fff;
      padding:15px 0;
    }*/
		.ob-btn-container {
			padding-top:20px;
			margin-left:auto;
			margin-right:auto;
		}
		.routing-number {
			text-align:center;
			margin-top:5px;
			margin-bottom:10px;
		}
		.rate-bar ul {
			padding-left:0;
		}
		.footer-text {
			margin-top:0;
		}
		.footer-logos {
				margin-top:00px;
		}
		.logo-anniversary {
			text-align:left;
		}
		.logo-anniversary img {
			padding-top:0 !important;
		}
		.e-delivery-title,
		.e-delivery-buttons {
			max-width:400px;
			margin:0 auto;
		}
		.e-delivery-buttons li {
			display: block;
		}
		.e-delivery-buttons a.btn {
			width:100%;
		}
		.e-delivery-buttons a.btn-secondary {
				margin-bottom:15px;
		}
	.card-pointe-title,
	.card-pointe-button {
		max-width:400px;
		margin:0 auto;
	}

}


/* ----------------------------------------------- */
/* MD and wider */
/* ----------------------------------------------- */

@media (min-width: 768px) {

    /* ----- List styles ----- */

    .columns-md-2 {
        -webkit-columns: 2;
        columns: 2;
    }
    .columns-md-3 {
        -webkit-columns: 3;
        columns: 3;
    }
    .columns-md-4 {
        -webkit-columns: 4;
        columns: 4;
    }

	header {
		background-image: none;
	}
	.header-row-1 {
		background-color: #12826c;
	}
	.top-nav .nav-link {
        padding-left:.75rem;
        padding-right: .75rem;
    }
    .top-nav a {
        color:#fff;
    }
    .top-nav a:hover {
        text-decoration: underline;
	}
	.top-routing-number {
		color:#fff; 
		padding:.5rem 1rem
	}
	.site-search {
		margin-bottom:0;
    }
    
    .header-quick-links {
        margin-bottom:0;
    }

	.online-banking-container {
		padding-top:7px;
		padding-bottom:7px;
    }
    
    .fb-page {
        margin:30px 0;
    }

    /* --------------- Home News --------------- */

    .home-news .news-item > a,
    .news-content .news-item > a {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .home-news .news-item-image,
    .news-content .news-item-image {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
        margin-top:.3125rem;
        margin-right:20px;
    }
    .home-news .news-item-caption,
    .news-content .news-item-caption {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    /* --------------- Interior Pages --------------- */

    .child-page-header h1 {
        font-size: 3rem;
    }

    /* Site Map */
	
	ul.CMSSiteMapList {
		overflow: hidden;
		width: 100%;
	}
	.page-content > .CMSSiteMapList > li {
		float: left;
		width: 48%;
		margin: 0 2% 1rem 0;
    }
    
    /* --------------- Bing Maps Locations ---------------*/

    .locations-container {
    	width:100%;
    }
    #BingMap_map {
        float:left !important;
    	width:67% !important;
    	margin-bottom:0;
    }
    .LocationList {
    	width:33%;
    	float:left;
      height:500px;
    	overflow:auto;
    	padding: 15px;
      background-color: #fff;
      border:1px solid #e6e6e6;
      border-left: 0 none;
		}
		.logo-anniversary {
			text-align:center;
		}
	
}


/* ----------------------------------------------- */
/* MD Only */
/* ----------------------------------------------- */

@media (min-width: 768px) and (max-width: 991px) {

      .site-logo img {
        margin-left:auto;
        margin-right:auto;
      }
			.ob-btn-container {
				margin-left:auto;
				margin-right:auto;
			}
			.ob-btn {
				margin-bottom:20px;
			}
      /*.online-banking-md {
        background:#f2f7ff;
      }*/
      /*.online-banking h2 {
        margin-bottom:0;
      }*/
			.routing-number {
				display: none;
			}

	/* ----- Site Search Drop Down ----- */

	#site-search-dd-btn {
        background-color: #fff;
        color:#c82288;
        padding:0;
        border: 1px solid #cfdeee;
        width:2.25rem;
        height: 2.25rem;
        border-radius: 50%;
        outline: 0 none;
        cursor: pointer;
        -webkit-transition: box-shadow 0.3s;
        transition: box-shadow 0.3s;
    }
    #site-search-dd-btn:hover,
    #site-search-dd-btn:focus {
        background-color: #c82288;
		color:#fff;
		border-color: transparent;
    }
    #site-search-dd-btn.dropdown-toggle::after {
        display: none;
    }
    #site-search-dd-btn svg {
        width:1.25rem;
        height:1.25rem;
    }
	.site-search-dd-container .dropdown-menu {
		left:auto !important;
		right:0;
		font-size: 1rem;
		width:300px;
		margin-top:6px;
        border:10px solid #e5eef6;
        padding: 0;
		border-radius: 0 0 5px 5px; 
	}
	.site-search-dd-container .site-search .searchTextBox {
		border:1px solid #fff;
		border-radius: 3px;
		font-size: 1.125rem;
		color:#373944;
		width:100%;
		padding:.3125rem 2.5rem .3125rem .625rem;
	}
	.site-search-dd-container .site-search .searchButton {
		width:1.4375rem;
		height:1.4375rem;
		position:absolute;
		top:.375rem;
		right:.4375rem;
    }
	
}


/* ----------------------------------------------- */
/* LG and wider */
/* ----------------------------------------------- */

@media (min-width: 992px) {

	.header-quick-links {
		position: relative;
		top:14px;
	}
	.online-banking-container {
		padding-top:70px;
	}
    .home-news {
        margin-left:30px;
    }
    .page-content {
        padding-right:30px;
				margin-bottom:50px;
    }
	
}


/* ----------------------------------------------- */
/* LG Only */
/* ----------------------------------------------- */

@media (min-width: 992px) and (max-width: 1199px) {
	
}


/* ----------------------------------------------- */
/* XL and wider */
/* ----------------------------------------------- */

@media (min-width: 1200px) {

    
}

@media (min-width: 1680px) {
    
    

}


/* ----------------------------------------------- */
/* MAIN NAV */
/* ----------------------------------------------- */

/* You can add the following classes to the li.dropdown parent of the div.dropdown-menu you want to affect:

dd-align-to-navbar will align the drop down to the whole navbar instead of the nav-item
dd-align-to-item-[grid-size] will override dd-align-to-navbar at larger grid-sizes to revert back to aligning to the nav-item
dd-align-right will align the drop down to the right instead of the left
dd-align-left-[grid-size] will override dd-align-right at larger grid-sizes to revert back to aligning the drop down to the left
dd-w-[grid size]-[width in px], for example, dd-w-lg-600 would make the dropdown menu 600px wide in the LG layout. Widths are inherited by wider grid layouts.
dd-single-col if you have both mm-solo and mm-button items in the same dropdown and want them to be stacked vertically in one column instead of appearing side-by-side

Additionally, for each mega menu column, add a class of 'mm-column', and the bootstrap classes to size each column accordingly, to the LI for that column. For example: mm-column col-md-6 col-lg

*/

/* ----- basic styling ----- */

#main-nav ul {
    /*list-style-type:none;*/
    /*list-style: none;*/
    /* IE Edge hack, see https://github.com/sonarwhal/sonarwhal.com/issues/210 and https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/104357/ */
    list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=); /* transparent 1x1 PNG */
    margin:0;
    padding:0;
}
#main-nav li.mm-column {
    display:block;
}
#main-nav .mm-column li:not(.mm-button) + .mm-button {
    margin-top: 1rem;
}
#main-nav .mm-column li + .mm-button ~ .mm-button {
    margin-top: 0;
}

/* ----- site-specific styling ----- */

#main-nav .mm-column {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
#main-nav .mm-column > a:first-child {
    /* mm-column heading */
    font-size: 1.25rem;
    display: block;
    color:#20285c;
    line-height: 1.2;
    padding-bottom:.25rem;
    border-bottom: 2px solid #e5eef6;
    margin-bottom:.5rem;
}
#main-nav .mm-column > ul > li > a:not(.btn),
.forced-link a {
    /* regular links within mm-column */
    display: block;
    padding:5px 0;
    color: #373944;
}
#main-nav .mm-column .btn {
    margin-bottom: 10px;
}
#main-nav .mm-hidden {
    display:none;
}


/* XS and SM only */
@media (max-width: 767px) {

    /* ----- basic styling ----- */

    #main-nav {
        padding:0;
    }
    #main-nav .navbar-toggler {
        width:100%;
        border:0;
        padding:10px 15px;
        text-align: left;
    }
	#main-nav .navbar-collapse {
        padding-left:15px;
        padding-right:15px;
    }
    #main-nav .navbar-nav {
        margin-left: -15px;
        margin-right: -15px;
        background-color: #fff;
    }
    #main-nav .nav-link {
        padding-left:15px;
        padding-right: 15px;
    }

    /* ----- site-specific styling ----- */

    #main-nav .navbar-toggler {
        background-color: #184890;
        color:#fff;
        font-weight: 700;
        font-size: 1.5rem; /* 24px */
        line-height: 1.96875rem;
        border-radius: 0;
    }
    #main-nav .navbar-toggler:focus {
        outline:0 none;
        background-color: #103e81;
    }
    #main-nav .navbar-toggler .fa-pull-right {
        width:2rem; /* to accommodate IE11 */
    }
    #main-nav .nav-link {
        border-bottom: 1px solid #e5eef6;
    }
    #main-nav .nav-link:hover,
    #main-nav .nav-link:focus {
        background-color:#f2f7ff;
        color:#20285c;
    }
    #main-nav .nav-link:focus {
        outline:none;
    }
    #main-nav li.nav-item.show .nav-link {
        background-color: #184890;
        color: #fff;
    }
    #main-nav .dropdown-menu {
        background-color: #f5f7fa;
        padding-top:1px;
        border:0 none;
        margin:0;
        padding-bottom: 1px;
    }
    #main-nav .mm-column > ul > li > a:not(.btn) {
        /* regular links within mm-column */
        display: block;
        padding:10px;
        border-bottom: 1px solid #e5eef6;
        color:#373944;
    }
    #main-nav .mm-column > ul > li:last-child > a:not(.btn) {
        border-bottom: 0 none;
    }
    #main-nav .mm-column > ul > li > a:hover {
        text-decoration: none;
        color:#373944;
        background-color: #fff;
    }

}

/* MD and wider */
@media (min-width: 768px) {

    /* ----- basic styling ----- */

    #main-nav .navbar-nav {
        position: relative;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #main-nav .dropdown-menu.row.show {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #main-nav .dropdown-item {
        white-space: normal;
    }
    #main-nav .btn {
        white-space: nowrap;
    }
    #main-nav .dropdown-toggle::after {
        display: none;
    }

    /* ----- alignment classes ----- */

    .dd-align-to-navbar {
        position: static;
    }
    .dd-align-right .dropdown-menu {
        left:auto !important;
        right: 0;
    }

    /* ----- width classes ----- */

    .dd-w-md-200 .dropdown-menu { width:200px; }
    .dd-w-md-250 .dropdown-menu { width:250px; }
    .dd-w-md-300 .dropdown-menu { width:300px; }
    .dd-w-md-400 .dropdown-menu { width:400px; }
    .dd-w-md-500 .dropdown-menu { width:500px; }
    .dd-w-md-600 .dropdown-menu { width:600px; }
    .dd-w-md-700 .dropdown-menu { width:700px; }

    /* ----- site-specific styling ----- */

    #main-nav {
        width:100%;
		padding:0;
        background-color:#184890;
        border-bottom:1px solid #fff;
    }
    #main-nav .navbar-nav {
        width:100%;
        -ms-flex-pack: distribute !important;
		justify-content: space-around !important;
    }
    #main-nav .navbar-nav > li.nav-item {
        text-align: center;
    }
    #main-nav .nav-item > a {
        /* main nav tabs */
		font-family: 'Poppins', sans-serif;
        font-size: 1.1875rem;
		font-weight: 700;
        line-height: 1;
        color:#fff;
		white-space: nowrap;
        padding:1rem;
        border:1px solid transparent;
        border-bottom: 0 none;
        margin-bottom: -1px;
    }
    #main-nav .nav-item > a:hover,
    #main-nav .nav-item > a:focus,
    #main-nav .nav-item.show > a,
    #main-nav .nav-item.item-current > a {
		background-color:#f2f7ff;
        color:#20285c;
		outline: 0 none;
		padding-top:.75rem;
		padding-bottom:1rem;
        margin-top:.25rem;
        border-color:#fff;
    }
    #main-nav .nav-item.show > a {
        background-color: #fff;
    }

    #main-nav .mm-column {
        margin-top: .75rem;
        margin-bottom: .75rem;
    }
    #main-nav .dropdown-menu {
        padding: .75rem .75rem;
        border-color: #fff;
        box-shadow: 0 6px 6px 0 rgba(0,0,0,0.1);
        background-color: #fff;
        background-image: linear-gradient(to bottom, #fff, #e8eef6);
        border-radius: 0;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
	
	#main-nav .nav-item > a {
		font-size: 1.2rem;
		padding-left: 0.8rem;
		padding-right: 0.8rem;
	}
	
}

/* LG and wider */
@media (min-width: 992px) {

    /* ----- width classes ----- */

    .dd-w-lg-200 .dropdown-menu { width:200px; }
    .dd-w-lg-250 .dropdown-menu { width:250px; }
    .dd-w-lg-300 .dropdown-menu { width:300px; }
    .dd-w-lg-400 .dropdown-menu { width:400px; }
    .dd-w-lg-500 .dropdown-menu { width:500px; }
    .dd-w-lg-600 .dropdown-menu { width:600px; }
    .dd-w-lg-700 .dropdown-menu { width:700px; }
    .dd-w-lg-800 .dropdown-menu { width:800px; }
    .dd-w-lg-900 .dropdown-menu { width:900px; }

    /* ----- alignment classes ----- */

    .dd-align-to-item-lg {
        position: relative !important;
    }
    .dd-align-left-lg .dropdown-menu {
        left:0 !important;
        right:auto !important;
    }

    /* ----- site-specific styling ----- */

    #main-nav .nav-item > a {
        /* main nav tabs */
        font-size: 1.4rem;
		padding-left:1.5rem;
		padding-right:1.5rem;
    }

}
/* XL and wider */
@media (min-width: 1200px) {

    /* ----- width classes ----- */
    
    .dd-w-xl-200 .dropdown-menu { width:200px; }
    .dd-w-xl-250 .dropdown-menu { width:250px; }
    .dd-w-xl-300 .dropdown-menu { width:300px; }
    .dd-w-xl-400 .dropdown-menu { width:400px; }
    .dd-w-xl-500 .dropdown-menu { width:500px; }
    .dd-w-xl-600 .dropdown-menu { width:600px; }
    .dd-w-xl-700 .dropdown-menu { width:700px; }
    .dd-w-xl-800 .dropdown-menu { width:800px; }
    .dd-w-xl-900 .dropdown-menu { width:900px; }
    .dd-w-xl-1000 .dropdown-menu { width:1000px; }
    .dd-w-xl-1100 .dropdown-menu { width:1100px; }

    /* ----- alignment classes ----- */

    .dd-align-to-item-xl {
        position: relative !important;
    }
    .dd-align-left-xl .dropdown-menu {
        left:0 !important;
        right:auto !important;
    }


}


/* --------------- Carousel --------------- */

#carousel-homepage::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	height: 6px;
	height: 0.5vw;
	width: 100%;
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.1), transparent);
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent);
	z-index: 10;
}
#carousel-homepage::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	height: 6px;
	height: 0.5vw;
	width: 100%;
	background-image: -webkit-linear-gradient(top, transparent, rgba(0,0,0,0.1));
	background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1));
	z-index: 10;
}
ul.carousel-inner {
	list-style: none;
	padding:0;
	margin:0;
}
#carousel-homepage .carousel-item img {
    width:100%;
}
#carousel-homepage .carousel-item > a {
    display: block;
}
#carousel-homepage .carousel-item > a:focus img {
    outline: 10px solid rgba(109,205,184,0.5);
    outline-offset: -10px;
}

@media (min-width: 768px) {
	
	/* Carousel Indicators */

    .carousel-indicators {
        margin:0 15px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .carousel-indicators li {
        width:26px;
        height:26px;
        line-height: 1;
        text-indent: 0;
        margin:0;
        position: static;
        background-color: transparent;
        opacity: 1;
    }
    .carousel-indicators li.active {
        background-color:transparent;
    }
    .carousel-indicators li::before,
    .carousel-indicators li::after {
        display: none;
    }
    .carousel-indicators button {
        width:20px;
        height:20px;
        padding:0;
        margin:3px;
        background-color:#fff;
        color:#184890;
        border: 3px solid #fff;
        border-radius: 10px;
        box-shadow:0 0 3px rgba(0,0,0,0.3);
        cursor: pointer;
        position: relative;
    }
    .carousel-indicators button:focus {
        outline:0 none;
        box-shadow: 0 0 0 3px #184890;
    }
    .carousel-indicators li.active button {
        background-color:#184890;
    }
    .carousel-indicators li.togglePausePlay {
        width:calc(2.5rem + 6px);
    }
    .carousel-indicators li.togglePausePlay button {
        width:2.5rem;
    }
    .carousel-indicators li.togglePausePlay button::after,
    .carousel-indicators li.togglePausePlay button[aria-label="Pause"]::after {
        content:'';
        display:block;
        width:12px;
        height: 12px;
        background: url(../images/play-pause-sprite.png) no-repeat 0 0 transparent;
        background-size: 12px 24px;
        position: absolute;
        top:1px;
        left:.675rem;
    }
    .carousel-indicators li.togglePausePlay button[aria-label="Play"]::after {
        background-position: 0 -12px;
    }

	
}



/* ----------------------------------------------- */
/* Print styles */
/* ----------------------------------------------- */

@media print {

}

/* --------------- For CMS --------------- */

.EditableTextEdit .btn {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
    cursor: text;
}
.EditableTextEdit .btn:not(:disabled):not(.disabled) {
    cursor: text;
}
.EditableTextEdit .phone-number {
    border: 1px solid red;
}
.EditableTextEdit div.row {
    border: 1px solid #ff0000;
    padding: 3px;
    margin-left: 0;
    margin-right: 0;
}
.EditableTextEdit div.row>p {
    width: 100%;
}
.EditableTextEdit div.col,
.EditableTextEdit div.col-auto,
.EditableTextEdit div.col-12 {
    border: 1px dashed #ff0000;
}

.EditableTextEdit .sr-only {
    border:1px dotted #ff0000;
    color:#ff0000;
    /* Unset sr-only styles to make visible */
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
    clip: auto;
    white-space: normal;
}
/*.EditMode .header-image-pattern {
    display: none;
}*/
.EditMode .child-page-header {
    background:transparent;
}
.EditMode .header-with-image .page-heading {
	bottom:0;
}
.EditMode .page-heading {
	padding:0;
}
