/*FONTS*/
@font-face {
  font-family: "gilroy";
  src: url("gilroy-extrabold-webfont.woff2") format("woff2"),
    url("gilroy-extrabold-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "gilroy-light";
  src: url("Gilroy-Light.woff") format("woff"),
   url("Gilroy-Light.ttf") format("tff");
  font-style: normal;
}

@font-face {
  font-family: "gilroy-bold";
  src: url("Gilroy-Bold.woff") format("woff"),
   url("Gilroy-Bold.ttf") format("tff");
  font-style: normal;
}

@font-face {
  font-family: "gilroy-medium";
  src: url("Gilroy-Medium.ttf"),
  url("Gilroy-Medium.woff");
  font-style: normal;
}

@font-face {
  font-family: "gilroy-regular";
  src: url("Gilroy-Regular.ttf"), url("Gilroy-Regular.woff");
  font-style: normal;
}




/* GENERAL STYLES */
html {
  font-size: 16px;
}
body {
  font-family: "Roboto", sans-serif;
  color: #47567a;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "gilroy", sans-serif;
  font-weight: 800;
  color: #0d2849;
}
.page {
  min-height: 100vh;
  background-color: #fbfbfb;
}
.page.accounts,
.page.report {
  background-color: #fff;
}

/* UTILITY CLASSES */
.w-800 {
  max-width: 800px !important;
}

/* COLORS */
.text-midnight {
  color: #0d2849 !important;
}
.text-jade {
  color: #00c65e !important;
}
.text-sea-green {
  color: #2a5e57 !important;
}
.text-chambray {
  color: #47567a !important;
}
.text-blue {
  color: #2f80ed !important;
}
.text-yellow {
  color: #f2c94c !important;
}
.text-red {
  color: #eb5757 !important;
}
.text-purple {
  color: #bb6bd9 !important;
}

.bg-midnight {
  background-color: #0d2849 !important;
}
.bg-jade {
  background-color: #00c65e !important;
}
.bg-sea-green {
  background-color: #2a5e57 !important;
}
.bg-chambray {
  background-color: #47567a !important;
}
.bg-blue {
  background-color: #2f80ed !important;
}
.bg-yellow {
  background-color: #f2c94c !important;
}
.bg-red {
  background-color: #eb5757 !important;
}
.bg-purple {
  background-color: #bb6bd9 !important;
}
.canvas-container{
  border: 1px solid #DDE2E5;
  padding: 2rem;
}

/* BUTTONS */
.btn-primary {
  color: #fff;
  background: #00c65e;
  border-color: #00c65e;
}
.btn-primary:focus{
  background:#00c65e;
  box-shadow:none;
  border-color:#00c65e;
}
.btn-primary:hover {
  background: #0d2849;
  box-shadow:none;
  border-color:#0d2849;
}
.btn-secondary {
  color: #fff;
  background: #0d2849;
  border-color: #0d2849;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #0d2849;
}
.btn-transparent {
  background:transparent;
  border-color:#fff;
  color:#fff
}

.btn-transparent:focus {
  color: #fff;
}

.btn-transparent:active {
  border: none;
}

.btn-inverted{
  background-color: #fff;
  color:#00c65e;
}

/* Icon Search box */
.has-search .form-control {
  padding-left: 2.375rem;
}

.has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}
.custom-icon-search{
  min-width: 130px;
}
.custom-icon-search input,.custom-icon-search input:focus,.custom-icon-search input:active {
  background: #00c65e;
  box-shadow: none;
  color: #fff;
}

.custom-icon-search input::placeholder {
  color: #fff;
}

.custom-icon-search .fa {
  color: #fff;
}

.error-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 80%;
  margin: 40px auto;
}
/* LOGIN */
.accounts .login a {
  color: #47567a;
}
.accounts .login .hero-img {
  min-height: 100vh;
  max-height: 100vh;
  width: 100%;
  object-fit: cover;
}
.accounts .login .site-logo {
  position: absolute;
  top: 40px;
  left: 40px;
}
.accounts .login .content {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 540px;
  margin: 0 auto;
  padding: 40px;
  height: 100vh;
  justify-content: center;
  overflow: auto;
}
.accounts .login .form-check {
  font-size: 0.875rem;
}
.accounts .login .btn-forgot-pass {
  display: inline-block;
  font-size: 0.875rem;
  text-decoration: none;
  color: #47567a;
}
.accounts .login .btn-forgot-pass:hover {
  text-decoration: underline;
}
.accounts .login .text-signup {
  text-align: center;
}
.accounts .login .modal-content {
  border-radius: 12px;
}
.accounts .login .btn-primary {
  padding: 0.75rem 1rem;
  font-weight: 700;
}
.accounts form .form-control:focus {
  border-color: #00c65e;
  box-shadow: none;
}
.accounts form .form-control {
  padding: 0.75rem 1rem;
  background-color: #fff !important;
}

/* RESE PASSWORD */
.accounts .reset-password {
  display: flex;
  min-height: 100vh;
  align-items: center;
  background: #0d2849;
}
.accounts .reset-password .card {
  max-width: 656px;
  margin: 0 auto;
  border-radius: 12px;
}
.accounts .reset-password .card-body {
  padding: 2.5rem;
}
.accounts .reset-password .btn-primary {
  padding: 0.75rem 1rem;
  font-weight: 700;
}

/* EXAM */
.exam .hidden {
  display: none;
}

.exam .header {
  box-shadow: 0px 20px 40px rgba(71, 86, 122, 0.05);
}

.exam .site-logo-container {
  display: flex;
  flex-direction: row;
}

.exam .site-logo-container .exam-type-header {
  color: #00c65e;
  text-decoration: none;
  font-size: 18px;
  display: block;
  margin-bottom: 0 !important;
  position: relative;
  top: 12px;
  margin-left: 10px;
}

.exam .next-assessment-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 12px;
  align-items: center;
  margin-top: 6px;
}

.exam .next-assessment-container p {
  color: #00C65E;
  text-align: center;
}

.exam .progress .bg-success {
  background-color: #00c65e !important;
}
.exam .progress-text {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
.exam .intro .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.exam .intro .video-container iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.exam .categories {
  box-shadow: 0 6px 24px 0 rgba(221, 226, 229, 0.5);
}
.exam .categories .list-group-item {
  position: relative;
  font-size: 0.875rem;
  color: #0d2849;
  background-color: #fbfbfb;
  border-color: #fff;
  border-width: 5px;
}
.exam .categories .list-group-item:hover {
  background-color: #f4f4f4;
}
.exam .categories .list-group-item + .list-group-item {
  border-top-width: 0;
  padding-right: 1.8rem;
}
.exam .categories .list-group-item + .list-group-item.active {
  margin-top: -5px;
  border-top-width: 5px;
}
.exam .categories .list-group-item.active {
  color: #fff;
  background-color: #0d2849;
  border-color: #fff;
}
.exam .categories .list-group-item .text-muted {
  font-size: 0.75rem;
  color: #bdbdbd !important;
}
.exam .categories .list-group-item.completed:after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  width: 14px;
  height: 14px;
  background: url(../images/icon_check.png) no-repeat;
  transform: translateY(-50%);
}
.exam .questions legend {
  font-size: 1rem;
}

