@charset "UTF-8";
.clearfix:after, #header:after, #header header:after, #page_type:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  zoom: 1;
  visibility: hidden;
}
.text-white, .text-white * {
  color: #FFFFFF !important;
}
/*=====================================
uses:
.element {
	@include prefixer(transform, scale(1.5), ms webkit spec);
}
=======================================*/
/*=====================================
uses:
.element {
	@include transform(scale(1.5));
}
=======================================*/
/*=====================================
uses:
.element {
	@include transition(all 300ms ease);
}
=======================================*/
/*=====================================
uses:
.element {
	font-size:em(20px);
}
=======================================*/
/*=====================================
uses:
.element {
	line-height:lh(20px,24px);
}
=======================================*/
html.js {
  margin-top: 0px !important;
}
#guides {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
}
#guides > * {
  position: relative;
  z-index: 1000000;
}
#guides > *:before {
  display: block;
  position: absolute;
  content: "";
  background: #0ff;
  width: 1px;
  top: 0;
  height: 100vh;
}
#guides .before:before {
  right: 100%;
}
#guides .middle:before {
  left: 50%;
}
#guides .after:before {
  left: 100%;
}
:root {
  --color-blue: $blue;
  --color-green: $green;
  --color-grey: $grey;
  --color-dkgrey: $dkgrey;
  --color-dkblue: $dkblue;
  --color-black: $black;
  --color-white: $white;
}
/*---------------------------------------------------
 Global 
---------------------------------------------------*/
.wrap {
  padding: 0 1.5%;
}
.page-width {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  display: block;
}
.bg-green {
  background: #539f3c;
}
.bg-blue {
  background: #0071b3;
}
.bg-dkblue {
  background: #101f2d;
}
.bg-grey {
  background: #bcbdc0;
}
.bg-dkgrey {
  background: #696b6d;
}
.fill-green {
  fill: #539f3c;
}
.fill-blue, #header .find-branch a:hover .fill-green {
  fill: #0071b3;
}
.fill-dkblue {
  fill: #101f2d;
}
.fill-grey {
  fill: #bcbdc0;
}
.fill-white {
  fill: #FFFFFF;
}
sup, sub {
  font-size: 70%;
}
#dev-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #a00;
  color: #FFFFFF;
  padding: 8px;
  z-index: 99999;
  font-size: 16px;
  line-height: 1;
  border-radius: 0 5px 0 0;
}
#footer, #container {
  overflow: hidden;
}
@media (min-width: 801px) {
  .d-hide {
    display: none !important;
  }
}
@media (max-width: 800px) {
  .m-hide {
    display: none !important;
  }
  body {
    background: #FFFFFF url(../images/head-bg.png) center top no-repeat;
    background-size: cover;
  }
}
.sr-only {
  display: none;
}

