@charset "UTF-8";
html {
  font-size: 14px;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #4f4f4f;
  background-color: #fafafa;
  line-height: 1.5;
}

.row {
  display: flex;
}

.d-none {
  display: none;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

@media (max-width: 767px) {
  .sm-dir-col {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .md-dir-col {
    flex-direction: column;
  }
}

.row:not(:last-child) {
  margin-bottom: 20px;
}

.sub-row:not(:last-child) {
  margin-bottom: 20px;
}

thead {
  background-color: #222d60;
  color: #fff;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #dbdff2;
}

.logo p {
  margin-bottom: 0;
}

h3 {
  color: #ec7125;
  margin-bottom: 20px;
}

h4 {
  color: #ec7125;
}

h5 {
  font-size: 18px;
}

@media (max-width: 992px) {
  img {
    padding: 10px 0;
  }
}

a, button {
  color: #222d60;
  text-decoration: none;
}
a.link, button.link {
  font-weight: 500;
}
a.button, button.button {
  padding: 8px 16px;
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  background-color: #222d60;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}
a.button.button-secondary, button.button.button-secondary {
  margin-right: 20px;
  color: #222d60;
  background-color: transparent;
  border: 1px solid #222d60;
}
@media (max-width: 576px) {
  a.button.button-secondary, button.button.button-secondary {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
a.button.button-secondary:hover, button.button.button-secondary:hover {
  color: #fff;
  background-color: #222d60;
}
a:hover, a:focus, button:hover, button:focus {
  color: #222d60;
}
a:hover.link, a:focus.link, button:hover.link, button:focus.link {
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid;
}
a:hover.button, a:focus.button, button:hover.button, button:focus.button {
  color: #fff;
  background-color: #192146;
  text-decoration: none;
}

.top-nav {
  border-bottom: 3px solid #cacaca;
  background: #fafafa;
  z-index: 10;
  width: 100%;
  height: 95px;
  position: fixed;
  top: 0;
  transition: visibility 0s, opacity 0.5s linear;
}
.top-nav.scroll-nav {
  height: 100%;
  overflow-y: auto;
}
.top-nav:hover {
  border-bottom: 1px solid #cacaca;
  transition: visibility 0s, opacity 0.5s linear;
}
@media (max-width: 767px) {
  .top-nav:hover {
    border-bottom: #cacaca 3px solid;
  }
}
@media (min-width: 768px) {
  .top-nav:hover .hidden-nav {
    visibility: visible;
    opacity: 1;
    background-color: #fff;
    border-bottom: 3px solid #cacaca;
  }
}
@media (max-width: 992px) {
  .top-nav.nav-open .hidden-nav {
    border-bottom: 3px solid #cacaca;
  }
}
.top-nav.nav-open:hover {
  border-bottom: #cacaca 1px solid;
}
.top-nav .logo {
  padding-left: 20px;
}
.top-nav .mobile-button {
  font-size: 24px;
  padding-right: 20px;
  display: none;
}
@media (hover: none), (max-width: 768px) {
  .top-nav .mobile-button {
    display: block;
  }
}
.top-nav .container {
  padding: 10px 0 0 0;
}
.top-nav nav {
  padding: 10px 0;
}
.top-nav nav img {
  height: 79px;
}
.top-nav nav .nav-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (hover: hover) {
  .top-nav nav .nav-right {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .top-nav nav .nav-right {
    justify-content: flex-end;
  }
}
.top-nav nav .nav-pages {
  display: flex;
  align-items: center;
}
.top-nav nav .nav-pages a {
  border-bottom: 5px solid transparent;
  padding: 30px 0;
  color: #4f4f4f;
  min-width: 100px;
  text-align: center;
}
.top-nav nav .nav-pages a.link {
  font-weight: 500;
}
.top-nav nav .nav-pages a:hover, .top-nav nav .nav-pages a:focus, .top-nav nav .nav-pages a:active {
  border-bottom: 5px solid #939dc0;
}
.top-nav nav .nav-pages a.active {
  border-bottom: 5px solid #222d60;
  font-weight: 600;
}
@media (min-width: 768px) and (max-width: 991px) {
  .top-nav nav .nav-pages a {
    padding: 30px 0;
  }
}
.top-nav nav .nav-buttons .button-secondary {
  margin-right: 20px;
  color: #222d60;
  background-color: initial;
  border: 1px solid #222d60;
}
.top-nav nav .nav-buttons .button-secondary:hover {
  color: #fff;
  background-color: #222d60;
}
@media (hover: none) {
  .top-nav nav .nav-buttons {
    display: none;
  }
}
@media print {
  .top-nav {
    display: none;
  }
}

.hidden-nav {
  border-top: 1px solid #cacaca;
  display: block;
  padding: 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .hidden-nav {
    visibility: hidden;
    transition: visibility 0s, opacity 0.5s linear;
    opacity: 0;
    padding: 40px 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hidden-nav {
    padding: 20px 0;
  }
}
.hidden-nav .title {
  padding-left: 3px;
  border-bottom: 1px solid #cacaca;
  color: #222d60;
  font-weight: 500;
}
@media (max-width: 767px) {
  .hidden-nav .title {
    display: flex;
    border-bottom: 1px solid #cacaca;
    margin: 0;
    padding: 0;
    font-weight: 400;
  }
}
.hidden-nav .title a {
  border: none;
}
.hidden-nav .title .er-open, .hidden-nav .title .ee-open {
  font-size: 20px;
}
.hidden-nav .title .er-open svg, .hidden-nav .title .ee-open svg {
  vertical-align: 0;
}
.hidden-nav a {
  display: block;
  margin-bottom: 10px;
  padding: 0 3px 2px;
  color: #4f4f4f;
  min-width: 180px;
}
.hidden-nav a:hover, .hidden-nav a:focus, .hidden-nav a:active {
  color: #939dc0;
}
@media (max-width: 767px) {
  .hidden-nav a:hover, .hidden-nav a:focus, .hidden-nav a:active {
    padding: 15px 20px;
  }
}
.hidden-nav a:hover.link, .hidden-nav a:focus.link, .hidden-nav a:active.link {
  border-bottom: none;
}
.hidden-nav a.active {
  color: #222d60;
  font-weight: 600;
}
@media (max-width: 767px) {
  .hidden-nav a {
    padding: 15px 20px;
    margin: 0;
    border-bottom: 1px solid #cacaca;
  }
  .hidden-nav a.button {
    padding: 8px 16px;
    margin: 15px 20px;
    color: #fff;
  }
  .hidden-nav a.button-secondary {
    color: #222d60;
  }
}
@media (max-width: 767px) {
  .hidden-nav .er-links, .hidden-nav .ee-links {
    border-bottom: 2px solid #cacaca;
    border-top: 2px solid #cacaca;
    background-color: #f2f2f2;
  }
}
.hidden-nav .ee-links {
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 767px) {
  .hidden-nav .ee-links {
    flex-direction: column;
  }
}
@media print {
  .hidden-nav {
    display: none;
  }
}

section {
  padding: 40px 0;
}

section:nth-of-type(2n) {
  background-color: #f2f2f2;
}

.overlay {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: #222d60;
  opacity: 0.4;
}

.header-intro {
  padding: 95px 0 0 0;
}
.header-intro .hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 43rem;
}
.header-intro .hero h1 {
  margin-top: 14.5rem;
  font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
}
.header-intro .hero-actions {
  margin-top: -18rem;
}
.header-intro .hero-actions h5 {
  font-weight: 700;
  color: #fff;
}
.header-intro .hero-actions p {
  color: #fff;
}
.header-intro .hero-actions .start-container {
  display: flex;
}
@media (max-width: 991px) {
  .header-intro .hero-actions .start-container {
    flex-direction: column;
  }
}
.header-intro .hero-actions .start-container .emp, .header-intro .hero-actions .start-container .sav {
  padding: 20px;
  display: flex;
  flex: 1 1 0;
  flex-basis: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.header-intro .hero-actions .start-container .emp h5, .header-intro .hero-actions .start-container .sav h5 {
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.header-intro .hero-actions .start-container .emp .btn-arrow, .header-intro .hero-actions .start-container .sav .btn-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}
.header-intro .hero-actions .start-container .emp {
  background-color: #212c5f;
}
.header-intro .hero-actions .start-container .emp .btn-arrow:first-child {
  margin-bottom: 0.625rem;
  background: #141a39;
  color: #fff;
}
.header-intro .hero-actions .start-container .emp .btn-arrow:first-child:hover {
  background: #070913;
}
.header-intro .hero-actions .start-container .emp .btn-arrow:nth-child(2) {
  background: #fff;
  color: #141a39;
}
.header-intro .hero-actions .start-container .emp .btn-arrow:nth-child(2):hover {
  background: #f0f0f0;
}
.header-intro .hero-actions .start-container .sav {
  background-color: #545fad;
}
.header-intro .hero-actions .start-container .sav .btn-arrow:first-child {
  margin-bottom: 0.625rem;
  background: #3f4884;
  color: #fff;
}
.header-intro .hero-actions .start-container .sav .btn-arrow:first-child:hover {
  background: #323969;
}
.header-intro .hero-actions .start-container .sav .btn-arrow:nth-child(2) {
  background: #fff;
  color: #2a3058;
}
.header-intro .hero-actions .start-container .sav .btn-arrow:nth-child(2):hover {
  background: #f0f0f0;
}
.header-intro .join-container {
  position: relative;
  margin: 0;
}
.header-intro .join-container .join-box {
  position: absolute;
  top: -14rem;
  padding: 3.5rem;
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
.header-intro .join-container .join-box h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #da5f13;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}
.header-intro .join-container .join-box p {
  color: #4f4f4f;
  margin: 20px 0 30px;
}
.header-intro .join-container .join-box .join-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}
.header-intro .join-container .join-box .join-form .form-group {
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.header-intro .join-container .join-box .join-form .form-group label {
  position: absolute;
  top: -0.25rem;
  left: 0.25rem;
  color: #b3b3b3;
  transition: all 0.5s;
  z-index: 1;
  font-weight: 500;
  text-transform: uppercase;
}
.header-intro .join-container .join-box .join-form .form-group input {
  position: relative;
  border: none;
  border-bottom: 1px solid #b6b6b6;
}
.header-intro .join-container .join-box .join-form .form-group input:focus {
  outline: none;
}
.header-intro .join-container .join-box .join-form .form-group input:focus + label {
  top: -1.25rem;
  font-size: 0.75rem;
  color: #ec7125;
}
.header-intro .join-container .join-box .join-form .form-group input:valid + label {
  top: -1.25rem;
  font-size: 0.75rem;
}
.header-intro .join-container .join-box .join-form .form-group:after {
  content: ".";
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0%;
  height: 0.125rem;
  background: #ec7125;
  color: transparent;
  transition: all 0.5s;
}
.header-intro .join-container .join-box .join-form .form-group:focus-within:after {
  width: 100%;
}
.header-intro .join-container .join-box .join-form .join-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.header-intro .join-container .join-box .join-form .join-actions p {
  margin: 0;
  margin-right: 8rem;
  font-size: 12px;
}

@media (max-width: 991px) {
  .um .hero-actions {
    flex-direction: column-reverse;
  }
}

@media (min-width: 577px) and (max-width: 991px) {
  .er-first {
    margin-top: 14rem;
  }
}
@media (max-width: 576px) {
  .er-first {
    margin-top: 22rem;
  }
  .er-first .join-actions {
    flex-direction: column;
  }
  .er-first .join-actions p {
    margin-bottom: 1rem;
    align-items: normal;
  }
}

@media (max-width: 991px) {
  .ee .join-container .join-box {
    top: -7rem;
  }
}
.ee .join-actions {
  display: flex;
  margin-top: 5rem;
  justify-content: flex-end;
}

.ee-first .my-auto {
  margin-top: 15rem;
  margin-bottom: 3rem;
}
.ee-first .mt {
  margin-top: 48px;
}
@media (min-width: 577px) and (max-width: 991px) {
  .ee-first {
    margin-top: 7rem;
  }
}
@media (max-width: 576px) {
  .ee-first {
    margin-top: 9rem;
  }
}

.video-container {
  position: relative;
}
.video-container iframe {
  width: 100%;
  height: 330px;
}
.video-container .ytvideo {
  width: 100%;
  height: 19.75rem;
}

.header {
  margin-top: 95px;
  height: 150px;
  padding-top: 65px;
  color: #fff;
  background-color: #222d60;
}
@media (max-width: 425) {
  .header {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .header h1 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .header {
    padding-top: 45px;
  }
}
@media print {
  .header {
    margin-top: 0;
    height: auto;
  }
}

.breadcrumbs {
  padding-top: 15px;
  color: #b3b3b3;
  font-size: 14px;
}
.breadcrumbs a {
  color: #b3b3b3;
  font-weight: 600;
}
.breadcrumbs .active_page {
  color: #222d60;
  font-weight: 600;
}
@media print {
  .breadcrumbs {
    display: none;
  }
}

.more {
  margin: 40px 20px;
}
.more a {
  border: 1px solid #ddd;
}
.more .icon svg {
  width: 60px;
  max-height: 60px;
  fill: #222d60;
}

.getting-started .section-header {
  margin-bottom: 40px;
}
.getting-started .option {
  text-align: center;
  padding: 20px;
}
@media (max-width: 576px) {
  .getting-started .option {
    padding-bottom: 20px;
  }
}
.getting-started .option svg {
  fill: #ec7125;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .getting-started .option svg {
    margin-bottom: 0;
  }
}
.getting-started .border {
  border-left: 1px solid;
  border-right: 1px solid;
}
@media (max-width: 767px) {
  .getting-started .border {
    border: none;
  }
}
.getting-started .action-item {
  text-align: center;
}
.getting-started .action-item.expanded {
  padding: 0;
}
@media (max-width: 767px) {
  .getting-started .action-item a {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.getting-started .arrow {
  display: none;
}
.getting-started .arrow.expanded {
  height: 50px;
  width: 50px;
  display: block;
  position: relative;
  background: #fff;
  transform: rotate(45deg);
  left: calc(50% - 25px);
  box-shadow: 0px 3px 5px 0px #cccccc;
}
.getting-started .read-more {
  font-size: 14px;
  font-weight: 600;
  color: #222d60;
  cursor: pointer;
}
.getting-started .read-more:hover {
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid;
}
@media (max-width: 767px) {
  .getting-started .read-more {
    margin-bottom: 20px;
  }
}
.getting-started .read-more-text {
  display: none;
}
.getting-started .read-more-text h6 {
  margin-bottom: 5px;
  font-size: 16px;
}
.getting-started .read-more-text.expanded {
  display: flex;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  margin: 0 auto;
  max-width: 700px;
  box-shadow: 0px 3px 5px 0px #cccccc;
  position: relative;
  z-index: 3;
  top: -30px;
}
.getting-started .checklist {
  margin-top: 10px;
}
.getting-started .checklist a {
  font-size: 14px;
  font-weight: 600;
}

ul {
  list-style: square;
  color: #ec7125;
  padding-left: 20px;
}
ul li span {
  color: #4f4f4f;
  display: block;
  padding-left: 5px;
  padding-bottom: 10px;
}

form .form-control-lg {
  font-size: 16px;
}
form label {
  font-size: 14px;
}

footer {
  background-color: #53565a;
  padding: 40px 0;
  color: #fff;
  font-size: 14px;
}
footer .link {
  color: #fff;
}
footer .footer-left img {
  height: 90px;
  margin-left: -13px;
  margin-bottom: 20px;
}
@media print {
  footer .footer-left img {
    display: none;
  }
}
footer .footer-left span {
  padding: 0 10px;
}
footer .footer-right {
  text-align: right;
}
@media print {
  footer .footer-right {
    text-align: left;
    margin-top: 20px;
  }
}
footer .footer-right p {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  footer .footer-right {
    margin-top: 20px;
    text-align: left;
  }
}
footer .footer-right .social-icon {
  font-size: 35px;
  margin-right: 0.625rem;
}
footer a {
  color: #fff;
}
@media print {
  footer a:after {
    display: none;
  }
}
footer .disclaimer {
  color: #b3b3b3;
  margin-top: 40px;
  font-size: 12px;
}
@media print {
  footer .row {
    flex-direction: column-reverse;
  }
}

@media (max-width: 991px) {
  .more {
    flex-direction: column;
  }
}

.desc-link {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.desc-link .icon {
  margin-right: 20px;
}
.desc-link .title {
  font-size: 18px;
  font-weight: 500;
  color: #222d60;
  display: block;
  margin-bottom: 15px;
}
.desc-link .text {
  color: #4f4f4f;
  display: block;
  margin-bottom: 0;
  margin-right: 20px;
}
.desc-link .arrow {
  display: block;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 13px solid #222d60;
  height: 0;
  width: 0;
  margin-left: auto;
}
.desc-link:hover {
  text-decoration: none;
  box-shadow: 0 1px 15px rgba(27, 31, 35, 0.15);
  color: #4f4f4f;
}

.carousel {
  margin-bottom: 20px;
}
.carousel .video {
  margin-bottom: 10px;
}
.carousel iframe {
  max-width: 100%;
}
.carousel .quote {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .carousel {
    flex-direction: column;
  }
}

.super-script {
  font-size: 12px;
  vertical-align: super;
}

.action-item {
  margin: 0 auto;
  text-align: center;
}

.divider {
  padding-top: 10px;
}
.divider hr {
  border-color: #ec7125;
}
.divider span {
  color: #ec7125;
  font-weight: 500;
  position: relative;
  text-align: center;
  top: -29px;
  background: #fafafa;
  left: calc((100% - 65px)/2);
  padding: 0 20px;
}

.citations {
  padding: 40px 0;
  font-size: 12px;
}
.citations p {
  margin-bottom: 5px;
}

.faq .subtext {
  margin-bottom: 0;
  color: #b3b3b3;
}
.faq .topic-row {
  margin: 0;
  display: none;
}
@media (max-width: 767px) {
  .faq .topic-row {
    flex-direction: column;
  }
}
.faq .topic-row.show-row {
  display: flex;
}
.faq .toggle-language {
  display: none;
}
.faq .toggle-language.show-row {
  display: block;
  margin-top: 1rem;
  border: 0;
  background: transparent;
  padding: 0;
}
.faq .toggle-language.show-row:hover, .faq .toggle-language.show-row:focus {
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid;
}
.faq button.print-all {
  display: block;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: 0;
  border: 0;
  background: transparent;
  padding: 0;
}
.faq button.print-all:hover, .faq button.print-all:focus {
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid;
}
.faq .faq-box {
  border: 1px solid #cacaca;
  padding: 20px;
}
.faq .faq-box:not(:last-child) {
  margin-right: 20px;
}
.faq .faq-box h3 {
  margin-bottom: 40px;
  font-weight: 300;
}
.faq .faq-box .link {
  box-shadow: none;
  background: none;
  border: none;
  color: #4f4f4f;
  display: block;
  font-size: 16px;
  margin: 0 auto 20px;
}
@media (max-width: 767px) {
  .faq .faq-box {
    max-height: 70px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: 0.4s;
    cursor: pointer;
  }
  .faq .faq-box:not(:last-child) {
    margin-right: 0;
  }
  .faq .faq-box h3 {
    margin-top: 0;
  }
}
.faq #questions {
  margin-top: 40px;
}
.faq #questions .title {
  font-size: 20px;
  color: #ec7125;
}
.faq #questions .row {
  display: none;
}
@media print {
  .faq #questions.print-all .row {
    display: block;
  }
}

.faq-search {
  padding-top: 40px;
}
.faq-search .input-group {
  width: 100%;
}
.faq-search .input-group form[name=searchForm] {
  display: flex;
}
.faq-search .input-group form[name=searchForm] input {
  width: 100%;
  height: 34px;
  border-radius: 4px;
  color: #555;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.faq-search .input-group form[name=searchForm] .button {
  margin-left: 20px;
}

#questions .space-left, #results .space-left {
  margin-left: 40px;
}
#questions .sub-row:hover, #results .sub-row:hover {
  background-color: #ec71261a;
  border-radius: 4px;
}
#questions .panel, #results .panel {
  border: none;
  border-bottom: 1px solid #b3b3b3;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}
#questions .panel .panel-heading, #results .panel .panel-heading {
  color: #4f4f4f;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 15px;
  transition: 0.4s;
  margin-bottom: 0;
  display: flex;
}
#questions .panel .panel-heading:after, #results .panel .panel-heading:after {
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
  content: "";
  font-weight: 900;
  margin-left: 5px;
  margin-top: -5px;
}
@media print {
  #questions .panel .panel-heading:after, #results .panel .panel-heading:after {
    content: "";
  }
}
#questions .panel .panel-heading .panel-title, #results .panel .panel-heading .panel-title {
  display: inline-block;
  flex-grow: 1;
}
#questions .panel .panel-heading.active:after, #results .panel .panel-heading.active:after {
  content: "";
}
@media print {
  #questions .panel .panel-heading.active:after, #results .panel .panel-heading.active:after {
    content: "";
  }
}
#questions .panel .panel-body, #results .panel .panel-body {
  padding: 0 40px 0 15px;
  height: 0;
  background-color: transparent;
  overflow: hidden;
  transition: height 0.2s ease-out;
}
@media print {
  #questions .panel .panel-body, #results .panel .panel-body {
    height: auto;
    padding-bottom: 20px;
  }
}