.exam .chip-input-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.exam .chip {
  display: inline-block;
  padding: 8px;
  border-radius: 16px;
  margin: 4px;
  background-color: #00c65e;
  color: white;
}

.exam .closebtn {
  margin-left: 8px;
  cursor: pointer;
}

.exam .chip-input {
  flex-grow: 1;
  margin: 4px;
  border: none;
  outline: none;
}

/* ORGANIZATION ADMIN HOME */
.admin .badge {
  background: #00C65E;
  color: white;
  position: absolute;
  right: -2px;
  bottom: -5px;
  padding: 0.15em 0.35em;
  filter: grayscale(0%);
}

.admin .admin-button {
  display: inline-block;
  height: 29px;
  position: relative;
}

.admin.organization .header {
  box-shadow: 0px 20px 40px rgba(71, 86, 122, 0.05);
}
.admin.organization .header input[type="search"] {
  width: 340px;
  height: 47px;
  color: #47567a;
  border-color: #e8e8e8;
}
.admin.organization .header .link-settings {
  padding: 10px;
  border: 1px solid #e8e8e8;
  border-radius: 100%;
}
.admin.organization .home .dropdown-toggle:after {
  margin-left: 0.5em;
}
.admin.organization .home .users-list .table > :not(caption) > * > * {
  padding: 1.25rem;
}
.admin.organization .home .users-list .table > :not(:first-child) {
  border-top: 0;
}
.admin.organization .home .users-list .table thead th {
  font-size: 0.875rem;
  color: #47567a;
}
.admin.organization .home .users-list .table tbody th {
  font-weight: 500;
  color: #47567a;
}
.admin.organization .home .users-list .table tbody a {
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #e5e3e3;
  color: #0d2849;
  padding: 5px 4px;
  border-radius: 100px;
}
.admin.organization .home .users-list .table tbody a + a {
  margin-left: 1rem;
}
.admin.organization .home .users-list .table tbody a.link-user-report:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  /* margin: -0.25rem 0.5rem 0 0; */
  vertical-align: middle;
  background: url(../images/icon_report.png) no-repeat;
  margin-bottom: 5px;
}

a.disabled-icon{
filter: grayscale(100%);
}

.admin.organization .home .users-list .table tbody a.link-group-report:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  /* margin: -0.25rem 0.5rem 0 0; */
  vertical-align: middle;
  background: url(../images/icon_report.png) no-repeat;
  margin-bottom: 5px;
}
.admin.organization .home .users-list .table tbody a.link-user-edit:before, .edit-aggri-icon:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  /* margin: -0.25rem 0.5rem 0 0; */
  vertical-align: middle;
  background: url(../images/icon_edit.png) no-repeat;
  margin-bottom: 5px;
}
.admin.organization .edit-user-button {
  position: relative;
  bottom: 2px;
}

/* EXAM RESULTS REPORT */
.page.report {
  max-width: 75vw;
  width: 90%;
  margin: 0 auto;
}
.page.report .container {
  max-width: 100%;
}
.page.report .header .title {
  font-weight: 300;
  font-size: 0.875rem;
}
.page.report .footer small {
  font-weight: 300;
}
.page.report .main {
  font-size: 0.875rem;
  border-top: 4px solid #00c65e;
}

/* EXAM RESULTS REPORT - COVER PAGE */
.page.report .main.cover {
  border-top: 0;
}
.report .cover .featured-image {
  border-bottom: 8px solid #00c65e;
}

ul.inline-circle-point-Cont {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0;
  margin: 0;
  }
  
  ul.inline-circle-point-Cont li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  }
  ul.inline-circle-point-Cont .circle-point {
      border-radius:50%;
  }
  
  ul.inline-circle-point-Cont p {
  font-size: 10px;
  margin: 0;
  }

.report .cover label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.report .cover label + p {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  color: #0d2849;
}
.report .cover .details {
  margin: 5rem 0 7rem;
}

/* EXAM RESULTS REPORT - SUMMARY RESULTS */
.report .summary figcaption {
  font-family: "gilroy", sans-serif;
  font-weight: 800;
}
.report .summary .figures img {
  padding: 1.5rem;
  border: 1px solid #dde2e5;
}
.report .summary .competencies strong {
  font-family: "gilroy", sans-serif;
  font-weight: 800;
  color: #0d2849;
}

/* EXAM RESULTS REPORT - APPENDIX */
.report .appendix1 strong {
  font-family: "gilroy", sans-serif;
  font-weight: 800;
  color: #0d2849;
}
.report .appendix1 .table-responsive.category {
  margin: 0 2rem;
  max-width: 455px;
}
.report .appendix1 .table-responsive.category td {
  width: 50%;
}
.report .appendix2 figcaption {
  font-family: "gilroy", sans-serif;
  font-weight: 800;
}

/* AGGREGATION MODAL CSS */
#multiple-select .chosen-container.chosen-container-multi, .chosen-container-multi {
  width: 100% !important;
}
.add-aggregation select,
.add-aggregation .chosen-container-multi .chosen-choices {
  padding: 0.75rem 1rem;
}

.accounts form .form-control:focus,
.form-select:focus {
  border-color: #00c65e;
  box-shadow: none;
}

.chosen-container .chosen-results li.highlighted {
  background: #00c65e;
}

#multiple-select .chosen-container-multi .chosen-choices {
  border: 1px solid #ced4da;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  box-shadow: none;
  background-image: none;
}

#multiple-select .chosen-container-multi .chosen-choices li.search-choice {
  background: #ffffff;
}

/* ADD NEW USER MODAL CSS */
.registerNewUser .modal-content {
  border-radius: 12px;
}
.registerNewUser button {
  padding: 0.75rem 1rem;
}

