/*TYPOGRAPHY*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=IBM+Plex+Mono&display=swap');

:root {
  --text-color: #000;
  --top-bar-height: 50px;
  --sidebar-width: 231px;
  --blur-strength: 40px;

  /* FIXME This is temporary while working with old code */
  --old-top-bar-height: 50px;
}

/***************************************Site Wides*************************************/
body {
  /*COLOR SCHEME*/
  --primary-color: #541868;
  --primary-color-scale-75: #7f528e;
  --primary-color-scale-50: #a98bb3;
  --primary-color-scale-25: #d4c5d9;
  --secondary-color: #66e848;
  --secondary-color-scale-75: #8cee78;
  --secondary-color-scale-50: #82f3a4;
  --secondary-color-scale-25: #d8f9d2;
  --info-color: #2f80ed;
  --success-color: #27ae60;
  --warning-color: #e2b93b;
  --error-color: #eb5757;
  --black-color: #000000;
  --white-color: #ffffff;
  --grey-color-1: #333333;
  --grey-color-2: #4f4f4f;
  --grey-color-3: #828282;
  --grey-color-4: #c4c4c4;
  --grey-color-5: #f2f2f2;
  --light-grey-2: #e0e0e0;

  --h1-size: 56px;
  --h1-line-height: 61.6px;
  --h2-size: 48px;
  --h2-line-height: 52.8px;
  --h3-size: 40px;
  --h3-line-height: 44px;
  --h4-size: 32px;
  --h4-line-height: 35.2px;
  --h5-size: 24px;
  --h5-line-height: 26.4px;
  --h6-size: 20px;
  --h6-line-height: 22px;
  --body-large-text-size: 20px;
  --body-large-text-line-height: 28px;
  --body-medium-text-size: 18px;
  --body-medium-text-line-height: 25.2px;
  --body-normal-text-size: 16px;
  --body-normal-text-line-height: 22.4px;
  --body-small-text-size: 14px;
  --body-small-text-line-height: 20px;
  --body-small-label-size: 14px;
  --body-small-label-line-height: 9px;
  --body-extra-small-text-size: 12px;
  --body-extra-small-text-line-height: 17px;

  margin: 0;
  padding: 0;

  font-size: var(--body-small-text-size);
  background-color: #fff !important;
  color: var(--grey-color-2);
}

* {
  /* font-family: 'Open Sans', sans-serif;*/
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: var(--h1-size) !important;
  line-height: var(--h1-line-height) !important;
}

h2 {
  font-size: var(--h2-size) !important;
  line-height: var(--h2-line-height) !important;
}

h3 {
  font-size: var(--h3-size) !important;
  line-height: var(--h3-line-height) !important;
}

h4 {
  font-size: var(--h4-size) !important;
  line-height: var(--h4-line-height) !important;
}

h5 {
  font-size: var(--h5-size) !important;
  line-height: var(--h5-line-height) !important;
}

h6 {
  font-size: var(--h6-size) !important;
  line-height: var(--h6-line-height) !important;
}

.body-large-text {
  font-size: var(--body-large-text-size) !important;
  line-height: var(--body-large-text-line-height) !important;
}
.body-medium-text {
  font-size: var(--body-medium-text-size) !important;
  line-height: var(--body-medium-text-line-height) !important;
}
.body-normal-text {
  font-size: var(--body-normal-text-size) !important;
  line-height: var(--body-normal-text-line-height) !important;
}
.body-small-text {
  font-size: var(--body-small-text-size) !important;
  line-height: var(--body-small-text-line-height) !important;
}
.body-small-label {
  font-size: var(--body-small-label-size) !important;
  line-height: var(--body-small-label-line-height) !important;
}
.body-extra-small-text {
  font-size: var(--body-extra-small-text-size) !important;
  line-height: var(--body-extra-small-text-line-height) !important;
}
.bold {
  font-weight: bold;
}
.semi-bold {
  font-weight: 600;
}
.centered-text {
  text-align: center;
}

p,
a {
  font-size: var(--body-small-text-size) !important;
  line-height: var(--body-small-text-line-height) !important;
}

.color-primary {
  color: var(--primary-color);
}

.color-info {
  color: var(--info-color);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute
}

@media (min-width: 768px) {
  body {
    margin: 0;
    padding: 0;

    /* font-family: 'Open Sans', sans-serif;*/
    font-family: "Poppins", sans-serif;
    background-color: #eee;
  }
}

.login-full-screen-bg {
  position: fixed;
  z-index: 0;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
}

.disabled-element {
  pointer-events: none;
}

.validation-error {
  font-size: 11pt;
  font-weight: 700;
  color: var(--error-color);
  text-align: center;
}

#wrapper {
  padding-left: 0;
}

.page-header {
  margin-top: 12px;
  font-size: var(--h3-size) !important;
  line-height: var(--h3-line-height) !important;
}

.dialog-button {
  background-color: var(--primary-color-scale-75);
  border-color: var(--primary-color-scale-75);
}

.dialog-button:hover,
.dialog-button:active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.dialog-button:disabled {
  background-color: var(--primary-color-scale-25);
  border-color: var(--primary-color-scale-25);
}

.dialog-button-2,
.dialog-button-2:hover,
.dialog-button-2:active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.dialog-button-2:disabled {
  background-color: #adadad;
  border-color: #adadad;
}

.dialog-link {
  color: var(--primary-color);
  margin: 10px;
}

.dialog-link:hover,
.dialog-link:focus {
  color: var(--primary-color);
}

#page-wrapper {
  width: 100%;
  padding: 0;
  background-color: var(--white-color);
}

.huge {
  font-size: 50px;
  line-height: normal;
}

@media (min-width: 768px) {
  #wrapper {
    /* FIXME This is temporary while working with old code */
    /* padding-top: var(--top-bar-height, 0px); */
    padding-top: var(--top-bar-height, 0px);
    padding-left: var(--sidebar-width, 0px);
  }

  #page-wrapper {
    padding: 10px;
    padding-top: 0;
  }
}

select {
  margin: 0 !important;
}

