:root {
  --color-primary: #299c0a; /* Replace @brand-primary */
  --color-secondary: #00205c; /* Replace @brand-secondary */
}

/* automagic accordions */
button.expand-collapse {
  /* Assuming .btn, .btn-primary, and .btn-custom are predefined classes */
  /* Add their styles here if needed */
}

button.expand-collapse[aria-pressed='true'] .expand {
  display: none;
}

button.expand-collapse[aria-pressed='true'] .collapse {
  display: inline;
}

/* // question styles */
.js-accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  margin-top: 20px;
  padding: 16px 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5; /* Replace @line-height-computed */
  font-family: Arial, sans-serif; /* Replace @font-family-sans-serif */
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  color: white;
  background: #6c757d; /* Replace @brand-secondary */
  border: none;
  border-radius: 4px; /* Replace @border-radius-base */
}

.js-accordion__header:hover,
.js-accordion__header:active,
.js-accordion__header:focus {
  background: #6c757d; /* Replace @brand-secondary */
}

/* // any anchors inside the original QA content will have been moved to be inside the question button, so we need to remove them from the flexbox layout */
.js-accordion__header .hide-from-flexbox {
  position: absolute;
  top: 0;
}

/* // styles for expand/collapse icons -- requires non-empty data-icon-closed and data-icon-opened attributes to exist on the parent (.js-accordion) element */
.js-accordion__header .icon {
  display: none;
  flex: 0 0 auto;
  margin-left: 8px; /* Replace @half-grid-gutter-width */
}

.js-accordion__header .icon:not(.glyphicon) {
  position: relative;
  bottom: 1px;
  fill: white;
}

.js-accordion__header .icon.closed {
  width: 15px;
  height: 15px;
}

.js-accordion__header .icon.open {
  width: 15px;
  height: 15px;
}

/* // title closed */
.js-accordion__header[aria-expanded='false'] .icon:first-of-type {
  display: block;
}

.js-accordion__header[aria-expanded='false'] .glypicon:first-of-type {
  display: inline;
}

/* // title opened */
.js-accordion__header[aria-expanded='true'] {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.js-accordion__header[aria-expanded='true'] .icon:last-of-type {
  display: block;
}

.js-accordion__header[aria-expanded='true'] .glyphicon:last-of-type {
  display: inline;
}

.js-accordion__header.open {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.js-accordion[data-icon-closed=''] .js-accordion__header::after {
  margin-left: 8px; /* Replace @half-grid-gutter-width */
  font-size: 24px;
  font-weight: 700;
}

.js-accordion[data-icon-closed=''][aria-expanded='false']::after {
  content: '+';
}

.js-accordion[data-icon-closed=''][aria-expanded='true']::after {
  content: '–';
}

.js-accordion .js-accordion__panel {
  background: #f8f9fa; /* Replace @gray-lighter */
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: #dee2e6; /* Replace @table-border-color */
  border-radius: 0 0 4px 4px; /* Replace @border-radius-base */
}

.js-accordion .js-accordion__panel[aria-hidden='true'] {
  display: none;
}

.js-accordion .js-accordion__panel .inner {
  padding: 20px 23px 30px 23px;
  overflow: hidden;
}

.js-accordion .js-accordion__panel .inner > *:last-child,
.js-accordion .js-accordion__panel .inner > ul > li:last-child,
.js-accordion .js-accordion__panel .inner > ol > li:last-child {
  margin-bottom: 0;
}

.animated-accordion__header {
  transition: border-radius 150ms ease;
}

/* // title in content hidden by default */
.js-accordion__title,
.animated-accordion__title {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* // animated panels visible state */
.animated-accordion__panel {
  display: block;
  overflow: hidden;
  opacity: 1;
  transition: visibility 0s ease, max-height 0.5s ease, opacity 0.5s ease;
  max-height: 1000em;
  /* // magic number for max-height = enough height */
  visibility: visible;
  transition-delay: 0s;
  margin: 0;
  padding: 0;
}

/* // animated panels hidden state */
.animated-accordion__panel.open {
  max-height: none;
}

.animated-accordion__panel.open.transitioning {
  max-height: 100em;
}

[aria-hidden='true'].animated-accordion__panel {
  display: block;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.5s, 0s, 0s, 0s;
  margin: 0;
  padding: 0;
}

.calculator {
  /* padding: @margin-content-bottom-2x @half-grid-gutter-width; */
  color: #212529;
  /* background-color: @brand-primary; */
  /* border-radius: @border-radius-base; */
}

@media (min-width: 1023px) {
  .calculator {
    /* padding-right: @grid-gutter-width;
    padding-left: @grid-gutter-width; */
  }
}

.calculator .flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  /* margin-top: -@margin-content-bottom-2x; */
}

.calculator .flex-wrapper .col {
  /* margin-top: @margin-content-bottom-2x; */
}

.calculator .flex-wrapper .col:first-child {
  /* flex: 0 0 @btn-max-width; */
}

/* @media (min-width: (@btn-max-width + @grid-gutter-width)) {
  .calculator .flex-wrapper .col:first-child {
    margin-right: @grid-gutter-width;
  }
} */

@media (min-width: 1023px) {
  .calculator .flex-wrapper .col:first-child {
    margin-right: 90px;
  }
}

.calculator .flex-wrapper .col:last-child {
  flex: 1 1 50%;
}

.calculator h1,
.calculator .h1,
.calculator h2,
.calculator .h2,
.calculator h3,
.calculator .h3,
.calculator h4,
.calculator .h4,
.calculator h5,
.calculator .h5,
.calculator h6,
.calculator .h6,
.calculator label {
  color: inherit;
}

.calculator .form-control {
  border-color: #212529;
}

.calculator .disclaimer {
  /* margin: @margin-content-bottom 0 0; */
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

#cms_overall {
  width: 100%;
}
#cms_overall nav#primary {
  display: none;
}
#cms_overall ul li::before {
  content: '';
  font-family: 'FontAwesome';
  color: #299c0a;
}
#cms_overall .cms_left label input {
  display: inline;
}
#cms_overall #cms_nav_l2 li {
  margin: 0 2px;
  padding: 0;
}
#cms_overall .fdic-wrapper {
  display: none;
}