.reference-question {
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #f6f6f6;
}
.reference-question .panel {
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 0;
}
.reference-question .panel .panel-title {
  color: #222d60;
  font-weight: 500;
}
.reference-question .panel .panel-title:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  margin-right: 8px;
}
.reference-question .panel-heading {
  color: #4f4f4f;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 15px 0;
  transition: 0.4s;
  margin-bottom: 0;
}
.reference-question .panel-body {
  padding: 0;
  height: 0;
  background-color: transparent;
  overflow: hidden;
  transition: height 0.2s ease-out;
}
@media print {
  .reference-question .panel-body {
    height: auto;
    padding-bottom: 20px;
  }
}

.faq-buttons {
  padding: 40px 0;
}

#saver-faq, #employer-faq {
  display: none;
}

#toTop {
  position: fixed;
  bottom: 30px;
  right: 20px;
  padding: 5px 14px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  color: white;
  background: #222d60;
  font-size: 20px;
}
@media print {
  #toTop {
    display: none !important;
  }
}

.contact-header {
  margin-bottom: 20px;
}

.contact-form .email-client {
  font-size: 14px;
  display: inline-block;
  padding-left: 10px;
}

@media (min-width: 768px) {
  .contact-row {
    margin-top: -430px;
  }
}

.contact-details {
  margin-top: 25px;
}
.contact-details .icon svg {
  width: 50px;
  max-height: 50px;
  fill: #eaa57f;
}
.contact-details h5 {
  margin: 20px 0;
}
.contact-details p {
  margin-bottom: 40px;
}
.contact-details p span {
  padding: 5px 0;
  display: block;
}
.contact-details b {
  font-weight: 600;
}