.embeddedVideo {
  position: relative;
  padding-bottom: 51%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.embeddedVideo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tpc-container {
  padding-top: 5.5em;
}

/* centered columns styles */
.row-centered {
  text-align: center;
}

.col-centered {
  display: inline-block;
  float: none;
  /* reset the text-align */
  text-align: left;
  /* inline-block space fix */
  margin-right: -4px;
}

.to-top {
  width: 56px;
  height: 56px;

  /*Circle*/
  -moz-border-radius: 28px;
  -webkit-border-radius: 28px;
  border-radius: 28px;

  /*Rectangle*/
  /* -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;*/

  background-color: var(--primary-color-scale-75);
  box-shadow: 0 1px 2px #aaa;
  bottom: 15px;
  right: 15px;
  position: fixed;
  z-index: 998;
  color: var(--white-color);
  font-family: "Poppins", sans-serif;
  font-size: 25pt;
  text-align: center;
  line-height: 66px;
  font-weight: 900;

  cursor: pointer;
}

.to-top img {
  width: 20px;
  padding-bottom: 15px;
}

.to-top:hover {
  background-color: var(--primary-color);
}

.phoneInput {
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.bottom-save {
  width: 120px;
  height: 56px;

  /*Circle*/
  -moz-border-radius: 28px;
  -webkit-border-radius: 28px;
  border-radius: 28px;
  background-color: var(--primary-color-scale-75);
  box-shadow: 0 1px 2px #aaa;
  position: fixed;
  bottom: 15px;
  right: 203px;
  z-index: 998;
  color: var(--white-color);
  font-family: "Poppins", sans-serif;
  text-align: center;
  line-height: 56px;
  font-weight: 600;
  font-size: var(--body-large-text-size);

  cursor: pointer;
}

.bottom-save:hover {
  background-color: var(--primary-color);
}

.bottom-discard {
  width: 120px;
  height: 56px;

  /*Circle*/
  -moz-border-radius: 28px;
  -webkit-border-radius: 28px;
  border-radius: 28px;
  background-color: var(--primary-color-scale-75);
  box-shadow: 0 1px 2px #aaa;
  position: fixed;
  bottom: 15px;
  right: 77px;
  z-index: 998;
  color: var(--white-color);
  font-family: "Poppins", sans-serif;
  text-align: center;
  line-height: 56px;
  font-weight: 600;
  font-size: var(--body-large-text-size);

  cursor: pointer;
}

.bottom-discard:hover {
  background-color: var(--primary-color);
}

.bottom-saved,
.bottom-reload,
.bottom-delete {
  width: 120px;
  height: 56px;

  /*Circle*/
  -moz-border-radius: 28px;
  -webkit-border-radius: 28px;
  border-radius: 28px;
  box-shadow: 0 1px 2px #aaa;
  position: fixed;

  bottom: 15px;
  right: 77px;

  z-index: 1000;
  color: var(--white-color);
  font-family: "Poppins", sans-serif;
  text-align: center;
  line-height: 56px;
  font-weight: 600;
  font-size: var(--body-large-text-size);

  cursor: pointer;
  background-color: var(--primary-color-scale-75);
}

.bottom-reload {
  background-color: var(--primary-color-scale-75);
}

.bottom-reload:hover {
  background-color: var(--primary-color);
}

.bottom-delete {
  background-color: var(--primary-color-scale-75);
}

.bottom-delete:hover {
  background-color: var(--primary-color);
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  display: none;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider-secondary {
  background-color: var(--secondary-color);
}

input:focus + .slider-secondary {
  box-shadow: 0 0 1px var(--secondary-color);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/***************************************Top Navigation*************************************/

.top-nav {
  padding: 0 15px;
}

.top-nav > li {
  display: inline-block;
  float: left;
}

.top-nav > li > a {
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 20px;
  color: #999;
}

.top-nav > li > a:hover,
.top-nav > li > a:focus,
.top-nav > .open > a,
.top-nav > .open > a:hover,
.top-nav > .open > a:focus {
  color: #555555;
  background-color: #e7e7e7;
}

.top-nav > .open > .dropdown-menu {
  float: left;
  position: absolute;
  margin-top: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  min-width: 200px;
}

.top-nav > .open > .dropdown-menu > li > a {
  white-space: normal;
}

ul.message-dropdown {
  padding: 0;
  max-height: 250px;
  overflow-x: hidden;
  overflow-y: auto;
}

li.message-preview {
  width: 275px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

li.message-preview > a {
  padding-top: 15px;
  padding-bottom: 15px;
}

li.message-footer {
  margin: 5px 0;
}

ul.alert-dropdown {
  width: 200px;
}

.advisor-top-nav {
  background-color: #353535;
  color: var(--white-color) !important;
}

.advisor-icon {
  font-size: 16pt;
}

.advisor-icon a {
  padding: 15px 18px !important;
  color: var(--white-color) !important;
}

.advisor-icon a:hover {
  background-color: #424242 !important;
}

.pwp-link {
  margin-right: 49px;
}

.pwp-link a {
  font-size: 14pt;
  color: var(--white-color) !important;
}

.pwp-link a:hover {
  background-color: #424242 !important;
}

/*Logo on - Desktop/Tablet*/
@media (min-width: 768px) {
  .navbar-brand img {
    height: 29px;
  }

  .navbar-brand {
    padding-top: 12px !important;
    padding-left: 12px !important;
    padding-right: 0px !important;
  }
}

/*Logo on - Mobile*/
@media (max-width: 768px) {
  .navbar-brand img {
    height: 23px;
  }

  .navbar-brand {
    padding-top: 14px !important;
    padding-left: 7px !important;
    padding-right: 0px !important;
  }
}

/*Logo on - iPhone 5*/
@media (max-width: 321px) {
  .navbar-brand img {
    height: 18px;
  }

  .navbar-brand {
    padding-top: 15px !important;
    padding-left: 7px !important;
    padding-right: 0px !important;
  }
}

/***************************************Site Navigation*************************************/
@media (min-width: 768px) {
  .side-nav {
    position: fixed;
    top: 51px;
    left: 160px;
    width: 165px;
    margin-left: -160px;
    border: none;
    border-radius: 0;
    overflow-y: auto;
    background-color: #f8f8f8;
    bottom: 0;
    overflow-x: hidden;
    padding-bottom: 40px;
    border-right: 1px solid #e7e7e7;
  }

  .tpc-side-nav {
    top: 5.5em;
  }

  .side-nav > li > a {
    width: 160px;
  }

  .side-nav li a:hover,
  .side-nav li a:focus {
    outline: none;
    background-color: #e7e7e7 !important;
  }

  .side-nav li a:active {
    background-color: #d4d4d4 !important;
  }
}

.side-nav > li > ul {
  padding: 0;
}

.side-nav > li > ul > li > a {
  display: block;
  padding: 10px 15px 10px 20px;
  text-decoration: none;
  color: #999;
}

.side-nav > li > ul > li > a:hover {
  color: #555;
}

.sidebaricon {
  margin-right: 0.35em;
}

.side-nav-separator {
  color: #999;
  margin-left: 10%;
  width: 80%;
  border-bottom: #999 solid thin;
  list-style: none;
  font-weight: 600;
  font-size: 12px;
}

/*Sidebar Menu Icons (FontAwesome)*/
.side-nav .fa {
  width: 25px;
}

.sidebar-icon {
  margin-right: 5px;
}

.huge {
  font-size: 40px;
}

.empower-button {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  font-size: 13pt;
  padding: 5px 13px;
}

.empower-button:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.empower-button:active {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}

.chart-legend li span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

td button {
  border: none;
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  background: none;
  text-align: left;
}

.panel,
.panel-body,
.panel-group,
.panel-heading {
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
}

/**Need to confirm that this aligns checkboxes with label text, across all pages**/
.checkbox input {
  margin-top: 7px;
}

/********************************************************************************************/

/****************************************Dashboard**************************************/
.dashboard-tile-container {
  padding: 0 4px;
  margin: 0;
}

.dashboard-tile {
  background-color: var(--primary-color);
  color: var(--white-color);
  -moz-border-radius: 7px !important;
  -webkit-border-radius: 7px !important;
  border-radius: 7px !important;
}

.dashboard-tile :hover {
  color: var(--primary-color);
  background-color: var(--white-color);
  cursor: default;
  -moz-border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  border-radius: 6px !important;
}

.dashboard-tile h3 {
  font-size: 14pt !important;
  font-weight: 300;
  padding: 0;
  margin: 0;
}

.dashboard-tile h1 {
  font-size: 21pt !important;
  margin: 0;
  padding: 0;
  margin-top: 8px;
  font-weight: 700;
}

.dashboard-tile .panel-body {
  padding: 11px;
}

.dashboard-panel {
  -moz-border-radius: 7px !important;
  -webkit-border-radius: 7px !important;
  border-radius: 7px !important;
}

.dashboard-panel .panel-heading {
  -moz-border-radius-topright: 7px !important;
  -moz-border-radius-topleft: 7px !important;

  -webkit-border-radius: 7px 7px 0 0 !important;
  border-radius: 7px 7px 0 0 !important;
}

.dashboard-panel-body h4 {
  padding: 0;
  margin: 10px 0;
  font-weight: normal;
}

.feed-item-title {
  padding-bottom: 0 !important;
  margin-bottom: 3px !important;
  margin-top: 16px !important;
  line-height: 1em !important;
}

.feed-item-title a {
  color: var(--primary-color) !important;
  font-size: 12pt !important;
}

.feed-item-desc {
  font-size: 11pt !important;
}

.rss2html-note {
  display: none;
}

.podcast img {
  width: 100%;
}

.podcast .feed-item-title {
  padding-bottom: 0 !important;
  margin-bottom: 3px !important;
  margin-top: 16px !important;
  line-height: 1em !important;
}

.podcast .feed-item-title a {
  color: var(--primary-color) !important;
  font-size: 12pt !important;
}

.dashboard-chart-title {
  text-align: center;
  margin-bottom: 12px;
}

.dashboard-container {
  background-color: var(--white-color);
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  max-width: 768px;
  margin-bottom: 40px;
}

.dashboard-small-nav {
  margin: 0 auto;
  height: 40px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  margin-top: 35px;
  cursor: pointer;
}
.dashboard-small-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}

.dashboard-small-nav-item p {
  color: var(--white-color);
  margin: 0;
}

.dashboard-small-nav h3 {
  color: var(--white-color);
  margin: 0;
  padding: 0;
  font-size: 13pt;
  font-weight: 900;
  text-align: center;
}

.dashboard-small-nav-left {
  background-color: var(--primary-color-scale-50);
  color: var(--white-color);

  -moz-border-radius-bottomleft: 5px !important;
  -moz-border-radius-topleft: 5px !important;

  -webkit-border-radius: 5px 0 0 5px !important;
  border-radius-: 5px 0 0 5px !important;
}

.dashboard-small-nav-right {
  background-color: var(--primary-color-scale-50);
  border-left: solid var(--white-color) 1px;

  -moz-border-radius-bottomright: 5px !important;
  -moz-border-radius-topright: 5px !important;

  -webkit-border-radius: 0 5px 5px 0 !important;
  border-radius-: 0 5px 5px 0 !important;
}

.dashboard-small-nav-center {
  height: 40px;

  background-color: var(--primary-color-scale-50);

  border-left: solid var(--white-color) 1px;

  -moz-border-radius-bottomright: 5px !important;
  -moz-border-radius-topright: 5px !important;

  -webkit-border-radius: 0 !important;
  border-radius-: 0 !important;
}

.dashboard-small-nav-left:active,
.dashboard-small-nav-right:active,
.dashboard-small-nav-center:active {
  background-color: var(--primary-color);
}

.dashboard-small-nav-left:hover,
.dashboard-small-nav-right:hover,
.dashboard-small-nav-center:hover {
  background-color: var(--primary-color);
}

.dashboard-nav-active {
  background-color: var(--primary-color);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.7);
}

.dashboard-big-btn {
  background-color: var(--primary-color-scale-75);
  color: var(--white-color);
  border: none;
  font-size: 16pt;
  padding: 12px 25px;
  width: 270px;
  margin-bottom: 10px;
}

.dashboard-big-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.dashboard-big-btn:active {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}

.dashboard-first-login {
  margin: 25px;
  margin-top: 40px;
  font-family: "Poppins", sans-serif;
}

.dashboard-first-login h4 {
  font-weight: 400;
  text-align: justify;
  font-size: 12pt;
  color: #363636;
}

.dashboard-first-login h1 {
  color: #363636;
  font-weight: 700;
  font-size: 20pt;
}

.fa-big {
  padding-right: 40px;
}

.embeddedDashboardVideoWrapper {
  max-width: 650px;
  margin: 0 auto;
}

/*** Dashboard loans ***/
.dashboard-property-secured-against-item {
  font-weight: 400 !important;
  padding: 10px;
}

.property-cross-collateral {
  padding: 10px;
}

.property-loans-table th {
  text-align: center;
}

.property-loans-table tbody {
  display: block !important;
  min-height: 170px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.property-loans-table td {
  padding: 5px 10px 0px 10px;
  width: 20% !important;
  text-align: center;
}

.property-loans-table-oval {
  width: 20px;
  height: 15px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  margin-left: 10%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.lender-container {
  position: relative;
}

.lender-text {
  margin-left: 25%;
}

.property-loans-table td:first-child {
  width: 10% !important;
}

.property-loans-table td:last-child {
  width: 10% !important;
}

.dashboard-loan-1 {
  color: blue !important;
}

.dashboard-loan-2 {
  color: red !important;
}

.dashboard-loan-3 {
  color: green !important;
}

.dashboard-loan-4 {
  color: darkred !important;
}

.dashboard-loan-5 {
  color: purple !important;
}

.dashboard-loan-6 {
  color: orangered !important;
}

.dashboard-loan-7 {
  color: darkslateblue !important;
}

.dashboard-loan-8 {
  color: darkslategray !important;
}

.dashboard-loan-9 {
  color: darkblue !important;
}

.dashboard-loan-10 {
  color: darkgoldenrod !important;
}

.dashboard-loan-oval-1 {
  background: blue !important;
}

.dashboard-loan-oval-2 {
  background: red !important;
}

.dashboard-loan-oval-3 {
  background: green !important;
}

.dashboard-loan-oval-4 {
  background: darkred !important;
}

.dashboard-loan-oval-5 {
  background: purple !important;
}

.dashboard-loan-oval-6 {
  background: orangered !important;
}

.dashboard-loan-oval-7 {
  background: darkslateblue !important;
}

.dashboard-loan-oval-8 {
  background: darkslategray !important;
}

.dashboard-loan-oval-9 {
  background: darkblue !important;
}

.dashboard-loan-oval-10 {
  background: darkgoldenrod !important;
}

/********************************************************************************************/

/****************************************Sign In Page****************************************/
.sign-in-container {
  /*	display: table-cell;
    vertical-align: middle*/
}

.form-info {
  max-width: 370px;
  padding: 20px;
  margin: 0 auto;

  margin-top: -30px;
  transform: translateY(-18%);
  padding-top: 40px;
  padding-bottom: 40px;
}

.form-signin {
  max-width: 370px;
  padding: 20px;
  margin: 0 auto;
  background-color: var(--white-color);
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: 1px solid #ccc;
  margin-top: 50vh; /*Centres the login form.*/
  transform: translateY(-50%);
  padding-top: 40px;
  padding-bottom: 40px;
}

.tpc-form-signin {
  max-width: 370px;
  padding: 20px;
  margin: 0 auto;
  background-color: var(--white-color);
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: 1px solid #ccc;
  margin-top: 20vh; /*Centres the login form.*/
  transform: translateY(-20%);
  padding-top: 40px;
  padding-bottom: 40px;
}

.form-signin-logo {
  width: 320px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 40px;
}

.form-signin-logo img {
  width: 320px;
}

.form-signin .form-signin-heading,
.form-signin .checkbox,
.tpc-form-signin .form-signin-heading,
.tpc-form-signin .checkbox {
  margin-bottom: 10px;
  font-size: 18pt !important;
}

.form-signin .checkbox,
.tpc-form-signin .checkbox {
  font-weight: normal;
}

.form-signin .form-control,
.tpc-form-signin .form-control,
.form-phone .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
}

.form-signin .form-control:focus,
.tpc-form-signin .form-control:focus,
.form-phone .form-control:focus {
  z-index: 2;
}

.form-signin input[type="email"],
.tpc-form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"],
.tpc-form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.empower-signin-button {
  width: 100%;
  margin-top: 25px;
  font-size: 12pt;
  height: 43px;
  padding: 0;
  background-color: var(--primary-color-scale-75);
  color: var(--white-color);
  border: none;
}

.empower-signin-button:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.empower-signin-button:active {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.forgot-password,
.sign-me-up {
  width: 100%;
  text-align: center;
  cursor: pointer;
  margin-top: 25px;
}
#infoBanner {
  position: fixed;
  top: 0px;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: large;
  background-color: #ecfa56;
  color: rgba(0, 0, 0, 0.963);
}
#btnHelp {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.btn.orange {
  background-color: var(--primary-color-scale-75);
  color: var(--white-color);
}

.btn.orange:hover {
  background-color: var(--primary-color);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn.orange:active {
  background-color: var(--primary-color);
}

.forgot-password a {
  color: var(--primary-color);
}

.forgot-password a:hover {
  text-decoration: underline;
}

.sign-me-up a {
  color: var(--primary-color) !important;
  font-weight: 500;
}

.error-msg {
  color: #EB5757;
}

.reset-input {
  height: 40px;
}

/********************************************************************************************/

/***************************************Fact Find Pages***************************************/

.factfind-container {
  background-color: var(--white-color);
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  margin-top: 30px;
  border: 1px solid #ccc;
  max-width: 768px;
  margin-bottom: 40px;
}

.factfind-expenses-container {
  background-color: var(--white-color);
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  margin-top: 30px;
  margin-bottom: 40px;
  width: 1300px;
}

.factfind-nav div {
  text-align: center;
  font-size: 13pt;
  padding-top: 11px;
  padding-bottom: 11px;
  font-weight: 400;
  line-height: 1em;
}

.factfind-nav a {
  color: #545454;
}

.factfind-nav a:hover,
.factfind-nav div:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.factfind-nav div:active {
  text-decoration: underline;
  color: var(--primary-color);
}

.factfind-logo img {
  margin-top: 40px;
  width: 360px;
}

.factfind-logo.reset img {
  margin-top: 40px;
  width: 130px;
}

.factfind-logo {
  width: 360px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.factfind-form {
  margin: 10px;
}

.factfind-form label {
  margin-top: 3px;
}

.factfind-header {
  font-weight: 700;
  font-size: 20pt;
}

.factfind-subheading {
  color: var(--primary-color);
  font-weight: 700;
  font-size: var(--body-medium-text-size) !important;
  line-height: var(--body-medium-text-line-height) !important;
}

.factfind-subheading-2 {
  color: #363636;
  font-weight: 700;
  font-size: 13pt;
  text-decoration: underline;
}

.factfind-subheading-3 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 13pt;
}

.factfind-subheading-4 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14pt;
}

.factfind-hint {
  font-style: italic;
  font-weight: 300;
  line-height: 1.4em;
}

.factfind-hint-assets {
  font-weight: 300 !important;
  font-size: var(--body-small-text-size) !important;
  line-height: var(--body-small-text-line-height) !important;
}

.dashboard-tip {
  margin-bottom: -10px;
}

.factfind-text {
  font-weight: 300 !important;
  font-size: var(--body-small-text-size) !important;
  line-height: var(--body-small-text-line-height) !important;
}

.factfind-form select {
  margin-bottom: 10px;
}

.factfind-plus {
  color: var(--primary-color);
  font-size: 20pt;
  margin-left: 10px;
  float: right;
  top: -4px;
}

.factfind-plus:hover {
  color: var(--primary-color);
}

.factfind-add {
  color: var(--primary-color);
  float: right;
  font-size: var(--body-small-text-size);
  font-weight: bold;
  line-height: 0;
}

.factfind-add a {
  color: var(--grey-color-3) !important;
  font-size: inherit;
}

.factfind-btn-group {
  margin-top: 70px;
  margin-bottom: 25px;
  text-align: center !important;
}

.factfind-btn-group.reset {
  margin-top: 0px;
}

#myProgress {
  position: relative;
  width: 100%;
  height: 30px;
  background-color: #eeeeee;
  margin-top: 36px;
}

#myBar {
  position: absolute;
  width: 8%;
  height: 100%;
  background-color: var(--primary-color);
}

#label {
  text-align: center; /* If you want to center it */
  line-height: 30px; /* Set the line-height to the same as the height of the progress bar container, to center it vertically */
  color: white;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px var(--primary-color-scale-25);
}

