.home-page h2 {
  color: #152850;
}
.home-page h3 {
  color: #505050;
  position: relative;
}
.home-page h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  background-color: #ffb300;
}
.measures-page h2 {
  color: #152850;
}
.measures-page .scroll-body {
  max-height: 100vh;
  overflow-y: auto;
  background-color: white;
}
.measures-page .scroll-body h1 {
  color: #707070;
  font-size: 30px;
  margin-top: 2rem;
  margin-left: 0;
  font-weight: 300;
}
.measures-page .scroll-body .container {
  margin-top: 100px;
  width: 70%;
}
.measures-page .scroll-body .subtitle {
  font-size: 15px;
  line-height: 1.2;
  margin-left: 10px;
  margin-bottom: 0px;
  color: #b8b3b3;
}
.measures-page .measures-chart {
  height: 800px;
}
.dashboard-page h2 {
  color: #152850;
}
.dashboard-page .measures-chart {
  height: 800px;
}
.dashboard-page .chart-area {
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.dashboard-page .disabled {
  cursor: default;
}
.dashboard-page .disabled:hover {
  background-color: #1E4F96 !important;
}
.dashboard-page .scroll-body {
  background-color: white;
}
.dashboard-page .scroll-body h1 {
  color: #505050;
  font-size: 25px;
  margin-top: 2rem;
  margin-left: 0;
  font-weight: 600;
}
.dashboard-page .scroll-body .container {
  margin-top: 100px;
}
.dashboard-page .scroll-body .subtitle {
  font-size: 15px;
  line-height: 1.2;
  margin-left: 10px;
  margin-bottom: 0px;
  color: #8d8d8d;
}
.dashboard-page .scroll-body p {
  color: #505050;
}
.dashboard-page .measure-card {
  border-radius: 30px;
  -webkit-box-shadow: 0px 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0 10px rgba(0, 0, 0, 0.5);
  padding: 0;
  /*cursor: pointer;*/
}
.dashboard-page .sub-card {
  border-radius: 30px;
  background-color: white;
}
.dashboard-page .sub-card .measure-desc {
  /*height: 55px;*/
}
.dashboard-page .grey {
  color: #505050;
}
.dashboard-page .bg-grey {
  background-color: #505050;
}
.dashboard-page .light-grey {
  color: #bababa;
}
.dashboard-page .green {
  color: #33cc33;
}
.dashboard-page .bg-green {
  background-color: #33cc33;
}
.dashboard-page .red {
  color: #ff5050;
}
.dashboard-page .bg-red {
  background-color: #ff5050;
}
.dashboard-page dashboard-item {
  padding: 0 !important;
  margin-bottom: 3rem !important;
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .dashboard-page dashboard-item {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

.dashboard-list-page .title {
  text-shadow: 1px 1px 2px black;
  color: white;
}
.dashboard-list-page .header-section {
  /*clip-path: ellipse(70% 73% at 49% 25%);*/
  position: relative;
  padding-bottom: 40px;
}
.dashboard-list-page .header-section:before {
  content: "";
  background-image: url(/images/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.dashboard-list-page .header-section:after {
  content: "";
  background-image: url(/images/hero-curve.svg);
  background-repeat: no-repeat;
  background-position: center 102%;
  background-size: 102% auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
  -webkit-filter: drop-shadow(0 -20px 10px rgba(0, 0, 0, 0.0745098039));
          filter: drop-shadow(0 -20px 10px rgba(0, 0, 0, 0.0745098039));
}
.dashboard-list-page .body {
  background-color: #fafafa;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.dashboard-list-page .body h3 {
  color: #505050;
  position: relative;
}
.dashboard-list-page .body h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  background-color: #ffb300;
}
.dashboard-list-page .body p {
  color: #8d8d8d;
}
.dashboard-list-page .body li {
  color: #8d8d8d;
}
.dashboard-list-page .body li::marker {
  color: #8d8d8d;
}
.dashboard-list-page .dashboards ol {
  margin-left: 3em;
}
.dashboard-list-page .dashboards h5 {
  font-size: 22px;
}
.dashboard-list-page .dashboards h5 a {
  text-decoration: none;
  color: #505050;
}
.dashboard-list-page .dashboards h5 a:hover {
  color: #1E4F96;
  text-decoration: underline;
}

.tooltip-button {
  position: relative;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  height: 0;
}

.tooltip-text {
  visibility: hidden;
  background-color: #505050;
  color: white;
  text-align: center;
  padding: 5px 8px;
  border-radius: 4px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position above the button */
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  font-size: 14px;
}

.tooltip-button:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.breadcrumb {
  margin: 0;
  padding-left: 0;
}

.breadcrumb-background {
  background-color: #e9ecef;
}

.toolkit-page .title {
  text-shadow: 1px 1px 2px black;
  color: white;
}
.toolkit-page .header-section {
  /*clip-path: ellipse(70% 73% at 49% 25%);*/
  position: relative;
  padding-bottom: 40px;
}
.toolkit-page .header-section:before {
  content: "";
  background-image: url(/images/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.toolkit-page .header-section:after {
  content: "";
  background-image: url(/images/hero-curve.svg);
  background-repeat: no-repeat;
  background-position: center 102%;
  background-size: 102% auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
  -webkit-filter: drop-shadow(0 -20px 10px rgba(0, 0, 0, 0.0745098039));
          filter: drop-shadow(0 -20px 10px rgba(0, 0, 0, 0.0745098039));
}
.toolkit-page .body {
  background-color: #fafafa;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.toolkit-page .body h3 {
  color: #505050;
  position: relative;
}
.toolkit-page .body h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  background-color: #ffb300;
}
.toolkit-page .body p {
  color: #8d8d8d;
}
.toolkit-page .body li {
  color: #8d8d8d;
}
.toolkit-page .body li::marker {
  color: #8d8d8d;
}
.toolkit-page .card-section {
  background-color: #1E4F96;
  border-radius: 15px;
  -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.45);
          box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.45);
  padding: 20px;
  margin-left: -2rem;
  margin-right: 3rem;
  margin-bottom: 3rem;
}
.toolkit-page .card-section h5 {
  color: white;
  margin-left: 1rem;
}
.toolkit-page .checklist {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.45);
          box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.45);
  border-radius: 0px 10px 10px 10px;
  padding: 30px;
  margin-right: -4rem;
  margin-left: 1rem;
  margin-bottom: -3rem;
  color: #525252;
}
.toolkit-page .checklist .fa-circle-check {
  color: #1E4F96;
}
.toolkit-page .checklist h5 {
  color: #505050;
  margin-left: 1rem;
  font-size: 20px;
}
.toolkit-page .checklist h5 a {
  text-decoration: none;
  color: #505050;
}
.toolkit-page .checklist h5 a:hover {
  color: #1E4F96;
  text-decoration: underline;
}
.toolkit-page .checklist h4 {
  color: #505050;
}
.toolkit-page .checklist p {
  color: #8d8d8d;
  margin-left: 2.2rem;
}
.toolkit-page .checklist .secondary-indent {
  margin-left: 5.5rem !important;
}
.toolkit-page .expandable-item button.toggle-button {
  position: relative;
  border: 1px solid #1E4F96;
  padding: 0.75rem 130px 0.75rem 2rem;
  width: 100%;
  text-align: left;
  background-color: #1E4F96;
}
.toolkit-page .expandable-item button.toggle-button h5 {
  color: white;
  margin: 0;
}
.toolkit-page .expandable-item button.toggle-button::after {
  color: white;
  position: absolute;
  right: 50px;
  bottom: calc(50% - 1rem);
  width: 2rem;
  height: 2rem;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 2rem;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.toolkit-page .expandable-item button.toggle-button:not(.collapsed)::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.toolkit-page .expandable-item .expandable-content {
  /*            margin-left: 5%;
  width: 95%;*/
  border: 1px solid #c1c1c1;
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}
.toolkit-page .expandable-item .expandable-content .expandable-content-wrapper {
  padding: 1rem;
  line-height: 1.4;
}
.toolkit-page .expandable-item .expandable-content .expandable-content-wrapper p {
  margin: 0;
}
.toolkit-page .expandable-item .expandable-content li {
  color: #8d8d8d;
}
.toolkit-page .expandable-item .expandable-content li::marker {
  color: #8d8d8d;
}
.toolkit-page .expandable-item .expandable-content .even {
  padding: 1.5rem;
}
.toolkit-page .expandable-item .expandable-content .odd {
  padding: 1.5rem;
  background-color: #f2f2f2;
}
.toolkit-page .expandable-item .expand-subheading {
  color: #505050;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0.5rem;
}
.toolkit-page table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  /*        tr:nth-child(even) {
      background-color: #f2f2f2;
  }*/
}
.toolkit-page table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid #d0d0d0;
  color: #8d8d8d;
  font-size: 17px;
  vertical-align: top;
}
.toolkit-page table td a {
  word-break: break-word;
  overflow-wrap: anywhere;
}
.toolkit-page table b {
  color: #505050;
}
.toolkit-page table a {
  margin-left: 1rem;
}
.toolkit-page table th {
  background-color: #1E4F96;
  color: white;
}
.toolkit-page .domains ol {
  margin-left: 3em;
}
.toolkit-page .domains h5 {
  font-size: 22px;
}
.toolkit-page .domains h5 a {
  text-decoration: none;
  color: #505050;
}
.toolkit-page .domains h5 a:hover {
  color: #1E4F96;
  text-decoration: underline;
}
.toolkit-page .references-card {
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.45);
          box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.45);
  padding-top: 100px;
  padding-bottom: 100px;
}
.toolkit-page .reference-section {
  position: relative;
  padding: 80px;
  background-color: #fafafa;
}
.toolkit-page .reference-section .reference-header {
  color: #505050;
  font-weight: 600;
  font-size: 20px;
}
.toolkit-page .reference-section p {
  color: #8d8d8d;
  font-size: 17px;
  line-height: 1.5;
}
.toolkit-page .reference-section::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  height: 33%;
  background-color: #1E4F96;
  z-index: 0;
}
.toolkit-page .reference-section .reference-card {
  position: relative;
  z-index: 1;
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.45);
          box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.45);
  padding: 35px;
}
.toolkit-page .table-header-row td {
  background: #5B7CAB;
  color: white;
  font-weight: 600;
  font-size: 17px;
}
.toolkit-page .table-odd-row td {
  background: rgba(91, 124, 171, 0.1);
}

/*# sourceMappingURL=secure.dc3077c25d59d5d006ab.css.map*/