.contact-divider {
  display: block;
  width: 7px;
  height: 430px;
  position: relative;
  top: -45px;
  left: 50%;
  background: #fafafa;
  transform: rotate(10deg);
}

.field-team .team-info {
  background-color: #fafafa;
  border: 3px solid #cacaca;
  border-radius: 5px;
  max-width: 450px;
  margin-top: 75px;
  padding-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .field-team .team-info {
    margin-bottom: 20px;
  }
}
.field-team .profile-image {
  width: 175px;
  border: 3px solid #cacaca;
  position: relative;
  border-radius: 90px;
  top: -87.5px;
  left: calc((100% - 175px)/2);
  margin-bottom: -75px;
}
.field-team .team-content {
  padding: 20px;
}
.field-team .team-content p:last-child {
  margin-bottom: 0;
}

.what-is h5 {
  padding: 20px 0 10px 0;
}

.timeline {
  align-items: center;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .timeline p:first-child {
    width: 75px;
  }
  .timeline p:last-child {
    width: 200px;
  }
}
@media (min-width: 768px) {
  .timeline p:first-child {
    min-width: 140px;
  }
  .timeline p:last-child {
    min-width: 80px;
  }
}
.timeline .graphic {
  overflow: hidden;
  margin: 0 20px;
}
.timeline .graphic.g-20 {
  width: 25%;
}
@media (max-width: 576px) {
  .timeline .graphic.g-20 {
    width: 20%;
  }
}
.timeline .graphic.g-21 {
  width: 50%;
}
@media (max-width: 576px) {
  .timeline .graphic.g-21 {
    width: 30%;
  }
}
.timeline .graphic.g-22 {
  width: 75%;
}
.timeline .graphic.g-22 svg {
  fill: #eaa57f;
}
@media (max-width: 576px) {
  .timeline .graphic.g-22 {
    width: 40%;
  }
}
.timeline svg {
  fill: rgba(234, 165, 127, 0.5);
  width: 1000px;
}

