﻿:root {
  --primary-background-color: #fff;
  --secondary-background-color: #fff;
  --menu-border-color: #0061f2;
  --primary-text-color: #86c33a;
  --glass-border-color: rgb(123 201 206 / 31%);
  --secondary-text-color: #000000;
  --button-color: #0061f2;
  --button-text-color: #fff;
  --disabled-button-color: #808080;
  --layout-text-size: 14px;
  --table-alternate-row-background-color: #eee;
  /* WIP Replace the logo */
  --logo-url: url(/Resources/client/images/logo.png);
  --font: 'Open Sans', sans-serif !important;
  --bs-primary: #86c33a;
  --bs-table-striped-bg: #86c33a;
  --bs-nav-link-color: #86c33a;
  --bs-nav-link-hover-color: #70a92a;
  --bs-link-color: #86c33a;
  --bs-link-hover-color: #70a92a;
  --bs-emphasis-color-rgb: 134, 195, 5;
  --bs-body-color-rgb: 134, 195, 5;
  --bs-card-height: 400px;
  --bs-btn-disabled-border-color: #808080;
  --bs-btn-border-color: #86c33a;
  --bs-btn-color: #86c33a;
  --faded-primary: rgba(134, 195, 58, 0.65);
  --primary-button-color: #86c33a;
  --primary-button-text-color: #fff;
}

.skip {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

  .skip:focus {
    position: static;
    width: auto;
    height: auto;
  }

body {
  color: var(--secondary-text-color);
  background-color: var(--primary-background-color);
  font-family: var(--font);
}

.container::before {
  display: none;
}

.container::after {
  display: none;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid red!important;
}



a:hover {
  color: var(--bs-primary) !important;
}

a {
  text-decoration: none;
}

.w-600 {
  width: 600px;
  max-width: 100%;
}

.cursor-pointer {
  cursor: pointer;
}

.font-bold {
  font-weight: 700;
}

/* SCROLL */
body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: var(--bs-btn-disabled-bg);
}

body::-webkit-scrollbar-thumb {
  background: var(--bs-primary);
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--bs-link-hover-color);
}

/* /top header */
/* navigation */
.navigation {
  box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.09);
  position: relative;
  z-index: 1;
}

.btn {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  padding: 15.5px 28px;
  border-radius: 35px;
  font-weight: 700;
  border: 1px solid;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in;
  white-space: nowrap;
}

.btn-primary, .btn:focus-visible {
  background: var(--primary-button-color);
  color: var(--primary-button-text-color);
  border-color: var(--primary-button-color);
  --bs-btn-disabled-bg: rgb(106.9881422925, 155.6916996047, 46.3083003953);
  --bs-btn-disabled-border-color: rgb(106.9881422925, 155.6916996047, 46.3083003953);
}

a.btn-primary, a.btn-primary:hover {
  color: var(--primary-button-text-color)!important;
}

.btn-primary:hover {
  background: rgb(106.9881422925, 155.6916996047, 46.3083003953);
  border-color: rgb(106.9881422925, 155.6916996047, 46.3083003953);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(106.9881422925, 155.6916996047, 46.3083003953);
  border-color: rgb(106.9881422925, 155.6916996047, 46.3083003953);
}

.btn-secondary {
  background: transparent;
  color: #172231;
  padding-left: 0;
  border: 0;
}

.btn-secondary:hover {
  background: transparent;
  color: var(--bs-primary);
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
  color: var(--bs-primary);
  background-color: transparent;
  border: 0;
}

.btn-secondary:active {
  background: transparent !important;
  color: var(--bs-primary);
}

.btn:active {
  box-shadow: none;
}

.navbar {
  padding: 0;
}

.navbar-collapse {
  padding-bottom: 10px;
  transition: 0.2s ease;
}

.navbar .nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 700;
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleX(1);
}