.factfind-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  font-size: 13pt;
  padding: 7px 13px;
  width: 100%;
  margin-bottom: 12px;
}

.factfind-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.factfind-btn:active {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}

.go-btn {
  background-color: green;
  color: var(--white-color);
  border: none;
  font-size: 13pt;
  padding: 7px 13px;
  width: 100%;
  margin-bottom: 12px;
}

.go-btn:hover {
  background-color: greenyellow;
  font-weight: bold;
  color: black !important;
}

.go-btn:active {
  background-color: greenyellow !important;
  color: var(--white-color) !important;
}

.factfind-table td {
  text-align: left;
}

.factfind-table td + td {
  text-align: center;
}

.checkbox-label {
  text-align: left !important;
  font-size: 11pt;
  font-weight: normal;
}

.checkbox {
  text-align: right !important;
  padding-left: 15px;
  padding-right: 0;
  padding-top: 7px;
}

.quiz-score {
  font-size: 90pt;
  color: var(--primary-color);
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 0;
}

.school-fees-table {
  background-color: var(--white-color);
  width: 500px;
  border: 1px solid #7a7a7a;
  margin: 0 auto;
  padding-bottom: 20px;
}

.school-fees-table .spacer {
  height: 20px;
}

.school-fees-table td {
  padding-left: 10px;
  padding-bottom: 2px;
}

