/* IMPORT SITE CUSTOM STYLES */
/*
Raleway Bold
font-family: raleway, sans-serif;
font-weight: 700;
font-style: normal;


Raleway Regular
font-family: raleway, sans-serif;
font-weight: 400;
font-style: normal;


Raleway ExtraBold
font-family: raleway, sans-serif;
font-weight: 800;
font-style: normal;


Raleway Black
font-family: raleway, sans-serif;
font-weight: 900;
font-style: normal;
*/
.thered {
  color: #c8102e;
}

body {
  font-family: raleway, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  color: #5d6062;
  -webkit-font-smoothing: subpixel-antialiased;
}

a {
  color: #3083a8;
  cursor: pointer;
}

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

.btn {
  font-family: raleway, sans-serif;
  font-weight: 800;
  font-style: normal;
  padding: 10px 25px;
  color: #fff;
  background-color: #c8102e;
  border: 3px solid #c8102e;
  border-radius: 0;
  text-transform: uppercase;
}
.btn:hover {
  border: 3px solid #990c23;
  color: #fff;
  background-color: #990c23;
}

.main-bold {
  font-family: raleway, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.btn-primary {
  background-color: #a7a8aa;
}
.btn-primary:hover {
  background-color: #808284;
}

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

h1,
h2,
h3,
h4 {
  font-weight: bold;
  font-family: raleway, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.sam-headertitleh3 {
  font-weight: bold;
  font-family: raleway, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 40px;
}

.sam-headertitleh4 {
  font-weight: bold;
  font-family: raleway, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 34px;
}

h1 {
  font-size: 80px;
}
@media (max-width: 991px) {
  h1 {
    font-size: 68px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 54px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 60px;
}
@media (max-width: 991px) {
  h2 {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 500px) {
  h2 {
    font-size: 32px;
  }
}

h2.subtitle {
  font-size: 34px;
}
@media (max-width: 767px) {
  h2.subtitle {
    font-size: 28px;
  }
}

h3 {
  font-size: 40px;
}
@media (max-width: 991px) {
  h3 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 34px;
}
@media (max-width: 500px) {
  h4 {
    font-size: 20px;
  }
}

.strong {
  font-weight: bolder;
}

.main_page_title {
  text-transform: uppercase;
  color: #043b63;
}
@media (max-width: 991px) {
  .main_page_title {
    font-size: 68px;
  }
}
@media (max-width: 767px) {
  .main_page_title {
    font-size: 54px;
  }
}
@media (max-width: 500px) {
  .main_page_title {
    font-size: 48px;
  }
}

#breadcrumb {
  display: none;
}
#breadcrumb .breadcrumb .breadcrumb-item a {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  color: #5d6062;
  text-transform: uppercase;
}

/**
 * Font-mixin overrides must include `font-family`, `font-style`, and `font-weight`
 */
.leftsliding {
  opacity: 0;
  transform: translateX(-100%);
  transition: 1.4s ease-in-out;
}
.leftsliding.animate {
  opacity: 1;
  transform: translateX(0%);
}

.rightsliding {
  opacity: 0;
  transform: translateX(100%);
  transition: 1.4s ease-in-out;
}
.rightsliding.animate {
  opacity: 1;
  transform: translateX(0%);
}

.ghostride {
  opacity: 0;
  transform: translateY(20%);
  transition: 0.8s ease-in-out;
}
.ghostride.animate {
  opacity: 1;
  transform: translateY(0%);
}

.ghostappear {
  opacity: 0;
  transition: 0.8s ease-in-out;
}
.ghostappear.animate {
  opacity: 1;
}

.showingthis .leftsliding {
  opacity: 1;
  transform: translateX(0%);
}
.showingthis .rightsliding {
  opacity: 1;
  transform: translateX(0%);
}
.showingthis .ghostride {
  opacity: 1;
  transform: translateY(0%);
}
.showingthis .ghostappear {
  opacity: 1;
  transform: translateX(0%);
}

.delaytime {
  transition: 2s ease-in-out !important;
}

@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 .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;
}
.navbar .nav-pills.fade-out {
  opacity: 0;
}
.navbar .nav-pills li {
  padding: 1rem;
}
.navbar .nav-pills li a {
  color: #fff;
  font-family: raleway, sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
}
.navbar .nav-pills li:hover .dropdown-menu {
  display: block;
}
.navbar .nav-pills li .dropdown-menu {
  top: 100%;
  left: auto;
  margin: 0px;
  padding: 0px;
}
.navbar .nav-pills li .dropdown-menu > li a {
  color: #c8102e;
}
.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: #fff;
}
.navbar .togglemenu {
  margin-left: 10px;
  color: #fff;
  font-size: 22px;
}

/*Mobile NAV*/
#NavMobileModal .nav .nav-item a {
  font-size: 50px;
  color: #fff;
  font-family: raleway, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

#header {
  background-color: transparent;
  height: auto;
  display: block;
  width: auto;
  position: absolute;
  margin: 0 auto;
  top: 0;
  z-index: 1000;
  padding-top: 1rem;
  left: 2rem;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  #header {
    left: 0;
    padding: 1rem 1.5rem;
  }
}
#header .header-holder {
  display: table;
  height: auto;
  width: auto;
  vertical-align: middle;
  margin: 0 auto;
  padding: 0.2rem 1rem;
  border-radius: 10px;
  background-color: transparent;
  box-shadow: none;
  /*
      &.blueicon,&.whiteicon{

       .top-logo{
         opacity: 0;
         top: -100px;
         position: relative;

       }

      }

      &.blueicon{
        .togglemenu{
          color: $primary;
        }
      }
      &.whiteicon{
        .togglemenu{
          color: $white;
          border-right: 1px solid white;
        }
      }*/
}
@media (max-width: 1150px) {
  #header .header-holder {
    box-shadow: 1px 5px 10px 1px rgba(0, 0, 0, 0.55);
    background-color: white;
  }
}
#header .header-holder .menuarea {
  display: table;
  vertical-align: middle;
  padding-right: 1.5rem;
  border-right: 1px solid #043b63;
}
#header .header-holder .togglemenu {
  font-size: 50px;
  color: #043b63;
  display: table-cell;
  vertical-align: middle;
  padding-right: 1rem;
  transition: all 0.2s ease-in-out;
}
#header .header-holder .togglemenu:hover {
  color: #3083a8;
}
@media (max-width: 641px) {
  #header .header-holder .togglemenu {
    font-size: 38px;
    padding-right: 1rem;
  }
}
#header .header-holder .srchbuttonmodal {
  display: table-cell;
  vertical-align: middle;
  font-size: 30px;
}
#header .header-holder .logo-holder {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  padding-left: 1.5rem;
}
#header .header-holder .logo-holder .logo-hold {
  width: auto;
  display: table;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}
