/* IMPORT SITE CUSTOM STYLES */
/*

Fonts
------
font-family:'Geometric_415 W01 Lite';
font-family:'Geometric415W01-Medium';
font-family:'Geometric_415 W01 Black';
font-family:'Trade Gothic LT W01 Cond No-_1';
font-family:'Trade Gothic LT W01 Bd Cn No-2';



*/
body {
  font-size: 18px;
  color: #003b4a;
  font-family: "Geometric_415 W01 Lite";
}

a {
  color: #619faf;
  cursor: pointer;
}
a:hover {
  color: #003b4a;
}

.inline-item {
  display: inline-block;
}

.btn {
  font-family: "Geometric_415 W01 Black";
  font-weight: bold;
  padding: 10px 40px;
  color: #fff;
  background-color: #619faf;
  border-radius: 50px;
  text-transform: uppercase;
}
.btn:hover {
  color: #fff;
  background-color: #003b4a;
}

.btn-primary {
  background-color: #619faf;
}
.btn-primary:hover {
  background-color: #003b4a;
}

.btn-sm, .btn-xs {
  font-size: 14px;
  padding: 0px 10px;
}

#filterbuttons a {
  margin-right: 5px;
}

.main_page_title {
  font-size: 75px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .main_page_title {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .main_page_title {
    font-size: 46px;
  }
}
@media (max-width: 500px) {
  .main_page_title {
    font-size: 38px;
  }
}

h1,
h2,
h3,
h4 {
  font-family: "Trade Gothic LT W01 Bd Cn No-2";
}

h1 {
  font-size: 36.8px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 28.8px;
}
@media (min-width: 576px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: 21.6px;
  margin-bottom: 1em;
}
@media (min-width: 576px) {
  h3 {
    font-size: 24px;
  }
}

.alert {
  padding: 0.5rem;
  margin-bottom: 0;
  border: 0;
  background-color: #619faf;
  border-radius: 0;
}
.alert .headline {
  padding: 0 2rem;
}
.alert .headline a {
  font-family: "Geometric_415 W01 Black";
  text-transform: uppercase;
  color: white;
}
.alert .headline a:hover {
  color: white;
}

.alert-container {
  align-items: center;
  display: flex;
}

.f-modal-alert .f-modal-icon {
  border-radius: 50%;
  border: 4px solid #003b4a;
  box-sizing: content-box;
  height: 35px;
  margin: 5px auto;
  padding: 0;
  position: relative;
  width: 35px;
}
.f-modal-alert .f-modal-icon.f-modal-warning {
  border-color: #fff;
  /*
      &:before {
        animation: pulseWarning 2s linear infinite;
        background-color: transparent;
        border-radius: 50%;
        content: "";
        display: inline-block;
        height: 100%;
        opacity: 0;
        position: absolute;
        width: 100%;
      }

      &:after {
        background-color: transparent;
        border-radius: 50%;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        width: 100%;
        z-index: 1;
      }*/
}
.f-modal-alert .f-modal-icon.f-modal-warning .f-modal-body {
  background-color: #fff;
  border-radius: 2px;
  height: 15px;
  left: 50%;
  margin-left: -3px;
  position: absolute;
  top: 6px;
  width: 5px;
  z-index: 2;
}
.f-modal-alert .f-modal-icon.f-modal-warning .f-modal-dot {
  background-color: #fff;
  border-radius: 50%;
  bottom: 5px;
  height: 7px;
  left: 50%;
  margin-left: -4px;
  position: absolute;
  width: 7px;
  z-index: 2;
}
.f-modal-alert .f-modal-icon + .f-modal-icon {
  margin-top: 50px;
}

.animateErrorIcon {
  animation: animateErrorIcon 0.5s;
}

.animateXLeft {
  animation: animateXLeft 0.75s;
}

.animateXRight {
  animation: animateXRight 0.75s;
}

.scaleWarning {
  animation: scaleWarning 0.75s infinite alternate;
}

.pulseWarningIns {
  animation: pulseWarningIns 0.75s infinite alternate;
}

@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes animateXLeft {
  0%, 65% {
    left: 82px;
    top: 95px;
    width: 0;
  }
  84% {
    left: 14px;
    top: 33px;
    width: 47px;
  }
  100% {
    left: 17px;
    top: 37px;
    width: 47px;
  }
}
@keyframes animateXRight {
  0%, 65% {
    right: 82px;
    top: 95px;
    width: 0;
  }
  84% {
    right: 14px;
    top: 33px;
    width: 47px;
  }
  100% {
    right: 16px;
    top: 37px;
    width: 47px;
  }
}
@keyframes scaleWarning {
  0% {
    transform: scale(1);
    border-color: #ea6852;
  }
  30% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulseWarning {
  0% {
    background-color: transparent;
    transform: scale(1);
    opacity: 0.5;
  }
  30% {
    background-color: transparent;
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    background-color: #fff;
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes pulseWarningIns {
  0% {
    background-color: #ea6852;
  }
  100% {
    background-color: #fff;
  }
}
/**
 * Font-mixin overrides must include `font-family`, `font-style`, and `font-weight`
 */
@media (max-width: 576px) {
  .hidden-xxs {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xxs-block,
.visible-xs-block,
.visible-xxs-inline,
.visible-xs-inline,
.visible-xxs-inline-block,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 576px) {
  .visible-xxs {
    display: block !important;
  }

  table.visible-xxs {
    display: table !important;
  }

  tr.visible-xxs {
    display: table-row !important;
  }

  th.visible-xxs,
td.visible-xxs {
    display: table-cell !important;
  }
}
@media (max-width: 576px) {
  .visible-xxs-block {
    display: block !important;
  }
}
@media (max-width: 576px) {
  .visible-xxs-inline {
    display: inline !important;
  }
}
@media (max-width: 576px) {
  .visible-xxs-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
.hidden,
.hide {
  display: none !important;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.affix {
  position: fixed !important;
  top: 1rem;
}

.affix-bottom {
  position: absolute !important;
}

.navbar {
  padding: 0;
  margin-right: 2rem;
}
.navbar .nav-pills {
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-right: 1rem;
}
.navbar .nav-pills.fade-out {
  opacity: 0;
}
.navbar .nav-pills .dropdown-item {
  width: auto;
}
.navbar .nav-pills li a {
  margin: 2rem 0.5rem;
  padding: 0.5rem 0.5rem;
  color: #003b4a;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Geometric415W01-Medium";
  display: block;
  border-bottom: 2px solid transparent;
}
.navbar .nav-pills li a:hover {
  text-decoration: none;
}
@media (max-width: 1198px) {
  .navbar .nav-pills li a {
    margin: 2rem 0rem;
    font-size: 16px;
  }
}
.navbar .nav-pills li:hover {
  background-color: transparent;
}
.navbar .nav-pills li:hover a {
  border-bottom: 2px solid #619faf;
}
.navbar .nav-pills li:hover .dropdown-menu {
  display: block;
  width: auto;
}
.navbar .nav-pills li.selected a {
  border-bottom: 2px solid #619faf;
}
.navbar .nav-pills li .dropdown-menu {
  top: 100%;
  left: auto;
  margin: 0;
  padding: 0px;
  border-radius: 0;
  border: 0;
  background-color: white;
}
.navbar .nav-pills li .dropdown-menu > li {
  padding: 0;
}
.navbar .nav-pills li .dropdown-menu > li a {
  color: #003b4a;
  display: block;
  padding: 1rem;
  margin: 0;
  width: 100%;
  white-space: nowrap;
  border-bottom: 0;
  border-top: 0;
  border-left: 1px solid #c7d1d8;
  border-right: 1px solid #c7d1d8;
}
.navbar .nav-pills li .dropdown-menu > li a:hover {
  color: white;
  background-color: #003b4a;
  text-decoration: none;
  border-bottom: 0;
  border-top: 0;
  border-left: 1px solid #003b4a;
  border-right: 1px solid #003b4a;
}
.navbar .nav-pills li .dropdown-menu > li:first-child a {
  border-top: 0;
}
.navbar .nav-pills li .dropdown-menu > li:first-child a:hover {
  border-top: 0;
}
.navbar .nav-pills li .dropdown-menu > li:last-child a {
  border-bottom: 1px solid #c7d1d8;
}
.navbar .nav-pills li .dropdown-menu > li:last-child a:hover {
  border-bottom: 1px solid #003b4a;
}
.navbar .nav-pills li:last-child .dropdown-menu {
  right: 0;
}
.navbar #search {
  float: left;
  width: 0;
  position: absolute;
  right: 33px;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.navbar #search.showme {
  width: 95%;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.navbar #search #sitesearch {
  width: 100%;
  float: left;
  padding: 10px 15px 0px;
  position: relative;
  height: 50px;
}
.navbar #search #sitesearch #search-field {
  position: absolute;
  left: 0px;
  width: 95%;
  border: none;
  height: 40px;
  padding: 5px;
}
.navbar #search #sitesearch #search-field:focus {
  outline: none;
  border: none;
  filter: none;
}
.navbar #search #sitesearch button {
  position: absolute;
  color: #fff;
  right: 0px;
  width: 42px;
  height: 40px;
  border: none;
}
.navbar .srchbutton,
.navbar .srchbuttonmodal {
  color: #003b4a;
}
.navbar .srchbutton:hover,
.navbar .srchbuttonmodal:hover {
  color: #82b7bf;
}
.navbar .togglemenu {
  margin-left: 10px;
  color: #003b4a;
  font-size: 32px;
}

/*Mobile NAV*/
#NavMobileModal .nav .nav-item a {
  font-size: 50px;
  color: #fff;
  font-family: "Trade Gothic LT W01 Cond No-_1";
}

/* For Firefox */
svg {
  height: 100%;
  width: 100%;
}

#header {
  background-color: #fff;
  height: auto;
  display: block;
  width: 100%;
  position: relative;
  margin: 0 auto;
  transition: all 0.2s ease-in-out;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid #c7d1d8;
}
#header .header-holder {
  display: table;
  height: 80px;
  width: 100%;
  vertical-align: middle;
  margin: 0 auto;
  padding: 0px 15px;
}
#header .header-holder .logo-holder {
  display: table-cell;
  vertical-align: middle;
}
#header .header-holder .logo-holder .logo-hold {
  width: 100%;
  max-width: 425px;
}
#header .header-holder .logo-holder .logo-hold img {
  width: 100%;
}
@media (max-width: 1130px) {
  #header .header-holder .logo-holder .logo-hold {
    max-width: 400px;
  }
}
@media (max-width: 1100px) {
  #header .header-holder .logo-holder .logo-hold {
    max-width: 380px;
  }
}
@media (max-width: 1065px) {
  #header .header-holder .logo-holder .logo-hold {
    max-width: 320px;
  }
}
@media (max-width: 1015px) {
  #header .header-holder .logo-holder .logo-hold {
    max-width: 300px;
  }
}
@media (max-width: 991px) {
  #header .header-holder .logo-holder .logo-hold {
    max-width: 425px;
  }
}
@media (max-width: 768px) {
  #header .header-holder .logo-holder {
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: center;
    padding: 5px 15px;
    background-color: #e6ebed;
    border-bottom: 1px solid #c7d1d8;
  }
}
#header .header-holder .header-nav-holder {
  display: table-cell;
  vertical-align: middle;
}
#header .header-holder .header-nav-holder .right {
  float: right;
}
#header .header-holder .header-nav-holder .nav-hold {
  float: right;
}
@media (max-width: 991px) {
  #header .header-holder .header-nav-holder .nav-hold {
    padding: 1.6rem 0;
  }
}
@media (max-width: 768px) {
  #header .header-holder .header-nav-holder .nav-hold {
    float: left;
    padding: 0.5rem 0;
  }
}
@media (max-width: 768px) {
  #header .header-holder .header-nav-holder {
    width: 100%;
    display: table;
    padding: 5px 15px;
    margin: 0 auto;
  }
}
@media (min-width: 576px) {
  #header .header-holder {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  #header .header-holder {
    height: auto;
    display: block;
    padding: 0px;
  }
}
@media (min-width: 1200px) {
  #header .header-holder {
    max-width: 1500px;
  }
}
#header.scrolling {
  box-shadow: 0px -5px 15px 0px black;
  position: fixed;
  top: 0;
}