.reg .list-right {
  padding-right: 25px;
}
.reg .list-left {
  padding-left: 25px;
}
.reg .subhead {
  padding-top: 20px;
}

.users .user-table .col-sm-12 {
  overflow-x: auto;
}
.users thead {
  background-color: #222d60;
  color: #fff;
}
.users .table-striped tbody tr:nth-of-type(odd) {
  background-color: #dbdff2;
}
.users th:not(:first-child) {
  width: 200px;
  text-align: center;
}
.users td:not(:first-child) {
  text-align: center;
}
.users svg {
  font-size: 20px;
}

.step-links .step-container {
  display: flex;
  justify-content: space-between;
}
.step-links .step-container .step {
  margin: 0 15px;
  padding: 2.5rem 2.5rem;
  flex-basis: 0;
  flex-grow: 1;
  background: #222d60;
  font-weight: 700;
  color: #fff;
  text-align: center;
  transition: all 0.5s;
  cursor: pointer;
  position: relative;
}
.step-links .step-container .step svg {
  height: 40px;
  fill: #fff;
  margin-bottom: 2rem;
}
.step-links .step-container .step p {
  margin-bottom: 0;
}
.step-links .step-container .step:hover {
  box-shadow: 0 0.5rem 1rem rgba(34, 45, 96, 0.7);
}
@media (max-width: 991px) {
  .step-links .step-container .step {
    margin: 1rem;
    padding: 2rem;
    align-items: center;
    max-width: 100%;
  }
}
.step-links .step-container .step.active {
  background: #939dc0;
}
@media (min-width: 992px) {
  .step-links .step-container .step.active:after {
    content: "";
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-top: 18px solid #939dc0;
    position: absolute;
    bottom: -1.8rem;
    left: calc(50% - 17px);
    width: 0;
  }
  .step-links .step-container .step.active svg {
    color: #222d60;
  }
}
.step-links .step-content {
  margin: 4rem auto 1rem;
}
.step-links .step-action {
  border: 2px solid #949cc0;
  border-top: none;
  position: relative;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  margin: 0 1rem;
}
.step-links .step-action .button {
  position: absolute;
  top: 1rem;
}