.fdic-notice img {
  display: block;
  margin: 0 auto;
  color: #eeeeee;
  width: 400px;
}
.fdic-notice {
  background-color: #00205c;
  padding: 10px;
}

.hidden {
  display: none;
  text-align: center;
}
.column1,
.column2,
.column3 {
  width: 30%;
  padding-right: 3%;
  float: left;
  list-style: none;
}
.column1 {
  clear: both;
}
.column1 span,
.column2 span,
.column3 span {
  font-size: 18px;
}
.php section {
  padding: 20px 0;
  padding: 8rem 16rem;
}
.php section section {
  padding: 20px 0;
}
.php section section {
  padding: 20px 0;
}
.php .location {
  clear: both;
  border-top: 1px solid #00232e;
}
.php h3 {
  font-size: 18px;
}
.php h4 {
  font-size: 14px;
}
section.locations-map .map-canvas {
  height: 350px;
  background: #f2f2f2;
  margin-bottom: 15px;
}
/* LINKLIVE CHAT */
.chat {
  display: inline-block;
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 100000; /*set z-index value to position link above other page elements */
  -webkit-transition: all 0.125s linear;
  -moz-transition: all 0.125s linear;
  -o-transition: all 0.125s linear;
  transition: all 0.125s linear; /* controls animation time and dynamics in modern browsers */
}
.chat:hover {
  /* bottom: 0px; reposition tab on hover for a subtle effect*/
}
.chat .rev-btn {
  height: 90px;
  width: 90px;
  border: 5px solid #ffffff;
  position: relative;
  background: #44b439;
  border-radius: 10rem;
  cursor: pointer;
}
.chat .rev-btn svg {
  outline: none;
  transition: transform 0.15s linear;
  fill: #ffffff;
  margin-top: 14px;
  margin-left: 1px;
}
.chat .rev-btn:focus {
  outline: 2px dashed rgba(255, 255, 255, 0.25);
}
.chat .rev-btn:hover svg {
  transform: scale(1.1);
}
.chat .rev-btn:hover .chatText {
  transform: scale(1.1);
}
.chat .rev-btn.offline:hover .chatText {
  transform: none;
}
.chat .rev-btn span.chatText {
  position: absolute;
  color: #fff;
  width: 100%;
  left: 1px;
  font-size: 9px;
  line-height: 14px;
  top: 25px;
  transition: transform 0.15s linear;
}
.chat .sr-only {
  height: 0px;
  overflow: hidden;
  position: absolute;
  width: 0px;
}
.chat .rev-btn.online {
  background-color: #44b439;
  color: #ffffff;
}
.chat .rev-btn.online:hover {
  filter: brightness(110%);
}
.chat .rev-btn.busy {
  background-color: #ffcc00;
}
.chat .rev-btn.busy:hover {
  filter: brightness(110%);
}
.chat .rev-btn.away {
  background-color: #ff9900;
}
.chat .rev-btn.away:hover {
  filter: brightness(110%);
  cursor: not-allowed;
}
.chat .rev-btn.offline {
  background-color: #bbbbbb;
  background-color: #aaaaaa;
  color: #aaaaaa;
}
.chat .rev-btn.offline:hover {
  background-color: #bbbbbb;
  background-color: #aaaaaa;
  cursor: not-allowed;
}
.chat .rev-btn.offline:hover svg {
  transform: scale(1);
}