/*-- External Link Modal --*/
.notice-modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}
.notice-modal.show {
  visibility: visible;
  opacity: 1;
  -ms-transition: all ease 200ms;
  -webkit-transition: all ease 200ms;
  transition: all ease 200ms;
}
.notice-modal .notice-modal-content {
  display: block;
  background: #FFFFFF;
  font-size: 16px;
  padding: 30px;
  position: relative;
  text-align: center;
  max-height: 95vh;
  border-radius: 6px;
  box-shadow: 1px 1px 11px -1px rgba(0, 0, 0, 0.6);
  max-width: 600px;
  overflow-x: hidden;
  overflow-y: auto;
}
.notice-modal .notice-modal-title {
  font-size: 1.875em;
  color: #0071b3;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #bcbdc0;
  line-height: 1.1;
}
.notice-modal .notice-modal-btn {
  margin: 0 5px !important;
  border-radius: 4px;
}
.notice-modal .notice-modal-close {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  color: #1a1a1a;
  border: none !important;
  line-height: 0.7;
  font-size: 1.625em;
}
.notice-modal .notice-modal-close:hover {
  color: #000000;
  border: none !important;
  text-decoration: none !important;
}
@media (max-width: 500px) {
  .notice-modal .notice-modal-content {
    padding: 25px 3%;
    font-size: 14px;
  }
}
/*-- Expandable Blocks --*/
.expandable-block {
  padding: 0 20px;
}
.expandable-block.bg-none {
  background: none;
}
.expandable-block.bg-blue {
  background: #0071b3;
  color: #FFFFFF;
}
.expandable-block.bg-blue * {
  color: #FFFFFF;
}
.expandable-block.bg-blue .expandable-control {
  background: none;
}
.expandable-block .expandable-title {
  display: block;
  position: relative;
  padding: 20px 30px 20px 0;
  margin: 0;
}
.expandable-block .expandable-control {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.75em;
  height: 0.75em;
  background: #0071b3;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -ms-transition: all ease 200ms;
  -webkit-transition: all ease 200ms;
  transition: all ease 200ms;
}
.expandable-block .expandable-control svg {
  display: block;
  width: 50%;
  height: 50%;
  -ms-transition: all ease 200ms;
  -webkit-transition: all ease 200ms;
  transition: all ease 200ms;
}
.expandable-block.open .expandable-control svg {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.expandable-block .expandable-content {
  display: none;
  padding-bottom: 20px;
}
.expandable-block .expandable-content .vfbp-form {
  padding: 0;
  background: none;
}
/*-- Mobile Search --*/
.mobile-search-fields {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  margin-top: 10px;
  padding: 0 60px 0 10px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.mobile-search-fields .search-input {
  flex-grow: 1;
}
.mobile-search-fields .search-input input {
  display: block;
  border: none;
  padding: 0 10px;
  height: 100%;
  width: 100%;
  margin: 0;
}
.mobile-search-fields .search-action button {
  display: block;
  width: 100%;
  height: 100%;
  background: #539f3c;
  border: none;
  color: #FFFFFF;
}
/*-- Header --*/
#header {
  position: relative;
  background: #FFFFFF;
}
#header header {
  padding: 8px 0 15px;
}
#header .logo {
  display: block;
  float: left;
  width: 460px;
}
#header .logo svg {
  display: block;
  width: 100%;
  max-height: 165px;
}
#header .logo img {
  display: block;
  width: 100%;
}
#header .header-right {
  float: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 8px;
}
#header .eyebrow {
  display: block;
  font-size: 1em;
}
#header .eyebrow ul {
  display: block;
  list-style: none;
  margin: 0;
}
#header .eyebrow li {
  display: block;
  position: relative;
  margin: 0;
}
#header .eyebrow a {
  display: block;
  -ms-transition: all ease 200ms;
  -webkit-transition: all ease 200ms;
  transition: all ease 200ms;
  color: #101f2d;
}
#header .eyebrow a:hover {
  text-decoration: none;
}
#header .eyebrow > ul {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
#header .eyebrow > ul > li {
  margin-right: 26px;
}
#header .eyebrow .level-1 {
  font-size: 1em;
  padding: 10px 5px 5px;
}
#header .eyebrow li:hover > .level-1, #header .eyebrow .level-1:hover {
  color: #0071b3;
  text-decoration: none;
}
#header .eyebrow .level-1.current, #header .eyebrow .level-1.section {
  color: #0071b3;
  font-style: italic;
  text-decoration: none;
}
#header .eyebrow .dropdown {
  position: absolute;
  z-index: 999;
  line-height: 1.1;
  left: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 0 0 5px 5px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(188, 189, 192, 0.3);
  border-bottom: 4px solid #539f3c;
  width: 200px;
  box-shadow: 0 1px 3px -1px #000000;
}
#header .eyebrow .dropdown a {
  text-align: center;
  font-size: 0.8333333333em;
  padding: 15px 8px;
  position: relative;
}
#header .eyebrow .dropdown a:hover {
  background: #fcfcfc;
}
#header .eyebrow .dropdown a:before, #header .eyebrow .dropdown a:after {
  display: block;
  position: absolute;
  top: 5px;
  bottom: 5px;
  width: 0;
  background: #0071b3;
  content: "";
  left: 0;
  opacity: 0;
  -ms-transition: all ease 200ms;
  -webkit-transition: all ease 200ms;
  transition: all ease 200ms;
}
#header .eyebrow .dropdown a:after {
  left: auto;
  right: 0;
}
#header .eyebrow .dropdown a:hover:before, #header .eyebrow .dropdown a:hover:after {
  opacity: 1;
  width: 4px;
}
#header .phone {
  display: block;
  font-size: 1.6666666667em;
  font-weight: 700;
  line-height: 1;
  margin-right: 30px;
}
#header .phone a {
  display: block;
  color: #101f2d;
}
#header .phone a:hover {
  text-decoration: none;
  color: #101f2d;
  cursor: text;
}
#header .header-search {
  position: relative;
  border: 1px solid #bcbdc0;
  width: 175px;
}
#header .header-search .search-input {
  margin-right: 40px;
}
#header .header-search .search-input input {
  display: block;
  height: 40px;
  padding: 0 0 0 10px;
  width: 100%;
  border: none;
}
#header .header-search button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
#header .header-search button svg {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: 100%;
  -ms-transition: all ease 200ms;
  -webkit-transition: all ease 200ms;
  transition: all ease 200ms;
}
#header .header-search button path {
  -ms-transition: all ease 200ms;
  -webkit-transition: all ease 200ms;
  transition: all ease 200ms;
}
#header .header-search button:hover path {
  fill: #539f3c;
}
#header .find-branch {
  float: right;
  clear: right;
  margin-top: 55px;
}
#header .find-branch a {
  display: block;
  width: 250px;
}
#header .find-branch svg {
  display: block;
  width: 100%;
  max-height: 56px;
}
#header .find-branch .fill-green {
  -ms-transition: all ease 200ms;
  -webkit-transition: all ease 200ms;
  transition: all ease 200ms;
}
#header .mobile-btns {
  float: right;
  line-height: 1;
  font-size: 0.8888888889em;
  text-transform: uppercase;
}
#header .mobile-btns .toggle-login {
  display: block;
  background: #101f2d;
  position: relative;
  margin-top: 10px;
  z-index: 999;
  color: #FFFFFF;
  text-align: center;
  padding: 0.75em 0;
}
#header .mobile-btns .toggle-login:hover {
  text-decoration: none;
}
#header .nav-toggle {
  display: block;
  background: #539f3c;
  position: relative;
  padding: 0.75em;
  color: #FFFFFF;
}
#header .nav-toggle span {
  display: block;
  overflow: hidden;
}
#header .nav-toggle .bar {
  height: 5px;
  background: #FFFFFF;
  margin-top: 5px;
  position: relative;
}
#header .nav-toggle:hover, #header .nav-toggle:focus, #header .nav-toggle:active {
  text-decoration: none !important;
}
@media (max-width: 1200px) {
  #header .logo {
    max-width: 350px;
  }
  #header .phone {
    font-size: 1.3888888889em;
  }
  #header .eyebrow {
    font-size: 0.8333333333em;
  }
  #header .find-branch a {
    width: 200px;
  }
  #header .find-branch {
    margin-top: 30px;
  }
}
@media (min-width: 1025px) {
  #header .mobile-btns {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  #header {
    padding: 0;
  }
  #header header {
    padding: 0;
  }
  #header .logo {
    padding: 10px 0 10px 1.5%;
    width: 290px;
  }
  #header .eyebrow, #header .header-search, #header .find-branch {
    display: none;
  }
}
@media (max-width: 800px) {
  #header {
    background: #FFFFFF url(../images/head-bg-min.png) center top no-repeat;
    background-size: 100% auto;
  }
}
@media (max-width: 600px) {
  #header .logo {
    width: 200px;
    padding: 5px;
  }
  #header .mobile-btns {
    font-size: 0.6666666667em;
    font-weight: 400;
  }
  #header .nav-toggle .bar {
    height: 3px;
  }
}
@media (max-width: 500px) {
  #header .mobile-btns {
    width: 50px;
  }
  #header .mobile-btns .toggle-login {
    margin: 8px 0 0;
  }
  #header .nav-toggle .bar1 {
    margin-top: 0;
  }
  #header .nav-toggle .title {
    display: none;
  }
  #header .phone {
    font-size: 1.1111111111em;
    margin-right: 10px;
  }
}
@media (max-width: 400px) {
  #header .logo {
    width: 220px;
  }
  #header .header-right {
    width: 100%;
    justify-content: center;
  }
  #header .phone {
    margin: 0;
  }
}
#login-box {
  position: absolute;
  right: 0;
  background: #0071b3;
  padding: 20px;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  -ms-transition: all ease 100ms;
  -webkit-transition: all ease 100ms;
  transition: all ease 100ms;
  font-size: 16px;
}
body.show-login #login-box {
  visibility: visible;
  opacity: 1;
}
#login-box h4 {
  font-size: 1.25em;
  margin: 0;
  line-height: 1;
  color: #FFFFFF;
}
#login-box #account-forms .account-form, #login-box #account-forms label {
  display: none;
}
#login-box .login-field {
  margin-top: 6px;
}
#login-box .login-field input, #login-box .login-field select {
  display: block;
  background: #FFFFFF;
  border: none;
  padding: 0 0 0 10px;
  height: 45px;
  font-size: 1.0625em;
  color: #000000;
  outline: none;
  width: 100%;
}
#login-box .login-field input:hover, #login-box .login-field input:focus, #login-box .login-field input:active, #login-box .login-field select:hover, #login-box .login-field select:focus, #login-box .login-field select:active {
  outline: none;
}
#login-box .login-action {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#login-box .login-action .link {
  width: 100%;
  line-height: 1.1;
}
#login-box .login-action a, #login-box .login-action a:hover {
  color: #FFFFFF;
}
#login-box .login-action input {
  display: block;
  margin-left: 10px;
  font-size: 1.0625em;
  min-width: 90px;
}
#login-box .login-actions {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 6px;
}
#login-box .login-actions .action {
  width: 48%;
}
#login-box .login-actions a.btn, #login-box .login-actions input {
  width: 100%;
  margin: 0;
}
#login-box .bottom-link {
  width: 100%;
  line-height: 1.1;
  font-size: 0.7222222222em;
  margin-top: 8px;
}
#login-box .bottom-link a, #login-box .bottom-link a:hover {
  color: #FFFFFF;
}
#login-box .acct-type-field {
  position: relative;
  background: #dad9d9;
}
#login-box .acct-type-field label {
  position: absolute;
  padding-top: 5px;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c5c4c4;
  width: 40px;
  -ms-transition: all ease 200ms;
  -webkit-transition: all ease 200ms;
  transition: all ease 200ms;
}
#login-box .acct-type-field label svg {
  display: block;
  width: 18px;
  height: 13px;
}
#login-box .acct-type-field select {
  cursor: pointer;
  background: none;
  -webkit-appearance: none;
  appearance: none !important;
  -moz-appearance: none;
}
#login-box .acct-type-field select:hover + label {
  background: #696b6d;
}
#login-box .acct-type-field select::-ms-expand {
  display: none;
}
#login-box #current-login-account-type {
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  #login-box {
    background: #101f2d;
  }
  #login-box .login-actions a.btn {
    background: #0071b3;
  }
  #login-box .login-actions a.btn:hover {
    background: #3f97cb;
  }
}
@media (min-width: 801px) {
  #login-box {
    max-width: 310px;
  }
  #login-box #account-forms .account-form {
    display: none;
  }
  #login-box #account-forms .account-form.current {
    display: block !important;
  }
}
@media (max-width: 800px) {
  #login-box .login-action input {
    background: #0071b3;
  }
  #login-box #account-forms .account-form.m-current {
    display: block;
  }
  #login-box .mobile-login-select a {
    display: block;
    line-height: 1.1;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 0;
  }
  #login-box .mobile-login-select a * {
    color: #FFFFFF;
  }
  #login-box .mobile-login-select a:hover {
    text-decoration: none;
  }
  #login-box .mobile-login-select span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 280px;
  }
  #login-box .mobile-login-select i {
    font-size: 0.875em;
    -ms-transition: all ease 200ms;
    -webkit-transition: all ease 200ms;
    transition: all ease 200ms;
  }
  #login-box .mobile-login-select .m-current i {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  #login-box .mobile-login-select.first a {
    border: none;
  }
}
/*-- Main --*/
#main-wrap {
  overflow: hidden;
}
#main {
  min-height: calc(100vh - 747px);
}
#page_type {
  padding: 4% 0;
}
@media (max-width: 800px) {
  #main-wrap {
    padding: 0 0 5%;
  }
  #page_type {
    background: rgba(255, 255, 255, 0.9);
    padding-left: 1.5%;
    padding-right: 1.5%;
  }
}
/*-- Footer --*/
#footer {
  background: #101f2d;
}
#footer footer {
  padding: 60px 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#footer * {
  color: #FFFFFF;
}
#footer nav {
  font-size: 1.2222222222em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
}
#footer nav ul {
  display: block;
  list-style: none;
  margin: 0;
  padding-right: 20px;
}
#footer nav li {
  display: block;
  margin: 0 0 15px;
}
#footer .foot-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 10px;
}
#footer .social {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
#footer .social li {
  display: block;
  margin: 0 0 0 14px;
}
#footer .social li:first-child {
  margin-left: 0;
}
#footer .social a {
  display: block;
  position: relative;
  width: 48px;
  height: 70px;
  padding: 12px;
}
#footer .social a:before {
  position: absolute;
  top: 4px;
  right: 4px;
  height: 40px;
  width: 40px;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background: #539f3c;
  opacity: 0;
  content: "";
  -ms-transition: all ease 200ms;
  -webkit-transition: all ease 200ms;
  transition: all ease 200ms;
}
#footer .social a:hover:before {
  opacity: 1;
}
#footer .social a svg.icon {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
}
#footer .social a svg.marker {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
#footer .social a path {
  fill: #FFFFFF;
}
#footer .affiliates {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
  list-style: none;
  margin: auto 0 0;
}
#footer .affiliates li {
  display: block;
  margin: 0 0 5px 10px;
}
#footer .affiliates .flex-breaker {
  width: 100%;
  margin: 0;
}
#footer .affiliates a {
  display: block;
  -ms-transition: all ease 200ms;
  -webkit-transition: all ease 200ms;
  transition: all ease 200ms;
}
#footer .affiliates a:hover {
  text-decoration: none;
  opacity: 0.95;
}
#footer .bank-routing-number {
  font-size: 1em;
  margin-top: 20px;
  text-align: right;
}
#footer .copyright {
  font-size: 0.6666666667em;
  line-height: 1;
  margin-top: 10px;
  text-align: right;
}
@media (max-width: 800px) {
  #footer footer {
    max-width: 650px;
    align-items: stretch;
  }
  #footer nav {
    flex-direction: column;
    width: auto;
    font-size: 1.1111111111em;
    justify-content: flex-start;
  }
  #footer nav ul {
    padding: 0;
  }
  #footer nav li {
    margin-bottom: 8px;
    line-height: 1;
  }
  #footer .bank-routing-number {
    justify-self: flex-end;
    margin-top: auto;
  }
}
@media (max-width: 700px) {
  #footer footer {
    padding-bottom: 20px;
  }
  #footer nav {
    font-size: 0.8333333333em;
  }
  #footer .affiliates {
    margin-top: 25px;
  }
}
@media (max-width: 500px) {
  #footer footer {
    flex-direction: column;
    align-items: stretch;
  }
  #footer nav {
    padding-bottom: 30px;
    align-items: center;
  }
  #footer nav li {
    text-align: center;
    padding: 0 10px;
  }
  #footer .foot-right, #footer .affiliates {
    align-items: center;
    justify-content: center;
  }
  #footer .bank-routing-number {
    text-align: center;
  }
  #footer .copyright {
    text-align: center;
  }
}
@media (min-width: 401px) and (max-width: 500px) {
  #footer nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
/*---------------------------------------------------
 Forms
---------------------------------------------------*/
.vfbp-form {
  margin-bottom: 30px;
}
.vfbp-form .vfb-col-12 {
  padding: 0;
}
.vfbp-form .vfb-form-control {
  min-height: 45px;
  border-radius: 0;
  background: #FFFFFF;
  border-color: #ccc;
}
.vfbp-form .vfb-fieldType-checkbox {
  margin-bottom: 15px;
}
.vfbp-form .form-heading {
  margin-top: 15px !important;
}
.vfbp-form.vfbp-form-horizontal .vfb-name-block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 0;
}
.vfbp-form.vfbp-form-horizontal .vfb-name-block > div {
  width: 50%;
  margin: 0 !important;
  padding-left: 15px;
}
.vfbp-form.vfbp-form-horizontal .vfb-name-block > div:first-child {
  padding-left: 0;
}
@media (min-width: 768px) {
  .vfbp-form.vfbp-form-horizontal .vfb-col-12.vfb-fieldType-submit {
    padding-left: 16.66666667%;
  }
}
.tour-form .vfb-col-12 > .vfb-form-group:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  zoom: 1;
  visibility: hidden;
}
.tour-form .vfb-name-block {
  display: block !important;
}
.tour-form .vfb-name-block > div {
  width: auto;
  padding-left: 0;
}
.tour-form .vfb-form-group > .vfb-control-label {
  display: none;
}
.tour-form .vfb-fieldType-radio {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.tour-form .vfb-fieldType-radio > label {
  margin: 0 10px 0 0;
  padding-left: 10px;
}
.tour-form .vfb-help-block {
  display: none !important;
}
@media (max-width: 767px) {
  .tour-form .vfb-name-block div {
    padding: 0;
  }
}
/*---------------------------------------------------
 Tables
---------------------------------------------------*/
.ninja_table_wrapper {
  overflow-x: auto !important;
}
table.pcb-table {
  border: none !important;
  margin-bottom: 20px !important;
}
table.pcb-table thead {
  /*tr th:first-child								{
background:none !important; }*/
  /*th.ninja_clmn_nm_new_era_checking				{
width:130px; }*/
}
table.pcb-table thead tr.footable-header {
  background: #0071b3;
}
table.pcb-table thead th {
  background: none !important;
  vertical-align: bottom !important;
  color: #FFFFFF !important;
  padding-bottom: 6px !important;
  font-size: 18px !important;
  white-space: nowrap;
}
table.pcb-table thead th.footable-first-visible {
  border-radius: 4px 0 0 !important;
}
table.pcb-table thead th.footable-last-visible {
  border-radius: 0 4px 0 0 !important;
}
table.pcb-table tbody {
  /*tr:nth-child(odd) td:first-child				{
background:#e5e5e6 !important; }
		tr:nth-child(even) td:first-child				{
background:$green !important; }
		tr:first-child									{
			td:first-child								{
border-radius:4px 0 0; }
			td:last-child								{
border-radius:0 4px 0 0; }
		}*/
}
table.pcb-table tbody tr.footable-header {
  background: #0071b3;
}
table.pcb-table tbody tr td {
  color: #101f2d !important;
  font-weight: 700;
  font-size: 16px !important;
}
table.pcb-table tbody tr:first-child td {
  border-top: 3px solid #fff !important;
}
table.pcb-table tbody tr:nth-child(odd) td {
  background: #e5e5e6 !important;
  width: 19.25%;
  border-right: 3px solid #fff !important;
}
table.pcb-table tbody tr:nth-child(odd) td.footable-last-visible {
  border-right: none !important;
}
table.pcb-table tbody tr:nth-child(even) td {
  background: #cfd0d3 !important;
  width: 19.25%;
  border-right: 3px solid #fff !important;
}
table.pcb-table tbody tr:nth-child(even) td.footable-last-visible {
  border-right: none !important;
}
table.pcb-table tbody tr td:first-child {
  font-weight: 700;
  text-align: left !important;
  color: #005180 !important;
  font-size: 15px !important;
  width: 23%;
}
table.pcb-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 4px;
}
table.pcb-table tbody tr:last-child td:last-child {
  border-radius: 0 0 4px 0;
}
table.pcb-table-new {
  border-top: none !important;
  border-bottom: none !important;
  border-radius: 0 !important;
  margin-bottom: 20px !important;
}
table.pcb-table-new thead {
  /*th.ninja_clmn_nm_new_era_checking				{
width:130px; }*/
}
table.pcb-table-new thead th {
  background: none !important;
  vertical-align: bottom !important;
  color: #FFFFFF !important;
  padding-bottom: 6px !important;
  font-size: 18px !important;
  white-space: nowrap;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}