.action-item {
  padding-top: 40px;
}

.all-er-materials, .all-ee-materials, .all-forms {
  cursor: pointer;
}
.all-er-materials h4, .all-ee-materials h4, .all-forms h4 {
  display: inline-block;
  padding-right: 20px;
}
.all-er-materials .caret-icon-er, .all-er-materials .caret-icon-ee, .all-er-materials .caret-icon-f, .all-ee-materials .caret-icon-er, .all-ee-materials .caret-icon-ee, .all-ee-materials .caret-icon-f, .all-forms .caret-icon-er, .all-forms .caret-icon-ee, .all-forms .caret-icon-f {
  height: 10px;
  width: 10px;
  border-top: solid;
  display: inline-block;
  border-right: solid;
  transform: rotate(-45deg);
  transition: all 1s ease;
}
.all-er-materials .caret-icon-er.open, .all-er-materials .caret-icon-ee.open, .all-er-materials .caret-icon-f.open, .all-ee-materials .caret-icon-er.open, .all-ee-materials .caret-icon-ee.open, .all-ee-materials .caret-icon-f.open, .all-forms .caret-icon-er.open, .all-forms .caret-icon-ee.open, .all-forms .caret-icon-f.open {
  transform: rotate(135deg);
}

@media (max-width: 767px) {
  .tab-row {
    border-bottom: 1px solid #cacaca;
  }
  .tab-row .tabs {
    border-bottom: none;
  }
}

.tabs {
  border-bottom: 1px solid #cacaca;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .tabs {
    display: flex;
    overflow-x: scroll;
    padding: 0;
  }
}
.tabs .er-active {
  display: block;
  border-bottom: 3px solid #ec7125;
  position: relative;
  top: 40px;
  transition: all 0.5s ease;
  left: 0;
  width: 131px;
  margin-left: -4px;
}
.tabs .tab-btn {
  border-right: 1px solid;
  border-color: #cacaca;
  padding: 15px 40px 20px 40px;
  font-size: 16px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .tabs .tab-btn {
    margin-left: -4px;
  }
  .tabs .tab-btn:hover {
    border-bottom: 3px solid #eaa57f;
    padding-bottom: 18px;
  }
}
@media (max-width: 767px) {
  .tabs .tab-btn {
    font-size: 14px;
    padding: 11px 20px;
    text-align: center;
  }
}