.form-control {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

/* CHOOSE ASSESSMENT TO VIEW MODAL CSS */
.choose-assessment-modal .list-container {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: stretch;
  border-radius: 8px;
}

.choose-assessment-modal .list-option {
  border: solid 1px rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  transition: 0.35s;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-decoration: none;
  color: #0d2849;
}

.choose-assessment-modal .list-option:hover {
  cursor: pointer;
  background: #0d2849;
  color: #fff;
}

/* LOADER CSS */
.site-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0000006b;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.site-loader-cont {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.site-loader-cont div {
  transform-origin: 40px 40px;
  animation: site-loader-cont 1.2s linear infinite;
}
.site-loader-cont div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #ffffff;
}
.site-loader-cont div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.site-loader-cont div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.site-loader-cont div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.site-loader-cont div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.site-loader-cont div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.site-loader-cont div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.site-loader-cont div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.site-loader-cont div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.site-loader-cont div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.site-loader-cont div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.site-loader-cont div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.site-loader-cont div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

.pr-10{
  padding-right:10px;
}


@keyframes site-loader-cont {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* use for exam result */
.custom-report-table th,
.custom-report-table tr {
    background: #ffffff;
    vertical-align: baseline;
    padding: 0.5rem 1rem;
}

.custom-report-table th {
    font-size: 0.875rem;
    color: #47567a;
    padding: 0.5rem 0.5rem;
}

.custom-report-table td {
    font-size: 0.875rem;
    color: #0d2849;
}
/* For printing report */
@media screen, print {
  table.table th.text-white.bg-jade, .bg-midnight, .bg-white {
      color: #fff;
      -webkit-print-color-adjust: exact;
  }
}

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

/* For Exam Question Radio button */
.question input[type=radio]{
  position: absolute;
  visibility: hidden;
}
.question label{
  display: block;
  position: relative;
  padding: 0px 0px 0px 15px;
  margin: 10px auto;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}

.question .checkmark{
  display: block;
  position: absolute;
  border: 5px solid #00c65e;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  top: -0px;
  left: -20px;
  z-index: 5;
  transition: border .25s linear;
  -webkit-transition: border .25s linear;
}

.question .checkmark {
  border: 2px solid #e8e8e8;
}

.question .checkmark::before {
  display: block;
  position: absolute;
	content: '';
  border-radius: 100%;
  height: 15px;
  width: 15px;
  top: 3px;
	left: 3px;
  margin: auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}

.question input[type=radio]:checked ~ .checkmark {
  border: 2px solid #00c65e;
}


.question input[type=radio]:checked ~ .checkmark::before{
  background: #00c65e;
}

.question input[type=radio]:checked ~ label{
  color: #00c65e;
}
ul.circle-point-Cont p {
  font-size: 10px;
  margin: 0;
  line-height: 16px;
}

.clusteredGraph {
  display: flex;
  align-items: center;
}
.clusteredGraph figure {
  min-width: 100%;
}

ul.circle-point-Cont {
  list-style: none;
  padding: 0;
  margin: 0 0 0 10px;
  min-width: 100%;
}
.canvas-container,.competencies {
    margin: auto;
}

.circle-point {
width: 10px;
height: 10px;
margin-right: 15px;
}

ul.circle-point-Cont li {
display: flex;
align-items: center;
margin-bottom: 5px;
}


.togglePassword {
  position: absolute;
  right: 0.9rem;
  top: 1rem;
}

.logout {
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: #0d2849;
}

/* Report Filter Box */
.shadowed-card {
  width: 100%;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0px 12px 24px 0px rgba(221, 226, 229, 0.40);
}

.report-switch-org-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 32px;
  padding-top: 40px;
}

.custom-dropdown-arrow.dropdown-toggle {
  border: none;
  background: transparent;
}

.report-submit-button {
  border: 1px solid #00c65e;
  width: 100%;
  height: 50px;
  background: #00c65e;
  color: white;
  border-radius: 5px;
  margin-top: 14px;
}

.report-submit-button.small {
  border: 1px solid #00c65e;
  width: auto;
  height: 50px;
  background: #00c65e;
  color: white;
  border-radius: 5px;
  min-width: 110px;
  margin-top: 0
}

.reports-filters .dropdown-label,
.reports-filters .demographic-dropdown-label {
  padding-right: 12px;
  width: 100%;
  display: inline-block;
}

.reports-filters .dropdown-label {
  flex-grow: 0;
  flex-shrink: 1;
}

.reports-filters .values-dropdown,
.reports-filters .choose-demographic-type-container {
  border: 1px solid #E8E8E8;
  flex: 1;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 5px;
  position: relative;
  min-height: 65px;
  max-height: 120px;
  background: white;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 12px;
}

.reports-filters .choose-group-by-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: calc(50% - 115px);
}

.reports-filters .choose-group-by-container select {
  border-radius: 5px;
  border: 1px solid #E8E8E8;
  background: #FFF;
  display: flex;
  height: 65px;
  padding: 17px 20px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  max-width: 100%;
}

.reports-filters .values-dropdown:focus-visible,
.reports-filters .choose-demographic-type-container:focus-visible {
  border-color: rgb(232, 232, 232);
}

.reports-filters .choose-value-checkboxes,
.reports-filters .choose-demographic-type-values {
  position: absolute;
  background: white;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 6px 0;
  border-radius: 5px;
  border: 1px solid #E8E8E8;
  box-shadow: 0px 8px 10px 0px rgba(221, 226, 229, 0.40);
  z-index: 9999;
  max-height: 550px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.value-filter-input {
  margin: 4px;
}

.reports-filters .choose-value-checkboxes {
  padding: 12px;
}

.reports-filters .choose-value-checkboxes label {
  margin: 4px 0;
}

.reports-filter .custom-option-selected {
  background-color: #0d2849;
}

.reports-filters .custom-option {
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  padding: 6px 16px;
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  height: auto;
  word-break: break-word;
  white-space: break-spaces;
}

.reports-filters .custom-option:hover {
  background: #E8E8E8;
}

.reports-filters .choose-demographic-type-values {
  right: 0;
  width: 120%;
}

.reports-filters .custom-dropdown-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.reports-filters .filters-values-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.reports-filters .filter-by-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.reports-filters .filter-by-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex: 1;
  margin: 10px 0;
  gap: 16px;
}

.reports-filters .trash-button-placeholder {
  width: 65px;
  height: 65px;
  pointer-events: none;
  background: transparent;
}

.reports-filters .matched-users-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 32px 0;
  margin-bottom: 0;
}

.reports-filters .filter-by-row > * {
  flex: 1;
}

.reports-filters .filter-by-row > h6 {
  flex: 0;
  width: auto;
  min-width: 100px;
}

.reports-filters .choose-demographic-type-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  max-width: calc(50% - 115px);
}

.reports-filters .choose-demographic-type-container select {
  border-radius: 5px;
  border: 1px solid #E8E8E8;
  background: #FFF;
  display: flex;
  height: 65px;
  padding: 17px 20px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  max-width: 100%;
}

.reports-filters .action-container {
  height: 100%;
  flex: 0;
  width: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reports-filters .action-container .trash-button {
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ECF0F1;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.4s;
}

.reports-filters .action-container .trash-button:hover {
  background: #E8E8E8;
}

.reports-filters .add-new-filter {
  border: 1px solid #00c65e;
  width: 100%;
  height: 50px;
  background: transparent;
  color: #00c65e;
  border-radius: 5px;
  margin-top: 14px;
}

.reports-filters .add-new-filter strong {
  font-size: 16px;
}

.reports-filters .add-new-filter .plus-button {
  position: relative;
  bottom: 2px;
  right: 3px;
  display: inline-block;
}

.tables-container-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* TBC table */
.competency-table .table-cell {
  padding: 4px 12px !important;
}

.competency-table .table-row .table-cell:first-of-type {
  border-left: none !important;
}

#export-to-csv {
  border: 1px solid #00c65e;
  height: 50px;
  background: transparent;
  color: #00c65e;
  border-radius: 5px;
  margin-top: 14px;
  margin-left: auto;
  margin-bottom: 16px;
}

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

/* Question Answer Table */
.question-answer-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.question-answer-table .table-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.question-answer-table .header-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
}

.question-answer-table .header-cell {
  padding: 12px 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  border: 1px solid #D9D9D9;
  border-left: none;
  min-width: 50px;
  flex: 1;
}