#header .header-holder .logo-holder .logo-hold img {
  width: 100%;
}
#header .header-holder .logo-holder .logo-hold .top-logo {
  z-index: 1;
}
#header .header-holder .logo-holder .logo-hold .top-iconholder {
  display: table-cell;
  width: 130px;
  height: 50px;
  position: relative;
  margin-right: 10px;
  vertical-align: middle;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1300px) {
  #header .header-holder .logo-holder .logo-hold .top-iconholder {
    width: 110px;
  }
}
@media (max-width: 641px) {
  #header .header-holder .logo-holder .logo-hold .top-iconholder {
    width: 90px;
  }
}
#header .header-holder .logo-holder .logo-hold .top-logotext {
  display: table-cell;
  vertical-align: middle;
  text-transform: uppercase;
  font-size: 50px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1300px) {
  #header .header-holder .logo-holder .logo-hold .top-logotext {
    font-size: 42px;
  }
}
@media (max-width: 641px) {
  #header .header-holder .logo-holder .logo-hold .top-logotext {
    display: none;
  }
}
#header .header-holder .logo-holder .logo-hold .top-icon {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.2s ease-in-out;
}
#header .header-holder .logo-holder .logo-hold .top-icon.blue {
  opacity: 1;
}
#header .header-holder .logo-holder .logo-hold .top-icon.showing {
  opacity: 1;
  z-index: 1;
}
#header .header-holder .logo-holder .logo-hold:hover {
  text-decoration: none;
  color: #043b63;
}
@media (max-width: 768px) {
  #header .header-holder .logo-holder {
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: center;
    padding: 5px 15px;
  }
}
#header .header-holder .header-nav-holder {
  display: table-cell;
  vertical-align: middle;
  transition: opacity 0.2s ease-in-out;
}
#header .header-holder .header-nav-holder .right {
  float: right;
}
#header .header-holder .header-nav-holder .nav-hold {
  float: right;
}
@media (max-width: 768px) {
  #header .header-holder .header-nav-holder .nav-hold {
    float: left;
  }
}
@media (max-width: 768px) {
  #header .header-holder .header-nav-holder {
    max-width: 540px;
    width: 100%;
    display: table;
    padding: 5px 15px;
    margin: 0 auto;
  }
}
#header .header-holder .header-nav-holder .togglemenu {
  transition: color 0.2s ease-in-out;
}
#header .header-holder.internalnav {
  box-shadow: 1px 5px 10px 1px rgba(0, 0, 0, 0.55);
  background-color: white;
}
#header .header-holder.internalnav .togglemenu {
  font-size: 44px;
}
@media (max-width: 641px) {
  #header .header-holder.internalnav .togglemenu {
    font-size: 38px;
    padding-right: 1rem;
  }
}
#header .header-holder.internalnav .logo-hold .top-iconholder {
  width: 110px;
}
@media (max-width: 641px) {
  #header .header-holder.internalnav .logo-hold .top-iconholder {
    width: 90px;
  }
}
#header .header-holder.internalnav .logo-hold .top-logotext {
  font-size: 44px;
}
#header .header-holder.scrolling {
  box-shadow: 1px 5px 10px 1px rgba(0, 0, 0, 0.55);
  background-color: white;
}
#header .header-holder.scrolling .header-nav-holder {
  opacity: 0;
  top: -100px;
  position: relative;
}
#header .header-holder.scrolling .togglemenu {
  font-size: 38px;
  padding-right: 1rem;
}
#header .header-holder.scrolling .logo-holder {
  padding-left: 1rem;
}
#header .header-holder.scrolling .logo-holder .top-iconholder {
  width: 90px;
}
#header .header-holder.scrolling .logo-holder .top-logotext {
  display: none;
}
@media (max-width: 830px) {
  #header.morphintime {
    opacity: 0;
    z-index: -1;
  }
}
#header.alertbar {
  top: 5rem;
}
@media (max-width: 916px) {
  #header.alertbar {
    top: 5.6rem;
  }
}
@media (max-width: 767px) {
  #header.alertbar {
    top: 5rem;
  }
}
@media (max-width: 554px) {
  #header.alertbar {
    top: 7.5rem;
  }
}
#header.scroll {
  position: fixed;
  top: 0;
}

.modal .modal-dialog {
  height: 100%;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  display: table;
  vertical-align: middle;
  background-color: #043b63;
}
.modal .modal-content {
  background-color: #043b63;
  height: auto;
  vertical-align: middle;
  display: block;
  max-width: 50%;
  width: 100%;
  border: 0;
  margin: 6% auto;
  border-radius: 0;
}
.modal .modal-content .modal-header {
  top: 0;
  right: 0;
  border: 0;
  z-index: 1050;
  padding: 2rem;
}
.modal .modal-content .modal-header .close {
  background-color: #fff;
  opacity: 1;
  width: 40px;
  height: 40px;
  font-size: 18px;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}