#er_materials, #ee_materials {
  display: none;
}

#resources, #er_materials, #ee_materials {
  margin-top: 40px;
}
#resources .row, #er_materials .row, #ee_materials .row {
  align-items: flex-end;
  margin-bottom: 0;
  padding: 10px 0;
}
#resources .row:not(:last-child), #er_materials .row:not(:last-child), #ee_materials .row:not(:last-child) {
  border-bottom: 1px solid #cacaca;
}
#resources .view, #er_materials .view, #ee_materials .view {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#resources .view .button-secondary, #er_materials .view .button-secondary, #ee_materials .view .button-secondary {
  margin-right: 0;
  margin-bottom: 5px;
}
#resources .view .link, #er_materials .view .link, #ee_materials .view .link {
  color: #4f4f4f;
}

.quote {
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  margin-right: 20px;
  font-size: 21px;
  flex-direction: column;
  flex: 1 1 0;
  display: flex;
  margin-bottom: 40px;
}
.quote:last-child {
  margin-right: 0;
}
.quote p {
  margin-bottom: 0;
  flex: 1 1 0;
}
.quote .quote-text {
  padding: 40px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  justify-content: space-between;
}
.quote .quote-text .open-quote, .quote .quote-text .close-quote {
  display: flex;
}
.quote .quote-text .close-quote {
  justify-content: flex-end;
  padding-top: 30px;
}
.quote .quote-text .open-quote {
  padding-bottom: 30px;
}
.quote .source {
  display: flex;
  min-height: 84px;
  font-size: 18px;
  align-items: center;
  padding: 0 40px;
}
.quote .source p {
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}
.quote.green .open-quote svg, .quote.green .close-quote svg {
  fill: #1D582E;
}
.quote.green .quote-text p {
  color: #1D582E;
}
.quote.green .source {
  background-color: #D1E6B9;
}
.quote.yellow .open-quote svg, .quote.yellow .close-quote svg {
  fill: #FABC3C;
}
.quote.yellow .quote-text p {
  color: #b5882b;
}
.quote.yellow .source {
  background-color: #FDDE9F;
}
.quote.red .open-quote svg, .quote.red .close-quote svg {
  fill: #9E2B25;
}
.quote.red .quote-text p {
  color: #9E2B25;
}
.quote.red .source {
  background-color: #CE9592;
}

.built-for-you .support-content div {
  margin-bottom: 40px;
}
.built-for-you .support-content a {
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .built-for-you .md-dir-col {
    flex-direction: column-reverse;
  }
}
.built-for-you .why-save {
  box-shadow: 0 0.125rem 0.25rem 0 rgba(51, 51, 51, 0.43);
  margin: 20px 0;
}

.calc .calc-form {
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  justify-content: center;
}
@media (max-width: 576px) {
  .calc .calc-form {
    padding-left: 20px;
    padding-bottom: 20px;
  }
}
.calc .results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid;
  margin-left: 40px;
  padding: 80px 0;
}
@media (max-width: 576px) {
  .calc .results {
    border-top: 1px solid;
    border-left: none;
    margin-left: 10px;
    padding: 20px 0;
  }
}
.calc .results h5 {
  padding-bottom: 20px;
}
.calc .results span {
  color: #222d60;
  font-weight: 600;
}

.eligibility img {
  width: 100%;
}
.eligibility .lists ul {
  list-style: none;
  color: #4f4f4f;
  padding-left: 0;
}
.eligibility .lists ul li {
  display: flex;
  padding-bottom: 20px;
}
.eligibility .lists ul svg {
  color: #ec7125;
  margin-right: 20px;
  font-size: 20px;
}
.eligibility .action-item {
  padding-top: 20px;
}
@media (min-width: 992px) {
  .eligibility .action-item {
    text-align: left;
  }
}

.set-up .lists {
  padding: 0 50px;
}
@media (max-width: 576px) {
  .set-up .lists {
    padding: 0 15px;
  }
}
.set-up .action-item {
  padding-top: 20px;
  margin: 0 auto;
}

.opt-out .considerations {
  border: 2px solid #939dc0;
  padding: 30px;
  border-radius: 10px;
  background-color: #fafafa;
}
@media (max-width: 576px) {
  .opt-out .considerations {
    border: none;
    padding: 0 15px;
    background-color: inherit;
  }
}
.opt-out .considerations .action-item {
  text-align: left;
}
@media (max-width: 576px) {
  .opt-out .considerations .action-item {
    padding-top: 20px;
    padding-bottom: 40px;
    text-align: center;
  }
}
.opt-out .considerations p {
  padding-right: 45px;
}
.opt-out .considerations .icon {
  height: 100px;
  width: 100px;
  background-color: #939dc0;
  display: block;
  border-radius: 50px;
  position: absolute;
  top: 85px;
  right: -50px;
}
.opt-out .considerations .icon svg {
  font-size: 50px;
  position: relative;
  top: 23px;
  left: 30px;
  color: #fff;
}
.opt-out .changes h5 {
  padding: 60px 0 10px 0;
}
@media (max-width: 576px) {
  .opt-out .changes h5 {
    padding: 0;
  }
}
.opt-out .changes div {
  padding: 0 20px;
  text-align: center;
}
@media (max-width: 576px) {
  .opt-out .changes div {
    text-align: left;
  }
}

.do-nothing .lists {
  padding-top: 20px;
}
.do-nothing img {
  width: 100%;
  padding-right: 60px;
}
.do-nothing .action-item {
  padding-top: 10px;
  padding-left: 25px;
}