table.pcb-table-new thead th.footable-first-visible {
  border-radius: 0 !important;
}
table.pcb-table-new thead th.footable-last-visible {
  border-radius: 0 !important;
}
table.pcb-table-new tbody {
  /*tr:nth-child(odd) td:first-child				{
background:#e5e5e6 !important; }
		tr:nth-child(even) td:first-child				{
background:$green !important; }
		tr:first-child									{
			td:first-child								{
border-radius:4px 0 0; }
			td:last-child								{
border-radius:0 4px 0 0; }
		}*/
}
table.pcb-table-new tbody tr td {
  color: #101f2d !important;
  font-weight: 600;
  font-size: 16px !important;
}
table.pcb-table-new tbody tr:first-child td {
  border-top: 3px solid #101f2d !important;
}
table.pcb-table-new tbody tr td {
  width: 19.25%;
  /*border-right: 1px solid #fff !important;*/
  /*&.footable-last-visible 					{
border-right: none !important; }*/
}
table.pcb-table-new tbody tr td a.btn.btn-blue {
  color: #fff !important;
  border-radius: 0 !important;
  padding: 10px 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  margin: 3px 0;
}
table.pcb-table-new tbody tr td a.chart-link {
  font-size: 14px;
}
table.pcb-table-new tbody tr td:first-child {
  font-weight: 700;
  text-align: left !important;
  color: #005180 !important;
  font-size: 15px !important;
  width: 23%;
}
table.pcb-table-new tbody tr:last-child td:first-child {
  border-radius: 0;
}
table.pcb-table-new tbody tr:last-child td:last-child {
  border-radius: 0;
}
table.pcb-table-new tbody tr.ninja_table_row_3 .fifty-plus, table.pcb-table-new tbody tr.ninja_table_row_3 .penn-vip {
  padding: 0.5em 0 0 !important;
}
table.pcb-table-new tbody tr.ninja_table_row_3 .fifty-plus a.btn.btn-blue, table.pcb-table-new tbody tr.ninja_table_row_3 .penn-vip a.btn.btn-blue {
  display: block;
  margin: 8px 0 0;
  text-transform: none;
  padding: 8px 16px;
  font-size: 14px;
}
.rate-table-container {
  width: 100%;
  overflow-x: auto;
}
table.pcb-rate-table {
  width: 99%;
}
table.pcb-rate-table thead tr th {
  padding: 0.5em 0.7em 6px;
  text-align: center;
  font-size: 16px !important;
}
table.pcb-rate-table tbody tr td {
  padding: 0.5em 0.7em;
  text-align: center;
}
table.pcb-rate-table tbody tr td:first-child {
  text-align: left;
}
/*---------------------------------------------------
 Related Articles 
---------------------------------------------------*/
.pt-cv-wrapper {
  margin-top: 25px;
}
.pt-cv-wrapper .pt-cv-content-item {
  padding-bottom: 40px;
}
.pt-cv-wrapper .pt-cv-content-item .pt-cv-title {
  font-size: 22px !important;
  line-height: 28px;
}
.pt-cv-wrapper .pt-cv-content-item .pt-cv-title a {
  border: none;
  color: #101f2d;
}
.pt-cv-wrapper .pt-cv-content-item .pt-cv-title a:hover {
  border-bottom: 1px solid #101f2d;
}
.pt-cv-wrapper .pt-cv-content-item .pt-cv-thumbnail {
  margin-bottom: 17px !important;
}
.pt-cv-wrapper .pt-cv-content-item .pt-cv-readmore {
  margin-top: 16px;
  background-color: #101f2d !important;
}
.pt-cv-wrapper .pt-cv-content-item .pt-cv-readmore:hover {
  background-color: #539f3c !important;
}