.modal .modal-content .modal-header .close:hover {
  background-color: #e6e6e6;
}
@media (max-width: 767px) {
  .modal .modal-content .modal-header .close {
    margin: 0;
    right: 15px;
  }
}
.modal .modal-content .modal-header .modal-title {
  color: white;
  font-size: 56px;
}
.modal .modal-content .modal-body {
  padding: 2rem;
}
.modal .modal-content .modal-body .nav .nav-item {
  padding-bottom: 0.5rem;
}
.modal .modal-content .modal-body .nav .nav-item a {
  font-size: 32px;
}
.modal .modal-content .modal-body select, .modal .modal-content .modal-body input {
  height: 60px;
  width: 100%;
  display: block;
  margin-bottom: 1rem;
}
.modal .modal-content .modal-body input[type=button] {
  width: auto;
  height: auto;
}
@media (max-width: 767px) {
  .modal .modal-content .modal-body {
    padding: 1.5rem;
  }
}
.modal .modal-content .modal-body #sitesearch {
  padding: 0px;
}
.modal .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;
}
.modal .modal-content .modal-body #sitesearch input[type=search]:focus {
  outline: none;
}
.modal .modal-content .modal-body #sitesearch button {
  background-color: #3083a8;
  margin-top: 2em;
  width: 100%;
  padding: 0.7rem;
  border: 0;
  font-size: 26px;
  border-radius: 0px;
  font-family: raleway, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: white;
}
.modal .modal-content .modal-body #sitesearch button:hover {
  background-color: #1f556d;
}
.modal .modal-content .modal-summarybody {
  color: #fff;
  text-align: left;
  padding: 6rem 0rem;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}
.modal .modal-content .modal-summarybody a {
  color: #c8102e;
  font-weight: bold;
}
.modal .modal-content .modal-summarybody a:hover {
  color: #c8102e;
}
.modal .modal-content .modal-summarybody .modalsubtitle {
  font-size: 40px;
  font-weight: bold;
  font-family: raleway, sans-serif;
  font-weight: 800;
  font-style: normal;
}
@media (max-width: 767px) {
  .modal .modal-content {
    max-width: 100%;
  }
}
.modal .modal-servicecontent {
  width: 75%;
}
.modal .modal-servicecontent .modal-header {
  position: relative;
}
.modal .modal-servicecontent .modal-summarybody {
  padding: 0rem;
}

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