.question-answer-table .header-cell:first-child {
  border-left: 1px solid #D9D9D9;
}

.question-answer-table .placeholder-row {
  flex: 1;
  display: flex;
  padding: 16px 0;
  border-left: solid 1px #D9D9D9;
}

.question-answer-table .placeholder-table-cell {
  flex: 1;
  display: flex;
  border-left: none !important;
  padding: 16px 0;
  width: 50px;
}

.question-answer-table .placeholder-cell {
  width: 50px;
  min-width: 50px;
  flex: 0;
  padding: 12px 0;
}

.question-answer-table .placeholder-cell.header-cell {
  flex-basis: 52px;
}

.question-answer-table .table-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  border: 1px solid #D9D9D9;
  border-top: none;
  flex-wrap: wrap;
}

.question-answer-table .action-cell {
  width: 50px !important;
  height: 50px;
  flex: 0 !important;
  flex-basis: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: none !important;
  cursor: pointer;
}

.question-answer-table .table-row .table-cell {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
  padding: 0 15px;
  text-align: left;
  border-left: 1px solid #D9D9D9;
}

.question-answer-table .action-cell-image-container {
  width: 49px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.question-answer-table .action-cell-image {
  font-size: 25px;
}

.question-answer-table .hidden-accordion-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background: #F5F7F8;
}

.question-answer-table .hidden-accordion-content.none {
  display: none;
}

.question-answer-table
.hidden-accordion-content-inner-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}

.question-answer-table .hidden-accordion-content
.placeholder-cell {
  height: 48px;
}

.question-answer-table .question-percent-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  border-left: 1px solid #D9D9D9;
}

.question-answer-table .percent-div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  border-left: solid 1px #D9D9D9;
}

.question-answer-table .question-percent-container > div {
  display: flex;
  flex: 1;
  width: calc(33% - 50px);
  padding: 15px;
  border-left: solid 1px #D9D9D9;
}

.question-answer-table .question-percent-container > div:first-child {
  border-left: none;
}

.question-answer-table .hidden-accordion-content-inner-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.question-answer-table .hidden-accordion-content-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}

.question-answer-table .inner-placeholder-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.question-answer-table .inner-placeholder-row > div:not(.placeholder-cell) {
  flex: 1;
  border-left: solid 1px #D9D9D9;
  height: 100%;
  padding: 15px;
}

/* Organizational Dashboard */
.organizational-dashboard {

}

/* Capacity Dashboard */
#chart-loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}

#tables-container #chart-loading-spinner {
  top: 70px !important;
}

.chart-loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#chart-loading-spinner .spinner-border {
  color: #00c65e !important;
}

.chart-loading-spinner .spinner-border {
  color: #00c65e !important;
}

.chart-canvas-container {
  width: 100%;
  height: auto;
  max-height: 450px;
  position: relative;
}

#capacity-dashboard-heat-graph {
  width: 100%;
  height: auto;
  max-height: 450px;
  position: relative;
}

#tables-container {
  position: relative;
}

#tables-container .question-answer-table {
  margin: 30px 0;
  position: relative;
}

#placeholder-instructions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
}

#no-results-instructions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
}

#placeholder-instructions.pm-cam {
  position: static;
  transform: none;
  width: 100%;
  margin-top: 24px;
}

#no-results-instructions.pm-cam {
  position: static;
  transform: none;
  width: 100%;
  margin-top: 24px;
}

.chart-information {
  margin-left: 12px;
  margin-top: 16px;
}

#group-count {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 30px;

}

#group-count strong {
  font-size: 16px;
  color: #0d2849;
}

.capacity-dashboard-header-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.capacity-dashboard-header-row .report-switch-org-row {
  padding: 0;
  margin-top: 20px;
}

/* Capacity Detailed Dashboard */
.capacity-detailed-dashboard .chart-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  position: relative;
  width: 100%;
}

.capacity-detailed-dashboard > .shadowed-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.capacity-detailed-dashboard .chart-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.capacity-detailed-dashboard .action-cell {
  height: auto;
}

.capacity-detailed-dashboard .action-cell-image-container {
  height: 100%;
}

.capacity-detailed-dashboard .question-answer-table .placeholder-cell.header-cell {
  height: auto !important;
}

.question-answer-table .name-cell {
  flex: 2 !important;
}

/* Organizational Dashboard Filter By Component */
.organizational-filter-by {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
}

.organizational-filter-by .project-dropdown {
  border: 1px solid #ccc;
  flex: 1;
  border-radius: 5px;
  position: relative;
  min-height: 50px;
  max-height: 98px;
}

.organizational-filter-by #project-dropdown-header {
  padding: 4px;
  cursor: pointer;
  min-height: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  overflow-y: auto;
  max-height: 98px
}

.organizational-filter-by #project-dropdown-header.chips {
  padding: 4px;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.organizational-filter-by .project-dropdown-options {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  z-index: 1;
  background: #FFF;
  border: 1px solid #E8E8E8;
  border-radius: 5px;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12px
}

.organizational-filter-by .project-dropdown-option {
  padding: 8px 12px;
  cursor: pointer;
}

.organizational-filter-by .project-chip {
  display: inline-block;
  margin: 5px;
  padding: 5px 10px;
  background-color: #F5F7F8;
  color: black;
  border-radius: 3px;
  position: relative;
  padding-right: 20px;
}