.school-fees-table th {
  padding-left: 10px;
  padding-top: 20px;
}

label a {
  color: var(--primary-color);
}

label a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.discussion-topics td {
  padding-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
  font-weight: bold;
}

.what-money-means td {
  padding-bottom: 10px;
  padding-right: 10px;
  font-size: var(--body-small-label-size);
  padding-left: 10px;
  font-weight: bold;
}

.what-money-means td:nth-child(even) {
  width: 300px;
}

.wealth-building-table {
  font-size: 11pt;
}

.wealth-building-table th {
  padding: 25px 6px 6px 0px;
}

.wealth-building-table td {
  padding: 3px;
}

.ff-nav-button {
  background-color: transparent;
  border: none;
  padding: 0px;
}

button[disabled].ff-nav-button {
  text-decoration: none;
  color: #b7b7b7;
}

.right-button-span {
  display: inline-block;
  color: var(--primary-color);
  text-align: right;
}

.base-discount-button {
  width: 20%;
  float: right;
}

.base-discount-button button {
  color: var(--primary-color);
  font-size: 15pt;
  padding: 0;
}

.base-discount-button button.collapsed:before {
  content: "\e114";
}

.base-discount-button button:before {
  content: "\e113";
}

.mandatory.ng-empty {
  border: red solid 2px !important;
}