@media (max-width: 576px) {
  .modal .modal-dialog {
    margin: 2rem;
  }
}
.modal .modal-content {
  background-color: #559374;
}
.modal .modal-content .modal-header {
  border-bottom: 0px;
  padding: 0;
}
.modal .modal-content .modal-header .close {
  background-color: #fff;
  opacity: 1;
  width: 40px;
  height: 40px;
  font-size: 18px;
  padding: 5px;
}
.modal .modal-content .modal-header .close:hover {
  background-color: #e6e6e6;
}
.modal .modal-content .modal-body {
  padding: 2rem;
}

body#home #header .header-holder {
  border-bottom: none;
}

#breadcrumb {
  margin-top: 20px;
}
#breadcrumb > ol li:first-child {
  display: none;
}
#breadcrumb > ol li:after {
  content: "/";
  color: #eee;
  left: 5px;
  position: relative;
}
#breadcrumb > ol li:last-child:after {
  content: "";
}

.modal.fade.show {
  background-color: #758592;
}

#NavMobileModal .modal-dialog, #SearchModal .modal-dialog, #ContactModal .modal-dialog, #filtermodal .modal-dialog {
  margin: 10% auto;
  width: 100%;
  max-width: 600px;
}
#NavMobileModal .modal-dialog .modal-content, #SearchModal .modal-dialog .modal-content, #ContactModal .modal-dialog .modal-content, #filtermodal .modal-dialog .modal-content {
  background-color: transparent;
  border: none;
  color: #fff;
  -webkit-box-shadow: 0 0 0 transparent;
  -moz-box-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
}
#NavMobileModal .modal-dialog .modal-content .modal-header, #SearchModal .modal-dialog .modal-content .modal-header, #ContactModal .modal-dialog .modal-content .modal-header, #filtermodal .modal-dialog .modal-content .modal-header {
  display: table;
  width: 100%;
  padding: 0rem 2rem;
}
#NavMobileModal .modal-dialog .modal-content .modal-body, #SearchModal .modal-dialog .modal-content .modal-body, #ContactModal .modal-dialog .modal-content .modal-body, #filtermodal .modal-dialog .modal-content .modal-body {
  margin-top: 0;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch, #SearchModal .modal-dialog .modal-content .modal-body #sitesearch, #ContactModal .modal-dialog .modal-content .modal-body #sitesearch, #filtermodal .modal-dialog .modal-content .modal-body #sitesearch {
  padding: 0px;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch input[type=search], #SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type=search], #ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type=search], #filtermodal .modal-dialog .modal-content .modal-body #sitesearch input[type=search] {
  background: rgba(0, 0, 0, 0.18);
  text-align: center;
  color: white;
  font-size: 50px;
  width: 100%;
  border: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch input[type=search]:focus, #SearchModal .modal-dialog .modal-content .modal-body #sitesearch input[type=search]:focus, #ContactModal .modal-dialog .modal-content .modal-body #sitesearch input[type=search]:focus, #filtermodal .modal-dialog .modal-content .modal-body #sitesearch input[type=search]:focus {
  outline: none;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button, #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button, #ContactModal .modal-dialog .modal-content .modal-body #sitesearch button, #filtermodal .modal-dialog .modal-content .modal-body #sitesearch button {
  background-color: #619faf;
  margin-top: 2em;
  width: 100%;
  padding: 0.7rem;
  border: 0;
  font-size: 26px;
  border-radius: 100px;
  font-family: "Geometric_415 W01 Black";
  color: white;
}
#NavMobileModal .modal-dialog .modal-content .modal-body #sitesearch button:hover, #SearchModal .modal-dialog .modal-content .modal-body #sitesearch button:hover, #ContactModal .modal-dialog .modal-content .modal-body #sitesearch button:hover, #filtermodal .modal-dialog .modal-content .modal-body #sitesearch button:hover {
  background-color: #003b4a;
}
#NavMobileModal .modal-dialog .modal-content .modal-body .btn, #SearchModal .modal-dialog .modal-content .modal-body .btn, #ContactModal .modal-dialog .modal-content .modal-body .btn, #filtermodal .modal-dialog .modal-content .modal-body .btn {
  margin-top: 1rem;
}
#NavMobileModal .modal-dialog .modal-content .modal-body select, #SearchModal .modal-dialog .modal-content .modal-body select, #ContactModal .modal-dialog .modal-content .modal-body select, #filtermodal .modal-dialog .modal-content .modal-body select {
  border: none;
  font-size: 26px;
  height: 40px;
  width: 100%;
  margin: 10px 0;
}