.organizational-filter-by .delete-icon {
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

/* Organizational Dashboard */
.organizational-dashboard {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 16px;
}

.organizational-dashboard .organizational-dashboard-card {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  margin-top: 30px;

  border-radius: 20px;
  background: #FFF;
  /* Drop Shadow */
  box-shadow: 0px 12px 24px 0px rgba(221, 226, 229, 0.40);
}

.organizational-dashboard .choose-project-container {
  flex: 1
}

.organizational-dashboard .choose-project {
  border-radius: 5px;
  border: 1px solid #E8E8E8;
  background: #FFF;
  display: flex;
  height: 65px;
  padding: 17px 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.organizational-dashboard .choose-graph-type {
  display: flex;
  height: 65px;
  padding: 7px 4px;
  align-items: center;
  gap: 4px;
  flex: 0;
  flex-direction: row;
  flex-basis: 240px;
  width: 240px;
  border-radius: 5px;
  background: #F5F7F8;
}

.organizational-dashboard .choose-graph-type .graph-toggle-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #F8F8F8;
  border: solid 1px #E8E8E8;
  color: #47567A;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.4s;
  width: 50%;
  height: 100%;
}

.organizational-dashboard .choose-graph-type .graph-toggle-button:hover {
  background: #E8E8E8;
}

.organizational-dashboard .choose-graph-type .graph-toggle-button.active {
  background: #FFF;
  color: black;
}

.organizational-dashboard > .row {
  width: 100%;
}

.organizational-dashboard .chart-container {
  position: relative;
}

.wrapper-overall-sources{
  width: 900px;
  margin:
  auto;
  text-align:
  center;
}

.heading-box{
  padding: 35px 15px;
  border: 2px solid #000;
  width: 80%;
  margin: auto;
  margin-top: 22px;
  box-shadow: 4px 4px 13px 0px #ccc;
  overflow-wrap: break-word;
  border-radius: 13px;
  background: #00c65e;

}
.heading-box h1 {
  margin: 0;
  color: #fff;
}
.people-box {
  padding:0px 20px;
  border: 2px solid #0d2849;
  width: 60%;
  margin: auto;
  margin-top: 20px;
  display:
  flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 13px;
}

.people-box h3{
  margin:0;
  font-size: 14px;
  margin-top: 5px;
}

.people-box .Number{
  padding-top:20px;
  font-size: 25px;
  font-weight: 900;
}
.stats-wrapper{
  width: 100%;
  margin: auto;
}

.stats-row {
  display: flex;
  margin-top: 35px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.stats-chart-holder {
  min-height: 416px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.stats-box {
  border: 2px solid #0d2849;
  padding: 0px 5px;
  min-height: 120px;
  width: 100%;
  justify-content: center;
  border-radius: 23px;
  margin-bottom: 10px;
}
.stats-box-col {
  padding: 30px 20px;
  border: 2px solid #0d2849;
  border-radius: 39px;
}
.stats-box:last-child{
  margin-right:0px;
}
.stats-label {
  min-height: 50px;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 500;
}

.stats-number {
  font-size: 30px;
  font-weight: 600;
  padding: 14px;
  margin: 0;
  padding-top: 0px;
  padding-bottom: 0px;
  font-family: sans-serif;
}
.stats-chart-container{
  border: 2px solid #0d2849;
  padding: 20px;
  margin: 50px 0px;
  border-radius: 28px;
  margin-top: 10px;
}
/* HUMAN CAPITAL DASHBOARD CSS */
.human-capital-dashboard .fw-bold{
  width: 450px;
  display: flex;
  margin:10px 20px;
  height: 126px;
  border: 1px solid #00c65e;
  border-radius: 5px;
  background: #fff;
  box-shadow: 6px 3px 6px 0px #0000001a;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}
.human-capital-dashboard {
  justify-content: center;
  display: flex;
  width: 90%;
  margin: auto;
  position: relative;
  flex-wrap: wrap;
  margin-top: 35px;
}

.human-capital-dashboard .container .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
}

.human-capital-dashboard .fw-bold .btn-text{
  text-decoration:
  none;
  padding: 13px;
  display: block;
  text-align: center;
  font-size: 29px;
  color: #0ca85a;
  /* margin-top: 11px; */
}

.human-capital-dashboard .fw-bold:hover{
background:#0ca85a;
}
.human-capital-dashboard .fw-bold:hover .btn-text{
color:#fff;
}

/* INDIVIDUAL RESOURCE CHART CSS */
.select2 {
  width: 100% !important;
}
.box-dark{
  background-color: #00c65e;
  color:#fff;
  border-color: #00c65e;
}
.individual-score-dashboard .stats-label{
min-height: auto;
}

.stats-text-heading {
font-size: 40px;
font-weight: 900;
}

#back-btn{
  display: flex;
  align-items: center;
  width: max-content;
}

.back-btn svg {
  margin-right: 2px;
} 

/* Comparison Dashboard CSS */
.comparison-container {
  border-top: 1px solid;
  border-left: 1px solid;
  padding: 41px;
  padding-bottom: 0px;
  margin-bottom: 40px;
  border-bottom: 1px solid;
  position: relative;
  border-right: 1px solid;
}
.comparison-container .competencies-label {
  position: absolute;
  left: -5vw;
  transform: rotate(270deg);
  top: 80rem;
}
.maturity {
  text-align: center;
  margin-bottom: -28px;
  font-size: 17px;
  font-weight: 700;
}

/* HUMAN CAPITAL DASHBOARD HOME PAGE CSS */
.human-capital-main-page{
  text-align: left;
  font-size: 3.1rem;
  line-height: 45px;
}
.humen-back-btn{
  color: #00c65e;
  text-decoration: none;
  font-size: 18px;
  display: block;
}
.humen-back-btn:hover{
  color: #0d2849;
}

.user-header {
  color: #00c65e;
  text-decoration: none;
  font-size: 18px;
  display: block;
}
.custom-labels {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.custom-labels ul.circle-point-Cont {
  min-width: 100%;
}
.custom-labels .stats-chart-container {
  min-width: 100%;
}
.back-btn {
  z-index: 999;
}
.services-box {
  padding: 40px;
  border-radius: 40px;
  border: 3px solid #0d2849;
  min-height: 300px;
  height: 100%;
  position: relative;
}
.services-box .content-text{
  min-height: 75px;
}
.services-box.light:hover {
  color: #fff;
  background: #0d2849;
}
.services-box.light:hover .content-heading h3{
  color: #fff;
}
.services-box.light {
  color: #0d2849;
  background: #fff;
}
.services-box .box-btn-container {
    margin-top: 30px;
    position: absolute;
    bottom: 50px;
    right: 0;
    left: 42px;
    text-align: left;
}
.services-box .box-btn {
  background: #00c65e;
  padding: 13px 30px;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
}
.services-box .box-btn i {
  color: #fff;
}
.services-box .box-icons {
  border: 2px solid;
  width: fit-content;
  padding: 10px 12px;
  border-radius: 29px;
  margin: 10px 0px;
}
.services-box.light .box-icons{
  border-color: #47567A
}
.services-box.light .box-btn:hover{
  background:#fff;
  color:#0d2849;
}
.services-box.light .box-btn:hover i{
   color:#0d2849;
}


/* Detailed & Group dropdown CSS */
body .select2-container--default .select2-selection--single .select2-selection__arrow b {
  right: 17px;
  position: absolute;
  top: 12px;
  left: auto;
  width: 0;
  border: solid #343a40;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
body .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  right: 17px;
  position: absolute;
  top: 20px;
  left: auto;
  width: 0;
  border: solid #343a40;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
body .select2-container--default .select2-selection--single {
  padding: .375rem 2.25rem .375rem .75rem;
  height: 37px;
  display: flex;
  align-items: center;
}
#user-selection-div .select2-container{
  position: absolute !important;
}

hr.custom-hr {
  opacity: 1;
  height: 1px;
}

/* view PCMA report button CSS */
.isd-btn-alignment {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

/* For individual dashboard progress bar */
progress#file {
  margin: 0 auto;
}

progress::-webkit-progress-value {
  background: #00c65e;
}

/* fomr-css */
.form-check {
  margin-top: 1rem;
}

/* table sort */
.table-sort-user-list th[role=columnheader]:not(.no-sort) {
	cursor: pointer;
}

.table-sort-user-list th[role=columnheader]:not(.no-sort):after {
	content: '';
	float: right;
	margin-top: 11px;
	border-bottom: none;
	border-width: 4px 4px 0;
	border-style: solid;
	border-color: #404040 transparent;
	visibility: visible;
	opacity: 0.4;
	-ms-user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.table-sort-user-list th[aria-sort=ascending]:not(.no-sort):after {
	border-bottom: none;
	border-width: 4px 4px 0;
}

.table-sort-user-list th[aria-sort]:not(.no-sort):after {
	visibility: visible;
	opacity: 0.4;
}

.table-sort-user-list th[role=columnheader]:not(.no-sort):hover:after {
	visibility: visible;
	opacity: 0.4;
}

.table-sort-user-list thead tr th:before {
  content: '';
  float: right;
  border-width: 0 4px 4px;
  border-style: solid;
  border-color: #404040 #0000;
  visibility: visible;
  opacity: 0.4;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: absolute;
  right: 20px;
  margin-top: 4px;
}

.admin.organization .home .users-list .table thead th {
  position: relative;
  vertical-align: middle;
}
.hide-btn:before, .hide-btn:after {
  display: none;
}


.table-sort-user-list thead tr th[aria-sort="ascending"]:before{
  opacity: 1;
}


.table-sort-user-list thead tr th[aria-sort="descending"]:after{
  opacity: 1 !important;
}

/* Compare Dashboard Styling */
.user-complete-report:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    /* margin: -0.25rem 0.5rem 0 0; */
    vertical-align: middle;
    background: url(../images/exam-report.png) no-repeat;
    margin-bottom: 5px;
}

span.select2-selection.select2-selection--multiple {
    display: none;
}

.checkbox-list label {
    width: 95%;
    vertical-align: top;
}
.static-lagend-container {
  display:flex;
  padding:40px 0px;
  height: fit-content;
  flex-direction: column;
  margin-top: 10px;
}
.lagend-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.lagend-item .lagend-color {
  width: 10px;
  height: 10px;
  background: #ccc;
  margin-right: 8px;
}
.static-lagend-container span {
  font-size: 0.7rem;
}


#compare-dashboard-table-container{
  width: 100%;
  height:100%;
  .dataTables_wrapper{
    overflow-x:auto;
  }
}

.compare-table-flex-box-bottom {
  position:relative; 
  display:flex; 
  flex-direction: row;
  justify-content: space-between;
  width:100%;
}

.compare-table-flex-box-top {
  position:relative; 
  display:flex; 
  flex-direction: row;
  justify-content: space-between;
  width:100%;
}

.dataTables_filter{
  padding:10px;
}

.dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: inherit !important;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 230, 230, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -moz-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -ms-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -o-linear-gradient(top, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear-gradient(to bottom, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);   
}

.dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  color: inherit !important;
  border: 1px solid transparent;
  border-radius: 2px;


}


/* CSS for information symbol in detail individual overview */
.information-symbol{
  background-color: #2f80ed;
  padding: 0px 7px;
  color: white;
  border-radius: 2px;
}
.information-symbol-inside-name{
  background-color: #2f80ed;
  padding: 0px 12px;
  color: white;
  border-radius: 2px;
}

/*user list table*/
/* .user-table{
  width: 1600px;
  overflow-x: scroll;
} */

.box-border-radius{
  border:0.3rem solid #0d2849;
  border-radius:20px;
}


/* For Individual */

.individual-score-dashboard .stats-box {
  border: 3px solid #0d2849;
  padding: 0px 5px;
  min-height: 120px;
  width: 100%;
  justify-content: center;
  border-radius: 2rem;
  margin-bottom: 10px;
}
.individual-score-dashboard .stats-box-col {
  padding: 0.5rem 0.9rem 0.5rem 0.9rem;
  border: 0.25rem solid #0d2849;
  border-radius: 3rem;
}
.individual-score-dashboard .stats-box:last-child{
  margin-right:0px;
}
.individual-score-dashboard .stats-box-header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

.stats-box-col.stats-chart-holder {
  padding: 0rem 0.9rem 0.5rem 0.9rem;
  border: 0.25rem solid #0d2849;
  border-radius: 4rem;
  justify-content: center;
}

.stats-box-col.stats-chart-holder .stats-box {
  border-radius: 3rem;
}
.individual-score-dashboard .stats-bg-dark-label {
  background: #0d2849;
  color: #fff;
  padding: 6% 20px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  margin-top: 15px;
  border-radius: 8px;
  font-size: 17px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: stretch;
}
.individual-score-dashboard .stats-text-content{
  text-align: center;
  height: 8.4rem;
  width: 90%;
  margin: auto;
  font-size: 18px;
  overflow-y: auto;
  padding: 0 10px;
  margin-bottom: 15px;
}
.individual-score-dashboard .stats-text-content p{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}
.individual-score-dashboard .stats-text-content p.read-more{
  display: block;
}
.individual-score-dashboard .chart-box-container{
  border-radius: 5rem;
}

.custom-border-checkbox{
  position: relative;
  padding-left: 28px;
}

.custom-border-checkbox input{
  display: none;
}
.custom-border-checkbox .checkmark {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 22px;
  height: 21px;
  background: #bdbdbd;
  border-radius: 5px;
  border: 2px solid #0d2849;
  top: 1px;
}
.custom-border-checkbox .checkmark::before {
  position: absolute;
  left: 0;
  top: 8%;
  height: 72%;
  width: 2.5px;
  background-color: #0d2849;
  content: "";
  transform: translateX(13px) rotate( 
-45deg);
  transform-origin: left bottom;
}
.custom-border-checkbox .checkmark::after {
  position: absolute;
  left: -5px;
  bottom: 3.2px;
  height: 2.5px;
  width: 72%;
  background-color: #0d2849;
  content: "";
  transform: translateX(11px) rotate( 
-45deg);
  transform-origin: left bottom;
}
.custom-border-checkbox input:checked ~ .checkmark {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 22px;
  height: 21px;
  background: #00c65e;
  border-radius: 5px;
  border: 2px solid #0d2849;
}

.custom-border-checkbox input:checked ~ .checkmark::before {
  position: absolute;
  left: 0;
  top: 45%;
  height: 33%;
  width: 2.5px;
  background-color: #0d2849;
  content: "";
  transform: translateX(7px) rotate( 
-45deg);
  transform-origin: left bottom;
}
.custom-border-checkbox input:checked ~ .checkmark::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 2.5px;
  width: 59%;
  background-color: #0d2849;
  content: "";
  transform: translateX(8px) rotate( 
-45deg);
  transform-origin: left bottom;
}
.stats-form-row {
  margin: 10px 20px 10px 50px;
}
/* Card Border with radius */
.card-border{
  border-radius: 40px;
  border: 3px solid #0d2849;
}

