body {
  background-color: #3E4850; 
  min-height: 100%;
}

.flex-center-vertical {
  display: flex; 
  justify-content: flex-start; 
  align-items: center; 
}

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

.right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end; 
  align-items: center; 
}

.right-align {
  text-align: right;
}

.hidden {display: none;}

a {
  color: #1067A0;
  text-decoration: underline;
}
a:hover {
  color: rgb(9, 84, 134);
  text-decoration: underline;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.main-outer {
  background-color: #FFF;
}

.main-center {
  background-color: #F3F5F7;
  border: 1px solid #AEBFCB;
  padding: 20px 0px;
}

.main-center-no-border {
  background-color: #F3F5F7;
  padding: 20px 0px;
}

.normal-text {
  color: #3D4850 !important; 
}

.disabled-text {
  color: #999 !important;
}
.btn {
  border-radius: 0;
}

.btn-primary, .btn-primary:visited {
  background-color: #1378BB;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:active:focus {
  background-color: rgb(31, 141, 214);
}

.btn-primary:disabled {
  background-color: #778191;
  border-color: #666;
}

.btn-outline-primary, .btn-outline-primary:visited {
  border-color: #1378BB;
  color: #1378BB;
}

.btn-outline-primary:active {
  background-color: #1378BB;
  color: #FFF;
}

.btn:focus, .btn:active {
  outline: none !important;
  box-shadow: none !important;
}

.bottom-buttons {
  width: 100%;
  background-color: #FFF;
  height: 60px;
}

.bottom-buttons-inner {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  width: 100%;
  max-width: 1260px;
  min-width: 1024px;
  margin: auto;
}

.bottom-buttons-detached {
  position: fixed;
  bottom: 0;
  left: 0;
}
.header-font {
  font-family: 'Merriweather', serif;
  font-size: 32px;
  font-weight: 100;
}

.title-font {
  font-family: 'Merriweather', serif;
  color: #3D4850;
  font-size: 24px;
  font-weight: 100;
}

.inner-title-font {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  color: #3D4850;
  font-size: 18px;
  font-weight: 400;
}

p, li, body, label, .regular-font {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #001E20;
  line-height: 21px;
}

.bold-font {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #3D4850;
  font-weight: 600;
}

.outer {
  min-width: 1024px;
  margin: auto;
}

.inner {
  max-width: 1280px;
  min-width: 1024px;
  margin: auto;
  padding: 10px;
}



.h100 {height: 100%;}

.w100 {width: 100%;}
.w50 {width: 50%;}
.w30 {width: 30%;}
.w25 {width: 25%;}
.w10 {width: 10%;}

.minw120 {
  min-width: 120px;
}

.f10 {flex: 10}
.f80 {flex: 80}

.squash-help {margin-bottom: -50px;}
.radio-item {
  display: inline-block;
  position: relative;
  padding: 0 6px;
  margin: 2px 0 0;
}

.radio-item input[type='radio'] {
  opacity: 0;
  position: absolute;
}

.radio-item label {
  color: #333;
  font-weight: normal;
  cursor: pointer;
  font-family: Roboto, Arial, Helvetica, sans-serif
}

.radio-item label:before {
  content: " ";
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 5px 0 0;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 1px solid #95ABBB;
  background-color: #ffffff;
}

.radio-item input[type=radio]:checked+label:after {
  border-radius: 10px;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 10px;
  left: 11px;
  content: " ";
  display: block;
  background: #95ABBB;
}

input[type="radio"]:focus + label:before {
  box-shadow: 0px 0px 6px rgba(63, 165, 190, 1);
}
.summary-table {
  background-color: #FFF;
  border-spacing: 2px;
  border-collapse: separate;
  width: 100%;
}

.summary-table th {
  background-color: #DBE3E8;
  padding: 16px 12px;
}

.summary-table td {
  background-color: #F3F5F7;
  padding: 16px 12px;
}

.invalid {
  border-color: red !important;
}

.readonly {
  background-color: #EEE;
}
.funds_table {
 border-collapse: collapse;
  border: 2px solid rgb(140 140 140);
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
}


table.funds_table td, th {
  border: 1px solid rgb(160 160 160);
  padding: 8px 10px;
}

table.funds_table td:last-of-type {
  text-align: center;
}

table.funds_table tbody > tr:nth-of-type(even) {
  background-color: rgb(237 238 242);
}






.intro-outer {
  background-color: #fff;
}

.intro-main {
  padding: 40px 15px;
}

.red {
  color: red;
}

.intro-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.intro-center {
  background-color: #FFF;
  padding: 20px 0 0 0;
  min-height: 400px;
}

.btn-intro-select {
  margin-left: -1px;
  height: 48px;
}

.inner-subtext {
  background-color: #FFF;
  padding: 10px 20px;
  display: none;
  font-weight: 300;
}

.inner-subtext__important {
  font-weight: 600;
}

.inner-subtext p, .inner-subtext li {
  color: #3D4850;
}


#btnIntroStart {
  width: 120px;
}