#SearchModal .modal-header {
  display: table;
  width: 100%;
  padding: 0rem;
}
#SearchModal .modal-body {
  margin-top: 2rem;
}

.figure__banner {
  width: 100%;
  display: table;
  margin: 0 auto;
  max-width: 1500px;
  overflow: hidden;
  position: relative;
  height: 500px;
}
@media (max-width: 991px) {
  .figure__banner {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .figure__banner {
    height: 350px;
  }
}
@media (max-width: 500px) {
  .figure__banner {
    height: 300px;
  }
}
.figure__banner-image {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body#home .banner {
  position: relative;
  overflow: hidden;
  display: table;
  vertical-align: middle;
  width: 100%;
  border-radius: 0px;
  height: 750px;
  max-width: 1500px;
  margin: 0 auto;
  margin-bottom: 2rem;
}
body#home .banner.scrolling {
  margin-top: 125px;
}
body#home .banner .jumbo-logo {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}
body#home .banner .jumbo-logo .logo {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  display: block;
  padding-bottom: 2rem;
}
body#home .banner .jumbo-logo .logo img {
  width: 100%;
}
body#home .banner .jumbo-logo .lead {
  color: #fff;
}
body#home .banner #banner-background {
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
  background-position: center;
  background-repeat: repeat;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  body#home .banner #banner-background {
    position: relative;
  }
}
body#home .banner__fade {
  box-shadow: inset 0 -10rem 10rem 0 rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