/* Custom Sort */
span.custom-sort {
  position: relative;
  margin-left: 15px;
  top: -7px;
}

span.custom-sort i {
  position: absolute;
}
.user-header-col {
  display: flex;
  align-items: center;
  align-content: center;
  line-height: 1.2;
}
.admin.organization .home .users-list .table thead th:before,.admin.organization .home .users-list .table thead th:after {
  display: none;
}


/* Recommendation Developmental Box CSS */
.recommendation-box{
  border-style: groove;
}
.recommendation-heading{
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 500 ;
}

.border-box {
  border: 3px solid #0d2849;
  border-radius: 22px;
  position: relative;
  padding: 30px 15px;
  margin-right: 10px;
  min-height: 500px;
  height: 95%;
  margin-top: 31px;
  margin-bottom: 73px;
}
.border-box-label {
  color: #fff;
  background: #0d2849;
  width: fit-content;
  padding: 5px 20px;
  position: absolute;
  top: -36px;
  left: 30px;
}
.border-box-footer {
  position: absolute;
  bottom: 20px;
}
.border-box input {
  margin-right: 10px;
  margin-top: 4px;
}

/*Fixed height paragraph*/
.report-summary .report-chart-description {
  min-height: 170px;
  overflow: hidden;
}


.group-report-summary .group-report-chart-description {
  min-height: 140px;
  overflow: hidden;
}