body#home .textslide {
  position: relative;
  right: -10000px;
  transition: right 0.4s ease-in-out;
}
body#home .textslide.slideleft {
  right: 0;
}
body#home .ghost {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
body#home .ghost.boo {
  opacity: 1;
}
body#home .home-content {
  position: relative;
}
body#home .homenav {
  position: absolute;
  top: 1rem;
  right: 2rem;
  z-index: 110;
  padding: 1rem 0.5rem;
  background-color: transparent;
  border-radius: 15px;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
  width: 100%;
  max-width: 645px;
}
@media (max-width: 1198px) {
  body#home .homenav {
    max-width: 550px;
    box-shadow: 1px 5px 10px 1px rgba(0, 0, 0, 0.55);
    background-color: white;
    right: -31rem;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;
  }
  body#home .homenav .homenav__list--anchor {
    color: #043b63;
  }
  body#home .homenav .homenav__list--anchor:hover {
    background-color: white;
    text-decoration: none;
    color: #3083a8;
  }
  body#home .homenav .homenav__list--firstitem {
    opacity: 1;
    z-index: 1;
  }
}
body#home .homenav__list {
  padding: 0;
  width: 100%;
  margin: 0 auto;
  vertical-align: middle;
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 1198px) {
  body#home .homenav__list {
    display: block;
    justify-content: normal;
  }
}
body#home .homenav__list--item {
  display: inline-block;
}
body#home .homenav__list--item:first-child .homenav__list--anchor {
  padding: 5px 10px;
}
@media (max-width: 550px) {
  body#home .homenav__list--item:first-child .homenav__list--anchor {
    padding: 5px 10px;
  }
}
body#home .homenav__list--firstitem {
  opacity: 0;
  z-index: -1;
  position: relative;
}
body#home .homenav__list--anchor {
  padding: 5px 15px;
  color: #fff;
  font-family: raleway, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  font-size: 20px;
  border-radius: 5px;
}
@media (max-width: 1198px) {
  body#home .homenav__list--anchor {
    padding: 5px 10px;
  }
}
@media (max-width: 550px) {
  body#home .homenav__list--anchor {
    padding: 5px;
  }
}
body#home .homenav.scrolling {
  box-shadow: 1px 5px 10px 1px rgba(0, 0, 0, 0.55);
  background-color: white;
  right: -36rem;
  top: 1rem;
  position: fixed;
}
@media (max-width: 1198px) {
  body#home .homenav.scrolling {
    right: -31rem;
    opacity: 1;
    z-index: 110;
  }
}
body#home .homenav.scrolling .homenav__list--anchor {
  color: #043b63;
}
body#home .homenav.scrolling .homenav__list--anchor:hover {
  background-color: white;
  text-decoration: none;
  color: #3083a8;
}
body#home .homenav.scrolling .homenav__list--firstitem {
  opacity: 1;
  z-index: 1;
}
body#home .homenav.activated {
  right: 2rem;
}
@media (max-width: 550px) {
  body#home .homenav.activated {
    right: 0rem;
  }
}
body#home .homenav.alertbar {
  top: 2rem;
}
body#home .homenav.alertbar.scrolling {
  top: 1rem;
}
body#home .section {
  margin-bottom: 0px;
  border-radius: 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: table;
  backface-visibility: visible;
}
body#home .section__one {
  overflow: hidden;
}
body#home .section__one--content {
  height: 100%;
  display: table;
}
body#home .section__one--bannerholder {
  width: 100%;
  height: 100vh;
  display: table;
  position: relative;
  vertical-align: middle;
  width: 100%;
}
body#home .section__one--bannerback {
  display: table;
  vertical-align: middle;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
}
body#home .section__one--bannerwhite {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  width: 50%;
  position: relative;
  background-color: transparent;
  box-shadow: inset 0px 100px 65px 0px white;
}
@media (max-width: 768px) {
  body#home .section__one--bannerwhite {
    display: none;
  }
}
body#home .section__one--bannerblue {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  position: relative;
  background-color: rgba(48, 131, 168, 0.85);
}
@media (max-width: 768px) {
  body#home .section__one--bannerblue {
    display: none;
  }
}
body#home .section__one--bannerheader {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  z-index: 100;
  position: relative;
  width: 50%;
  padding: 15rem 4rem 0rem;
}
@media (max-width: 768px) {
  body#home .section__one--bannerheader {
    padding: 1.5rem 2rem;
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0rem;
    background-color: rgba(48, 131, 168, 0.85);
    box-shadow: 0px -10px 75px 70px rgba(48, 131, 168, 0.85);
  }
}
@media (max-width: 500px) {
  body#home .section__one--bannerheader {
    padding: 1.5rem;
  }
}
body#home .section__one--subtitle {
  text-transform: uppercase;
  color: #043b63;
  font-size: 40px;
  font-weight: bold;
  font-family: raleway, sans-serif;
  font-weight: 800;
  font-style: normal;
}
@media (max-width: 991px) {
  body#home .section__one--subtitle {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  body#home .section__one--subtitle {
    font-size: 30px;
  }
}
@media (max-width: 500px) {
  body#home .section__one--subtitle {
    font-size: 28px;
  }
}
body#home .section__one--headerholder h1 {
  text-transform: uppercase;
  color: #043b63;
}
body#home .section__one--headerholder .lead {
  color: white;
}
@media (max-width: 991px) {
  body#home .section__one--headerholder h1 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  body#home .section__one--headerholder h1 {
    font-size: 56px;
  }
}
@media (max-width: 500px) {
  body#home .section__one--headerholder h1 {
    font-size: 48px;
  }
}
body#home .section__one--buttonsholder {
  display: inline-block;
}
body#home .section__one--button {
  display: inline-block;
  position: relative;
  bottom: 0px;
  transition: all 0.8s ease-in-out;
}
@media (max-width: 475px) {
  body#home .section__one--button {
    margin-bottom: 1rem;
  }
}
body#home .section__two {
  background-attachment: fixed;
}
body#home .section__two--pressholder {
  width: 100%;
  height: auto;
  min-height: 470px;
  margin: 0;
  background-color: white;
}
body#home .section__two--pressheader {
  text-transform: uppercase;
  color: #043b63;
}
@media (max-width: 860px) {
  body#home .section__two--pressheader {
    font-size: 44px;
  }
}
body#home .section__two--pressheader a {
  color: #043b63;
}
body#home .section__two--pressitem {
  display: table;
  vertical-align: middle;
  height: 100%;
}
body#home .section__two--press {
  display: block;
  margin-bottom: 2rem;
  padding-left: 5rem;
}
@media (max-width: 991px) {
  body#home .section__two--press {
    padding-left: 0;
  }
}
body#home .section__two--pressblock {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  width: 100%;
  padding: 5rem 1.5rem;
  overflow: hidden;
}
body#home .section__two--pressdate {
  font-family: raleway, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 20px;
  display: block;
  text-transform: uppercase;
}
body#home .section__two--presstitle {
  font-size: 36px;
  font-family: raleway, sans-serif;
  font-weight: 800;
  font-style: normal;
  color: #3083a8;
  display: block;
}
@media (max-width: 860px) {
  body#home .section__two--presstitle {
    font-size: 30px;
  }
}
body#home .section__two--imageitem {
  padding: 0;
}
body#home .section__two--image {
  background-size: cover;
  background-position: center;
  width: 100%;
  clear: none;
  height: 100vh;
  margin: 0 0 0 0;
  position: sticky;
  top: 0;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  body#home .section__two--image {
    height: 60vh;
    background-position: top;
  }
}
body#home .section__two--twitterhold {
  display: table;
  width: 100%;
  height: auto;
  min-height: 470px;
  position: relative;
}
body#home .section__two .twitterfeed {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
body#home .section__two .twitterfeed:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-color: rgba(48, 131, 168, 0.85);
  left: 0;
  top: 0;
}
body#home .section__two .twitterfeed .twitter-bar {
  text-align: center;
  width: 100%;
  display: table;
  position: relative;
  height: 100%;
}
body#home .section__two .twitterfeed .twitter-bar .twitter-bird {
  color: white;
  font-size: 36px;
  z-index: 200;
  position: relative;
  margin: 0 auto;
}
body#home .section__two .twitterfeed .twitter-bar .twitter-bird:hover {
  color: #2AA3EF;
}
body#home .section__two .twitterfeed .twitter-bar .twitter-bird .twitter-tagline {
  font-size: 24px;
  color: white;
  padding-left: 15px;
}
body#home .section__two .twitterfeed .twitter-bar #twitter-carousel {
  position: relative;
  height: 100%;
}
body#home .section__two .twitterfeed .twitter-bar #twitter-carousel #carousel .carousel-inner {
  text-align: center;
  height: auto;
}
body#home .section__two .twitterfeed .twitter-bar #twitter-carousel #carousel .carousel-inner .tweets {
  margin: 0 auto;
  color: white;
  min-height: 230px;
  font-size: 28px;
}
@media (max-width: 991px) {
  body#home .section__two .twitterfeed .twitter-bar #twitter-carousel #carousel .carousel-inner .tweets {
    font-size: 20px;
  }
}
body#home .section__two .twitterfeed .twitter-bar #twitter-carousel #carousel .carousel-inner .tweets a {
  color: white;
}
body#home .section__two .twitterfeed .twitter-bar #twitter-carousel #carousel .carousel-inner .tweets a:hover {
  color: white;
}
body#home .section__two .twitterfeed .twitter-bar #twitter-carousel #carousel .carousel-inner .tweets .tweet {
  word-break: break-word;
  width: 70%;
  margin: 0 auto;
}
body#home .section__three {
  background-attachment: fixed;
}
body#home .section__three--missionholder {
  width: 100%;
  height: auto;
  min-height: 470px;
  margin: 0;
  background-color: white;
}
body#home .section__three--missionheader {
  text-transform: uppercase;
  color: #043b63;
}
@media (max-width: 860px) {
  body#home .section__three--missionheader {
    font-size: 44px;
  }
}
body#home .section__three--missiontext {
  font-size: 20px;
  padding-left: 5rem;
}
@media (max-width: 991px) {
  body#home .section__three--missiontext {
    padding-left: 0;
  }
}
body#home .section__three--missionitem {
  display: table;
  vertical-align: middle;
  height: 100%;
  overflow: hidden;
}
body#home .section__three--missionblock {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  width: 100%;
  padding: 5rem 1.5rem;
}
body#home .section__three--imageitem {
  padding: 0;
}
body#home .section__three--image {
  background-size: cover;
  background-position: center;
  width: 100%;
  clear: none;
  height: 100vh;
  margin: 0 0 0 0;
  position: sticky;
  top: 0;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  body#home .section__three--image {
    height: 60vh;
    background-position: top;
  }
}
body#home .section__three--votehold {
  display: table;
  width: 100%;
  height: auto;
  min-height: 470px;
  vertical-align: middle;
  position: relative;
}
body#home .section__three--votehold:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-color: rgba(48, 131, 168, 0.85);
  left: 0;
  top: 0;
}
body#home .section__three--votesection {
  vertical-align: middle;
  display: table;
  width: 100%;
  height: 100%;
}
body#home .section__three--votecontent {
  vertical-align: middle;
  display: table-cell;
  width: 100%;
  height: 100%;
  padding: 3rem;
}
body#home .section__three--voteheader {
  color: white;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 860px) {
  body#home .section__three--voteheader {
    font-size: 44px;
  }
}
body#home .section__three--votes {
  text-align: left;
  color: white;
  padding: 2rem 0;
}
body#home .section__three--votes .headers {
  text-transform: uppercase;
  text-align: left;
}
body#home .section__three--votes .bill a {
  color: white;
}
body#home .section__three--votes .bill a:hover {
  color: white;
}
body#home .section__three--votes .votesection {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
body#home .section__three--votebuttons {
  display: inline-block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