.dropdown-menu-visible {
  visibility: visible!important;
  opacity: 1!important;
  transform: scaleX(1)!important;
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  padding: 15px;
  border: 0;
  top: 100px;
  left: -25px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transform-origin: unset;
  }
}

.show-when-small {
  display: none !important;
}


.hide-when-small {
  display: block !important;
}


@media (max-width: 767px) {
  .hide-when-small {
    display: none!important;
  }

  .show-when-small {
    display: block !important;
  }

}

@media (min-width: 768) {
  .show-when-small {
    display: none!important;
  }

  .hide-when-small {
    display: block !important;
  }

}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #172231;
  transition: 0.2s ease;
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: var(--bs-primary);
  background: transparent;
}

.navbar-light .navbar-nav .nav-link {
  color: #172231;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--bs-primary);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 15px;
}



.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.inner-shadow {
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
}

/* -------------------------------------------------- */
/* HEADER */
#nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  list-style: none;
  margin: 0 0 0 auto;
}

@media (min-width: 992px) {
  #nav {
    flex-direction: row;
  }
}



/*FOUC FIX SHOULD BE LAST STYLE ELEMENT IN THIS FILE*/
html {
  visibility: visible;
  opacity: 1;
}

h1,
.h1 {
  font-size: 70px;
}

h2,
.h2 {
  font-size: 48px;
}

h3,
.h3 {
  font-size: 22px;
}