.contribute-calculation {
  padding: 24px 15px;
}
.contribute-calculation .row {
  flex-wrap: wrap;
}
.contribute-calculation .disclosure {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
}
.contribute-calculation .switchers, .contribute-calculation .limit {
  padding: 24px 15px;
}
.contribute-calculation .result {
  padding-bottom: 48px;
}
.contribute-calculation .toggle-group {
  display: block;
  max-height: 40px;
  margin-bottom: 16px;
  background: #222d60;
  border-radius: 4px;
}
@media (min-width: 992px) {
  .contribute-calculation .toggle-group {
    margin-right: 40px;
  }
}
.contribute-calculation .toggle-group button:nth-child(2) {
  margin-left: -4px;
}
.contribute-calculation .toggle-group .slider {
  display: block;
  position: relative;
  top: -37px;
  left: 3px;
  width: calc(50% - 6px);
  height: 34px;
  background: #fff;
  transition: all 0.5s;
}
.contribute-calculation .toggle-group .active {
  position: relative;
  background: transparent;
  z-index: 10;
}
.contribute-calculation .file-group {
  display: none;
}
@media (min-width: 992px) {
  .contribute-calculation .salary-group {
    margin-right: 40px;
  }
}
.contribute-calculation .salary-group .form-control {
  border-radius: 4px;
  margin-bottom: 16px;
}
.contribute-calculation .salary-group .ui-widget.ui-widget-content {
  background: #E5E5E5;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  height: 10px;
  border-radius: 1px;
  border: none;
}
.contribute-calculation .salary-group .ui-widget-content .ui-state-default {
  border: 1px solid #222d60;
  background: #222d60;
  font-weight: normal;
  color: #222d60;
  border-radius: 1px;
}
.contribute-calculation .btn-toggle {
  background-color: #222d60;
  color: #fff;
  border: 3px solid #222d60;
  font-weight: 500;
  width: 50%;
  min-height: 40px;
}
.contribute-calculation .btn-toggle.active {
  color: #222d60;
}
.contribute-calculation .d-none {
  display: none;
}
.contribute-calculation .d-block {
  display: block;
}
.contribute-calculation label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}
@media (min-width: 992px) {
  .contribute-calculation .limit {
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    padding-left: 40px;
  }
}

.manage-acct .title {
  font-size: 18px;
  font-weight: 500;
  color: #222d60;
}

.account-link {
  color: #4f4f4f;
  display: block;
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.account-link:hover, .account-link:focus {
  text-decoration: none;
  box-shadow: 0 1px 15px rgba(27, 31, 35, 0.15);
  color: #4f4f4f;
}
.account-link .account-link-text {
  display: block;
  padding-right: 30px;
  margin-bottom: 0;
}
.account-link .account-link-arrow {
  display: block;
  top: 30px;
  position: relative;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 13px solid #222d60;
  left: calc(100% - 20px);
  height: 0;
  width: 0;
}

.cost {
  align-items: center;
}
.cost svg {
  max-height: 250px;
}
.cost .eq {
  padding-left: 50px;
  padding-bottom: 5px;
}
.cost .total {
  padding-left: 50px;
  border-top: 1px solid #b3b3b3;
  padding-top: 15px;
}
.cost .math {
  font-size: 40px;
  position: relative;
  top: -90px;
  left: 10px;
}
@media (max-width: 991px) {
  .cost .math {
    top: -105px;
  }
}

.contrib-stats {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contrib-stats {
    flex-direction: column;
  }
}
.contrib-stats div {
  max-width: 355px;
}
@media (max-width: 767px) {
  .contrib-stats div {
    margin-bottom: 20px;
  }
}
.contrib-stats .icon {
  float: left;
}
.contrib-stats svg {
  margin-right: 20px;
  max-height: 80px;
  fill: #eaa57f;
}
.contrib-stats .stat {
  font-size: 36px;
  font-weight: 900;
  display: block;
  color: #eaa57f;
}

.magi-table {
  overflow-x: auto;
}
.magi-table thead {
  background-color: #222d60;
  color: #fff;
}
.magi-table .table-striped tbody tr:nth-of-type(odd) {
  background-color: #dbdff2;
}
.magi-table th:not(:first-child) {
  text-align: center;
}
.magi-table td:not(:first-child) {
  text-align: center;
}

.distributions svg {
  width: 60px;
  max-height: 50px;
  fill: #eaa57f;
}
@media (max-width: 992px) {
  .distributions svg {
    width: 40px;
  }
}
.distributions .title {
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 24px;
  color: #eaa57f;
}
@media (max-width: 992px) {
  .distributions .title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .exceptions {
    display: flex;
  }
}
.exceptions .sub-row {
  margin-bottom: 0;
  display: flex;
}
.exceptions .sub-row:not(:last-child) {
  border-bottom: 1px solid #cacaca;
}
@media (max-width: 767px) {
  .exceptions .sub-row:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid #cacaca;
  }
}
.exceptions .sub-row div {
  padding: 60px 40px 40px;
  width: 230px;
}
.exceptions .sub-row div:not(:last-child) {
  border-right: 1px solid #cacaca;
}
@media (max-width: 767px) {
  .exceptions .sub-row div:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #cacaca;
  }
}
@media (max-width: 991px) {
  .exceptions .sub-row div {
    padding: 40px 20px;
    width: 140px;
  }
}
@media (max-width: 767px) {
  .exceptions .sub-row div {
    width: 195px;
  }
}
.exceptions svg {
  width: 40px;
  max-height: 50px;
  fill: #ec7125;
}
.exceptions .title {
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 10px;
}