body#home .section__three--button {
  display: inline-block;
  margin-bottom: 1rem;
}
body#home .section__four {
  background-attachment: fixed;
}
body#home .section__four--aboutholder {
  width: 100%;
  height: auto;
  min-height: 470px;
  margin: 0;
  background-color: white;
}
body#home .section__four--aboutheader {
  text-transform: uppercase;
  color: #043b63;
}
@media (max-width: 860px) {
  body#home .section__four--aboutheader {
    font-size: 44px;
  }
}
body#home .section__four--aboutitem {
  display: table;
  vertical-align: middle;
  height: 100%;
  overflow: hidden;
}
body#home .section__four--aboutblock {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  width: 100%;
  padding: 5rem 1.5rem;
}
body#home .section__four--abouttext {
  padding-left: 5rem;
}
@media (max-width: 991px) {
  body#home .section__four--abouttext {
    padding-left: 0;
  }
}
body#home .section__four--imageitem {
  padding: 0;
}
body#home .section__four--image {
  background-size: cover;
  background-position: center;
  width: 100%;
  clear: none;
  height: 100vh;
  margin: 0 0 0 0;
  position: sticky;
  top: 0;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  body#home .section__four--image {
    height: 60vh;
    background-position: top;
  }
}
body#home .section__four--talkhold {
  display: table;
  width: 100%;
  height: auto;
  min-height: 470px;
  vertical-align: middle;
  position: relative;
}
body#home .section__four--talkhold:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-color: rgba(48, 131, 168, 0.85);
  left: 0;
  top: 0;
}
body#home .section__four--talksection {
  vertical-align: middle;
  display: table-cell;
  width: 100%;
  height: 100%;
}
body#home .section__four--talkcontent {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  padding: 3rem;
}
body#home .section__four--talkheader {
  color: white;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 860px) {
  body#home .section__four--talkheader {
    font-size: 44px;
  }
}
body#home .section__four--talkbuttons {
  display: inline-block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}
body#home .section__four--button {
  display: inline-block;
}
body#home .section__four--link.active {
  background-color: #c8102e;
}
body#home .section__four--talkform {
  display: block;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  background-color: rgba(4, 58, 99, 0.45);
  padding: 2rem;
}
body#home .section__four--talkform .controls input[type=text], body#home .section__four--talkform .controls select {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  height: 40px;
  padding: 5px;
  box-shadow: none;
  border: 1px solid #ecebeb;
}
body#home .section__four--talkform .controls textarea {
  width: 100%;
  min-height: 200px;
}
body#home .section__four--talkform input[type=checkbox] {
  margin-right: 10px;
}
body#home .section__four--talkform .thankyoutext {
  padding: 2rem 0;
  text-align: center;
}
body#home .section__four fieldset legend {
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
}
body#home .section__five {
  height: 100% !important;
}
body#home .section__five--newsletterholder {
  width: 100%;
  height: 55%;
  margin: 0;
  background-color: white;
}
body#home .section__five--newsletterheader {
  text-transform: uppercase;
  color: #043b63;
  padding-bottom: 2rem;
}
@media (max-width: 860px) {
  body#home .section__five--newsletterheader {
    font-size: 44px;
  }
}
body#home .section__five--newsletteritem {
  display: table;
  vertical-align: middle;
  height: 100%;
}
body#home .section__five--newsletterblock {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  width: 100%;
  padding: 5rem 1.5rem;
}
body#home .section__five--imageitem {
  padding: 0;
}
body#home .section__five--image {
  background-size: cover;
  background-position: top;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}