body#home .banner__buttons {
  position: absolute;
  bottom: 8rem;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  z-index: 10;
}
body#home .banner__buttons--holder {
  width: 100%;
  display: inline-block;
}
body#home .banner__buttons--button {
  width: auto;
  flex-grow: 0;
  display: inline-block;
  margin-bottom: 1rem;
  position: relative;
  top: 500px;
  transition: top 0.4s ease-in-out;
}
body#home .banner__buttons--button.slideup {
  top: 0px;
}
body#home .banner__buttons--link {
  white-space: nowrap;
  font-size: 22px;
}
@media (max-width: 991px) {
  body#home .banner__buttons--link {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  body#home .banner__buttons {
    bottom: 4rem;
  }
}
@media (max-width: 991px) {
  body#home .banner {
    height: 500px;
  }
}
body#home .homecontent {
  background-color: #e6ebed;
  display: table;
  width: 100%;
  position: relative;
}
body#home .homecontent__carousel {
  max-width: 1500px;
  width: 100%;
  margin: 2rem auto;
  background-color: white;
  padding: 4rem;
  position: relative;
  display: table;
}
body#home .homecontent__carousel--inner {
  height: 450px;
  border: 1px solid #c7d1d8;
}
@media (max-width: 767px) {
  body#home .homecontent__carousel--inner {
    min-height: 600px;
    height: auto;
  }
}
@media (max-width: 500px) {
  body#home .homecontent__carousel--inner {
    min-height: 650px;
    height: auto;
  }
}
body#home .homecontent__carousel--item {
  height: 100%;
}
body#home .homecontent__carousel--card {
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  body#home .homecontent__carousel--card {
    margin: 0;
  }
}
@media (max-width: 767px) {
  body#home .homecontent__carousel--card .press-imageholder {
    padding: 0;
  }
}
body#home .homecontent__carousel--card .press-image {
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  body#home .homecontent__carousel--card .press-image {
    height: 250px;
  }
}
body#home .homecontent__carousel--card .date {
  color: #559374;
  font-family: "Trade Gothic LT W01 Bd Cn No-2";
  text-transform: uppercase;
  font-size: 18px;
}
body#home .homecontent__carousel--card .featured-title a {
  color: #003b4a;
}
@media (max-width: 1198px) {
  body#home .homecontent__carousel--card .featured-title {
    font-size: 36px;
  }
}
@media (max-width: 500px) {
  body#home .homecontent__carousel--card .featured-title {
    font-size: 28px;
  }
}
body#home .homecontent__carousel--card .featured-more {
  text-align: right;
  position: absolute;
  bottom: 3rem;
  right: 3rem;
}
body#home .homecontent__carousel--card .featured-more .featured-link {
  color: #619faf;
  display: inline-block;
  font-family: "Geometric_415 W01 Black";
  text-transform: uppercase;
}
body#home .homecontent__carousel--card .featured-more .featured-link .arrow-circle {
  margin-left: 10px;
  padding: 5px;
  right: 0;
  font-size: 26px;
  color: white;
  background-color: #619faf;
  border: 1px solid #619faf;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: all 0.2s ease-in-out;
}
body#home .homecontent__carousel--card .featured-more .featured-link:hover {
  color: #003b4a;
}
body#home .homecontent__carousel--card .featured-more .featured-link:hover .arrow-circle {
  right: -10px;
  background-color: #003b4a;
  border: 1px solid #003b4a;
}
@media (max-width: 991px) {
  body#home .homecontent__carousel--card .featured-more {
    display: none;
  }
}
body#home .homecontent__carousel--indicator {
  position: relative;
  margin-top: 1rem;
}
body#home .homecontent__carousel--indicator li {
  background-color: #c7d1d8;
  height: 4px;
  width: 80px;
  margin-right: 5px;
  margin-left: 5px;
}
body#home .homecontent__carousel--indicator li.active {
  background-color: #82b7bf;
}
body#home .homecontent__carousel--leftarrow, body#home .homecontent__carousel--rightarrow {
  width: 6%;
  color: #003b4a;
  font-size: 40px;
}
@media (max-width: 767px) {
  body#home .homecontent__carousel--leftarrow {
    left: 1rem;
  }
}
@media (max-width: 767px) {
  body#home .homecontent__carousel--rightarrow {
    right: 1rem;
  }
}
body#home .homecontent__offices {
  max-width: 1500px;
  width: 100%;
  margin: 2rem auto;
  background-color: white;
  padding: 4rem;
  position: relative;
  display: table;
}
body#home .homecontent__offices--office {
  text-align: center;
}
body#home .homecontent__offices--image {
  display: block;
  width: 100%;
  max-width: 200px;
  height: 200px;
  background-size: cover;
  border-radius: 100%;
  margin: 0 auto;
}
body#home .homecontent__offices--title {
  display: block;
  font-family: "Trade Gothic LT W01 Bd Cn No-2";
  font-size: 26px;
  text-transform: uppercase;
  padding: 1.5rem 0 0 0;
}
body#home .homecontent__offices--address {
  display: block;
  padding: 1rem 0;
}
body#home .homecontent__offices--phone {
  display: block;
}
body#home .homecontent__offices--phone .icon {
  color: #559374;
  margin-right: 5px;
}
body#home .homecontent__offices--fax {
  display: block;
  padding-bottom: 1rem;
}
body#home .homecontent__offices--fax .icon {
  color: #559374;
  margin-right: 5px;
}
body#home .homecontent__offices--button {
  padding: 1rem 0;
}
body#home .homecontent__social {
  max-width: 1500px;
  width: 100%;
  margin: 2rem auto;
  background-color: white;
  padding: 4rem;
  position: relative;
  display: table;
}
body#home .homecontent__social .social-area .row {
  margin: 0;
}

#content {
  padding-top: 0px;
  background-color: #e6ebed;
}
#content #main_container {
  padding-top: 4rem;
  position: relative;
  width: 100% !important;
}
#content img {
  width: 100%;
  display: block;
  height: auto;
}
@media (min-width: 991px) {
  #content .container {
    max-width: 1500px !important;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  #content .container {
    max-width: 100% !important;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  #content .container {
    max-width: 100% !important;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  #content .container {
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 576px) {
  #content .container {
    max-width: 100%;
    margin: 0 auto;
  }
}
#content.scrolling {
  padding-top: 105px;
}

.nonrow {
  margin: 0;
}

aside {
  margin-top: 3.5rem;
}

#breadcrumb {
  position: absolute;
  top: 1rem;
  margin: 0;
}
#breadcrumb ol {
  margin: 0;
}
#breadcrumb ol li a {
  font-family: "Trade Gothic LT W01 Bd Cn No-2";
}
#breadcrumb ol li:after {
  color: #003b4a;
}

#listblocks .block {
  margin-bottom: 30px;
  background-color: transparent;
  width: 100%;
  display: block;
}
#listblocks .block a {
  background-color: #619faf;
  width: 100%;
  display: table;
  vertical-align: middle;
  text-align: center;
  font-size: 28px;
  border-radius: 100px;
  color: #fff;
  padding: 10px;
  font-weight: 300;
  height: 110px;
  transition: background-color 0.2s ease-in-out;
  font-family: "Trade Gothic LT W01 Bd Cn No-2";
}
#listblocks .block a:hover {
  text-decoration: none;
  background-color: #003b4a;
}
#listblocks .block a .media-heading {
  display: table-cell;
  position: relative;
  vertical-align: middle;
}
#listblocks .block.noimg a {
  height: auto;
  min-height: 100px;
}

#voting_record .page {
  margin: 30px 0;
  display: none;
  transition: 1s ease-in-out;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}