.main-outer {
  background-color: #FFF;
}

.main-center {
  background-color: #F3F5F7;
  border: 1px solid #AEBFCB;
  padding: 20px 0px;
}

.retirement-main {

}
.dialog-outer {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  z-index: 100;
}

.dialog-inner {
  width: 400px;
  background-color: #FFF;
  margin: auto;
}

.dialog-title {
  background-color: #0F68A2;
  color: #FFF;
  padding: 8px;
}

.dialog-text {
  padding: 8px;
}

.dialog-buttons {
  display: flex;
  justify-content: space-between;
  padding: 8px;
}

.footer-outer {
  background-color: å#3D4850;
  height: 120px;
}

.footer-inner {
  display: flex;
  padding-left: 15px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 1280px;
  margin: auto;
}

.footer-text-bold {
  color: white;
  font-weight: 500;
  margin-bottom: 4px;
}

.footer-text {
  color: white;
  font-weight: 300;
  margin-bottom: 4px;
}

.header-outer {
  background-color: #0A1428;
  height: 145px;
}


.header-logo {
  height: 90px;
  margin-left: 15px;
}

.header-logo-old {
  height: 72px;
  border-right: 2px solid #D8D8D8; 
  padding-right: 10px;
  margin-left: 15px;
}

.header-title{
  color:white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
}

.banner {
  width: 100%;
  height: 243px; 
  background-color: #fff;
}

.bannerimage {
  width: 100%; height: 243px; object-fit: cover;
}
.input-outer, .flex-row {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.input-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-left: 20px;
}


.top-align {
  justify-content: flex-start;
  margin-top: 4px;
}

.input-label-text {
  color: #3D4850;
  font-weight: 500;
  padding-top: 5px;
}

.input-title-text {
  color: #3D4850;
  font-weight: 500;
  font-size: 18px;
  align-self: flex-start;
  text-align: left;
  padding-top: 5px;
}

.input-input {
  flex: 2;
  padding: 10px 30px 10px 20px;
  border-right: 2px solid  #EC6F16;
}

.input-radio {
  display: flex;
  align-items: flex-start;
}

.input-radios-horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.input-radios-vertical {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: stretch;
}

.input-help {
  flex: 2;
  padding: 10px 20px;
  color: #3D4850;
}

.input-text {
  padding: 6px 8px 6px 8px;
  height: 40px;
  border-radius: 0px;
  color: #3D4850;
  border: 1px solid #AEBFCB;
}

.input-textarea {
  padding: 6px 8px;
  border-radius: 0px;
  color: #3D4850;
  border: 1px solid #AEBFCB;
}

.rightpad50 {
  padding-right: 50px; 
}

.subtext {
  font-size: 11px;
  color: #999;
}

select {
  border: 1px solid #ccc;
  height: 34px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(selectarrow.png) 100% no-repeat #FFF;
}

select::-ms-expand {
    display: none; /* remove default arrow in IE 10 and 11 */
}


.input-group-text {
  border-radius: 0px;
}

.less-padded {
  padding: 0.375rem 0.2rem;
}

.input-warning {
  color: red;
}

.invalid-error {
  color: #F00
}

.invalid-error-label {
  padding-bottom: 21px;
}

.align-label-top {
  justify-content: flex-start;
  margin-top: 15px;
}

.multi-row {
  display: flex;
  border-bottom: 1px solid #CECFD1;;
  flex: 1;
  padding: 0;
}

.multi-button-row {
  display: flex;
  flex: 1;
  padding: 0;
  align-items: flex-start;
}

.multi-button-row__text {
  display: flex;
  padding: 0;
  justify-content: space-between;
  align-items: center;
}

.multi-top>p {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 2px;
  padding: 0px 4px 0px 4px;
}

.multi-inputrow, .multi-inputrow-tight {
  /*align-items: center;*/
}

.multi-inputrow>div {
  padding: 8px 4px 8px 0px;
}

.multi-inputrow-tight>div {
  padding: 4px 4px 4px 0px;
}

.multi-radio-label {
  font-size: 12px;
  font-weight: 500;
}

.loading-overlay-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  color: #FFF;
  font-size: 2em;
}