/********************************************************************************************/

/************************************Client Summary Page*************************************/

.property-tile {
  background-color: #f5f5f5;
  color: #333333;
  min-height: 190px;
  -moz-border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  border-radius: 10px !important;
  border: solid 2px var(--primary-color);
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.property-tile-1 {
  min-height: 187px;
}

.property-tile-2 {
  min-height: 187px;
  border-left: dashed 2px var(--primary-color);
}

.property-tile-icon {
  width: 70px;
  margin: 0 auto;
  margin-bottom: 8px;
  padding-top: 8px;
}

.property-tile-icon img {
  width: 70px;
}

.property-tile-1 h2 {
  padding: 0;
  margin: 0;
  font-weight: 900;
  text-align: center;
  margin-top: 5px;
}

.property-tile-1 h4 {
  padding: 0;
  margin: 0;
  font-weight: 400;
  text-align: center;
  line-height: 20px;
}

.property-tile-details {
  width: 95%;
  height: 50px;
  background-color: var(--primary-color);
  margin: 0 auto;
  color: var(--white-color);

  -moz-border-radius-bottomleft: 10px !important;
  -moz-border-radius-bottomright: 10px !important;

  -webkit-border-radius: 0 0 10px 10px !important;
  border-radius-: 0 0 10px 10px !important;
}

.property-tile-details table {
  width: 100%;
  text-align: center;
  font-size: 11pt;
}

.property-tile-details table td:nth-child(odd) {
  padding-top: 10px;

  text-align: right;
  padding-right: 5px;
}

.property-tile-details table td:nth-child(even) {
  padding-top: 8px;
  font-weight: 700;
  text-align: left;
  font-size: 14pt;
}

.property-loans-table {
  width: 100%;
  margin-top: 10px;
  font-weight: 400;
  font-size: 10pt;
  margin-left: 5px;
  border-collapse: separate;
  padding-right: 5%;
  padding-left: 5%;
  border-spacing: 0px 5px;
}

.property-loans-table th {
  font-weight: 900;
  font-size: 12pt;
}

.client-summary-table {
  width: 100%;
  font-size: 12pt;

  color: var(--white-color);
  border-collapse: separate;
  border-spacing: 0 4px;
}

.client-summary-table th {
  height: 45px;
  padding: 5px;
  font-size: 13pt;
  background-color: var(--primary-color);
  text-align: center;
}

.client-summary-table th:nth-child(1) {
  -moz-border-radius-bottomleft: 5px !important;
  -moz-border-radius-topleft: 5px !important;

  -webkit-border-radius: 5px 0 0 5px !important;
  border-radius-: 5px 0 0 5px !important;
}

.client-summary-table th:nth-child(2) {
  min-width: 140px !important;
}

.client-summary-table th:nth-child(3) {
  -moz-border-radius-bottomright: 5px !important;
  -moz-border-radius-topright: 5px !important;

  -webkit-border-radius: 0 5px 5px 0 !important;
  border-radius-: 0 5px 5px 0 !important;
  min-width: 140px;
}

.client-summary-table td {
  height: 40px;
  padding: 7px;
  padding-right: 17px;
  color: #333333;
  background-color: #eeeeee;
  text-align: right;
  font-size: var(--body-small-label-size);
  line-height: var(--body-small-label-line-height);
}

.client-summary-table td:nth-child(1) {
  -moz-border-radius-bottomleft: 5px !important;
  -moz-border-radius-topleft: 5px !important;

  -webkit-border-radius: 5px 0 0 5px !important;
  border-radius-: 5px 0 0 5px !important;
  font-weight: normal;
  text-align: left;
}

.client-summary-table td:nth-child(2),
.client-summary-table td:nth-child(3) {
  min-width: 140px !important;
  border-left: solid 1px var(--white-color);
}

.client-summary-table td:nth-child(3) {
  -moz-border-radius-bottomright: 5px !important;
  -moz-border-radius-topright: 5px !important;

  -webkit-border-radius: 0 5px 5px 0 !important;
  border-radius-: 0 5px 5px 0 !important;
}

.client-summary-table .break-row td {
  background-color: var(--white-color);
  padding-top: 30px !important;
  font-size: var(--body-small-label-size);
  font-weight: 700;
  padding: 7px;
}

.client-summary-table tr:hover td {
  background-color: #d7d7d7;
}

.client-summary-table .break-row:hover td {
  background-color: var(--white-color);
}

/*Client Summary Table if only 1 Client in Household*/
.client-summary-table-single-client {
  width: 100%;
  font-size: 12pt;

  color: var(--white-color);
  border-collapse: separate;
  border-spacing: 0 4px;
}

.client-summary-table-single-client th {
  height: 45px;
  padding: 5px;
  font-size: 13pt;
  background-color: var(--primary-color);
  text-align: center;
}

.client-summary-table-single-client th:nth-child(1) {
  -moz-border-radius-bottomleft: 5px !important;
  -moz-border-radius-topleft: 5px !important;

  -webkit-border-radius: 5px 0 0 5px !important;
  border-radius-: 5px 0 0 5px !important;
}

.client-summary-table-single-client th:nth-child(2) {
  -moz-border-radius-bottomright: 5px !important;
  -moz-border-radius-topright: 5px !important;

  -webkit-border-radius: 0 5px 5px 0 !important;
  border-radius-: 0 5px 5px 0 !important;
  min-width: 140px !important;
  font-size: var(--body-small-label-size);
}

.client-summary-table-single-client th:nth-child(3) {
  display: none;
}

.client-summary-table-single-client td {
  height: 40px;
  padding: 7px;
  padding-right: 17px;
  color: #333333;
  background-color: #eeeeee;
  text-align: right;
}

.client-summary-table-single-client td:nth-child(1) {
  -moz-border-radius-bottomleft: 5px !important;
  -moz-border-radius-topleft: 5px !important;

  -webkit-border-radius: 5px 0 0 5px !important;
  border-radius-: 5px 0 0 5px !important;
  font-weight: normal;
  text-align: left;
}

.client-summary-table-single-client td:nth-child(2) {
  border-left: solid 1px var(--white-color);
  -moz-border-radius-bottomright: 5px !important;
  -moz-border-radius-topright: 5px !important;

  -webkit-border-radius: 0 5px 5px 0 !important;
  border-radius-: 0 5px 5px 0 !important;
  min-width: 140px;
}

.client-summary-table-single-client td:nth-child(3) {
  display: none;
}

.client-summary-table-single-client .break-row td {
  background-color: var(--white-color);
  padding-top: 30px !important;
  font-size: 13pt;
  font-weight: 700;
  padding: 7px;
}

.client-summary-table-single-client tr:hover td {
  background-color: #d7d7d7;
}

.client-summary-table-single-client .break-row:hover td {
  background-color: var(--white-color);
}

.assets-table td:nth-child(2) {
  -moz-border-radius-bottomright: 5px !important;
  -moz-border-radius-topright: 5px !important;

  -webkit-border-radius: 0 5px 5px 0 !important;
  border-radius-: 0 5px 5px 0 !important;
}

.property-summary-tile {
  color: var(--white-color);
  height: 170px;
  margin-bottom: 20px;
  -moz-border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  border-radius: 10px !important;
  background-color: var(--primary-color);
  margin-top: 25px;
}

.property-summary-tile-1 {
  height: 170px;
  border-right: solid 3px var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.property-summary-tile-2 {
  height: 170px;
  padding: 0 !important;
}

.property-summary-tile-1 h1 {
  padding: 0;
  margin: 0;
  font-weight: 900;
  text-align: center;
  font-size: 62pt;
  margin-top: 20px;
}

.property-summary-tile-1 h2 {
  padding: 0;
  margin: 0;
  font-weight: 900;
  text-align: center;
}

.property-summary {
  width: 100%;
  text-align: center;
  font-size: 14pt;
}

.property-summary-table {
  width: 100%;
  padding: 0;
  margin: 0;
}

.property-summary-table th {
  text-align: center;
  font-size: 11pt;
  font-weight: 400;
  padding: 0;
  padding-top: 22px;
}

.property-summary-table td {
  text-align: center;
  font-size: 18pt;
  padding: 0;
  font-weight: 700;
  width: 33%;
}

.summaryDeficit {
  font-weight: 700;
  color: #fa2a00 !important;
}

.summarySurplus {
  font-weight: 700;
  color: #88c425 !important;
}

/********************************************************************************************/

/*************************************Client Search Page*************************************/

.client-searchfield {
  font-size: 17pt;
  height: 50px;
  width: 90%;
  margin-top: 15px;
  margin-bottom: 60px;
  font-weight: 400;
}

.client-searchTitle {
  font-size: 22pt;
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 600;
}

.client-search-link a {
  text-decoration: none;
  color: var(--white-color);
}

.client-search-panel {
  padding: 10px;
  height: 130px;
  background-color: var(--grey-color-1);
  color: var(--white-color);
  -moz-border-radius: 7px !important;
  -webkit-border-radius: 7px !important;
  border-radius: 7px !important;
  border: var(--white-color) solid 2px;
}

.client-search-panel .client-search-download {
  padding-top: 36px;
  padding-left: 25px;
}

.client-search-panel:hover {
  background-color: var(--grey-color-2);
  cursor: pointer;
}

.client-search-panel:active {
  background-color: #5a5a5a;
  color: var(--secondary-color);
}

.client-search-panel div,
.client-search-panel div h3 {
  color: var(--secondary-color);
}

.client-search-panel div div,
.client-search-panel h4 {
  color: var(--white-color);
}

.client-search-panel h3 {
  margin: 0;
  padding: 0;
  margin-bottom: 4px;
}

.client-search-panel h5 {
  margin: 0;
  padding: 0;
}

/********************************************************************************************/

/*****************************************Development****************************************/
.kosta-dev {
  color: blue;
  font-family: "Courier New";
  display: none;
}

.bug-tracker {
  margin: 0 auto;
  width: 320px;
  text-align: center;
  margin-bottom: 30px;
  cursor: pointer;
  /*display: none;*/
}

.bug-tracker button {
  width: 320px;
  font-size: 15pt;
}

.json-dl {
  z-index: 1100;
}

.json-dl {
  z-index: 1100;
}

.disabled-nav {
  pointer-events: none;
  color: gray !important;
}

.modal-box {
  margin-top: 10%;
}

.modal-content-container {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

.red {
  color: red !important;
}

.single-property-loan-item {
  display: inline-block;
  width: 60%;
  margin-left: 20%;
  text-align: center;
}

.multiple-property-loan-item {
  display: inline-block;
  width: 40%;
  margin-left: 5%;
  margin-right: 20px;
  text-align: center;
}

@media (max-width: 1200px) {
  /* STYLES HERE */
  .single-property-loan-item {
    display: inline-block;
    text-align: center;
  }

  .multiple-property-loan-item {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}

input[type="checkbox"]:focus {
  border-color: var(--primary-color);
  outline: 5px auto var(--primary-color);
  outline-offset: -2px;
}

/*****************************************Client Changes****************************************/
.change-value {
  margin-left: 10px;
}

.client-survey ul li span {
  font-weight: 600;
}

.client-survey ul {
  width: 550px;
}

.client-survey li {
  line-height: 1.5em;
  list-style: none;
  word-break: break-word;
}

.table-personal-info {
  margin-left: 30px;
}

.table-personal-info tr td {
  vertical-align: top;
}

.table-personal-info span {
  font-weight: 600;
  padding-right: 10px;
}

.table-personal-info tr td ul {
  list-style: none;
  padding-left: 20px;
}

.table-personal-info tr td ul li {
  line-height: 1.5em;
  padding-left: 0px;
  word-break: break-word;
}

.table-personal-info p {
  margin-left: 10px;
  font-weight: 600;
}

.modal-file-list {
  width: 60% !important;
}

.assets-list span {
  font-weight: 600;
}

.assets-list ul {
  list-style: none;
  padding-left: 20px;
}

.loans-list li {
  line-height: 1.5em;
  padding-left: 0px;
  word-break: break-word;
  list-style: none;
}

.loans-list span {
  font-weight: 600;
}

.no-bullet {
  list-style: none;
}

.max-width-400 {
  max-width: 420px;
  width: 420px;
  overflow-x: scroll;
}

.max-width-400 .row {
  width: 400px;
}

.width-100 {
  width: 100px;
  max-width: 100px;
}

.width-200 {
  width: 100px;
}

.restore-button {
  margin-top: 10px;
}

.item-main-header {
  font-weight: 600;
  font-size: 15px;
  color: black;
}

.item-sub-header {
  font-weight: 600;
  font-size: 15px;
  color: var(--primary-color);
}

.item-container span {
  font-weight: 600;
  padding-right: 10px;
}

.item-container p {
  margin-bottom: 4px !important;
}

.item-separator {
  border-bottom: #aaa 1px solid;
  margin-bottom: 10px;
}

#double p {
  width: 50%;
  display: inline;
  float: left;
}

#triple p {
  width: 33.333%;
}

/************************************* Expense **********************************/
.expense-columns-header {
  text-align: center;
  font-weight: normal;
}

.side-bar-expenses {
  float: left;
  margin-left: 30px;
}

.side-bar-expenses > div {
  margin-top: 10px;
}

.side-bar-expenses > div > a {
  color: #777;
}

/************************************* Flex *************************************/

.flex-highlight-box {
  box-shadow: inset 0px 0px 5px rgba(255, 255, 0, 1);
}

.flex-highlight-text {
  text-shadow: 0px 0px 20px rgb(143, 143, 25);
}

/* .flex-label-warning {
  color: #3FA6FB;
} */

.expense-form-group > div {
  padding-left: 0px;
}

.expense-form-group > div > div {
  padding-left: 0px;
}

.flex-css-container > div {
  background-color: #f1f1f1;
  margin: 10px;
  padding: 20px;
  font-size: 30px;
}

/********************************************************************************/
.width-20 {
  width: 20%;
}

.width-30 {
  width: 30%;
}

.opacity-5 {
  opacity: 0.5;
}

input.highlight-yellow,
select.highlight-yellow {
  box-shadow: 0px 0px 10px 10px rgba(255, 255, 0, 0.5) !important;
  max-height: 34px;
}

label.highlight-yellow,
h4.highlight-yellow {
  text-shadow: 0px 0px 15px rgba(255, 255, 0, 1),
    0px 0px 15px rgba(255, 255, 0, 1) !important;
}

input.highlight-blue,
select.highlight-blue,
textarea.highlight-blue,
input.highlight-blue:hover,
select.highlight-blue:hover,
textarea.highlight-blue:hover,
input.highlight-blue:focus,
select.highlight-blue:focus,
textarea.highlight-blue:focus,
input.highlight-blue:active,
select.highlight-blue:active,
textarea.highlight-blue:active {
  max-height: 34px;
  border-color: #3fa6fb !important;
  border-width: 3px;
}

h4.highlight-blue,
h2.highlight-blue {
  color: #3fa6fb;
  font-weight: 400 !important;
}

.text-highlight-yellow {
  text-shadow: 0px 0px 15px rgba(255, 255, 0, 1),
    0px 0px 15px rgba(255, 255, 0, 1) !important;
}

/*********************************Suitability***************************************/
.orange-button {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 700;
}

.orange-button:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.future-plans-year select,
.future-plans-year a {
  display: inline;
}

.future-plans-year select {
  width: 80%;
}

.future-plans-year a {
  width: 10%;
  padding: 5px;
}

.single-row-height textarea.form-control {
  height: 34px;
}

@media print {
  body * {
    visibility: hidden;
  }

  #section-to-print,
  #section-to-print * {
    visibility: visible;
  }

  #section-to-print {
    position: absolute;
    left: 0;
    top: 0;
  }
}