h4,
.h4,
.subtitle {
  font-size: 22px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 16px;
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.parallax-2 {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.primary-color {
  color: var(--primary-text-color) !important;
}

.text-primary {
  color: var(--primary-text-color) !important;
}

.section {
  padding-top: 150px;
  padding-bottom: 150px;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-2 {
  padding-top: 0px;
  padding-bottom: 150px;
  background-repeat: no-repeat;
  background-size: cover;
}

.welcome-section {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
}

.section-bottom-lg {
  padding-bottom: 240px;
}

.font-italic {
  font-style: italic;
}

.card-header {
  font-size: 24px;
  font-weight: 700;
}

.news-title {
  width: 200px;
  display: inline-flex;
  text-transform: uppercase;
  color: #0000;
  font-size: 40px;
  font-weight: bold;
  background:
    repeating-radial-gradient(#000 0 0.0001%, #fff 0 0.0002%) 50% 0/2500px 2500px,
    repeating-conic-gradient(#000 0 0.0001%, #fff 0 0.0002%) 50% 50%/2500px 2500px;
  background-blend-mode: difference;
  mix-blend-mode: lighten;
  -webkit-background-clip: text;
  background-clip: text;
}



.news-scroll {
  width: calc(100% - 200px);
}

.panel {
  max-width: 100%;
  width: 500px;
  margin: 0 auto;
}



/* Services */

.section-title-border.border-center {
  margin-left: calc(50% - 27px);
}

.section-title-border {
  position: relative;
  height: 5px;
  width: 30px;
  background: var(--bs-primary);
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.subtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #818385;
}

.section-title {
  margin-bottom: 40px;
}

.service-wrapper {
  transform: translateY(-200px);
}

.service-wrapper .card {
 /* --bs-card-height: 450px;*/
  transition: 0.2s;

}

.service-wrapper .card-body {
  display: flex;
  flex-wrap: wrap;

}

.box-shadow {
  box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
}

.card-icon {
  position: absolute;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: var(--bs-primary);
  text-align: center;
  line-height: 60px !important;
  color: #fff;
  font-size: 32px !important;
  left: 15px;
  top: -90px;
}

.btn-arrow {
  transition: 0.2s ease;
  align-self: flex-end;
}

.card:hover .btn-arrow::before {
  border-right: 2px solid var(--bs-link-hover-color);
  border-bottom: 2px solid var(--bs-link-hover-color);
}

.card:hover .btn-arrow::after {
  background: var(--bs-link-hover-color);
}

.card:hover {
  box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.3);
}

.btn-arrow::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: transparent;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  left: calc(85% + 5px);
  transition: 0.2s ease;
}

.btn-arrow::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  transition: 0.2s ease;
  left: 85%;
}

/* PersonalDataPage */
.icon-bg {
  position: relative;
  background: var(--faded-primary);
  display: inline-block;
  height: 100px;
  width: 100px;
  border-radius: 45px;
  border: 2px solid var(--bs-primary);

}

.icon-bg .icon {
  line-height: 100px;
  font-size: 40px;
}

.hover-bg-dark,
.hover-bg-dark {
  color: #000 !important;
  cursor: pointer;
}

.hover-bg-dark:hover,
.hover-bg-dark.active {
  background: #252d39 !important;
  cursor: pointer;
}

.hover-bg-dark:hover *,
.hover-bg-dark.active * {
  color: #fff !important;
}

/* .tab-content table:not(.navigation) {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  margin: 10vh auto 5vh;
  box-shadow: 13px 20px 30px rgba(0, 0, 0, 0.25);
  border: 5.5px solid rgba(37, 45, 57, 0.5);
  border-radius: 10px;
  --bs-border-width: 2px;
}

.tab-content table:not(.navigation) th,
.tab-content table:not(.navigation) td {
  font-size: 20px;
  letter-spacing: 0.6px;
  background-color: inherit;
  border: none;
  padding: 10px;
}

.tab-content table:not(.navigation) th {
  border-right: 1px solid var(--bs-border-color);
}

.tab-content table:not(.navigation) input {
  background-color: inherit;
  font-size: inherit;
}

.tab-content table:not(.navigation) tbody tr {
  background-color: #fff;
}

.tab-content table:not(.navigation) tbody tr:hover {
  background-color: var(--bs-table-striped-bg);
  transition: background-color 0.3s ease;
} */

/* .tab-pane .tab-content table:not(.navigation) {
  width: 100%;
}


.tab-content table:not(.navigation) th:first-child,
.tab-content table:not(.navigation) td:first-child {
  width: 40%;
  padding: 0 5px;
}

.tab-content table:not(.navigation) th:last-child,
.tab-content table:not(.navigation) td:last-child {
  width: 60%;
  padding: 0 5px;
  position: relative;
} 

.tab-pane .tab-content table:not(.navigation) th:first-child,
.tab-pane .tab-content table:not(.navigation) td:first-child {
  padding: 9px 5px;
}

.tab-pane .tab-content table:not(.navigation) th:last-child,
.tab-pane .tab-content table:not(.navigation) td:last-child {
  padding: 9px 5px;
}

table.data_form tbody {
  display: flex;
  flex-flow: column wrap;
  width: 100%;
}

table.data_form tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  margin: 5px 0;
} */

.tab-content .navigation {
  box-shadow: unset;
  height: auto;
  justify-content: center;
}

.tab-content .navigation td {
  display: flex;
}

.table input {
  border: none;
  background-color: transparent !important;
  color: var(--bs-table-color-type);
}

/* Flat Table */
.pers-rows row {
  margin: 10px 0;
}

.pers-rows table:not(.navigation) {
  display: flex;
  flex-direction: column;
  margin: 40px 0;
  border: 1px solid var(--bs-border-color);
  padding: 20px;
  border-radius: 4px;
}

.pers-rows table:not(.navigation):first-child {
  margin-top: 20px;
}

.pers-rows .grid-table tbody {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 12px;
}

.pers-rows .grid-table tr {
  display: flex;
  flex-direction: column;
  border: none;
  border-left: 1px dashed var(--bs-primary);
  padding: 3px 10px;
}

.pers-rows .grid-table th {
  font-size: 18px;
  font-weight: 500;
  color: var(--bs-primary);
  display: inline-block;
  border: none;
}

.pers-rows .grid-table td {
  font-size: 16px;
  display: inline-block;
  border: none;
}

.pers-rows table.navigation {
  box-shadow: none;
  margin-top: -30px;
}

.pers-rows table.navigation td {
  display: flex;
}

.pers-rows table.navigation select {
  width: auto;
}

.pers-rows .flat-table {
  width: 100%;
}

.pers-rows .flat-table td,
.pers-rows .flat-table th {
  padding: 10px;
  border: none;
  width: 200px !important;
}

.pers-rows .flat-table td.w-small,
.pers-rows .flat-table th.w-small {
  width: 75px !important;
}


.pers-rows .flat-table tr {
  border: none;
  border-left: 1px dashed var(--bs-primary);
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.pers-rows .flat-table tr:first-child {
  border-left: 1px solid transparent;

}

.pers-rows .flat-table td button {
  position: relative;
}

.pers-rows .flat-table td button::before {
  content: '\f044';
  font-family: "FontAwesome";
  font-size: inherit;
  font-weight: 400;
  margin-right: 5px;
}


.pers-rows .tax-table input {
  width: auto !important;
  max-width: 100%;
  margin: 10px 0;

}

.pers-rows .tax-table h3 {
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 36px;
}

/* Cases */
.panel.panel-default {
  width: auto;
  margin: 5px auto;
}

.panel-default a {
  font-size: 24px;
  color: var(--bs-black);
}

.panel-default a:hover {
  cursor: text;
}

.panel-title {
  margin-bottom: 0;
  width: calc(100% - 45px);
  border-right: 1px solid var(--bs-border-color);
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: 1px solid var(--bs-border-color);

}

.panel-heading .icon {
  margin: auto;
  font-size: 20px;
  color: var(--bs-secondary);
}

.panel-heading .icon:hover {
  cursor: pointer;
  color: var(--bs-link-color);
}

.panel-default .panel-title .row {
  align-items: center;
  padding: 10px;
}

.case-id {
  margin-bottom: 0;
}

.panel-collapse {
  border: 1px solid var(--bs-border-color);
  padding: 10px;
}

.panel-questions {
  max-height: 600px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--bs-secondary) #f9f9f9;
  scroll-behavior: smooth;
}

.panel-questions::-webkit-scrollbar {
  width: 8px;
}

.panel-questions::-webkit-scrollbar-track {
  background: #f9f9f9;
}

.panel-questions::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.panel-questions::-webkit-scrollbar-thumb:hover {
  background: var(--bs-secondary);
}

  .panel-questions h3 {
    font-size: 1.2rem !important;
  }

  .panel-questions h4 {
    font-size: 1.0rem !important;
  }

  .panel-questions span.filename {
    font-size: 1.0rem !important;
  }

  .panel-questions span.filename {
    font-size: 1.0rem !important;
  }

.panel-collapse .panel-body .steps {
  font-size: 20px;
  letter-spacing: 0.6px;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 6px;
}

.panel-collapse .panel-body h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.panel-collapse .panel-body h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.panel-collapse .panel-body p {
  font-size: 18px;
  margin-bottom: 5px;
}

/* Footer */

.member-info-container {
  display: none;
}


.login-section {
  height: calc(100vh);
  padding: 10px 0;
  display: flex;
/*   flex-direction: column; */
  justify-content: center;
}

.login-section .container {
	margin-top: 5em;
}

.bg-secondary {
  background: #252d39 !important;
}

.bg-secondary-darken {
  background: rgb(30.9776595745, 37.6755319149, 47.7223404255) !important;
}

.logo-link {
  color: white;
  text-decoration: none;
  font-size: 36px;
  font-weight: 700;
}

.list-styled {
  padding-left: 0;
}

.list-styled li {
  position: relative;
  padding-left: 20px;
  list-style: none;

}

.list-styled li::marker {
  content: '';
}

.list-styled li::before {
  position: absolute;
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 14px;
  left: 0;
  top: 1px;
  color: var(--bs-primary);
  transition: 0.3s ease;
}

.list-styled li:hover::before {
  color: var(--bs-primary) !important;
}

.list-styled li:hover a {
  text-decoration: underline;
}

  .list-styled li.text-light::before, .list-styled li.text-light2::before {
    color: #ddd;
  }

.list-styled.style-circle li::before {
  content: "\f10c";
}


.transition {
  transition: 0.2s ease;
}


table caption {
  display: none !important;
}

table.captioned caption {
  display: block !important;
  font-size: 22px;
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 12px;
  border: none;
  background-color: #fff;
}




/* MEDIA */

@media (max-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 40px 10px;
  }
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px;
  }
}