body#home .section__five--field {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  height: 40px;
  padding: 5px;
  box-shadow: none;
  border: 1px solid #ecebeb;
}
body#home .section__five--fielditem {
  border-left: 3px solid #3083a8;
}
body#home .section__five--submit {
  padding: 10px 65px;
}
body#home .section__five--submit:hover {
  color: white;
}
body#home .section__five--button {
  position: relative;
  margin: 0 auto;
  opacity: 1;
  z-index: 1;
}
body#home .section__five--button.active {
  opacity: 1 !important;
  z-index: 1 !important;
  position: relative !important;
  transition: all 0.3s ease-in-out;
}
body#home .section__five--button.active .section__five--servicesimage {
  transform: scale(1.2);
  opacity: 0;
}
body#home .section__five--button.active .section__five--servicesimagehover {
  transform: scale(1.2);
  opacity: 1;
}
body#home .section__five--button.nonactive {
  opacity: 0;
  z-index: -1;
  position: absolute;
}
body#home .section__five--serviceshold {
  display: table;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  position: relative;
  background-color: #ecebeb;
}
body#home .section__five--servicessection {
  vertical-align: middle;
  display: table;
  width: 100%;
  height: 100%;
}
body#home .section__five--servicescontent {
  vertical-align: middle;
  display: table-cell;
  width: 100%;
  height: 100%;
  padding: 3rem;
}
body#home .section__five--servicesheader {
  color: #043b63;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 860px) {
  body#home .section__five--servicesheader {
    font-size: 44px;
  }
}
body#home .section__five--servicesbuttons {
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}
body#home .section__five--servicesholder {
  display: table;
  height: 150px;
  vertical-align: middle;
  width: 100%;
  margin: 1rem auto;
}
body#home .section__five--servicesbox {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  padding: 0 4.5rem;
}
body#home .section__five--servicesbox:hover .section__five--servicesimage {
  transform: scale(1.2);
  opacity: 0;
}
body#home .section__five--servicesbox:hover .section__five--servicesimagehover {
  transform: scale(1.2);
  opacity: 1;
}
@media (max-width: 991px) {
  body#home .section__five--servicesbox {
    padding: 0;
  }
}
body#home .section__five--servicesimghold {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: table;
  margin-bottom: 1rem;
  padding: 1.5rem;
  vertical-align: middle;
  position: relative;
}
body#home .section__five--servicesimage {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
body#home .section__five--servicesimagehover {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
body#home .section__five--servicestitle {
  font-family: raleway, sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  color: #043b63;
}
body#home .section__five--form {
  display: block;
  position: relative;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  color: #fff;
  background-color: #043b63;
  padding: 2rem;
  transition: all 0.3s ease-in-out;
}
body#home .section__five--form .controls input[type=text], body#home .section__five--form .controls select {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  height: 40px;
  padding: 5px;
  box-shadow: none;
  border: 1px solid #ecebeb;
}
body#home .section__five--form .controls input[type=submit] {
  margin-top: 3rem;
}
body#home .section__five--form .controls textarea {
  width: 100%;
  min-height: 200px;
}
body#home .section__five--form input[type=checkbox] {
  margin-right: 10px;
}
body#home .section__five--form .thankyoutext {
  padding: 2rem 0;
  text-align: center;
}
body#home .section__five--form fieldset legend {
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
}
body#home .section__five--formtitle {
  text-align: center;
}
@media (max-width: 600px) {
  body#home .section__five--formtitle {
    font-size: 44px;
  }
}
body#home .section__six {
  height: 100% !important;
}
body#home .section__six--officeholder {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: white;
}
body#home .section__six--officeheader {
  text-transform: uppercase;
  color: #043b63;
  padding-bottom: 2rem;
}
@media (max-width: 860px) {
  body#home .section__six--officeheader {
    font-size: 44px;
  }
}
body#home .section__six--officeitem {
  display: table;
  vertical-align: middle;
  height: 100%;
}
body#home .section__six--officeblock {
  display: table-cell;
  vertical-align: middle;
  height: 100vh;
  width: 100%;
  padding: 1.5rem;
}
body#home .section__six--office {
  margin-bottom: 2rem;
  display: block;
}
body#home .section__six--officetitle {
  color: #3083a8;
}
body#home .section__six--officeaddress {
  padding-bottom: 2rem;
}
body#home .section__six--map {
  position: relative;
  padding: 0;
}
body#home .section__six--mapiframe {
  height: 100%;
  position: relative;
  display: table;
  width: 100%;
}
body#home .section__six--mapiframe iframe {
  height: 100% !important;
  width: 100% !important;
  position: relative;
  display: table-cell;
}
@media (max-width: 768px) {
  body#home .section__six--mapiframe {
    height: 600px;
  }
}

#breadcrumb {
  display: none;
}

.container {
  max-width: 100%;
  padding: 0;
}

.nonrow {
  margin: 0;
}

#filterbuttons {
  position: absolute;
  right: 2rem;
  top: 3rem;
}
#filterbuttons .btn-sm, #filterbuttons .btn {
  padding: 5px;
}
@media (max-width: 767px) {
  #filterbuttons {
    position: relative;
    right: 0;
    top: 0;
    padding-bottom: 1rem;
  }
}

#listblocks .block {
  margin-bottom: 30px;
  background-color: #5d6062;
  width: 100%;
  display: block;
}
#listblocks .block .desc {
  padding: 20px;
  min-height: 170px;
}
#listblocks .block .desc p {
  width: 100%;
  margin: 0px;
}
#listblocks .block a {
  background-color: #5d6062;
  width: 100%;
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 22px;
  color: #fff;
  font-weight: 300;
  min-height: 100px;
}
#listblocks .block a:hover {
  text-decoration: none;
}
#listblocks .block a > img {
  float: left;
}
#listblocks .block a .media-heading {
  float: left;
  position: relative;
  top: 18px;
}
#listblocks .block a .media-heading.noimg {
  width: 100%;
  text-align: center;
  display: block;
}
#listblocks .block a .media-heading.withimg {
  left: 20px;
  display: block;
  width: 75%;
}
#listblocks .block:hover {
  background-color: #444648;
}
#listblocks .block:hover a {
  background-color: #444648;
}
#listblocks .block.noimg a {
  height: auto;
  min-height: 95px;
}

#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 #side-search-btn {
  padding: 10px 20px;
}

#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;
}

#main_container .one_column.row, #main_container .two_column.row {
  margin: 0;
}