.loader {
  border: 4px solid #888; /* Light grey */
  border-top: 4px solid #FFF; /* Blue */
  border-radius: 50%;
  width: 28px;
  height: 28px;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.menu-outer {
  background-color: #DBE3E8;
  height: 68px;
}

.menu-outer-padding {
  background-color: #FFF;
  height: 20px;
}

.menu-inner {
  display: flex;
  border: 0px solid #FFF;
  height: 48px;
  padding: 10px 10px 0 10px;
  max-width: 1280px;
  min-width: 1024px;
  margin: auto;
  padding: 0px;
}

.left-border {
  border-left: 2px solid #FFF;
}

.menu-item {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #DBE3E8;
}

.menu-item a {
  text-decoration: none;
}


.menu-item.active {
  background-color: #F3F5F7;
  background-size: contain;
}

.menu-tick {
  background-image: url(menutick.png);
  content: url(menutick.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 32px;
}

.menu-arrow {
  background-image: url(arrow00.png);
  content: url(arrow00.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 48px;
  width: 23px;
}

.menu-arrow.active {
  background-image: url(arrow10.png);
  content: url(arrow10.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.menu-arrow.inverted {
  background-image: url(arrow01.png);
  content: url(arrow01.png);
  background-repeat: no-repeat;
  background-size: contain;
}



#step2 {
  display: none;
}

.popup-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}

.popup-inner {
  width: 800px;
  height: 500px;
  background-color: #FFF;
}

.popup-title {
  background-color: #0F68A2;
  color: #FFF;
  padding: 8px;
}

.popup-text {
  padding: 8px;
}

.popup-buttons {
  display: flex;
  justify-content: center;
  padding: 8px;
}

/**
 - Used Across all
 */

.overall-outer {
  flex: 1;
  background-color: #F3F5F7;
}

.results__title {
  font-size: 16px;
}

.results__title-container {
  min-width: 150px
}

.overall-inner {
  padding: 15px;
  border-left: 2px solid white;
}

.overall-inner:first-child {
  border: none;
}

.overall-inner__image {
  display: flex;
  align-items: center;
}

.overall-outer p {
  color: #3D4850;
}

.result-percent {
  font-size: 21px;
  font-weight: 400;
}

.align-right {
  text-align: right;
}

.center {
  text-align: center;
}

.results-plan__table td.results-plan__table-title {
  font-weight: bold;
  text-align: right;
}

/**
  - OverallTop
 */
.overall-result-details__container {
  display: flex;
  flex-direction: row;
  padding-left: 20px;
  height: 100%;
}

.overall-result-details__item {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

/**
 - OverAll Charges
 */
.results-charges__title {
  width: 150px;
}

.results-charges__section {
  border-right: 2px solid white;
  background-color: #F3F5F7;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;

}
.results-charges__section:last-child {
  border: none;
}

.results-charges__iac-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.results-charges__iac-options-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 191px;
}

.results-charges__iac-options {
  display: flex;
  flex-direction: column;
}

.results-charges__iac-title {
  font-weight: bold;
  align-self: center;
}

.results-charges__iac-button {
  padding: 1px 10px;
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;

  border: none;
  color: #F3F5F7;
  background-color: #AEBFCB;
  font-weight: bold;
}
.results-charges__iac-text {
  text-align: center;
  color: #3D4850;
}
.results-charges__iac-percent {
  padding: 4px;
  background-color: transparent;
  border: none;
}

.results-charges-terms {
  display: flex;
  flex-direction: row;
}

.results-charges__amc-container {
  max-width: 200px;
}

.results-charges__amc-title {
  text-align: center;
  font-weight: bold;
}

.results-charges__amc-text {
  font-weight: bold;
}

.results-charges__amc, .results-charges__ewc {
  font-weight: normal;
}


.results-charges__iaf-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.results-charges__iaf-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/**
 - overallPlan
 */

.results-plan__container {
  border-top: 1px solid #B5C6D1;
  border-bottom: 1px solid #B5C6D1;
  padding: 15px;
}

.results-plan__container.excluded {
  color: #C4C7CA;
  transition: color 0.2s;
}

.results-plan__section {
  padding: 0px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.results-plan__overlay {
  top: 0;
  right: 0;
}

.results-plan__overlay-button {
  background-color: white;
}

.results-plan__overlay-excluded-container {
  position: absolute;
  top: 0;
  right: 0;
}

.results-plan__overlay-image {
  margin-top: 1px;
  width: 200px;
}

.results-charges__iac-terms {
  text-align: center;
}

.overall-results__container {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.overall-results__row {
  display: flex;
  flex-direction: row;
  flex: 1;
}

.overall-results__col-left {
  width: 150px;
  min-width: 150px;
  text-align: right;
  margin: 2px;
  display: flex;
  justify-content: flex-end;
}

.overall-results__col-right {
  flex: 1;
  margin: 2px;
  display: flex;
}

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

.results-charges__iac-options-title {
  min-width: 155px;
}


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