@media (max-width: 768px) {

  body {
    font-size: 0.9rem;
  }


  td,
  th {
    word-break: break-all;
  }

  .section {
    padding-top: 5vh;
    padding-bottom: 5vh;
    min-height: 200px;
  }

  .parallax {
    background-size: auto 100%;
  }

  h1,
  .h1 {
    font-size: 36px;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  h3,
  .h3 {
    font-size: 24px;
  }

  h4,
  .h4,
  .subtitle {
    font-size: 20px;
  }

  .login-section {
    height: auto;
    min-height: calc(100vh - 70px);
  }

  .tab-content .navigation td {
    flex-wrap: wrap;

  }

  .tab-content .navigation button {
    margin: 5px auto;

  }
}

@media (min-width: 992px) {
  .navigation {
    height: 110px;
    display: flex;
    align-items: center;
  }
}


.change-contact-details-select table.gridy-table tr {
    display: grid;
    grid-template-columns: 35px 300px auto;
    margin: 10px 0;
    border-left: 1px dashed var(--bs-primary);
    width: 100%; 
}

#title {
	display: none;
}

table th { word-break: break-word; }



table.review-options td, table.review-options th {
   text-align: center! important;
}
table.review-options td:nth-child(1), table.review-options th:nth-child(1) {
   text-align: left! important;
}