.section__internal--sidepod {
  position: absolute;
  top: 10rem;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.section__internal--bioimage {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
}
.section__internal--bioimage img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .section__internal--bioimage img {
    display: none;
  }
}
.section__internal--imageitem {
  padding: 0;
  background-color: rgba(48, 131, 168, 0.85);
}
.section__internal--image {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  position: sticky;
  background-repeat: no-repeat;
  z-index: -1;
  top: 0;
}
@media (max-width: 768px) {
  .section__internal--image {
    height: 400px;
  }
}
.section__internal--item {
  padding: 0.5rem 3rem 3rem;
}
@media (max-width: 768px) {
  .section__internal--item {
    padding: 1.5rem;
  }
}
.section__internal--collapseitem {
  display: block;
  margin-bottom: 1.5rem;
}
.section__internal--collapseitem #sam-vision h1 {
  font-size: 40px;
}
.section__internal--collapselink {
  width: 100%;
  display: block;
  border-bottom: 5px solid #3083a8;
  padding-bottom: 0.5em;
  color: #3083a8;
  margin-bottom: 1em;
}
.section__internal--collapselink:hover {
  border-bottom: 5px solid #043b63;
  text-decoration: none;
  color: #043b63;
}
.section__internal--collapsetitle {
  font-family: raleway, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  font-size: 28px;
  display: block;
  padding-right: 2rem;
}
.section__internal--collapsefa {
  float: right;
  position: relative;
  top: -35px;
  font-size: 30px;
}
.section__internal--snippetholder {
  position: relative;
  height: auto;
  width: 100%;
  display: block;
}
.section__internal--snippetbody {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: table;
  width: 100%;
  height: auto;
  z-index: -1;
  box-shadow: 1px 5px 10px 1px rgba(0, 0, 0, 0.55);
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
}
.section__internal--snippetbody.animate {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .section__internal--snippetbody {
    position: relative;
    opacity: 1 !important;
    display: table !important;
    margin-bottom: 5rem;
  }
}
.section__internal--snippettitle {
  font-family: raleway, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: #c8102e;
  font-size: 44px;
}
.section__internal--snippettext iframe {
  width: 100% !important;
}

body:not(.fullpage) #content {
  background-color: #e5e4e4;
}
body:not(.fullpage) #content #main_container {
  padding: 8rem 2rem 2rem;
  background-color: #e5e4e4;
  max-width: 1000px;
}
body:not(.fullpage) #content #main_container #main_column {
  padding: 2rem;
  background-color: white;
}

body#newsroom #main_container #main_column .main_page_title {
  font-size: 64px;
}
@media (max-width: 991px) {
  body#newsroom #main_container #main_column .main_page_title {
    font-size: 58px;
  }
}
@media (max-width: 767px) {
  body#newsroom #main_container #main_column .main_page_title {
    font-size: 48px;
  }
}
@media (max-width: 500px) {
  body#newsroom #main_container #main_column .main_page_title {
    font-size: 38px;
  }
}

#casework table tr {
  margin-bottom: 1rem;
}
#casework table tr td {
  width: 20%;
  text-align: center;
  font-size: 18px;
}
#casework table tr td:first-child {
  text-align: left;
}
#casework table tr td:nth-child(2) {
  text-align: left;
}
#casework table tr td a {
  word-break: break-all;
}
#casework .media__side-nav {
  width: 25%;
  top: 12rem;
  left: 12.5rem;
  margin: 0 auto;
}
#casework .media__side-nav .main_page_title {
  text-align: right;
}
#casework .media__side-nav.affix-top {
  width: 25%;
  top: 12rem;
  left: 12.5rem;
  margin: 0 auto;
  position: fixed;
}
@media (max-width: 1200px) {
  #casework .media__side-nav.affix-top {
    left: 4.5rem;
  }
}
#casework .media__side-nav.affix {
  width: 25%;
  top: 12.5rem;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  #casework .media__side-nav.affix {
    left: 4.5rem;
  }
}
#casework .media__side-nav.affix-bottom {
  position: absolute;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  #casework .media__side-nav {
    left: 4.5rem;
  }
}
@media (max-width: 768px) {
  #casework .media__side-nav {
    display: none;
  }
}
#casework .media__list {
  text-align: right;
  display: block;
}
#casework .media__list-item {
  text-align: right;
  display: block;
}
#casework .media__list-item.active a, #casework .media__list-item:hover a {
  background-color: transparent;
  color: #fff;
  border-radius: 0px;
  border-bottom: 2px solid #fff;
}
#casework .media__list-link {
  color: #e5e4e4;
  display: inline-block;
  padding: 10px 0px 0px;
  border-radius: 0px;
  font-size: 46px;
  border-bottom: 2px solid transparent;
  font-family: raleway, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}
#casework .media__list-link:hover {
  color: #e5e4e4;
  text-decoration: none;
}
@media (max-width: 1200px) {
  #casework .media__list-link {
    font-size: 36px;
  }
}