/**** How to use video carousel   ****/
* {
  box-sizing: border-box;
}

a:link,
a:hover,
a:active,
a:visited {
  transition: color 150ms;
  color: var(--grey-color-2);
  text-decoration: none;
}
a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.contain {
  width: 100%;
}

.row2 {
  overflow-x: scroll;
  width: 100%;
}

.row__inner {
  transition: 450ms -webkit-transform;
  transition: 450ms transform;
  transition: 450ms transform, 450ms -webkit-transform;
  font-size: 0;
  white-space: nowrap;
  margin: 70.3125px;
  padding-bottom: 10px;
}

.tile {
  position: relative;
  display: inline-block;
  width: 250px;
  height: 140.625px;
  margin-right: 10px;
  font-size: 20px;
  cursor: pointer;
  transition: 450ms all;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.tile__img {
  width: 250px;
  height: 140.625px;
  -o-object-fit: cover;
  object-fit: cover;
}

.tile__details {
  position: relative;
  margin-top: 3em;
  font-size: 10px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: 450ms opacity;
}

.tile__details:after,
.tile__details:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: #000;
}

/* .tile__details:after {
  margin-top: -25px;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  border: 3px solid #ecf0f1;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.tile__details:before {
  content: '▶';
  left: 0;
  width: 100%;
  font-size: 30px;
  margin-left: 7px;
  margin-top: -18px;
  text-align: center;
  z-index: 2;
} */
.tile:hover .tile__details {
  opacity: 1;
}