.indv-user-heading h3{
  font-size: 2.3rem;
}


.custom-rounded-container {
  width: 39%;
}

.one-point-two-inch{
margin-top: 115.2px !important;
}

.one-point-two-inch-with-graph{
  margin-top: 60.2px !important;
}

.users-list table td,.users-list table th{
  border: 1px solid #ccc;
}

.users-list table thead th{
  font-size: 0.90rem !important;
}

.users-list table td{
  font-size: 0.9rem;
}

input#searchInput {
  font-weight: 700;
}

.overall-score-chart-cols h3 {
  font-size: 28px;
}
.individual-resource-view-custom-h3 {
  min-height: 4rem;
}

/*For Certification Container*/
.certifications-txt-cont {
  height: 7.1vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certifications-txt {overflow: hidden;}

.certifications-txt h3 {
  overflow-wrap: anywhere;
  line-height: 1.02;
  width: 80%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
}

.text-center.py-3.certifications-txt-cont.\.certifications-txt-cont-height {
  align-items: flex-start;overflow-y: scroll;
}

.cover {
  background: var(--ffffff, #FFF);
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
}

.cover-container {
  position: relative;
  display:flex; 
  flex-direction: column;
  justify-content: space-between;
  height:100vh;
  overflow:hidden;
}

.cover-title-text-box {
  display:flex;
  flex-direction: column;
  align-items: start;
}

.cover-logo-container {
  width: 326.131px;
  height: 65.388px;
  display: flex;
  flex-direction: row;
}

.green-banner {
  background: linear-gradient(to bottom, #5ED697 70%, rgba(19, 183, 97, 0.50) 100%);
  height: 48vh;
  width: 100%;
  position:absolute;
  z-index: 100;
}

.green-banner-container {
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding:50px;
  height:100%;
}

.green-banner-text-container {
  display: flex;
  width: 904px;
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 20px;
}

.green-banner-text {
  color: var(--1-a-355-b, #1A355B);
  font-size: 86px;
  font-family: 'gilroy-light';
  line-height: 80px;  
}

.green-banner-text-big {
  color: var(--1-a-355-b, #1A355B);
  font-size: 96px;
  font-family: 'gilroy';
  line-height: 100px;  
}


.logo-mini-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 10px;
}


.cover-content {
  display: flex;
  flex-direction: row;
  height:100%;
}

.cover-image-container {
  position:relative;
  display:flex;
  display:block;
  flex-direction: column;
  justify-content: end;
  flex-shrink: 0; 
  width:100%;
  height: 100%;
  overflow: hidden;
  background: lightgray 50%; 

}

.cover-background-image-2 {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  bottom: 0px;
  background-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.cover-background-image-2 img{  
  opacity: 0.1;
}

.cover-background-image-1 {
  position: relative;
  display:block;
  width: 100%;
  height: 100%;
}

.cover-background-image-1 img{  
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    object-fit: cover;

}

.cover-footer {
  background-color: #fff;
  box-shadow: 0px 20px 40px rgba(71, 86, 122, 0.05);
  display:block;
}

.cover-footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-right: 70px;
  margin-left: 70px;
}

.cover-footer-minicontainer {
  display:flex;
  flex-direction: row;
  align-items: center;
  min-width: 120px;
  color: var(--1-a-355-b, #1A355B);
  font-size: 12px;
  font-family: 'gilroy-light';
  letter-spacing: 1.2px;
}

.cover-footer-item-light {
  padding: 5px;
  font-size: 12px;
  font-family: 'gilroy-light';
  line-height: 14.06px;
}

.cover-footer-item{
  padding: 5px;
}

.cover-footer-item-bold {
  padding: 5px;
  font-size: 20px;
  font-family: 'gilroy-bold';
  line-height: 23.44px;
}

.cover-footer-column {
  display: flex;
  flex-direction: column;
  width:100%;
}

.cover-footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height:60px;
  border-radius: 60px;
  border: 1px solid var(--13-b-761, #13B761);  
}


.cover-column {
  display: flex; 
  flex-direction: column;
  align-items: start;
  margin-right: 300px;
}


.scroll-snap {
  scroll-snap-align: start;
}

.canvas_div_pdf {
  scroll-snap-type: y mandatory;
}

.page-break {
  margin-top: 50px;
  page-break-before: always;

}

.inroduction-page-container {
  scroll-snap-align: start;
  width: 100%;
  height:100vh;
  padding: 50px;
  margin-bottom: 200px;
}

.introduction-flex-box {
  display:flex;
  position:relative;
  flex-direction: column;
  align-items: center;
  height: 100%; 
  width: 100%;
  top:200px;
}

.introduction-title {
  display:block;
  font-family: 'gilroy';
  font-size: 74px;
  line-height: 80px;
  width:100%;
}
.introducion-row {
  display:flex;
  justify-content: center;
  width:100%;
}

.margin-50 {
  margin:50px;
  width:100%;
}

.introduction-text-area {
  display:block; 
  position:relative;
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;  
}

.introduction-text-area ol li{
  font-family: 'gilroy-medium';
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;    
}

.introduction-text-area ul li{
  font-family: 'gilroy-regular';
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
}

.table-of-contents-link {
  color:#00c65e
}

.table-of-contents-link:hover{
  color:#000000
}

.table-of-contents-title {
  display:block;
  font-family: 'gilroy-bold';
  font-size: 64px;
  line-height: 80px;
  width:100%;  
}

.table-of-contents-text-area {
  display:block;
  width:100%
}

.table-of-contents-outer-list-elements li {
  display:flex;
  font-family: 'gilroy-regular';
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  color:#00c65e;
}

.table-of-contents-inner-list-elements li {
  display:flex;
  justify-content: space-between;
  font-family: 'gilroy-medium';
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color:#00c65e;  
}

.table-of-contnts-flex{
  display:flex; 
  flex-direction: column;
  justify-content: space-between;
  width: 90%;
}

@media only screen and (max-width: 1800px) {
  .green-banner-text {
    font-size: 46px;
  }
  .green-banner-text-big{
    font-size: 66px;
  }  
  .green-banner-text-container {
    width: 500px;
  }  
}

@media only screen and (max-width: 1124px) {

  .cover-column {
    margin-right: 0;
  }
}

@media only screen and (max-height:875px) {
  .cover-logo-container{
    width:200px;
    height: 44px;
  }
  
}

.pdf-page-mini{
  .card-body {
    width:600px;
  }
}

.pdf-page {
  width: 952.39px;   
  height: 1346px;
  page-break-after: always;
  padding-bottom: 50px;

  .pdf-col {
    width: 100%;
    margin-top: 100px;
  } 
    
  .pdf-position {
    display: flex;
    align-items: center;
    justify-content: start;
  }

  .pdf-page-mini{
    .card {
      width:600px !important;
    }


    .mobile-chart-style .static-lagend-container {
      max-width: 75%;
      margin: 0px auto 20px auto;
      flex-direction: row;
      flex-wrap: wrap;
    }
    .mobile-chart-style .lagend-item {
      width: 50%;
    }
    .spider-chart-mob-spc {
      margin-bottom: 60px;
    }
  
    .report-table-styling ul {
      padding-left: 15px;
    }
    .report-table-styling th, .report-table-styling td {
      font-size: 12px;
    }
    .humen-back-btn {
      font-size: 14px;
    }
    .report-table-styling th, .report-table-styling td {
      font-size: 9px;
    }
  }

  .pdf-chart-fix {
    
    .chartjs-size-monitor {
      position: inherit !important;
    }
    .chartjs-size-monitor-expand {
      position: inherit !important;
    }
    .chartjs-size-monitor-shrink {
      position: inherit !important;
    }
  }
  .green-banner {
    .green-banner-container{
      .cover-column {
        flex-direction: row !important;
        .cover-logo-container {
          display: block;
        }
      }
    }
  }
}  

.mb-50{
  margin-bottom: 200px;
}

.padding-box{
  display:flex;
  padding: 100px;
}

.loading-page-container{
  display:block; 
  width:100%; 
  height:100vh;
  overflow: hidden;
  position: sticky;
  top:0;
  z-index: 1000;
  background-color: #fff;
}

.pdf-progress-text {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #000;
  font-family: 'gilroy-regular';
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
}

.pdf-progress-container {
  width: 100%;
  height: 20px;
  background-color: #f1f1f1;
  border-radius: 10px;
  width:100%;
}

.pdf-progress-bar {
  height: 100%;
  width:0.5%;
  background-color: #4CAF50;
  border-radius: 10px;
  transition: width 0.5s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

/* Add gradient effect to the progress bar */
.pdf-progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0.8;
  transition: opacity 0.5s;
  z-index: -1;
}

/* Adjust the gradient effect when progress increases */
.pdf-progress-bar:hover::before {
  opacity: 1;
}

/* Add text inside the progress bar */
.pdf-progress-bar::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
}

.loading-invisible{
  display: none;
}


/* Hierarchy View */

.hierarchy-tree {
  margin-top: 20px;
}

.title-header {
  padding-left: 20px;
}

.tf-tree {
  width: 100%;
}

.tf-nc {
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f7f7f7;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;  
  position: relative;
  min-width: 150px;
  min-height: 100px;
}

.tf-tree .tf-nc, .tf-tree .tf-node-content {
  padding: 0;
}

.tree-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.tree-row-green {
  width: 100%;
  display:flex;
  justify-content: center;
  background-color:#00c65e;
  min-height: 50px;

}

.tree-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.tree-row-container {
  padding: 5px;
  opacity: 1;
  font-family: "gilroy-medium";
}

.hierarchy-container {
  width: auto;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
}

.hierarchy-wrapper {
  height: 100%;
  padding: 20px;
}

.tf-tree {
  padding: 20px;
}


.nav-name {
  margin-right: 25px;
}
/* User Guide Styling */

.user-guide-blurple-banner {
  width: 100%;
  display:block; 
  padding: 20px 20px 20px 0;
  background-color: #F0BCFE;
}

.user-guide-blue-banner {
  width: 100%;
  display:block; 
  padding: 20px 20px 20px 0;
  min-height: 40px;
  background-color: #2f80ed;
  color: #FFF
}

.user-guide-blurple-line-up {
  width: 100%;
  display:block;
  padding-bottom: 20px;
  border-top: 2px solid purple;
  color: purple
}

.user-guide-blurple-line-up-dashed {
  width: 100%;
  display:block;
  padding-bottom: 20px;
  margin: 20px 0 20px 0;
  border-top: 2px dashed purple;
  color: purple  
}

.user-guide-container {
  width: 100%;
  padding: 20px; 
}

.user-guide-wrapper {
  width:100%; 
  display:flex;
  justify-content: center;
  align-items: center;
}

.user-guide-wrapper-col {
  width:100%; 
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.padding-15 {
  padding: 15px;
}

.padding-5 {
  padding: 5px;
}


.user-guide-col {
  width: 50%;
  min-height: 400px;
  display:flex; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.user-guide-vertical-line {
  border-right: 2px solid purple;
}

.user-guide-box {
  padding: 20px;
  margin: 20px;
  border: 1px solid #000;
}

.user-guide-table-of-contents {
  border-right: 1px solid #ccc;
  padding: 20px;
  width: 200px;
  float: left;
}

.user-guide-table-of-contents h2 {
  margin-top: 0;
}

.user-guide-table-of-contents ul {
  list-style-type: none;
  padding: 0;
}

.user-guide-table-of-contents li {
  margin-bottom: 10px;
}

.user-guide-table-of-contents a {
  text-decoration: none;
  color: #333;
}

.user-guide-table-of-contents a:hover {
  color: #007bff;
}

.user-guide-content {
  margin-left: 220px; /* To create space for the TOC */
  padding: 20px;
}

.user-guide-content h1 {
  margin-top: 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.user-guide-link {
  color: #00c65e;
}

.m-50 {
  height:100px;
  margin: 50px
}

.user-guide {
  width: 100%;
  max-width: 850px;
}

.user-guide-small {
  width: 100%;
  max-width: 850px;
}

.capacity-dashboard-flex-row {
  display: flex;
  width: 100%;
}

.capacity-dashboard-label {
  padding: 10px
}



@media only screen and (max-width: 1680px) {
  .user-guide-small {
    width: 50%;
    max-width: 425px;
  }
}

.admin-error-message-container {
  display:flex;
  width:100%;
  height: auto;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
  padding: 10px 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #721c24;  
}

.admin-error-message {
  display: block;
  width: 100%;
  padding: 20px;
}


.capital-dashboard-error-message {
  display:none;
  text-align: center;
  background-color: #f44336; /* Red background color */
  color: white; /* White text color */
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

/* Resposnive Report CSS Start */

@media only screen and (max-width: 1024px) {
  .page.report {
      max-width: 100%;
  }
  .one-point-two-inch {
    margin-top: 50px !important;
  }
  .report .cover label + p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .report-header {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  img.site-logo-bottom {
    max-width: 120px;
  }
}


@media only screen and (max-width: 992px) {
  .mobile-chart-style .static-lagend-container {
    max-width: 75%;
    margin: 0px auto 20px auto;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .mobile-chart-style .lagend-item {
    width: 50%;
  }
  .spider-chart-mob-spc {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .report-table-styling ul {
    padding-left: 15px;
  }
  .report-table-styling th, .report-table-styling td {
    font-size: 12px;
  }
  .humen-back-btn {
    font-size: 14px;
  }
}

@media only screen and (max-width: 400px) {
  .report-table-styling th, .report-table-styling td {
    font-size: 9px;
  }
}

/* Resposnive Report CSS End */