#voting_record .page .row {
  margin: 0 0 20px 0;
  padding: 5px 5px 15px 5px;
  border-bottom: 1px solid #ccc;
  /* ----- */
}
#voting_record .page .row .date {
  font-size: 15px;
}
#voting_record .page .row .vote {
  font-size: 16px;
  color: #666;
}
#voting_record .page .row .No, #voting_record .page .row .Nay {
  color: red;
}
#voting_record .page .row .Yea, #voting_record .page .row .Aye {
  color: green;
}
#voting_record .page .row .result {
  font-size: 16px;
  color: #666;
}
#voting_record .page .row .Failed {
  color: red !important;
}
#voting_record .page .row .Passed {
  color: green !important;
}
#voting_record .page .row .category {
  font-size: 15px;
}
#voting_record .page.in {
  opacity: 1;
}
#voting_record .pagination {
  display: table;
  width: 100%;
}
#voting_record .pagination .pages {
  display: table-cell;
  vertical-align: middle;
  width: auto;
  margin: 0;
}
#voting_record .pagination .pages_nav {
  display: table-cell;
  vertical-align: middle;
}

#search-thomas-pod #thomas_search {
  height: 45px;
  width: 100%;
  padding: 10px;
}
#search-thomas-pod #form_thomas_search {
  width: 100%;
  display: block;
}
#search-thomas-pod #side-search-btn {
  padding: 10px 20px;
  width: 100%;
}

#pagination-container {
  text-align: right;
  margin-top: 80px;
  display: table;
  width: 100%;
}
#pagination-container .pagination-right {
  display: table-cell;
  vertical-align: middle;
  float: none;
  margin-bottom: 0px;
}
#pagination-container .pager {
  display: table-cell;
  float: right;
  width: auto;
  margin: 0;
  vertical-align: middle;
}
#pagination-container .pager li {
  display: table-cell;
}

.contact-buttons {
  display: block;
}
.contact-buttons .title {
  margin-bottom: 3rem;
}

.feedback-block {
  min-height: 180px;
  display: table;
  vertical-align: middle;
}
.feedback-block a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  background-color: #619faf;
  color: white;
  border-radius: 70px;
  padding: 2rem;
}
.feedback-block a:hover {
  background-color: #82b7bf;
  text-decoration: none;
}

body#newsroom .article {
  background-color: white;
  padding: 0 10rem;
  display: table;
}
@media (max-width: 991px) {
  body#newsroom .article {
    padding: 0 1rem;
  }
}

body#newsroom_landing_page #main_column {
  padding: 0;
  background-color: transparent;
}
body#newsroom_landing_page #breadcrumb {
  display: none;
}
body#newsroom_landing_page #main_container {
  padding-top: 4rem;
}
body#newsroom_landing_page .one_column {
  margin-left: 0;
  margin-right: 0;
}
body#newsroom_landing_page #rightside {
  padding: 3rem;
  background-color: #fff;
}
body#newsroom_landing_page #rightside hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
body#newsroom_landing_page #leftside {
  text-align: left;
  padding: 0;
}
body#newsroom_landing_page .media__summary {
  padding-bottom: 2rem;
}
body#newsroom_landing_page .media__header {
  font-size: 23px;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  body#newsroom_landing_page .media__header {
    font-size: 46px;
  }
}
body#newsroom_landing_page .media__header a {
  color: #619faf;
  text-transform: uppercase;
}
body#newsroom_landing_page .media__link {
  color: #003b4a;
  text-decoration: none;
}
body#newsroom_landing_page .media__link:hover {
  color: #003b4a;
  text-decoration: underline;
}
body#newsroom_landing_page .media__link--green {
  text-transform: uppercase;
}
body#newsroom_landing_page .media__button {
  text-align: right;
  bottom: 3rem;
  right: 3rem;
  color: #619faf;
  display: inline-block;
  font-family: "Geometric_415 W01 Black";
  text-transform: uppercase;
}
body#newsroom_landing_page .media__button--container {
  text-align: right;
  display: table;
  width: 100%;
  padding: 0rem 0 3rem;
}
body#newsroom_landing_page .media__button .arrow-circle {
  margin-left: 10px;
  padding: 5px;
  right: 0;
  top: 3px;
  font-size: 26px;
  color: white;
  background-color: #619faf;
  border: 1px solid #619faf;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: all 0.2s ease-in-out;
}
body#newsroom_landing_page .media__button:hover {
  color: #003b4a;
}
body#newsroom_landing_page .media__button:hover .arrow-circle {
  right: -10px;
  background-color: #003b4a;
  border: 1px solid #003b4a;
}
body#newsroom_landing_page .media__side-nav {
  width: 100%;
  margin-top: 2.5rem;
}
body#newsroom_landing_page .media__side-nav .main_page_title {
  text-align: left;
}
body#newsroom_landing_page .media__side-nav.affix {
  width: 300px;
  top: 6.5rem;
}
@media (max-width: 1200px) {
  body#newsroom_landing_page .media__side-nav.affix {
    width: 280px;
  }
}
body#newsroom_landing_page .media__side-nav.affix-bottom {
  position: absolute;
  width: 254px;
}
@media (max-width: 1200px) {
  body#newsroom_landing_page .media__side-nav.affix-bottom {
    width: 209px;
  }
}
body#newsroom_landing_page .media__list {
  text-align: left;
  display: block;
}
body#newsroom_landing_page .media__list-item {
  text-align: left;
  display: block;
}
body#newsroom_landing_page .media__list-item.active a, body#newsroom_landing_page .media__list-item:hover a {
  background-color: transparent;
  color: #758592;
  border-radius: 0px;
  border-bottom: 2px solid #619faf;
}
body#newsroom_landing_page .media__list-link {
  color: #758592;
  display: inline-block;
  padding: 10px 0px 0px;
  border-radius: 0px;
  font-size: 28px;
  border-bottom: 2px solid transparent;
  font-family: "Trade Gothic LT W01 Bd Cn No-2";
}
body#newsroom_landing_page .media__list-link:hover {
  color: #758592;
  text-decoration: none;
}
@media (max-width: 1200px) {
  body#newsroom_landing_page .media__list-link {
    font-size: 26px;
  }
}
body#newsroom_landing_page .media__date {
  font-family: "Trade Gothic LT W01 Bd Cn No-2";
  text-transform: uppercase;
  color: #559374;
  font-size: 24px;
}

body.newsroom #filterbuttons, body#newsroom #filterbuttons {
  position: absolute;
  top: 5rem;
  right: 3rem;
}

