@charset "UTF-8";
.fg_color_blue_2 {
  color: #0078ff;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

* {
  box-sizing: border-box;
}

p {
  font-weight: 400;
}

body {
  height: 100%;
  width: 100%;
  color: var(--primary_text, #000000);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}
body .homepage {
  display: flex;
  flex-direction: column;
  height: 100%;
}
body .page {
  flex-grow: 1;
}

html {
  height: 100%;
  width: 100%;
  color: var(--primary_text, #000000);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.5;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

/*****************************************
 * Component -- Font style, Color
 *****************************************/
.color-code {
  color: #cb4b16;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: 700;
}

/*****************************************
 * Component -- Headings
 *****************************************/
h1 {
  margin-top: 21px;
  margin-bottom: 10.5px;
  font-size: 30px;
  line-height: 1.134;
  font-weight: 500;
  color: var(--text_headings, #888888);
}

h2, .auth-page > section .inner .reset-password h1 {
  margin-top: 21px;
  margin-bottom: 10.5px;
  font-size: 24px;
  line-height: 1.185;
  font-weight: 400;
  color: var(--text_headings, #888888) !important;
}

h3 {
  margin-top: 21px;
  margin-bottom: 10.5px;
  font-size: 24px;
  line-height: 1.34;
  font-weight: 400;
  color: var(--text_headings, #888888);
}
h3.color-h3 {
  color: #000;
}

h4 {
  margin-top: 10.5px;
  margin-bottom: 10.5px;
  font-size: 18px;
  line-height: 1.375;
  font-weight: 400;
  color: var(--text_headings, #888888);
}

h5 {
  margin-top: 10.5px;
  margin-bottom: 10.5px;
  font-size: 18px;
  line-height: 1.375;
  font-weight: 400;
  color: var(--text_headings, #888888);
}

h6 {
  margin-top: 10.5px;
  margin-bottom: 10.5px;
  font-size: 12px;
  line-height: 1.66;
  font-weight: 500;
  color: var(--text_headings, #888888);
}

p {
  margin: 0 0 15px;
}

.container {
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px;
}

/*****************************************
 * Component -- Anchor Tags (Links)
 *****************************************/
a {
  color: var(--text_links, blue);
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  color: var(--text_links, blue);
  text-decoration: underline;
}

/*****************************************
 * Component -- Button
 *****************************************/
.btn, .auth-page > section .inner .reset-password .k-button.medium.primary {
  line-height: 1.15;
  padding: 0.3rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 3px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  opacity: 1;
  min-width: 120px;
}
.btn:active, .auth-page > section .inner .reset-password .k-button.medium.primary:active {
  color: white;
  border-color: var(--button_secondary_border, lightblue);
}
.btn:focus, .auth-page > section .inner .reset-password .k-button.medium.primary:focus {
  color: white;
  border-color: var(--button_secondary_border, lightblue);
}
.btn:hover, .auth-page > section .inner .reset-password .k-button.medium.primary:hover {
  background-color: #000;
  color: white;
  text-decoration: none;
}
.btn:disabled, .auth-page > section .inner .reset-password .k-button.medium.primary:disabled, .btn:disabled:hover {
  background-color: rgba(27, 27, 31, 0.12);
  color: rgba(27, 27, 31, 0.38);
}

.button-main, .auth-page > section .inner .reset-password .k-button.medium.primary {
  padding: 0 12px;
  min-width: 120px;
  line-height: 40px;
  height: 40px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  display: inline-block;
}

.btn-primary, .auth-page > section .inner .reset-password .k-button.medium.primary {
  display: inline-flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  background-color: var(--button_primary_fill, #0053DA);
  border-radius: 4px;
  border: 1px solid transparent;
  color: var(--button_primary_text, white);
}
.btn-primary:disabled:hover, .auth-page > section .inner .reset-password .k-button.medium.primary:disabled:hover {
  color: #1B1B1F;
}
.btn-primary:hover:not(:disabled), .auth-page > section .inner .reset-password .k-button.medium.primary:hover:not(:disabled), .btn-primary:active:not(:disabled), .auth-page > section .inner .reset-password .k-button.medium.primary:active:not(:disabled), .btn-primary:focus:not(:disabled), .auth-page > section .inner .reset-password .k-button.medium.primary:focus:not(:disabled) {
  background-color: var(--button_primary_fill_hover, lightblue);
  border: 1px solid transparent;
  color: var(--button_primary_text, white);
}

.btn-secondary {
  display: inline-flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #0053DA;
  color: #0053DA;
}
.btn-secondary:hover {
  background-color: rgba(0, 89, 200, 0.1215686275);
  color: #0053DA;
  border: 1px solid #0053DA;
}

/*****************************************
 * Component -- Form Error
 *****************************************/
.form-error-message {
  background: #e20c0c;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  color: white;
  margin-top: 0;
  margin-bottom: 15px;
}

.field-error {
  color: #e20c0c;
}

input.has-error {
  border-color: #e20c0c;
}

/*****************************************
 * Component -- Site Header
 *****************************************/
.site-header {
  top: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  position: fixed;
  background: var(--header, #333);
  color: var(--text_primary, white);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.4);
  height: 100px;
  z-index: 90;
}
.site-header .container {
  max-width: none;
  padding: 0 1.8rem;
}
.site-header .brand .logo {
  width: 100px;
}
.site-header nav {
  display: none;
  position: relative;
}
.site-header nav > .top-menu {
  margin-bottom: unset;
}
.site-header nav > .top-menu li a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  line-height: 1.14;
  cursor: pointer;
}
.site-header .menu-toggle-checkbox {
  display: none;
}
.site-header .row {
  display: flex;
  align-items: baseline;
}
.site-header .row .header-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 40px;
  align-items: baseline;
}

/*****************************************
 * Component -- Site Footer
 *****************************************/
.site-footer {
  position: relative;
  z-index: 20;
  bottom: 0;
  background: #333;
  color: #e6e6e6;
  padding: 2.5rem 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
}
.site-footer .upper-section {
  padding-bottom: 30px;
  position: relative;
  border-bottom: 1px solid #666;
  display: flex;
  align-items: center;
}
.site-footer .upper-section .logo {
  width: 100px;
}
.site-footer .upper-section .social-links {
  padding: 0;
  border-bottom: none;
  position: absolute;
  bottom: 15px;
  right: 0;
}
.site-footer .upper-section .social-links li a {
  text-decoration: none;
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.site-footer .upper-section .footer-left {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
.site-footer .upper-section .footer-left .title, .site-footer .upper-section .footer-left .auth-page > section .inner .reset-password h1, .auth-page > section .inner .reset-password .site-footer .upper-section .footer-left h1 {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  font-size: 22px;
}
.site-footer .container .columns {
  margin-left: 0;
}
.site-footer .disclaimer-section {
  padding: 30px 0;
  margin-bottom: 0;
}
.site-footer .disclaimer-section a {
  color: #fff;
  font-weight: 500;
  font-size: 12px;
}
.site-footer .columns.bottom-section {
  margin-top: 0;
}
.site-footer .bottom-section a {
  font-size: 12px;
  color: #fff;
  line-height: 15px;
  font-weight: 700;
  margin-right: 30px;
  display: inline-block;
  margin-bottom: 16px;
}
.site-footer .bottom-section .list-inline {
  padding-bottom: 0;
  border-bottom: none;
  margin-left: 0;
}
.site-footer h1 {
  color: inherit;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: 0;
}
.site-footer .nav-link {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text_secondary, rgba(255, 255, 255, 0.45));
  text-transform: uppercase;
  text-decoration: none;
  margin-right: 1rem;
}
.site-footer .nav-button {
  background: var(--primary_button, rgba(0, 0, 0, 0.2));
  color: var(--primary_button_text, inherit);
  margin-right: 1rem;
}
.site-footer .sub-text {
  margin-bottom: 10px;
}

#heading-box {
  display: flex;
  align-items: center;
}
#heading-box > a {
  color: #000000;
  text-decoration: none;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 1.14;
  cursor: pointer;
}

.list-inline > li {
  display: inline-block;
}

/*****************************************
 * Component - Catalog Filter
 *****************************************/
.service-catalog.fixed-filter {
  padding-top: 220px !important;
}
.service-catalog.fixed-filter .catalog-filter-component {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1;
  top: 90px;
}

.catalog-filter-component {
  padding: 2em 0 1.3em;
  background: var(--hero, #000);
  margin-bottom: 3em;
  border-bottom: 1px solid #eee;
}
.catalog-filter-component h1 {
  color: var(--text_hero, white);
  font-size: 32px;
}

.catalog-filter {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
  font-size: 24px;
}

/*****************************************
 * Component - Catalog Sidebar Tags
 *****************************************/
.catalog-sidebar h1 {
  font-size: 2.4rem;
}

a.tag-link {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
}
a.tag-link .tag-link--name {
  text-transform: capitalize;
}
a.tag-link .tag-link--count {
  float: right;
  color: #666;
}

a.tag-link.is-active {
  color: #ffffff;
  background: var(--accent);
}
a.tag-link.is-active .tag-link--count {
  color: #ffffff;
}

/*****************************************
 * Component - Catalog List
 *****************************************/
.catalog-list {
  text-align: left;
}
.catalog-list .catalog-item {
  width: 100%;
  min-height: 156px;
  margin: 1rem 0;
}
.catalog-list .catalog-item .catalog-desc {
  display: block;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/*****************************************
 * Component - Catalog Item
 *****************************************/
.catalog-item {
  display: flex;
  padding: 3rem;
  align-items: start;
  background: rgb(255, 255, 255);
  box-shadow: 0 1px 2px var(--border, grey);
  border-radius: 3px;
  text-decoration: none;
}
.catalog-item:hover {
  text-decoration: none;
}
.catalog-item .catalog-logo {
  display: inline-block;
  width: 64px;
  height: 64px;
  padding: 1rem 0;
  margin: 0.8rem 2rem 0 0;
  text-align: center;
  font-size: 24px;
  color: white;
  background-color: var(--accent, #888);
  border-radius: 3px;
}
.catalog-item .catalog-details {
  width: 70%;
  text-align: left;
}
.catalog-item .catalog-details h1.catalog-title {
  font-size: 2.4rem;
}
.catalog-item .catalog-details .catalog-title {
  color: var(--text_links, blue);
  margin-bottom: 1rem;
}
.catalog-item .catalog-details .catalog-desc {
  margin: 0;
  color: var(--text_primary, #888888);
}
.catalog-item .catalog-version {
  color: var(--text_secondary, #8C8C8C);
}

.team-members {
  padding: 2em 0;
  text-align: left;
}
.team-members .row {
  display: flex;
  justify-content: center;
}

/*****************************************
 * Component - Team Members
 *****************************************/
.team-member .member-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--accent);
  margin-bottom: 1em;
}
.team-member .member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: inherit;
}
.team-member .member-name {
  color: var(--accent);
  margin-bottom: 0;
}
.team-member .member-title {
  color: var(--accent);
}

/*****************************************
 * Page -- Homepage
 *****************************************/
/*
 * Homepage Component -- Hero
 */
.homepage-hero {
  margin: 0 auto;
  padding: 290px 0;
  text-align: center;
  background: var(--hero, #000000);
  background-size: cover;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07)), url("https://developer.netwealth.com.au/public-api/assets/images/background.jpg");
  background-position: center;
  color: var(--text_hero, #FFFFFF);
}
.homepage-hero h1 {
  margin-bottom: 0;
  color: var(--text_hero, #FFFFFF);
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
}
.homepage-hero p {
  color: var(--text_hero, #888888);
}
.homepage-hero .hero-footer {
  padding: 50px;
  height: 100%;
  display: inline-block;
  background-color: white;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.6);
  text-align: left;
}
.homepage-hero .hero-footer .btn, .homepage-hero .hero-footer .auth-page > section .inner .reset-password .k-button.medium.primary, .auth-page > section .inner .reset-password .homepage-hero .hero-footer .k-button.medium.primary {
  font-size: 16px;
  padding: 0.6em 2em;
}
.homepage-hero .hero-center-items .columns {
  min-width: 250px;
  margin: 10px;
}

/*
 * Homepage Component -- Catalog
 */
.homepage-catalog {
  width: 100%;
  padding: 0 2rem;
  text-align: center;
  margin-top: -30px;
}
.homepage-catalog .catalog-footer {
  padding: 2rem 0;
}

/*
 * Homepage Component -- Client List
 */
.homepage-clients {
  padding: 100px 0;
  text-align: center;
  list-style-type: none;
}
.homepage-clients .client {
  padding: 2.5rem 5rem;
  margin: 1rem;
  background: #dae3f2;
  display: inline-block;
}
.homepage-clients .client a {
  font-weight: 500;
  color: #395380;
  text-decoration: none;
}

/*****************************************
 * Page -- Service Catalog
 *****************************************/
.service-catalog {
  padding-top: 0 !important;
}
.service-catalog .catalog-item {
  min-height: 156px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid #ddd;
}

/*****************************************
 * Page -- About
 *****************************************/
.about .about-hero {
  padding: 5em 0;
  background: var(--hero);
}
.about .about-hero h6 {
  margin-bottom: 0.5em;
  text-transform: uppercase;
  color: var(--text_hero);
}
.about .about-hero h2, .about .about-hero .auth-page > section .inner .reset-password h1, .auth-page > section .inner .reset-password .about .about-hero h1 {
  color: var(--text_hero);
}
.about .about-hero li {
  color: var(--text_hero);
}
.about .about-team {
  padding: 3em 0;
  text-align: center;
}
.about .member-title {
  color: var(--text_secondary, #8C8C8C);
}

/*****************************************
 * Page -- 404
 *****************************************/
.error-404 {
  background-color: #f8f8f8;
  text-align: center;
}
.error-404 .title, .error-404 .auth-page > section .inner .reset-password h1, .auth-page > section .inner .reset-password .error-404 h1 {
  color: var(--primary);
  font-weight: 400;
  font-size: 1.75em;
  margin-top: 0;
}
.error-404 p {
  color: var(--tertiary);
}

.error-404.align-container {
  height: 100vh;
}

/*****************************************
 * Page -- Auth (Basic Auth / Key Auth / OIDC)
 *****************************************/
.auth-page {
  height: 100%;
  background-color: #E5E5E5;
}
.auth-page label {
  font-weight: 700;
}
.auth-page .form[data-v-67e8859a], .auth-page .form[data-v-bcd7a83e] {
  justify-content: end;
}
.auth-page > section {
  flex: 1;
  display: flex;
  justify-content: center;
}
.auth-page > section .inner {
  display: flex;
  flex-direction: column;
  width: 503px;
  padding: 0 1.5rem;
  background-color: #fff;
  border: 1px #CCCCCC solid;
  border-radius: 8px;
  margin: 50px 0;
}
.auth-page > section .inner #login-button, .auth-page > section .inner .reset-password .k-button.medium.primary {
  float: right;
}
.auth-page > section .inner form,
.auth-page > section .inner .form {
  margin-bottom: 0;
}
.auth-page > section .inner form .password label,
.auth-page > section .inner form .password .label,
.auth-page > section .inner .form .password label,
.auth-page > section .inner .form .password .label {
  display: inline-block;
}
.auth-page > section .inner .title, .auth-page > section .inner .reset-password h1 {
  margin-top: 20px;
  margin-bottom: 20px;
  white-space: nowrap;
}
.auth-page > section .inner .icon {
  padding-left: 5px;
  vertical-align: middle;
  display: inline-block;
  line-height: 1.5;
}
.auth-page > section .inner .icon .tooltiptext {
  visibility: hidden;
  display: none;
  background-color: #fff;
  color: #000;
  padding: 5px 10px;
  margin-top: 25px;
  margin-left: -20px;
  width: 270px;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-align: left;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.auth-page > section .inner .icon .tooltiptext ul {
  margin-bottom: 0;
  list-style: none;
}
.auth-page > section .inner .icon .tooltiptext ul li::before {
  color: #000;
  content: "•";
  font-size: 14px;
  padding-right: 7px;
}
.auth-page > section .inner .icon .tooltiptext ul li {
  padding-left: 1em;
  text-indent: -0.7em;
  margin-bottom: 5px;
}
.auth-page > section .inner .icon:hover {
  cursor: pointer;
}
.auth-page > section .inner .icon:hover .tooltiptext {
  visibility: visible;
  display: inline-block;
  position: absolute;
  z-index: 1;
}
.auth-page > section .inner .reset-password {
  margin: 0;
  text-align: left;
  max-width: 100%;
  padding-bottom: 15px;
}
.auth-page > section .inner .reset-password p {
  color: var(--primary_text, #000000);
  font-size: 14px;
}
.auth-page > section .inner .reset-password .form {
  display: inline-block;
  width: 100%;
  margin-top: 0;
}
.auth-page > section .inner .reset-password .form input {
  width: 100%;
  height: 40px;
  padding: 12px;
  max-width: 604px;
  color: black;
  border: 1px solid #C5C6D0;
  border-radius: 4px;
}
.auth-page > section .inner .reset-password .form input::-moz-placeholder {
  color: #45464F;
}
.auth-page > section .inner .reset-password .form input::placeholder {
  color: #45464F;
}
.auth-page > section .inner .reset-password .form input:not(:focus):not(:-moz-placeholder-shown):invalid {
  border-color: #BA1A1A;
}
.auth-page > section .inner .reset-password .form input:not(:focus):not(:placeholder-shown):invalid {
  border-color: #BA1A1A;
}
.auth-page > section .inner .reset-password .form input:focus {
  border: 1px solid #0053DA;
}
.auth-page > section .inner .reset-password .form .label {
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
}
.auth-page > section .inner .reset-password .k-button.medium.primary {
  font-family: inherit;
  margin-bottom: 1rem;
  width: auto;
}
.auth-page > section .inner .reset-password a {
  display: block;
}
.auth-page > section .inner .container {
  width: auto;
  padding: 0;
}
.auth-page > section input {
  width: 100%;
  height: 40px;
  padding: 12px;
  max-width: 604px;
  border: 1px solid #C5C6D0;
  border-radius: 4px;
}
.auth-page > section input::-moz-placeholder {
  color: #45464F;
}
.auth-page > section input::placeholder {
  color: #45464F;
}
.auth-page > section input:not(:focus):not(:-moz-placeholder-shown):invalid {
  border-color: #BA1A1A;
}
.auth-page > section input:not(:focus):not(:placeholder-shown):invalid {
  border-color: #BA1A1A;
}
.auth-page > section input:focus {
  border: 1px solid #0053DA;
}
.auth-page > div {
  flex: 1;
}
.auth-page .right-pane {
  display: none;
  flex: 1.7;
  background: black;
  background: var(--hero, black);
  background-repeat: none;
  background-position: center;
  background-size: cover;
  background-image: url("https://developer.netwealth.com.au/public-api/assets/images/background.jpg");
  color: white;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.auth-page .right-pane .inner {
  text-align: center;
  min-width: 300px;
  padding: 25px;
  background-color: white;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.6);
  width: 40%;
}
.auth-page .right-pane .inner h1 {
  color: var(--text_hero, white);
  font-size: 3rem;
}
.auth-page .right-pane .inner h2, .auth-page > section .right-pane .inner .reset-password h1 {
  color: var(--text_hero, white);
}
.auth-page .right-pane .inner h3 {
  color: var(--text_hero, white);
}
.auth-page .right-pane .inner h4 {
  color: var(--text_hero, white);
}
.auth-page .right-pane .inner h5 {
  color: var(--text_hero, white);
}
.auth-page .right-pane .inner p {
  color: var(--text_hero, white);
}

.page .auth-page.dashboard {
  padding: 50px 0;
}

.card {
  display: flex;
  flex-direction: column;
  width: 503px;
  padding: 0 1.5rem;
  background-color: #fff;
  border: 1px #CCCCCC solid;
  border-radius: 8px;
  margin: 50px 0;
  text-align: left;
}

.change-password form > .field > div > div {
  display: flex;
  flex-direction: column;
}

.float-right {
  float: right;
}

.field .password label {
  display: inline-block;
}
.field label, .field input {
  font-size: 14px !important;
  font-weight: 400;
  color: #000000;
}
.field .icon {
  padding-left: 5px;
  vertical-align: middle;
  display: inline-block;
  line-height: 1.5;
}
.field .icon .tooltiptext {
  visibility: hidden;
  display: none;
  background-color: #fff;
  color: #666;
  padding: 5px 10px;
  margin-top: 25px;
  margin-left: -20px;
  width: 270px;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  text-align: left;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.field .icon .tooltiptext ul {
  margin-bottom: 0;
  list-style: none;
}
.field .icon .tooltiptext ul li::before {
  color: #0078ff;
  content: "•";
  font-size: 16px;
  padding-right: 7px;
}
.field .icon .tooltiptext ul li {
  padding-left: 1em;
  text-indent: -0.7em;
  margin-bottom: 5px;
}
.field .icon:hover {
  cursor: pointer;
}
.field .icon:hover .tooltiptext {
  visibility: visible;
  display: inline-block;
  position: absolute;
  z-index: 1;
}

@media (max-width: 767px) {
  .auth-page > section .inner {
    min-width: 95%;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .auth-page > section .inner {
    min-width: 738px;
  }
}
.page {
  padding-top: 100px;
  background-color: var(--page, white);
}
.page .dashboard {
  padding: 2em 0;
}

.align-container {
  display: table;
  width: 100%;
  height: 100%;
}

.align-inner {
  display: table-cell;
  vertical-align: middle;
}

.align-inner--top {
  vertical-align: top;
}

.align-inner--bottom {
  vertical-align: bottom;
}

.toggle-content {
  display: none;
}

.toggle-content.is-visible {
  display: inherit;
}

/*****************************************
 * Custom
 *****************************************/
ol {
  counter-reset: list;
}

ol > li {
  list-style: none;
}

ul.toc {
  padding-left: 0 !important;
}
ul.toc ul {
  font-size: 100%;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
}

ol > li > h1,
ol > li > h2,
.auth-page > section .inner .reset-password ol > li > h1,
ol > li > h3,
ol > li > h4,
ol > li > h5,
ol > li > h6 {
  display: inline-block;
  margin-bottom: 0;
}

ol > li:before {
  counter-increment: list;
  margin-right: 10px;
}

ol.first-level > li:before {
  content: counter(list, decimal) ".";
  font-size: 18px;
  line-height: 1.375;
  font-weight: 400;
  color: #000;
}

ol.second-level > li:before {
  content: "(" counter(list, lower-alpha) ")";
}

ol.third-level > li:before {
  content: "(" counter(list, lower-roman) ")";
}

.hero-header .header-container {
  padding: 40px;
  background-color: white;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.6);
  text-align: left;
  margin-left: -40px;
}
.hero-header #small-hero-text {
  margin: 0;
  color: var(--primary_text, #000000);
  margin-top: 20px;
}

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

.hero-start-left-items {
  display: flex;
  justify-content: flex-start;
}

.hero-placeholder {
  background-color: #00358e;
}

.hero-footer p {
  color: var(--primary_text, #000000);
}
.hero-footer #small-hero-text {
  margin: 0;
}

.homepage-features {
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}
.homepage-features .row {
  display: flex;
  justify-content: center;
}
.homepage-features .row .columns {
  padding: 20px 30px;
}
.homepage-features .row .columns .heading {
  font-weight: bold;
}

.info-box {
  display: flex;
  padding: 8px 12px;
  background-color: #FFDBCE;
  border-radius: 4px;
}
.info-box .alert-icon {
  background-image: url(https://developer.netwealth.com.au/public-api/assets/images/warning.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin: 8px;
}
.info-box .content {
  padding: 4px 12px 4px 4px;
}

.icon-group {
  display: flex;
  gap: 35px;
  margin-top: 20px;
}
.icon-group .rotated-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 10px 0;
  width: 50px;
  text-align: center;
}
.icon-group .tile {
  flex-grow: 1;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}
.icon-group .tile .tile-img {
  width: 100px;
  height: 100px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex: none;
}
.icon-group .tile .tile-text {
  text-align: center;
  font-size: 12px;
  margin-top: 15px;
  padding: 0 15px;
}

.features-content {
  padding: 65px 15px 65px 15px;
}
.features-content .sign-up-overview {
  margin: 15px 0;
}
.features-content .sign-up-overview hr {
  margin: 2rem 0;
}
.features-content ul {
  list-style-type: disc !important;
  padding-left: 2rem;
  margin: 0.5rem;
}
.features-content ul li {
  margin-bottom: 0.5rem;
}
.features-content ol li {
  font-size: 14px;
  font-weight: 400;
}
.features-content code {
  overflow-x: scroll;
  font-size: 100%;
}

.cs-keyword {
  color: #859900;
}

.cs-comment {
  color: #93a1a1;
}

.cs-string,
.js-string {
  color: #2aa198;
}

.cs-built_in {
  color: #dc322f;
}

.cs-doctag {
  color: #2aa198;
}

.js-attr {
  color: #b58900;
}

.footer-text {
  font-style: italic;
  color: black;
  font-size: 1.4rem;
}

.servers {
  display: none;
}

.servers-title {
  display: none;
}

.instruction-box {
  height: 250px;
  width: 250px;
  margin-right: 15px;
  background-color: #f0f0f0;
  position: relative;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
}

/*****************************************
 * Hide user registration settings
 *****************************************/
.dashboard .field:has(#organization_role) {
  display: none;
}
.dashboard #organization_role {
  display: none;
}
.dashboard .field:has(#reason_for_sign_up) {
  display: none;
}
.dashboard #reason_for_sign_up {
  display: none;
}

@media (min-width: 550px) {
  h1 {
    font-size: 40px;
    line-height: 1.1;
  }
  h3 {
    font-size: 24px;
    line-height: 1.34;
  }
  h6 {
    font-size: 12px;
    line-height: 1.83;
  }
}
@media (min-width: 1230px) {
  .page .container {
    width: 1200px;
  }
}
@media (min-width: 1000px) and (max-width: 1230px) {
  .page .container {
    width: 970px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .page .container {
    width: 738px;
  }
  .site-header .brand .logo {
    margin-right: 30px;
  }
  .site-footer .upper-section .logo {
    margin-right: 30px;
  }
  .site-footer .upper-section .footer-left .title, .site-footer .upper-section .footer-left .auth-page > section .inner .reset-password h1, .auth-page > section .inner .reset-password .site-footer .upper-section .footer-left h1 {
    white-space: nowrap;
  }
  #heading-box > a {
    white-space: nowrap;
  }
}
@media (max-width: 748px) {
  /* Mobile Toggle */
  .site-header .row .header-left {
    justify-content: space-between;
  }
  .site-header .menu-toggle {
    float: right;
    border-radius: 3px;
    padding: 0.5em 1em;
    cursor: pointer;
  }
  .site-header .menu-toggle label {
    cursor: pointer;
    color: #00358e;
    font-weight: 400;
  }
  .site-header .menu-toggle label:hover {
    color: #0078ff;
  }
  .site-header .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  .site-header .menu-toggle-checkbox:checked + nav {
    display: block;
    width: 92%;
    margin-top: 90px;
    position: absolute;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    padding: unset;
  }
  .site-header .menu-toggle-checkbox:checked + nav li {
    list-style: none;
    margin: 0;
  }
  .site-header .menu-toggle-checkbox:checked + nav li:not(.has-dropdown):last-of-type a {
    border-radius: 0 0 3px 3px;
  }
  .site-header .menu-toggle-checkbox:checked + nav a {
    display: block;
    padding: 0.5em 1em;
    background: white;
    border-radius: 0;
  }
  .site-header .menu-toggle-checkbox:checked + nav a:hover {
    background: var(--accent, #eee);
    text-decoration: none;
    color: var(--button_primary_text, #fff);
  }
  .site-header .menu-toggle-checkbox:checked + nav > li:first-of-type a {
    border-radius: 3px 3px 0 0;
  }
  .site-header .nav-button {
    margin: 0;
  }
  .site-header .dropdown {
    margin: 0;
  }
  .has-dropdown .top-menu {
    margin: 0;
  }
}
/* Desktop Sizings */
@media (min-width: 749px) {
  h1.brand {
    margin-top: 18px;
  }
  /* Dropdown Menus */
  .site-header nav {
    text-align: right;
    display: block;
  }
  .site-header nav li {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    transition-duration: 0.5s;
    /* Keyboard user support */
  }
  .site-header nav li a {
    display: inline-block;
  }
  .site-header nav li a:not(.nav-button) {
    margin-right: 13px;
  }
  .site-header nav li:hover {
    cursor: pointer;
  }
  .site-header nav li:hover > ul {
    visibility: visible;
    opacity: 1;
    display: inline-block;
  }
  .site-header nav li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: all 0.5s ease;
    z-index: 99;
    left: 0;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    padding-top: 1em;
    display: none;
  }
  .site-header nav li ul:hover {
    visibility: visible;
    opacity: 1;
    display: inline-block;
  }
  .site-header nav li ul li {
    clear: both;
    width: 100%;
  }
  .site-header nav li ul li a:not(.nav-button) {
    padding: 0.5em 1em;
    width: 100%;
    background: white;
    color: #000000;
    display: block;
    border-bottom: none;
  }
  .site-header nav li ul li:first-of-type a {
    border-radius: 3px 3px 0 0;
  }
  .site-header nav li ul li:last-of-type a {
    border-radius: 0 0 3px 3px;
  }
  .site-header nav li:focus-within > ul {
    visibility: visible;
    opacity: 1;
    display: block;
  }
  .site-header nav li.has-dropdown ul {
    top: 1.8em;
    left: 0.8em;
    padding: unset;
    margin: unset;
    text-align: left;
  }
  .site-header nav > .has-dropdown:hover > a {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
  }
  .site-header .four.columns {
    display: block;
  }
  .site-header .menu-toggle {
    display: none;
  }
  .site-header .nav-button {
    margin-left: 1rem;
    margin-right: 0;
  }
  .dropdown {
    width: 150px;
  }
  .site-footer nav {
    text-align: right;
  }
  .site-footer .nav-link {
    margin-left: 1rem;
    margin-right: 0;
  }
  .site-footer .nav-button {
    margin-left: 1rem;
    margin-right: 0;
  }
  .catalog-list {
    display: flex;
    flex-wrap: wrap;
  }
  .catalog-list .catalog-item {
    width: calc(50% - 2rem);
    margin: 0 1rem 2rem;
  }
  .homepage-hero {
    padding: 60px 0;
  }
  .homepage-catalog {
    width: 90%;
    margin: -30px auto 0;
  }
  .homepage-features {
    width: 90%;
  }
}
@media (min-width: 1000px) {
  .homepage-catalog {
    width: 70%;
  }
  .homepage-features {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .error-404 .title, .error-404 .auth-page > section .inner .reset-password h1, .auth-page > section .inner .reset-password .error-404 h1 {
    font-size: 2.5em;
  }
  .auth-page .right-pane {
    display: flex;
  }
  .align-right {
    text-align: right;
  }
}
@media (min-width: 550px) {
  .auth-page .left-pane .inner .title, .auth-page > section .left-pane .inner .reset-password h1 {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .homepage-hero.short {
    height: 350px;
  }
  .homepage-hero {
    height: 650px;
  }
}
.login-menu-item {
  border: 1px solid #000000;
  border-radius: 4px;
  padding: 12px 16px 8px;
}

.nw-icon-user-icon > a::before {
  content: "B";
  margin-right: 8px;
  font-family: "netwealth-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.button, button, input[type=button], input[type=reset], input[type=submit] {
  text-transform: none;
}/*# sourceMappingURL=site.css.map */