.tile__title {
  position: absolute;
  bottom: 0;
  padding: 10px;
}

.row__inner:hover {
  -webkit-transform: translate3d(-62.5px, 0, 0);
  transform: translate3d(-62.5px, 0, 0);
}

.row__inner:hover .tile {
  opacity: 0.3;
}

.row__inner:hover .tile:hover {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 1;
}

.tile:hover ~ .tile {
  -webkit-transform: translate3d(125px, 0, 0);
  transform: translate3d(125px, 0, 0);
}

/**********************************************************/

/*****************************************Expense Summary****************************************/
.flex-list-item {
  margin-bottom: 10px;
}

.flex-item {
  font-weight: 600;
  color: black;
}

.flex-item > span:nth-child(2) {
  float: right;
  margin-right: 10px;
}

.expense-sub-item > span:nth-child(1) {
  float: right;
  margin-right: 10px;
  font-weight: 600;
}

.expense-sub-list {
  margin-bottom: 0px;
}

/**********************************************************/

/***************************Datepicker UI Custom CSS *******************************/
.ui-datepicker td {
  padding: 1px !important;
}

.ui-datepicker-next span {
  background-image: url("../../assets/img/right-arrow.svg") !important;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover;
}

.ui-datepicker-prev span {
  background-image: url("../../assets/img/left-arrow.svg") !important;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover;
}

/***************************Datepicker UI Custom CSS *******************************/
/* */

#barChart .axis path,
#barChart .axis line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
}

#barChart .bar {
  fill: orange;
}

#barChart .bar:hover {
  fill: orangered;
}

#barChart .x.axis path {
  display: none;
}

.d3-tip {
  line-height: 1;
  font-weight: bold;
  padding: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 2px;
}

/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
  box-sizing: border-box;
  display: inline;
  font-size: 10px;
  width: 100%;
  line-height: 1;
  color: rgba(0, 0, 0, 0.8);
  content: "\25BC";
  position: absolute;
  text-align: center;
}

/* Style northward tooltips differently */
.d3-tip.n:after {
  margin: -1px 0 0 0;
  top: 100%;
  left: 0;
}

.tooltip-container {
  position: absolute;
  pointer-events: none;
  padding: 2px 4px 2px 6px;
  background-color: #eee;
  border: solid 1px #aaa;
  border-radius: 8px;
}

.tooltip-title {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1em;
}

.tooltip-content {
  font-size: 11px;
}

/* #BarryBarChart {
  overflow: visible;
} */
rect {
  stroke: white;
  stroke-width: 3px;
}

.xaxis text {
  transform: rotate(45deg);
  text-anchor: start;
}

.axis path,
.axis line {
  fill: none;
  stroke: black;
  shape-rendering: crispEdge;
}

.axis text {
  font-family: sans-serif;
  font-size: 10px;
}

.tick {
  stroke-dasharray: 1, 2;
}

input[type="date"] {
  line-height: initial !important;
}

.settlements {
  padding: 20px;
  background-color: #fff;
  border-bottom: 2px solid var(--primary-color);
  font-size: 12pt;
  margin-bottom: 10px;
  font-weight: 700;
}

.sidebar-span-icon {
  float: right;
}