body#about #main_column {
  padding: 0;
  background-color: transparent;
}
body#about #rightside {
  padding: 3rem;
  background-color: #fff;
}
body#about #leftside {
  text-align: left;
  padding: 0;
}
body#about .media__side-nav {
  width: 100%;
  margin-top: 4rem;
  max-width: 254px;
}
@media (max-width: 1200px) {
  body#about .media__side-nav {
    max-width: 209px;
  }
}
body#about .media__side-nav .main_page_title {
  text-align: right;
}
body#about .media__side-nav.affix {
  width: 254px;
  top: 4.9rem;
}
@media (max-width: 1200px) {
  body#about .media__side-nav.affix {
    width: 209px;
  }
}
body#about .media__side-nav.affix-bottom {
  position: absolute;
  width: 254px;
}
@media (max-width: 1200px) {
  body#about .media__side-nav.affix-bottom {
    width: 209px;
  }
}
body#about .media__list {
  text-align: right;
  display: block;
}
body#about .media__list-item {
  text-align: right;
  display: block;
}
body#about .media__list-item.active a, body#about .media__list-item:hover a {
  background-color: transparent;
  color: #619faf;
  border-radius: 0px;
  border-bottom: 2px solid #003b4a;
}
body#about .media__list-link {
  color: #619faf;
  display: inline-block;
  padding: 10px 0px;
  border-radius: 0px;
  font-size: 28px;
  border-bottom: 2px solid transparent;
  font-family: "Trade Gothic LT W01 Bd Cn No-2";
}
body#about .media__list-link:hover {
  color: #82b7bf;
  text-decoration: none;
}
@media (max-width: 1200px) {
  body#about .media__list-link {
    font-size: 26px;
  }
}

.issue__breakout {
  padding-top: 2rem;
  border-top: 1px solid #c7d1d8;
}
.issue__latestheader {
  color: #619faf;
  text-transform: uppercase;
}
.issue__list-item {
  padding: 1rem 0;
}
.issue__date {
  font-family: "Trade Gothic LT W01 Bd Cn No-2";
  text-transform: uppercase;
  color: #559374;
  font-size: 24px;
}
.issue__link {
  color: #003b4a;
  text-decoration: none;
}
.issue__link:hover {
  color: #003b4a;
  text-decoration: underline;
}
.issue__linkmore {
  text-align: right;
  bottom: 3rem;
  right: 3rem;
  color: #619faf;
  display: inline-block;
  font-family: "Geometric_415 W01 Black";
  text-transform: uppercase;
}
.issue__linkmore--container {
  text-align: right;
  display: table;
  width: 100%;
  padding: 0rem 0 3rem;
}
.issue__linkmore .arrow-circle {
  margin-left: 10px;
  padding: 5px;
  right: 0;
  top: 3px;
  font-size: 26px;
  color: white;
  background-color: #619faf;
  border: 1px solid #619faf;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.issue__linkmore:hover {
  color: #003b4a;
}
.issue__linkmore:hover .arrow-circle {
  right: -10px;
  background-color: #003b4a;
  border: 1px solid #003b4a;
}

#newscontent #press .date {
  font-family: "Trade Gothic LT W01 Bd Cn No-2";
  text-transform: uppercase;
  color: #559374;
  font-size: 24px;
}

.office__offices {
  max-width: 1500px;
  width: 100%;
  margin: 2rem auto;
  background-color: white;
  padding: 2rem 0;
  position: relative;
  display: table;
}
.office__offices--office {
  text-align: center;
}
.office__offices--image {
  display: block;
  width: 100%;
  max-width: 200px;
  height: 200px;
  background-size: cover;
  border-radius: 100%;
  margin: 0 auto;
}
.office__offices--title {
  display: block;
  font-family: "Trade Gothic LT W01 Bd Cn No-2";
  font-size: 26px;
  text-transform: uppercase;
  padding: 1.5rem 0 0 0;
}
.office__offices--address {
  display: block;
  padding: 1rem 0;
}
.office__offices--phone {
  display: block;
}
.office__offices--phone .icon {
  color: #559374;
  margin-right: 5px;
}
.office__offices--fax {
  display: block;
  padding-bottom: 1rem;
}
.office__offices--fax .icon {
  color: #559374;
  margin-right: 5px;
}
.office__offices--button {
  padding: 1rem 0;
}

.one_column.row, .two_column.row {
  margin-right: 0;
  margin-left: 0;
}

#main_column {
  padding: 3rem;
  background-color: white;
}

.social-list {
  margin-bottom: 0;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.2rem 0rem;
}
.social-list li {
  padding: 1rem 0px;
}
.social-list li a {
  border: 2px solid #619faf;
  border-radius: 50px;
  padding: 2px;
  text-align: center;
  width: 35px;
  height: 35px;
  background-color: transparent;
  color: #619faf;
  display: block;
  font-size: 18px;
}
.social-list li a:hover {
  background-color: #619faf;
  color: #fff;
}
@media (max-width: 768px) {
  .social-list li {
    padding: 0.5rem 0rem;
  }
}
@media (max-width: 1198px) {
  .social-list {
    padding: 1rem 0rem;
  }
}
@media (max-width: 768px) {
  .social-list {
    padding: 0.4rem 0rem;
  }
}
@media (max-width: 991px) {
  .social-list--bottom {
    display: none;
  }
}

.social-area #socialareablock {
  margin-bottom: 1rem;
  padding: 0;
  border: 1px solid #c7d1d8;
}
.social-area #socialareablock:first-child {
  border-right: 1px solid transparent;
}
@media (max-width: 767px) {
  .social-area #socialareablock:first-child {
    border-right: 1px solid #c7d1d8;
  }
}
.social-area #socialareablock:last-child {
  border-left: 1px solid transparent;
}
@media (max-width: 767px) {
  .social-area #socialareablock:last-child {
    border-left: 1px solid #c7d1d8;
  }
}
.social-area #socialareablock .socialblock {
  padding: 2rem;
  border-radius: 0;
  border: 0;
}
.social-area #socialareablock .socialblock .socialheader .socialfeedbackbutton {
  border: 1px solid #3c3c3c;
  border-radius: 5px;
  padding: 5px 10px;
  text-align: center;
  background-color: #fff;
  color: #3c3c3c;
  display: block;
  font-size: 18px;
  display: inline-block;
  width: auto;
  margin-bottom: 1rem;
}
.social-area #socialareablock .socialblock .socialheader .socialfeedbackbutton span {
  margin-right: 10px;
  text-decoration: none;
}
.social-area #socialareablock .socialblock .socialheader__logo {
  font-size: 20px;
  color: white;
  background-color: #619faf;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  padding: 9px;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.social-area #socialareablock .socialblock .socialheader__text {
  display: block;
  font-size: 24px;
  padding: 1.5rem 0;
  font-family: "Trade Gothic LT W01 Bd Cn No-2";
  text-transform: uppercase;
}
.social-area #socialareablock .socialblock .twitter .socialfeedbackbutton {
  border: 1px solid #1da1f2;
  background-color: #fff;
  color: #1da1f2;
}
.social-area #socialareablock .socialblock .twitter .socialfeedbackbutton:hover {
  border: 1px solid #1da1f2;
  background-color: #1da1f2;
  color: #fff;
  text-decoration: none;
}
.social-area #socialareablock .socialblock .facebook .socialfeedbackbutton {
  border: 1px solid #3b5998;
  background-color: #fff;
  color: #3b5998;
}
.social-area #socialareablock .socialblock .facebook .socialfeedbackbutton:hover {
  border: 1px solid #3b5998;
  background-color: #3b5998;
  color: #fff;
  text-decoration: none;
}
.social-area #socialareablock .socialblock .instagram__feed {
  height: 450px;
  text-align: center;
  width: 100%;
  background-color: white;
  padding-top: 20px;
}
.social-area #socialareablock .socialblock .instagram__feed #instamedia > a {
  padding: 5px;
  display: inline-block;
  width: 50%;
}
.social-area #socialareablock .socialblock .instagram__feed > img {
  height: 160px;
  margin: 10px auto;
  border-radius: 60px;
}
.social-area #socialareablock .socialblock .instagram__feed .instaimage {
  overflow: hidden;
  height: 160px;
  width: 100%;
  background-size: cover;
}
.social-area #socialareablock .socialblock .instagram__feed .instaimage img {
  width: 100%;
  min-width: 200px;
  min-height: 150px;
}