.data_form th {
    font-size: 16px;
    font-weight: 500;
    border: none;
    padding: 0.5rem;
}



h4, .h4 {
	color: var(--bs-primary)!important;
}

button:disabled,
button[disabled]{
  border-color: var(--bs-secondary)!important;
  background-color: var(--bs-secondary)!important;
}

input[type=checkbox], input[type=radio]{
	cursor: pointer;
}

 .table .form-check-input, .table-responsive .form-check-input {
	border: var(--bs-border-width) solid var(--bs-border-color);
}

.form-check-input:checked[type=radio] {
	border: var(--bs-border-width) solid var(--bs-border-color);
	background-color:  var(--bs-primary)!important; 
	outline: 1px solid var(--bs-primary)!important; 
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e);
}
.form-check-input:checked {
	border: var(--bs-border-width) solid var(--bs-border-color);
    background-color: var(--bs-primary)!important; 
	outline: 1px solid var(--bs-primary)!important; 
}

.layout-withholding table tr th{
	padding-left: 1.5rem;
}
.layout-withholding tr:nth-child(1) th {
   padding-left: 0rem;
}

.layout-withholding tr:nth-child(9) th {
   padding-left: 0rem;
}

.retirement-summary #tblData1 td input[type="text"]{
	padding-left: 0px;
}


.retirement-summary .benefit-estimate-options, .retirement-summary .Layout_Table, .retirement-summary .layout-withholding {
	border: var(--bs-card-border-width) solid var(--bs-primary);
    border-radius: var(--bs-card-border-radius);
	padding: 10px!important;
	margin-bottom: 1.5rem;
}

table.disclaimer input[type=text] {
	border: var(--bs-border-width) solid var(--bs-border-color);
}

#myinfoPopup .btn-close {
	
}