body#newsroom_landing_page #main_column {
  padding: 0;
  background-color: transparent;
}
body#newsroom_landing_page #breadcrumb {
  display: none;
}
body#newsroom_landing_page .one_column {
  margin-left: 0;
  margin-right: 0;
}
body#newsroom_landing_page #rightside {
  padding: 0.5rem 3rem 3rem;
}
body#newsroom_landing_page #rightside hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  body#newsroom_landing_page #rightside {
    padding: 7.5rem 3rem 3rem;
  }
}
body#newsroom_landing_page #leftside {
  text-align: left;
  padding: 0;
  background-color: rgba(48, 131, 168, 0.85);
  position: relative;
}
body#newsroom_landing_page .leftside__banner {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  position: sticky;
  background-repeat: no-repeat;
  z-index: -1;
  top: 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: #c8102e;
  text-transform: uppercase;
}
body#newsroom_landing_page .media__link {
  color: #3083a8;
  text-decoration: none;
  font-size: 44px;
}
body#newsroom_landing_page .media__link:hover {
  color: #043b63;
  text-decoration: underline;
}
body#newsroom_landing_page .media__link--green {
  text-transform: uppercase;
}
body#newsroom_landing_page .media__link--green:hover {
  color: #c8102e;
}
body#newsroom_landing_page .media__button {
  text-align: right;
  bottom: 3rem;
  right: 3rem;
  color: #5d6062;
  display: inline-block;
  font-family: raleway, sans-serif;
  font-weight: 700;
  font-style: normal;
  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:hover {
  color: #c8102e;
}
body#newsroom_landing_page .media__side-nav {
  width: 36%;
  top: 12rem;
  margin: 0 auto;
}
body#newsroom_landing_page .media__side-nav .main_page_title {
  text-align: right;
}
body#newsroom_landing_page .media__side-nav.affix {
  width: 36%;
  top: 12rem;
  margin: 0 auto;
}
body#newsroom_landing_page .media__side-nav.affix-bottom {
  position: absolute;
  width: 86.5%;
  margin: 0 auto;
}
body#newsroom_landing_page .media__list {
  text-align: right;
  display: block;
}
body#newsroom_landing_page .media__list-item {
  text-align: right;
  display: block;
}
body#newsroom_landing_page .media__list-item.active a, body#newsroom_landing_page .media__list-item:hover a {
  background-color: transparent;
  color: #fff;
  border-radius: 0px;
  border-bottom: 2px solid #fff;
}
body#newsroom_landing_page .media__list-link {
  color: #e5e4e4;
  display: inline-block;
  padding: 10px 0px 0px;
  border-radius: 0px;
  font-size: 46px;
  border-bottom: 2px solid transparent;
  font-family: raleway, sans-serif;
  font-weight: 700;
  font-style: normal;
}
body#newsroom_landing_page .media__list-link:hover {
  color: #e5e4e4;
  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: raleway, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: #5d6062;
  font-size: 24px;
}

.modern__press .title {
  font-size: 50px;
}

.prevpress {
  display: table;
  width: 100%;
  padding-bottom: 2rem;
}

body#newsroom #main_container #main_column .article .main_page_title {
  font-size: 50px;
}

#sr-listing .sr-result .searchlink {
  color: #3083a8;
  text-decoration: none;
  font-size: 38px;
  padding-bottom: 0.5rem;
  font-weight: bold;
  font-family: raleway, sans-serif;
  font-weight: 800;
  font-style: normal;
}
#sr-listing .sr-result .searchlink:hover {
  text-decoration: underline;
  color: #043b63;
}

.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: 0.4rem 1rem;
}
.social-list li {
  padding: 1rem 5px;
  /* .facebook{

     border: 1px solid $facebook;
     background-color: $facebook;
     color: $white;

     &:hover{

       border: 1px solid $facebook;
       background-color: $white;
       color: $facebook;

     }

   }

   .instagram{

     border: 1px solid $instagram;
     background-color:  $instagram;
     color: $white;

     &:hover{

       border: 1px solid $instagram-hover;
       background-color: $white;
       color: $instagram-hover;

     }

   }

   .twitter{

     border: 1px solid $twitter;
     background-color: $twitter;
     color: $white;

     &:hover{

       border: 1px solid $twitter;
       background-color: $white;
       color: $twitter;

     }

   }*/
}
@media (max-width: 992px) {
  .social-list li {
    padding: 3px 5px;
  }
}
.social-list li a {
  border: 1px solid #3083a8;
  border-radius: 50px;
  padding: 2px !important;
  text-align: center;
  width: 30px;
  height: 30px;
  background-color: #3083a8;
  color: #fff;
  display: block;
  font-size: 16px;
}
.social-list li a:hover {
  border: 1px solid #3083a8;
  background-color: #fff;
  color: #3083a8;
}
.social-list--bottom li {
  padding: 5px 5px;
}

.social-area #socialareablock {
  margin-bottom: 1rem;
}
.social-area #socialareablock .socialblock {
  padding: 1rem;
}
.social-area #socialareablock .socialblock .socialheader .socialfeedbackbutton {
  border: 1px solid #0e0e0e;
  border-radius: 5px;
  padding: 5px 10px;
  text-align: center;
  background-color: #fff;
  color: #0e0e0e;
  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 .twitter .socialfeedbackbutton {
  border: 1px solid #2AA3EF;
  background-color: #fff;
  color: #2AA3EF;
}
.social-area #socialareablock .socialblock .twitter .socialfeedbackbutton:hover {
  border: 1px solid #2AA3EF;
  background-color: #2AA3EF;
  color: #fff;
  text-decoration: none;
}
.social-area #socialareablock .socialblock .facebook .socialfeedbackbutton {
  border: 1px solid #4268b2;
  background-color: #fff;
  color: #4268b2;
}
.social-area #socialareablock .socialblock .facebook .socialfeedbackbutton:hover {
  border: 1px solid #4268b2;
  background-color: #4268b2;
  color: #fff;
  text-decoration: none;
}

footer ul {
  display: block;
}
footer ul li a {
  color: #043b63;
  font-family: raleway, sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  padding: 0.5rem 2rem;
}
footer ul li a:hover {
  color: #043b63;
}
footer .footer__navigation {
  background-color: #e5e4e4;
  padding: 5rem;
}
footer .footer__navigation--sub {
  background-color: #043b63;
  padding: 0.2rem;
}
footer .footer__navigation--sub ul {
  margin-bottom: 0;
}
footer .footer__navigation--sub ul li {
  margin-right: 0 !important;
}
footer .footer__navigation--sub ul li a {
  color: white;
  font-family: raleway, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  padding-right: 5px;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
}
footer .footer__navigation--sub ul li a:after {
  padding-left: 5px;
  content: "|";
}
footer .footer__navigation--sub ul li a:last-child a :after {
  display: none;
}
footer .footer__navigation--sub ul li:not(:last-child) {
  margin-right: 0 !important;
}

/* 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 + .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;
}

.alert {
  padding: 0.5rem;
  margin-bottom: 0;
  border: 0;
  background-color: #c8102e;
  border-radius: 0;
}
.alert .headline {
  padding: 0 2rem;
}
.alert .headline a {
  font-family: raleway, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: white;
}
.alert .headline a:hover {
  color: white;
}

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

.f-modal-alert .f-modal-icon {
  border-radius: 50%;
  border: 4px solid #043b63;
  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: #fff;
  }
  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: #fff;
  }
  100% {
    background-color: #fff;
  }
}

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