footer {
  background-color: #e6ebed;
  padding: 3rem 0rem 1rem 0rem;
  display: table;
  width: 100%;
}
footer ul li a {
  color: #003b4a;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Geometric415W01-Medium";
}
footer ul li a:hover {
  text-decoration: underline;
}

.footer__items {
  max-width: 1500px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0 1rem;
  display: table;
}
.footer__logo {
  display: table-cell;
  text-align: left;
  width: 180px;
}
.footer__logo a {
  width: 100%;
}
.footer__logo a img {
  width: 100%;
}
@media (max-width: 500px) {
  .footer__logo {
    width: 110px;
  }
}
.footer__nav {
  display: table-cell;
  width: auto;
  text-align: left;
  vertical-align: middle;
  padding-left: 3rem;
}
.footer__nav--sub ul li a {
  text-transform: capitalize;
  color: #758592;
}
.footer__social {
  display: table-cell;
  width: auto;
  text-align: right;
  vertical-align: middle;
}
.footer__social .social-list {
  padding: 0;
  justify-content: flex-end;
}

body#home footer {
  margin-top: 0;
  background-color: #e6ebed;
  display: table;
  width: 100%;
  padding: 0;
  padding-bottom: 1.5rem;
}

/* FORM SYSTEM styles page

This are mostly functional styles at the top, with customizations below...

*/
#accomp-all,
#accomp-1,
#accomp-2,
#accomp-3 {
  display: none;
}

.sel_all #accomp-all,
.sel_all #accomp-1,
.sel_all #accomp-2,
.sel_all #accomp-3,
.sel_1 #accomp-1,
.sel_2 #accomp-2,
.sel_3 #accomp-3 {
  display: block;
}

.show_form .form_mode,
.show_preview .preview_mode {
  display: block !important;
}

.show_form input,
.show_form select,
.show_form textarea {
  display: inline-block !important;
}

.show_form .preview_mode {
  display: none !important;
}

.show_preview .form-control,
.show_preview .form_mode,
.show_preview input,
.show_preview select,
.show_preview textarea {
  display: none !important;
}

abbr {
  outline: none;
  border: none;
}

.form-group .preview_mode {
  color: #000;
}

.show_form .picker {
  display: inline-block !important;
}

.show_preview input#send-request {
  display: inline-block !important;
}

.button-right {
  float: right;
}

.button-left {
  float: left;
}

#edit-request {
  margin-right: 1em;
}

#qa-form {
  margin-bottom: 20px;
}
#qa-form .button {
  cursor: pointer;
  font-size: 1rem;
  font-family: sans-serif;
}

/*

FORM SYSTEM Customizations
*/
#main_column form #actions {
  font-size: 22px;
  height: 65px;
}
#main_column form fieldset {
  margin: 50px 0 0 0;
}
#main_column form fieldset legend {
  font-weight: 800;
  font-size: 30px;
}
#main_column form fieldset label {
  font-weight: 500;
}
#main_column form fieldset input, #main_column form fieldset select {
  padding: 10px;
}
#main_column form fieldset input[type=radio], #main_column form fieldset input[type=checkbox] {
  padding: 0px;
  padding-top: 2px;
}
#main_column form fieldset abbr[title], #main_column form fieldset abbr[data-original-title] {
  color: rgba(0, 0, 0, 0.2);
  border-bottom: none;
  cursor: help;
  padding: 5px;
}
#main_column form fieldset textarea {
  min-height: 100px;
  font-size: 18px;
}
#main_column form fieldset input.form-control,
#main_column form fieldset select.form-control {
  height: 50px;
  font-size: 18px;
}
#main_column form fieldset input.form-control:focus,
#main_column form fieldset select.form-control:focus {
  border: 1px solid #CCC;
  box-shadow: 1px, 1px, 5px, 0.5px;
}
#main_column form fieldset .note-text {
  padding: 5px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.33);
}
#main_column form fieldset + fieldset {
  margin: 50px 0 0 0;
}
#main_column form .btn {
  margin-top: 30px;
  font-size: 22px;
  padding: 20px 45px 20px 45px;
  float: right;
  color: #FFF;
}
#main_column form .btn:hover {
  background-color: rgba(0, 0, 0, 0.45);
}
#main_column form .btn + .btn {
  margin: 0 15px;
}

.popover {
  z-index: 1020;
  background-color: #fff;
}

.popover.fade.in {
  background-color: #fff;
}

.data-containers {
  float: right;
  width: 300px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  margin-left: 20px;
}

#signatures-container {
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  width: 100%;
  float: right;
  margin-bottom: 0px;
  width: 100%;
  display: block;
  position: relative;
}
#signatures-container #num-signatures-container {
  display: block;
  float: left;
  padding: 6px 20px;
  font-size: 23px;
  background-color: rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
}
#signatures-container #num-signatures-label {
  display: block;
  float: left;
  padding: 15px 10px;
  font-size: 18px;
}

.social-container {
  float: right;
  display: block;
  background: #eee;
  padding: 10px;
  margin-left: 20px;
  margin-bottom: 20px;
}
.social-container ul {
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
  width: 100%;
  display: block;
  position: relative;
  float: left;
}
.social-container ul li {
  display: block;
  float: left;
  margin: 0 15px 0 0;
}
.social-container ul li iframe {
  position: relative;
}
.social-container ul li.social-fb {
  margin-top: 1px;
}
.social-container ul li.social-plusone {
  margin-top: 2px;
}