.btn-cancel {
    --bs-btn-color: #212529;
    --bs-btn-border-color: #212529;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #212529;
    --bs-btn-hover-border-color: #212529;
    --bs-btn-focus-shadow-rgb: 33, 37, 41;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #212529;
    --bs-btn-active-border-color: #212529;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #212529;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #212529;
    --bs-gradient: none;
}

.my-document .row-container {
  display: flex;
  margin: 40px 0;
  border: 1px solid var(--bs-border-color);
  padding: 20px;
  border-radius: 4px;
}

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
  .w-sm-100 {
    width: 100% !important;
  }

  .w-sm-75 {
    width: 75% !important;
  }

  .w-sm-50 {
    width: 50% !important;
  }

  .w-sm-25 {
    width: 25% !important;
  }

  .h-sm-100 {
    height: 100% !important;
  }

  .h-sm-75 {
    height: 75% !important;
  }

  .h-sm-50 {
    height: 50% !important;
  }

  .h-sm-25 {
    height: 25% !important;
  }
}


/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  .w-md-100 {
    width: 100% !important;
  }

  .w-md-75 {
    width: 75% !important;
  }

  .w-md-50 {
    width: 50% !important;
  }

  .w-md-25 {
    width: 25% !important;
  }

  .h-md-100 {
    height: 100% !important;
  }

  .h-md-75 {
    height: 75% !important;
  }

  .h-md-50 {
    height: 50% !important;
  }

  .h-md-25 {
    height: 25% !important;
  }
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
  .w-lg-100 {
    width: 100% !important;
  }

  .w-lg-75 {
    width: 75% !important;
  }

  .w-lg-50 {
    width: 50% !important;
  }

  .w-lg-25 {
    width: 25% !important;
  }

  .h-lg-100 {
    height: 100% !important;
  }

  .h-lg-75 {
    height: 75% !important;
  }

  .h-lg-50 {
    height: 50% !important;
  }

  .h-lg-25 {
    height: 25% !important;
  }
}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
  .w-xl-100 {
    width: 100% !important;
  }

  .w-xl-75 {
    width: 75% !important;
  }

  .w-xl-50 {
    width: 50% !important;
  }

  .w-xl-25 {
    width: 25% !important;
  }

  .h-xl-100 {
    height: 100% !important;
  }

  .h-xl-75 {
    height: 75% !important;
  }

  .h-xl-50 {
    height: 50% !important;
  }

  .h-xl-25 {
    height: 25% !important;
  }
}


/* Date Picker override */
.ui-widget-header {
  background-color: var(--primary-button-color);
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  background-color: #FBFDF7;
}

.ui-state-active {
  color: var(--primary-text-color) !important;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
  background-color: var(--primary-button-color) !important;
  border-radius: 5px !important;
  cursor: pointer !important;
}

.ui-datepicker .ui-datepicker-prev span:hover, .ui-datepicker .ui-datepicker-next span:hover {
  background-color: #FBFDF7 !important;
  border-radius: 5px !important;
  cursor: pointer !important;
}

.ui-datepicker-next-hover, .ui-datepicker-prev-hover {
  background-color: var(--primary-button-color) !important;
  border-color: var(--primary-button-color) !important;
}

.ui-datepicker-month, .ui-datepicker-year {
  border-radius: 5px !important;
}


.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  margin: 15px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(134,195,58, 0.2);
  border-right: 1.1em solid rgba(134,195,58, 0.2);
  border-bottom: 1.1em solid rgba(134,195,58, 0.2);
  border-left: 1.1em solid #86c33a;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



#myModalLoading .modal-content, #myModalLoading .modal-body {
  background-color: rgba(255, 255, 255, 0.7) !important;
  border-radius: 3rem;
  border: none;
  height: 10em;
  width: 13em;
  padding-top: 0px;
  margin-top: 0px;
}