/***************************************Onboarding Graphics*************************************/
@media (min-width: 768px) {
  .side-onboard-left {
    position: fixed;
    left: 40px;
    bottom: 0px;
    width: 20%;
  }

  .side-onboard-right {
    position: fixed;
    bottom: 40px;
    right: 0px;
    width: 20%;
  }

  .side-right img {
    width: 320px;
    opacity: 0.3;
  }

  .side-right img:hover {
    opacity: 0.8;
  }

  .side-left img {
    width: 500px;
    opacity: 0.3;
  }

  .side-left img:hover {
    opacity: 0.8;
  }
}

@media (max-width: 1577px) {
  .side-right img {
    display: none;
  }

  .side-left img {
    display: none;
  }
}

.lock:before {
  content: " ";
  position: absolute;
  background: #797979;
  width: 100%;
  z-index: 2;
  height: 100%;
  opacity: 00.8;
}

.settled-label {
  position: absolute;
  z-index: 20;
  color: white;
}

.settled-label > span {
  font-size: 16pt;
  letter-spacing: 1.5px;
}

.offsets-container {
  display: block;
}

.history-action-modal .modal-dialog {
  width: 900px;
}

/* MBWorkbench */
.top-row {
  margin-top: 51px;
  height: 50px;
  margin-left: 6px;
  width: 70px;
  cursor: pointer;
}

.top-row:hover {
  background-color: #f4f4f4;
}

.back-button {
  width: 100%;
  height: 100%;
  border-right: 1px solid #e7e7e7;
  text-align: center;
  padding-top: 5px;
}

.back-button p {
  text-decoration: none;
}

nav.navbar-mbworkbench {
  z-index: 0 !important;
  background: #e7e7e7;
  /* box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); */
  border-radius: 0;
  margin-left: 0;
  margin-bottom: 0;
}

nav.navbar-mbworkbench > .navbar-right {
  margin-right: 0px !important;
}

nav.navbar-mbworkbench a {
  color: var(--primary-color);
}

nav.navbar-mbworkbench ul.navbar-nav a {
  color: #535353;
  border-style: solid;
  border-width: 0 0 3px 0;
  border-color: #e7e7e7;
}

nav.navbar-mbworkbench ul.navbar-nav a:hover,
nav.navbar-mbworkbench ul.navbar-nav a:visited,
nav.navbar-mbworkbench ul.navbar-nav a:focus,
nav.navbar-mbworkbench ul.navbar-nav a:active {
  background: #e7e7e7;
}

nav.navbar-mbworkbench ul.navbar-nav .active a {
  border-color: var(--primary-color-scale-75);
  color: var(--primary-color-scale-75);
}

nav.navbar-mbworkbench ul.navbar-nav a:hover {
  border-color: var(--primary-color-scale-75);
  color: var(--primary-color-scale-75);
}

.mbwb-coming-soon {
  padding: 20px;
}

.main-content {
  padding: 10px 15px;
}

.main-content #wrapper {
  padding-left: 0px !important;
  margin-top: -30px;
}

.main-content #page-wrapper {
  padding: 0px !important;
}

.main-content .container-fluid {
  padding-top: 0px !important;
}

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

.padding-bottom-5 {
  padding-bottom: 5px;
}

.padding-top-0-bottom-5 {
  padding-top: 0px;
  padding-bottom: 20px;
}

.margin-top-5p {
  margin-top: 5%;
}

.flex-summary-item-title {
  max-width: 80%;
  display: inline-block;
  line-height: 1.4;
}

.flex-summary-item-amount {
  line-height: 1.4;
}

.black-divider {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid black;
}

.red-link {
  color: red !important;
  text-decoration: underline !important;
}

.navbar-fixed-top {
  right: calc(100% - 100vw);
}

.login-red-link {
  color: #a94442 !important;
  text-decoration: underline !important;
}

input[type="radio"] {
  -webkit-appearance: none;
  width: 18.42px;
  height: 18.42px;
  border: 2px solid var(--grey-color-3);
  border-radius: 100%;
  outline: none;
  margin: 0 !important;
}
input[type="radio"]:hover {
  cursor: pointer;
}

input[type="radio"]:before {
  content: "";
  display: block;
  width: 60%;
  height: 60%;
  margin: 20% 20%;
  border-radius: 100%;
}

input[type="radio"]:checked:before {
  background: var(--primary-color);
}

input[type="radio"]:checked {
  border: 2px solid var(--primary-color);
}

input[type="radio"]:focus {
  outline: none;
}

input[type="radio"]:disabled {
  border: 2px solid #dddddd;
}

.secondary-input {
  border: 2px solid var(--secondary-color) !important;
}

.secondary-input:checked:before {
  background: var(--secondary-color) !important;
}

.secondary-input:checked:before {
  border: 2px solid var(--secondary-color) !important;
}

input[type="checkbox"] {
  -webkit-appearance: none;
  width: 18.42px;
  height: 18.42px;
  border: 2px solid var(--grey-color-3);
  outline: none;
  margin: 0 10px 0 0 !important;
}
input[type="checkbox"]:hover {
  cursor: pointer;
}

input[type="checkbox"]:before {
  content: "";
  display: block;
  width: 60%;
  height: 60%;
  margin: 20% auto;
}

input[type="checkbox"]:checked:before {
  background: var(--primary-color);
}

input[type="checkbox"]:checked {
  border: 2px solid var(--primary-color);
}

input[type="checkbox"]:focus {
  outline: none;
}

input[type="checkbox"]:disabled {
  border: 2px solid #dddddd;
}

.dropdown-menu {
  color: var(--grey-color-2);
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: var(--grey-color-2);
  text-decoration: none;
  outline: 0;
  background-color: var(--primary-color-scale-25);
}

#page-wrapper-advisor {
  margin-left: calc(-1 * var(--sidebar-width));
}

label {
  font-weight: normal !important;
  color: var(--grey-color-3) !important;
}

.form-label {
  font-weight: normal !important;
  color: var(--grey-color-3) !important;
}

.form-control {
  color: var(--grey-color-3);
}

.modal-title {
  color: var(--grey-color-2);
}

.icon {
  color: var(--primary-color);
  font-size: 20pt;
}

.icon-remove {
  color: var(--error-color);
  background-color: transparent;
  font-size: 20pt;
}

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

/* ===== RADIO & TEXTBOX ===== */
/* input[type="radio"],
input[type="checkbox"] {
  display: none;
}

.radio label:before {
  border-radius: 8px;
}
.checkbox label:before {
  border-radius: 3px;
}

input[type="radio"]:checked {
  content: "\2022";
  color: #f3f3f3;
  font-size: 30px;
  text-align: center;
  line-height: 18px;
}
input[type="checkbox"]:checked {
  content: "\2713";
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 15px;
  color: #f3f3f3;
  text-align: center;
  line-height: 15px;
} */

.tooltip-element {
  opacity: 1;
}

.custom-tooltip {
  /* hide and position tooltip */
  top: -24px;
  left: 36px;
  border-radius: 2px;
  opacity: 1;
  position: absolute;
  z-index: 100;
  background-color: white;
  color: black;
  padding: 24px;
  width: 300px;
  text-align: left;
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.10);
  -webkit-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.10);
  -moz-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.10);
}

.custom-tooltip-header {
  color: var(--primary-color);
  font-weight: bold
}

.custom-tooltip-icon {
  color: var(--primary-color);
  size: 16px;
}