.social-container {
  width: 100%;
  float: right;
  margin: 0;
  text-align: center;
}
.social-container ul li {
  margin: 0px 8px;
}
.social-container ul li:last-child {
  margin-right: 0px;
}

#content .amend-form-container .loader {
  position: relative;
  margin: 0 auto;
  height: 50px;
  width: 50px;
  border-left: 7px solid rgba(204, 204, 204, 0.15);
  border-right: 7px solid rgba(204, 204, 204, 0.15);
  border-bottom: 7px solid rgba(204, 204, 204, 0.15);
  border-top: 7px solid rgba(204, 204, 204, 0.8);
  border-radius: 100%;
  -webkit-animation: rotation 1s infinite linear;
  -moz-animation: rotation 1s infinite linear;
  -o-animation: rotation 1s infinite linear;
  animation: rotation 1s infinite linear;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
#content .amend-form-container form {
  /*input[type="submit"] {
  	padding: .25em .5em;
  	font-size: 1.3em;
  }*/
}
#content .amend-form-container form h2 {
  margin: 0 0 1em 0;
  font-size: 25px;
  font-weight: bold;
}
#content .amend-form-container form h3 {
  margin: 0 0 1em 0;
  font-size: 20px;
}
#content .amend-form-container form input[type=text], #content .amend-form-container form input[type=email], #content .amend-form-container form select {
  height: 50px;
}
#content .amend-form-container form input[type=text], #content .amend-form-container form input[type=email], #content .amend-form-container form textarea, #content .amend-form-container form select {
  width: 100%;
  line-height: 1.42857143;
  padding: 5px 10px;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#content .amend-form-container form select {
  padding: 10px;
  height: 50px;
  font-size: 18px;
}
#content .amend-form-container form textarea {
  min-height: 125px;
}
#content .amend-form-container form input[type=checkbox] + label,
#content .amend-form-container form input[type=radio] + label {
  display: inline;
  position: relative;
  top: 2px;
  left: 0.5em;
}
#content .amend-form-container form .checkbox input[type=checkbox] {
  margin-left: 0;
}
#content .amend-form-container form .checkbox input[type=checkbox] + label {
  top: -1px;
  left: 0.25em;
}
#content .amend-form-container form .control-group + .control-group, #content .amend-form-container form .control-group + .row, #content .amend-form-container form .row + .control-group, #content .amend-form-container form .row + .row {
  margin-top: 1em;
}

@media (max-width: 990px) {
  #content .amend-form-container form div[class^=col-] + div[class^=col-] {
    margin-top: 1em;
  }
}
.fc-tbx {
  padding: 9px 14px;
  text-align: left;
  white-space: normal;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}
.fc-tbx .arrow, .fc-tbx .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.fc-tbx .arrow {
  border-width: 11px;
}
.fc-tbx .arrow:after {
  content: "";
  border-width: 10px;
}
.fc-tbx .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.fc-tbx .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.fc-tbx ul.error-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fc-tbx ul.error-list li p {
  margin: 0;
  font-size: 18px;
  color: #464646;
}

.polls input[type=text] {
  width: 100%;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 10px;
}
.polls select {
  padding: 10px;
  height: 50px;
  font-size: 18px;
  width: 100%;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
}
.polls label {
  /*font-size: 14px;*/
  font-weight: 500;
}
.polls .control-group {
  padding: 10px 0px;
}
.polls input[type=radio] {
  margin-right: 10px;
}
.polls input.btn {
  float: right;
  font-size: 30px;
}

.hide-on-submit {
  display: none !important;
}

.hidden_set {
  margin-bottom: 50px;
  margin-top: -50px;
}
.hidden_set .control-group {
  padding-top: 20px;
}

.data-containers {
  float: right;
  width: 300px;
  text-align: center;
  border: 1px solid #d9d9d9;
  margin-bottom: 20px;
  margin-left: 20px;
}

.social-container {
  width: 100%;
  float: right;
  margin: 0;
  text-align: center;
}
.social-container ul li {
  margin: 0px 8px;
}
.social-container ul li:last-child {
  margin-right: 0px;
}

#signatures-container {
  width: 100%;
  float: right;
  margin-bottom: 0px;
}
#signatures-container #num-signatures-container {
  display: block;
  float: left;
  padding: 6px 20px;
  font-size: 23px;
  background-color: #d9d9d9;
  text-align: center;
  width: 100%;
}
#signatures-container #num-signatures-container strong {
  font-weight: normal;
}
#signatures-container #num-signatures-label {
  display: block;
  float: left;
  padding: 15px 10px;
  font-size: 18px;
}

/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
  /*.dow {
  	border-top: 1px solid #ddd !important;
  }*/
}
.datepicker-inline {
  width: 220px;
}
.datepicker-rtl {
  direction: rtl;
}
.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: "";
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: "";
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-top:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.datepicker > div {
  display: none;
}
.datepicker.days div.datepicker-days {
  display: block;
}
.datepicker.months div.datepicker-months {
  display: block;
}
.datepicker.years div.datepicker-years {
  display: block;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker table tr td, .datepicker table tr th {
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td, .table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day:hover, .datepicker table tr td.day.focused {
  background: #eeeeee;
  cursor: pointer;
}
.datepicker table tr td.old, .datepicker table tr td.new {
  color: #999999;
}
.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td.today:hover:hover {
  color: #000;
}
.datepicker table tr td.today.active:hover {
  color: #fff;
}
.datepicker table tr td.range, .datepicker table tr td.range:hover, .datepicker table tr td.range.disabled, .datepicker table tr td.range.disabled:hover {
  background: #eeeeee;
  border-radius: 0;
}
.datepicker table tr td.range.today, .datepicker table tr td.range.today:hover, .datepicker table tr td.range.today.disabled, .datepicker table tr td.range.today.disabled:hover {
  border-radius: 0;
}
.datepicker table tr td.selected, .datepicker table tr td.selected:hover, .datepicker table tr td.selected.disabled, .datepicker table tr td.selected.disabled:hover {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active, .datepicker table tr td.active:hover, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.datepicker table tr td span:hover {
  background: #eeeeee;
}
.datepicker table tr td span.disabled, .datepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datepicker table tr td span.active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.old, .datepicker table tr td span.new {
  color: #999999;
}
.datepicker th.datepicker-switch {
  width: 145px;
}
.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.datepicker thead tr:first-child th.cw {
  cursor: default;
  background-color: transparent;
}

.input-group.date .input-group-addon i {
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}
.input-daterange .input-group-addon {
  width: auto;
  min-width: 16px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: solid #ccc;
  border-width: 1px 0;
  margin-left: -5px;
  margin-right: -5px;
}

/*# sourceMappingURL=common.css.map */