.welcome-box, .welcome-box-2 {
  background-color: rgba(28, 29, 30, 0.7);
  border-radius: 15px;
  padding: 15px 25px 15px 25px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.documents-tabs .content-left a {
  color: var(--secondary-text-color) !important;
}

.documents-tabs a:hover {
  color: var(--primary-text-color) !important;
}

.documents-tabs a i {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
}

.case-tracker h3 {
  font-size: 30px;
}

.case-tracker .steps {
  display: none;
}

.case-tracker .panel-default a {
  font-size: 1.2rem;
}

.case-tracker .panel-body {
  font-size: 0.8em;
}

  .case-tracker .panel-body p {
    font-size: 1em;
  }

.font-weight-bold {
    font-weight: 700 !important;
}


.mfa-div-info .container {
  margin-top: 1.5em !important;
  margin-bottom: 1em !important;
}

.mfa-div-info {
  margin-left: -0.75em;
}

.forgot .btn-group {
  margin-bottom: 1em;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  opacity: 0.3;
}

.login-validationfailed:empty {
  display: none;
}

.layout-mfa-setup {
  display: flex;
  flex-direction: column;
  margin: 40px 0;
  border: 1px solid var(--bs-border-color);
  padding: 20px;
  border-radius: 4px;
}




@media (min-width: 576px) {
  #myModalLoading .modal-dialog {
    margin-left: auto !important;
    left: 2.7em !important;
  }
}

@media (max-width: 575px) {
  #myModalLoading .modal-dialog {
    margin-left: auto !important;
    left: 8.4em !important;
  }
}

.row {
  margin-left: calc(-.2* var(--bs-gutter-x));
}

.page-top-banner {
  background-image: url('/Resources/Client/images/personal.jpg');
}

.border-around-table {
  border: 1px solid var(--bs-border-color);
  padding: 20px 0px 0px 0px;
  border-radius: 4px;
  border-bottom: none;
}

.w-5 {
  width: 5% !important;
}

.w-10 {
  width: 10% !important;
}

.w-15 {
  width: 15% !important;
}

.w-20 {
  width: 20% !important;
}

.w-30 {
  width: 30% !important;
}

.w-35 {
  width: 35% !important;
}

.w-40 {
  width: 40% !important;
}

.w-45 {
  width: 45% !important;
}

.w-55 {
  width: 55% !important;
}

.w-60 {
  width: 60% !important;
}

.w-65 {
  width: 65% !important;
}

.w-70 {
  width: 70% !important;
}

.w-80 {
  width: 80% !important;
}

.w-85 {
  width: 85% !important;
}

.w-90 {
  width: 90% !important;
}

.w-95 {
  width: 95% !important;
}

.pay-details-section h4 {
  font-weight: bold;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.pay-details-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  border: 1px solid var(--bs-border-color);
  padding: 20px;
  border-radius: 4px;
}

.pay-details-section-subsection {
  display: flex;
  flex-direction: column;
  border: none;
  border-left: 1px dashed var(--bs-primary);
  padding: 3px 10px;
  margin-bottom: 1.2rem;
}

.pay-details-label {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  border: none;
  margin-top: 1rem;
  margin-bottom: 0rem;
}

.btn-sm {
  font-size: 13px !important;
  padding: 10px 20px;
}

.btn-sm-2 {
  font-size: 13px !important;
  padding: 10px 10px !important;
}

.capitalize {
  text-transform: capitalize;
}

.block-downloads-style2 ul {
  list-style-type: none !important;
}

.block-downloads-style2 li {
  cursor: pointer !important;
}


.block-downloads-style2 a.documentlink {
  cursor: pointer !important;
}

.nav-tabs {
  border-bottom: none !important;
}

.header-review-changes {
	text-transform: lowercase;
}

.header-review-changes:first-letter {
    text-transform: uppercase;
}

.form-check-label:has(span.aspNetDisabled) {
  cursor: default;
  opacity: .5;
}

a.tile-links {
    text-decoration: none!important;
}