.investments .tabs {
  border-bottom: 1px solid #cacaca;
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .investments .tabs {
    overflow-x: scroll;
  }
}
.investments .tabs .ee-active {
  display: block;
  border-bottom: 3px solid #ec7125;
  position: absolute;
  top: 54px;
  transition: all 0.5s ease;
  width: 194px;
  margin-left: -4px;
}
@media (max-width: 992px) {
  .investments .tabs .ee-active {
    top: 66px;
    width: 150px;
  }
}
.investments .tabs .tab-btn {
  border-right: 1px solid;
  border-color: #cacaca;
  padding: 15px 20px 20px 20px;
  font-size: 16px;
  min-width: 194px;
  width: 194px;
  cursor: pointer;
  text-align: center;
}
@media (min-width: 768px) {
  .investments .tabs .tab-btn {
    margin-left: -4px;
  }
  .investments .tabs .tab-btn:hover {
    border-bottom: 3px solid #eaa57f;
    padding-bottom: 18px;
  }
}
@media (max-width: 992px) {
  .investments .tabs .tab-btn {
    font-size: 14px;
    width: 150px;
    min-width: 150px;
  }
}
@media (max-width: 767px) {
  .investments .tabs .tab-btn {
    padding: 11px 20px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .investments .tabs .capital-btn {
    border-bottom: 3px solid #ec7125;
  }
}
.investments .funds {
  border-top: 2px solid #ec7125;
  border-radius: 5px;
  box-shadow: 0px 3px 5px 0px #cccccc;
  padding: 0 20px;
  margin: 40px 60px;
  background: #fff;
}
@media (max-height: 991px) {
  .investments .funds {
    margin: 40px 0;
  }
}
.investments .funds .row {
  margin-bottom: 0;
  padding: 10px 0;
}
.investments .funds .row:not(:last-child) {
  border-bottom: 1px solid #cacaca;
}
.investments .funds .view {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.investments #capital-fund, .investments #conservative-fund, .investments #growth-fund {
  display: none;
}

.portfolio {
  width: 100%;
  min-height: 1000px;
}
.portfolio .top-nav {
  display: none;
}

.step-links {
  padding-top: 0;
}
.step-links .blue {
  padding: 5rem 0 14rem;
}
@media (max-width: 991px) {
  .step-links .blue {
    padding-bottom: 384px;
  }
}
.step-links .step-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .step-links .step-container {
    margin-top: -352px;
    margin-bottom: 48px;
    flex-direction: column;
  }
}
.step-links .step-container .step {
  margin: 0 15px;
  margin-top: -128px;
  padding: 40px 40px 20px;
  position: relative;
  max-width: 256px;
  flex-basis: 0;
  flex-grow: 1;
  background: #939dc0;
  font-weight: 700;
  color: #fff;
  text-align: center;
  transition: all 0.5s;
  cursor: pointer;
}
.step-links .step-container .step svg {
  height: 40px;
  fill: #fff;
  margin-bottom: 2rem;
}
.step-links .step-container .step p {
  margin-bottom: 0;
}
.step-links .step-container .step:hover {
  box-shadow: 0 0.5rem 1rem rgba(39, 97, 64, 0.7);
}
@media (max-width: 991px) {
  .step-links .step-container .step {
    margin: 16px 15px 0;
    padding: 20px;
    display: flex;
    align-items: center;
    max-width: 100%;
  }
  .step-links .step-container .step svg {
    font-size: 2.5rem;
    margin-right: 2rem;
    margin-bottom: 0;
  }
}
.step-links .step-container .step.active {
  background: #222d60;
}
@media (min-width: 992px) {
  .step-links .step-container .step.active:after {
    content: "";
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-top: 18px solid #222d60;
    position: absolute;
    bottom: -18px;
    left: calc(50% - 17px);
    width: 0;
  }
  .step-links .step-container .step.active svg {
    color: #222d60;
  }
}
.step-links .step-content {
  margin: 4rem auto 1rem;
}
.step-links .step-action {
  border: 2px solid #949cc0;
  border-top: none;
  position: relative;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  margin: 20px 15px;
}
.step-links .step-action .button {
  position: absolute;
  top: 1rem;
}

.optout .considerations {
  border: 2px solid #939dc0;
  padding: 30px;
  border-radius: 10px;
  background-color: #fafafa;
}
@media (max-width: 576px) {
  .optout .considerations {
    border: none;
    padding: 0 15px;
    background-color: inherit;
  }
}
.optout .considerations .action-item {
  text-align: left;
}
@media (max-width: 576px) {
  .optout .considerations .action-item {
    padding-top: 20px;
    padding-bottom: 40px;
    text-align: center;
  }
}
.optout .considerations p {
  padding-right: 45px;
}
.optout .considerations .icon {
  height: 100px;
  width: 100px;
  background-color: #939dc0;
  display: block;
  border-radius: 50px;
  position: absolute;
  top: 85px;
  right: -50px;
}
.optout .considerations .icon svg {
  font-size: 50px;
  position: relative;
  top: 23px;
  left: 30px;
  color: #fff;
}
.optout .changes h5 {
  padding: 60px 0 10px 0;
}
@media (max-width: 576px) {
  .optout .changes h5 {
    padding: 0;
  }
}
.optout .changes div {
  padding: 0 20px;
  text-align: center;
}
@media (max-width: 576px) {
  .optout .changes div {
    text-align: left;
  }
}

.top-stories {
  background: #f1f1f1;
  padding-top: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
}
.top-stories h4 {
  margin-top: 0;
  padding: 0 20px 5px 20px;
}
.top-stories p {
  padding: 20px;
  border-top: 1px solid #b3b3b3;
  margin: 0;
}
.top-stories p span {
  font-size: 11px;
  margin-top: 5px;
  display: block;
}

.news {
  flex-wrap: wrap;
}

.news-article {
  display: flex;
}
.news-article span {
  font-size: 11px;
  margin-top: 5px;
  display: block;
}
.news-article a {
  display: flex;
  flex-direction: column;
}
.news-article img {
  width: 100%;
}
.news-article .title {
  position: relative;
  top: -30px;
  padding: 10px;
  background: #eee;
  color: #333;
  margin: 0;
  flex-grow: 1;
  font-size: 24px;
}
.news-article .title-medium {
  font-size: 18px;
  font-weight: 500;
}
.news-article .title-small {
  font-size: 16px;
  font-weight: 500;
}

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