@import './iconFonts.css';
@import url("https://fonts.googleapis.com/css?family=Didact+Gothic|Merriweather:400,700&display=swap");
.dev-plan {
  min-height: 750px;
}
.dev-plan textarea {
  border: 0;
  color: #262626;
  min-height: 100px;
  padding: 5px;
  width: 100%;
}
.dev-plan textarea::-webkit-input-placeholder {
  font-style: italic;
}
.dev-plan textarea::-ms-input-placeholder {
  font-style: italic;
}
.dev-plan textarea::placeholder {
  font-style: italic;
}
.dev-plan textarea:not(:disabled) {
  border-bottom: 2px solid #758587;
}
.dev-plan textarea:disabled {
  background: transparent;
}
.dev-plan .goals {
  display: flex;
  flex-direction: column;
}
.dev-plan .goals h3 {
  color: #385659;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 15px 0;
  padding: 0;
  text-transform: capitalize;
}
.dev-plan .goals h5 {
  font-size: 10px;
  font-weight: 700;
  margin: 0 0 15px 0;
  padding: 0;
  text-transform: uppercase;
}
.dev-plan .goal-delete {
  font-size: 30px;
  height: 25px;
  position: absolute;
  right: 30px;
  width: 20px;
}
.dev-plan .goal-card {
  border-radius: 5px;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.278);
  color: #262626;
  margin-bottom: 60px;
  max-width: 1035px;
  padding: 30px;
  position: relative;
}
.dev-plan .upper-content {
  display: flex;
  flex-wrap: wrap;
  margin-right: 50px;
  margin-top: -30px;
}
.dev-plan .upper-content > * {
  margin-top: 30px;
}
.dev-plan .content-left {
  flex-grow: 9999;
  padding-right: 30px;
  flex-basis: 440px;
  display: flex;
  flex-direction: column;
}
.dev-plan .content-left textarea {
  flex-grow: 1;
}
.dev-plan .content-right {
  display: flex;
  flex-basis: 200px;
  flex-direction: column;
  flex-grow: 1;
  flex-wrap: wrap;
  margin-top: 0;
  min-width: 240px;
}
.dev-plan .content-right > * {
  margin-top: 30px;
}
.dev-plan .content-right .btn {
  flex-basis: 200px;
  margin-right: 30px;
  margin-bottom: 28px;
}
.dev-plan .content-right .date-container {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}
.dev-plan .content-right .date-container:last-child .edit-field {
  margin-bottom: 0;
}
.dev-plan .content-right .date-container .date-group {
  display: inline-block;
  flex-grow: 1;
}
.dev-plan .content-right .date-container .edit-field {
  margin: 0;
}
.dev-plan .content-right .calendar-btn {
  max-width: 70px;
  text-align: center;
  padding: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 0.75rem;
  font-size: 0.75rem;
  margin: 0 0 0 10px;
}
.dev-plan .goal-activities {
  display: flex;
  flex-wrap: wrap;
}
.dev-plan .activity-section {
  margin-top: 50px;
}
.dev-plan .activity {
  background-color: #F6F6F6;
  border-radius: 5px;
  margin: 0 15px 15px 0;
  min-width: 200px;
  padding: 15px;
  position: relative;
}
.dev-plan .activity .edit-field:last-child {
  margin-bottom: 0;
}
.dev-plan .activity .activity-content {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-top: -15px;
}
.dev-plan .activity .activity-content > * {
  margin-right: 15px;
  margin-top: 15px;
}
.dev-plan .activity .activity-left {
  width: 350px;
}
.dev-plan .activity .activity-right {
  max-width: calc(100% - 15px);
  width: 350px;
}
.dev-plan .activity .activity-dates {
  margin-bottom: 28px;
  margin-right: -15px;
}
.dev-plan .activity .activity-dates .edit-field {
  margin-bottom: 0;
  margin-right: 15px;
  margin-top: 15px;
  min-width: 150px;
  width: calc(100% - 15px);
}
.dev-plan .new-activity {
  text-transform: capitalize;
}
.dev-plan .new-activity.disabled {
  display: none;
}
.dev-plan .delete-activity {
  background-color: #758587;
  border-radius: 100%;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.278);
  color: white;
  cursor: default;
  padding: 2px;
  position: absolute;
  right: -5px;
  top: -5px;
}
.dev-plan .delete-activity:not(.disabled) {
  cursor: pointer;
}
.dev-plan .delete-activity.disabled {
  display: none;
}
.dev-plan .activity-resource {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.dev-plan .edit-field, .dev-plan textarea {
  font-size: 16px;
}
.dev-plan .edit-field {
  background-color: white;
  cursor: default;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  transition: background-color 0.35s;
  width: 100%;
}
.dev-plan .edit-field:not(.disabled) {
  border-bottom: 2px solid #758587;
  cursor: pointer;
  transition: background-color 0.35s;
}
.dev-plan .edit-field:not(.disabled):hover {
  background-color: #dddddd;
}
.dev-plan .edit-field:not(.disabled):hover .delete-button {
  opacity: 1;
}
.dev-plan .edit-field .editable, .dev-plan .edit-field .editable-wrap {
  width: 100%;
}
.dev-plan .edit-field .editable {
  padding: 5px;
}
.dev-plan .edit-field select {
  height: 35px;
  width: 100%;
}
.dev-plan .goal-complete {
  color: #55951B;
  font-weight: 700;
}
.dev-plan .editable-empty, .dev-plan .editable-empty:hover, .dev-plan .editable-empty:focus {
  color: #758587;
}
@media (max-width: 834px) {
  .dev-plan .print-button {
    display: none;
  }
}
.dev-plan .activity-content > *,
.dev-plan .goal {
  page-break-inside: avoid;
}

@media print {
  .dev-plan textarea {
    height: 200px !important;
  }
  .dev-plan .activity-left,
  .dev-plan .activity-right,
  .dev-plan .activity {
    width: 100% !important;
    max-width: unset !important;
  }
  .dev-plan .upper-content {
    display: block !important;
    margin-right: 0 !important;
  }
  .dev-plan .upper-content .content-left {
    padding: 0 !important;
  }
  .dev-plan .activity {
    background-color: unset !important;
  }
  .dev-plan .delete-activity,
  .dev-plan .complete-goal,
  .dev-plan .new-goal,
  .dev-plan .share-button,
  .dev-plan .goal-delete,
  .dev-plan .new-activity,
  .dev-plan .print-button {
    display: none !important;
  }
}
.dev-plans .page-header {
  align-items: flex-end;
  color: white;
  display: flex;
  height: 140px;
  margin-bottom: 50px;
  padding-bottom: 5px;
  padding-left: 20px;
  position: relative;
  text-transform: capitalize;
}
.dev-plans .page-header h1 {
  padding: 0;
  margin: 0;
}
.dev-plans .page-header .section-icon-wrap {
  position: absolute;
  transform: translateY(160px) scale(0.4);
  right: 0px;
}
@media (max-width: 833.98px) {
  .dev-plans .page-header {
    display: none;
  }
}
.dev-plans .page-content {
  padding: 0 20px;
  max-width: 800px;
}
@media (max-width: 833.98px) {
  .dev-plans .page-content {
    padding: 0 20px;
    padding-top: 40px;
  }
}
.dev-plans .section-header {
  align-items: center;
  border-radius: 5px;
  display: flex;
  font-size: 24px;
  line-height: 40px;
  min-height: 50px;
  padding: 0 10px;
  text-transform: capitalize;
}
.dev-plans h1, .dev-plans h2 {
  padding: 0;
  margin: 0;
}
.dev-plans h2 {
  margin-bottom: 15px;
}
.dev-plans .page-content {
  max-width: 1035px;
}
.dev-plans .content {
  padding-left: 20px;
}
.dev-plans .mentor-state {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  background-color: #385659;
  color: white;
}
.dev-plans .mentor-state .icon-right_arrow {
  font-size: 16px;
  transform: rotate(90deg);
}
.dev-plans .mentor-state .icon-right_arrow.open {
  transform: rotate(-90deg);
}
.dev-plans .section-header {
  margin-bottom: 20px;
}
.dev-plans .share-row {
  display: flex;
  justify-content: space-between;
}
.dev-plans .share-row .name {
  text-transform: capitalize;
}

.pick-suggest-modal .modal-dialog {
  max-width: 1000px;
}
.pick-suggest-modal .modal-dialog a {
  text-decoration: underline;
}
.pick-suggest-modal .modal-dialog thead {
  font-weight: 900;
}
.pick-suggest-modal .modal-dialog td {
  vertical-align: top;
}
.pick-suggest-modal .modal-dialog .pick-head-cat,
.pick-suggest-modal .modal-dialog .pick-head-high-low,
.pick-suggest-modal .modal-dialog .pick-high-low,
.pick-suggest-modal .modal-dialog .pick-select {
  padding: 20px 10px;
}
.pick-suggest-modal .modal-dialog .pick-high-low, .pick-suggest-modal .modal-dialog .pick-cat {
  text-transform: capitalize;
}
.pick-suggest-modal .modal-dialog .pick-head-cat,
.pick-suggest-modal .modal-dialog .pick-head-high-low {
  padding-top: 0;
  padding-bottom: 0;
}
.pick-suggest-modal .modal-dialog .pick-head-high-low {
  width: 120px;
}
.pick-suggest-modal .modal-dialog .pick-head-desc {
  padding: 0;
}
.pick-suggest-modal .modal-dialog .pick-desc {
  padding: 20px 0;
  line-height: 1.5em;
}
.pick-suggest-modal .modal-dialog .pick-title {
  font-weight: 600;
  font-size: 1.05em;
}

@media print {
  .page-content {
    max-width: unset !important;
  }
}
.participate-v2 .section-header {
  align-items: center;
  border-radius: 5px;
  display: flex;
  font-size: 24px;
  line-height: 40px;
  min-height: 50px;
  padding: 0 10px;
  text-transform: capitalize;
}
.participate-v2 .item-row {
  padding-bottom: 0;
}
.participate-v2 .item-row .item-row-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-left: 15px;
  position: relative;
  text-transform: capitalize;
}
.participate-v2 .item-row .item-row-header .item-actions {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 265px;
}
.participate-v2 .item-row .item-row-header .item-actions > * {
  flex-shrink: 0;
}
@media (max-width: 833.98px) {
  .participate-v2 .item-row .item-row-header .item-actions {
    justify-content: flex-start;
  }
  .participate-v2 .item-row .item-row-header .item-actions .icon-right_arrow {
    display: none;
  }
}
.participate-v2 .item-row .item-row-header .item-header-clickable {
  cursor: pointer;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}
@media print {
  .participate-v2 .item-row .item-row-header .item-actions {
    display: none !important;
  }
}
.participate-v2 .item-row.subsection {
  border-top-width: 1px;
  border-top-style: solid;
}
.participate-v2 .item-row.subsection.open .item-row-header {
  background-color: #F6F6F6;
}
.participate-v2 .item-row.subsection.open .icon-right_arrow {
  transform: rotate(-90deg);
}
.participate-v2 .item-row.subsection.open .item-row-content {
  display: flex;
}
.participate-v2 .item-row.subsection.closed .item-row-content {
  display: none;
}
.participate-v2 .item-row.subsection:last-child {
  margin-bottom: 50px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.participate-v2 .item-row.subsection .icon-right_arrow {
  color: #758587;
  margin: 0 30px;
  transform: rotate(90deg);
}
.participate-v2 .item-row .item-row-header .item-buttons {
  align-items: center;
  border-right-width: 1px;
  border-right-style: solid;
  display: flex;
  height: 90px;
  padding-right: 30px;
}
.participate-v2 .item-row .item-row-header .item-buttons button {
  z-index: 1;
}
.participate-v2 .item-row .item-row-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  margin-top: 40px;
  padding-left: 15px;
}
.participate-v2 .item-row .item-row-content scorebar {
  margin-right: 25px;
  flex-grow: 1;
}
.participate-v2 .item-row .item-row-content .description-row {
  flex-basis: 400px;
  flex-grow: 5;
  padding: 0;
}
.participate-v2 .item-row .sub-desc-table {
  margin-top: 20px;
}
.participate-v2 .item-row .sub-desc-table td {
  padding-top: 10px;
  vertical-align: unset;
}
.participate-v2 .item-row .sub-desc-table td:not(:last-child) {
  padding-right: 10px;
}
@media print {
  .participate-v2 .item-row.subsection.closed .item-row-content {
    display: block !important;
  }
  .participate-v2 .item-row .item-buttons {
    display: none !important;
  }
}
.participate-v2 .req-feedback {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  background-color: #385659;
  color: white;
  padding-right: 15px;
}
.participate-v2 .req-feedback .icon-right_arrow {
  font-size: 16px;
  transform: rotate(90deg);
}
.participate-v2 .req-feedback .icon-right_arrow.open {
  transform: rotate(-90deg);
}
.participate-v2 .feedback-top {
  display: flex;
  flex-wrap: wrap;
}
.participate-v2 .feedback-top > * {
  flex-basis: 400px;
  flex-grow: 1;
}
.participate-v2 .feedback-top > *:first-child {
  margin-right: 30px;
}
.participate-v2 .feedback-top > * form > * {
  margin-bottom: 15px;
}
.participate-v2 .content {
  max-width: 1250px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 833.98px) {
  .participate-v2 .content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.participate-v2 .nav-tabs {
  padding-left: 15px;
  font-size: 24px;
  margin-bottom: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-width: 2px;
}
@media (max-width: 833.98px) {
  .participate-v2 .nav-tabs {
    border: 0;
    padding: 0;
    text-align: center;
  }
}
.participate-v2 .nav-item {
  margin-bottom: -2px;
}
.participate-v2 .nav-item:not(:first-child) {
  margin-left: 4px;
}
@media (max-width: 833.98px) {
  .participate-v2 .nav-item {
    margin-bottom: 20px;
    width: 100%;
  }
  .participate-v2 .nav-item:not(:first-child) {
    margin-left: 0;
  }
}
.participate-v2 .nav-link {
  border-left: 0;
  border-right: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-width: 2px;
  padding-left: 20px;
  padding-right: 20px;
  min-width: 170px;
  font-size: 24px;
}
.participate-v2 .nav-link.moral {
  background-color: rgba(246, 223, 166, 0.5);
  border-bottom-color: #EEC04F;
  border-top-color: transparent;
  color: #EEC04F;
}
@media (max-width: 833.98px) {
  .participate-v2 .nav-link.moral {
    border-color: #EEC04F;
  }
}
.participate-v2 .nav-link.self {
  background-color: rgba(200, 217, 165, 0.5);
  border-bottom-color: #92B54D;
  border-top-color: transparent;
  color: #92B54D;
}
@media (max-width: 833.98px) {
  .participate-v2 .nav-link.self {
    border-color: #92B54D;
  }
}
.participate-v2 .nav-link.relationship {
  background-color: rgba(237, 201, 171, 0.5);
  border-bottom-color: #DD955A;
  border-top-color: transparent;
  color: #DD955A;
}
@media (max-width: 833.98px) {
  .participate-v2 .nav-link.relationship {
    border-color: #DD955A;
  }
}
.participate-v2 .nav-link.team {
  background-color: rgba(175, 215, 225, 0.5);
  border-bottom-color: #62B0C4;
  border-top-color: transparent;
  color: #62B0C4;
}
@media (max-width: 833.98px) {
  .participate-v2 .nav-link.team {
    border-color: #62B0C4;
  }
}
.participate-v2 .nav-link.leader {
  background-color: rgba(210, 182, 206, 0.5);
  border-bottom-color: #A56F9E;
  border-top-color: transparent;
  color: #A56F9E;
}
@media (max-width: 833.98px) {
  .participate-v2 .nav-link.leader {
    border-color: #A56F9E;
  }
}
.participate-v2 .nav-link.team-self {
  background-color: rgba(175, 215, 225, 0.5);
  border-bottom-color: #62B0C4;
  border-top-color: transparent;
  color: #62B0C4;
}
@media (max-width: 833.98px) {
  .participate-v2 .nav-link.team-self {
    border-color: #62B0C4;
  }
}
.participate-v2 .nav-link.active {
  background-color: unset;
  border-width: 2px;
  border-style: solid;
  font-weight: 600;
  border-bottom-color: white !important;
}
.participate-v2 .nav-link.active.moral {
  border-color: #EEC04F;
}
.participate-v2 .nav-link.active.self {
  border-color: #92B54D;
}
.participate-v2 .nav-link.active.relationship {
  border-color: #DD955A;
}
.participate-v2 .nav-link.active.team {
  border-color: #62B0C4;
}
.participate-v2 .nav-link.active.leader {
  border-color: #A56F9E;
}
.participate-v2 .nav-link.active.team-self {
  border-color: #62B0C4;
}
@media (max-width: 833.98px) {
  .participate-v2 .nav-link {
    border-radius: 5px;
    border-style: solid;
    border-width: 2px;
  }
  .participate-v2 .nav-link.active {
    border-bottom-color: unset !important;
  }
}
.participate-v2 .request-feedback-section form label {
  color: #385659;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.participate-v2 .request-feedback-section form input {
  border-radius: 5px;
  height: 50px;
}
.participate-v2 .request-feedback-section .section-header {
  margin-bottom: 20px;
}
.participate-v2 .request-feedback-section .form-group {
  margin-bottom: 15px;
}
.participate-v2 .request-feedback-section .feedback-cards {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -30px;
}
.participate-v2 .request-feedback-section .feedback-cards .feedback-card {
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.278);
  margin-bottom: 30px;
  min-height: 160px;
  overflow: hidden;
  padding: 30px 35px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 290px;
}
.participate-v2 .request-feedback-section .feedback-cards .feedback-card:not(:last-child) {
  margin-right: 30px;
}
.participate-v2 .request-feedback-section .feedback-cards .feedback-card h3 {
  padding: 0;
  margin: 0;
}
.participate-v2 .request-feedback-section .feedback-cards .feedback-card .icon-assessment_bullet_done {
  color: #55951B;
  font-size: 40px;
}
.participate-v2 .assessment-header {
  align-items: flex-end;
  color: white;
  display: flex;
  min-height: 140px;
  margin-bottom: 50px;
  padding-bottom: 5px;
  padding-left: 20px;
  position: relative;
  text-transform: capitalize;
}
.participate-v2 .assessment-header h1 {
  margin: 0;
  padding: 0;
}
.participate-v2 .section-header {
  margin-bottom: 40px;
  padding-left: 15px;
}
.participate-v2 .section-desc {
  margin-bottom: 20px;
  min-width: 600px;
  padding-left: 15px;
  width: 50%;
}
.participate-v2 .add-plan-button {
  color: white;
}
.participate-v2 .view-plan-button {
  color: #758587;
  margin-left: 5px;
}
.participate-v2 .section-icon-wrap {
  position: absolute;
  transform: translateY(160px) scale(0.4);
  right: 0px;
}
@media (max-width: 1699.98px) {
  .participate-v2 .section-icon-wrap {
    display: none;
  }
}
.participate-v2 .citation-container {
  border-radius: 5px;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.participate-v2 .citation-container .citation-header {
  align-items: center;
  border-radius: 5px 5px 0 0;
  color: white;
  display: flex;
  font-size: 24px;
  height: 50px;
  padding-left: 15px;
}
.participate-v2 .citation-container .citation-list {
  padding: 10px 15px;
}
.participate-v2 .oneOnOne .subsection {
  margin: 0;
}
.participate-v2 .oneOnOne .subsection scorebar {
  margin: 0;
}
.participate-v2 .oneOnOne .subsection scorebar .scorebar-item {
  max-width: unset;
}
.participate-v2 .oneOnOne .subsection scorebar .scorebar-mark.scorebar-mark-your-score {
  height: 45px;
}
.participate-v2 .section-scale, .participate-v2 .subsection, .participate-v2 .citation-container {
  page-break-inside: avoid;
}
@media (max-width: 834px) {
  .participate-v2 .print-button {
    display: none;
  }
}

@media print {
  .participate-v2 .content {
    max-width: unset !important;
  }
  .participate-v2 .content .request-feedback-section,
  .participate-v2 .content .nav.nav-tabs,
  .participate-v2 .content .item-actions,
  .participate-v2 .content .plan-actions,
  .participate-v2 .content .print-button {
    display: none !important;
  }
}
.dashboard-container {
  align-items: flex-start;
  display: flex;
  height: 100%;
  justify-content: center;
  overflow: overlay;
}
@media (max-width: 833.98px) {
  .dashboard-container {
    align-items: unset;
  }
}

.dashboard {
  align-content: stretch;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: calc(100vh - 15px);
  margin-top: 15px;
  max-height: 1075px;
  margin-left: 30px;
  margin-right: 30px;
}
@media (min-width: 1700px) {
  .dashboard {
    max-width: 1620px;
    min-height: 900px;
    width: 100%;
  }
}
@media (min-width: 1280px) and (max-width: 1699.98px) {
  .dashboard {
    max-height: 680px;
    min-height: 480px;
    width: 100%;
  }
}
@media (min-width: 834px) and (max-width: 1279.98px) {
  .dashboard {
    flex-wrap: nowrap;
    max-height: unset;
    width: 600px;
  }
}
@media (max-width: 833.98px) {
  .dashboard {
    flex-wrap: nowrap;
    max-height: unset;
    height: unset;
    max-width: 500px;
    width: 100%;
  }
}
.dashboard .dashboard-tile {
  border-radius: 5px;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
  flex-grow: 1;
  height: 500px;
  margin-right: 30px;
  margin-bottom: 30px;
  height: 400px;
  position: relative;
  width: 450px;
}
.dashboard .dashboard-tile .tile-icon-wrap {
  background-color: white;
  border-radius: 100%;
  height: 260px;
  padding: 15px;
  width: 260px;
}
.dashboard .dashboard-tile .tile-icon {
  align-items: center;
  background-color: unset;
  border-radius: 100%;
  border: 15px solid;
  display: flex;
  font-size: 120px;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}
.dashboard .dashboard-tile .tile-bg {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 60%;
  position: relative;
  width: 100%;
}
.dashboard .dashboard-tile .tile-bg::before {
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: center;
  content: "";
  filter: invert(100%);
  height: 100%;
  position: absolute;
  opacity: 0.1;
  top: 0;
  left: 0;
  width: 100%;
}
.dashboard .dashboard-tile .tile-bg.bg-moral::before {
  background-image: url("/img/moral.svg");
}
.dashboard .dashboard-tile .tile-bg.bg-self::before {
  background-image: url("/img/self.svg");
}
.dashboard .dashboard-tile .tile-bg.bg-relationship::before {
  background-image: url("/img/relationship.svg");
}
.dashboard .dashboard-tile .tile-bg.bg-team::before {
  background-image: url("/img/team.svg");
}
.dashboard .dashboard-tile .tile-bg.bg-leader::before {
  background-image: url("/img/leader.svg");
}
.dashboard .dashboard-tile.tile-disabled {
  color: #C5C4C4 !important;
}
.dashboard .dashboard-tile.tile-disabled .tile-bg {
  background-color: #C5C4C4 !important;
}
.dashboard .dashboard-tile .tile-icon-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-60%);
}
.dashboard .dashboard-tile .tile-title {
  align-items: center;
  display: flex;
  font-weight: bold;
  height: 40%;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-align: center;
}
.dashboard .dashboard-tile .tile-title .coming-soon {
  color: gray;
  font-size: 0.75em;
  font-weight: 400;
}
@media (min-width: 1700px) {
  .dashboard .dashboard-tile {
    min-width: 375px;
    width: unset;
  }
}
@media (min-width: 1280px) and (max-width: 1699.98px) {
  .dashboard .dashboard-tile {
    height: unset;
    max-height: 300px;
    min-height: 200px;
    min-width: 200px;
    width: unset;
  }
  .dashboard .dashboard-tile .tile-icon {
    font-size: 80px;
    border-width: 8px;
  }
  .dashboard .dashboard-tile .tile-icon-wrap {
    height: 150px;
    padding: 8px;
    width: 150px;
  }
  .dashboard .dashboard-tile .tile-title {
    font-size: 20px;
  }
}
@media (min-width: 834px) and (max-width: 1279.98px) {
  .dashboard .dashboard-tile {
    align-items: center;
    display: flex;
    flex-grow: unset;
    flex-shrink: 0;
    height: 163px;
    margin-right: 0;
    width: unset;
  }
  .dashboard .dashboard-tile .tile-icon-wrap {
    height: 163px;
    padding: 7px;
    width: 163px;
  }
  .dashboard .dashboard-tile .tile-icon {
    border: 11px solid;
    font-size: 6rem;
  }
  .dashboard .dashboard-tile .tile-bg {
    border-bottom-left-radius: 5px;
    flex-shrink: 0;
    height: 163px;
    width: 150px;
  }
  .dashboard .dashboard-tile .tile-icon-wrap {
    left: 150px;
    top: 0;
    transform: translateX(-50%);
  }
  .dashboard .dashboard-tile .tile-title {
    display: block;
    height: unset;
    margin-left: 85px;
    padding-right: 20px;
    text-align: left;
  }
  .dashboard .dashboard-tile.dashboard-self {
    order: -2;
  }
  .dashboard .dashboard-tile.dashboard-relationship {
    order: -1;
  }
  .dashboard .dashboard-tile.dashboard-leader {
    order: 0;
  }
}
@media (max-width: 833.98px) {
  .dashboard .dashboard-tile {
    align-items: center;
    box-shadow: none;
    display: flex;
    flex-grow: unset;
    flex-shrink: 0;
    height: 83px;
    justify-content: space-between;
    margin-bottom: 8px;
    margin-right: 0;
    padding: 0 15px 0 30px;
    width: unset;
  }
  .dashboard .dashboard-tile .tile-icon-wrap {
    background-color: unset;
    flex-shrink: 0;
    height: 65px;
    left: unset;
    padding: unset;
    position: unset;
    top: unset;
    transform: unset;
    width: 65px;
  }
  .dashboard .dashboard-tile .tile-icon-wrap .tile-icon {
    background-color: rgba(255, 255, 255, 0.3607843137);
    border: none;
    color: white;
    font-size: 40px;
  }
  .dashboard .dashboard-tile .tile-title {
    color: white;
    display: block;
    font-size: 24px;
    font-weight: 400;
    height: unset;
    margin-left: 0px;
    padding: 0;
    text-align: left;
  }
  .dashboard .dashboard-tile .tile-title .coming-soon {
    font-size: 0.75em;
  }
  .dashboard .dashboard-tile .tile-bg {
    display: none;
  }
  .dashboard .dashboard-tile.dashboard-moral {
    background-color: #EEC04F;
  }
  .dashboard .dashboard-tile.dashboard-self {
    background-color: #92B54D;
  }
  .dashboard .dashboard-tile.dashboard-team {
    background-color: #62B0C4;
  }
  .dashboard .dashboard-tile.dashboard-relationship {
    background-color: #DD955A;
  }
  .dashboard .dashboard-tile.dashboard-leader {
    background-color: #A56F9E;
  }
  .dashboard .dashboard-tile.dashboard-org {
    background-color: #92B54D;
  }
  .dashboard .dashboard-tile.dashboard-self {
    order: -2;
  }
  .dashboard .dashboard-tile.dashboard-relationship {
    order: -1;
  }
  .dashboard .dashboard-tile.dashboard-leader {
    order: 0;
  }
}
.dashboard .dashboard-moral {
  color: #EEC04F;
}
@media (min-width: 834px) and (max-width: 1279.98px) {
  .dashboard .dashboard-moral {
    width: unset;
  }
  .dashboard .dashboard-moral .tile-icon {
    font-size: 6rem;
  }
}
@media (max-width: 833.98px) {
  .dashboard .dashboard-moral {
    height: 83px;
    width: unset;
  }
}
.dashboard .dashboard-plans {
  align-items: center;
  background-color: #385659;
  color: white;
  display: flex;
}
.dashboard .dashboard-plans:hover {
  text-decoration: unset;
}
.dashboard .dashboard-plans:hover .tile-title {
  text-decoration: underline;
}
.dashboard .dashboard-plans .tile-icon {
  border: unset;
  color: #758587;
  font-size: 130px;
  height: 200px;
  left: unset;
  position: absolute;
  right: 15px;
  top: 30px;
  transform: none;
  width: 200px;
}
.dashboard .dashboard-plans .plans-stats {
  flex-grow: 1;
  font-size: 24px;
  margin-left: 50px;
  margin-top: -20%;
  position: relative;
}
.dashboard .dashboard-plans .plans-stats .plan-counter {
  align-items: center;
  background-color: #758587;
  display: flex;
  font-size: 36px;
  height: 55px;
  justify-content: center;
  margin-right: 10px;
  width: 55px;
}
.dashboard .dashboard-plans .plans-stats .tile-title {
  display: block;
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 20px;
  margin-left: 0;
  text-align: unset;
}
@media (min-width: 1280px) and (max-width: 1699.98px) {
  .dashboard .dashboard-plans .tile-icon {
    height: 5rem;
    font-size: 5rem;
    width: 5rem;
    top: 60px;
    right: 30px;
  }
  .dashboard .dashboard-plans .plans-stats {
    font-size: 18px;
    margin-top: -10%;
    margin-left: 35px;
  }
  .dashboard .dashboard-plans .plans-stats .tile-title {
    font-size: 20px;
  }
  .dashboard .dashboard-plans .plans-stats .plan-counter {
    font-size: 25px;
    height: 45px;
    width: 45px;
  }
}
@media (min-width: 834px) and (max-width: 1279.98px) {
  .dashboard .dashboard-plans {
    height: 170px;
    width: unset;
  }
  .dashboard .dashboard-plans .tile-icon {
    height: 10px;
    font-size: 6rem;
    width: 10px;
    top: 50px;
    right: 75px;
  }
  .dashboard .dashboard-plans .plans-stats {
    font-size: 16px;
    margin-top: 0;
  }
  .dashboard .dashboard-plans .plans-stats .tile-title {
    margin: 0;
  }
  .dashboard .dashboard-plans .plans-stats .plan-counter {
    height: 40px;
    font-size: 24px;
    width: 40px;
  }
}
@media (max-width: 833.98px) {
  .dashboard .dashboard-plans {
    height: 175px;
    margin-top: 35px;
    order: 9999;
    width: unset;
  }
  .dashboard .dashboard-plans .tile-icon {
    height: 60px;
    font-size: 60px;
    width: 6px;
    top: 55px;
    right: 30px;
  }
  .dashboard .dashboard-plans .plans-stats {
    font-size: 16px;
    margin: 0;
  }
  .dashboard .dashboard-plans .plans-stats .tile-title {
    font-size: 24px;
    margin: 0 0 15px 0;
  }
  .dashboard .dashboard-plans .plans-stats .plan-counter {
    height: 35px;
    font-size: 16px;
    width: 35px;
  }
}
.dashboard .dashboard-self {
  color: #92B54D;
}
.dashboard .dashboard-team {
  color: #62B0C4;
}
.dashboard .dashboard-relationship {
  color: #DD955A;
}
.dashboard .dashboard-leader {
  color: #A56F9E;
}
.dashboard .dashboard-org {
  color: #92B54D;
}

.browser-alert, .welcome-alert {
  animation: none !important;
  display: inline-block;
  margin: 0 !important;
  max-height: 100vh;
  overflow-y: auto;
  position: absolute;
  transform: translate(-50%, -50%);
}
.browser-alert .sa-icon, .welcome-alert .sa-icon {
  display: none !important;
}
.browser-alert p, .welcome-alert p {
  font-weight: inherit;
  text-align: left;
}
@media (max-width: 540px) {
  .browser-alert, .welcome-alert {
    transform: translate(0%, -50%);
  }
}

.browser-alert {
  text-align: center;
}

.section-page .page-header {
  align-items: flex-end;
  color: white;
  display: flex;
  height: 140px;
  margin-bottom: 50px;
  padding-bottom: 5px;
  padding-left: 20px;
  position: relative;
  text-transform: capitalize;
}
.section-page .page-header h1 {
  padding: 0;
  margin: 0;
}
.section-page .page-header .section-icon-wrap {
  position: absolute;
  transform: translateY(160px) scale(0.4);
  right: 0px;
}
@media (max-width: 833.98px) {
  .section-page .page-header {
    display: none;
  }
}
.section-page .page-content {
  padding: 0 20px;
  max-width: 800px;
}
@media (max-width: 833.98px) {
  .section-page .page-content {
    padding: 0 20px;
    padding-top: 40px;
  }
}
.section-page h2 {
  margin-bottom: 15px;
  margin: 0;
  padding: 0;
}
.section-page .page-content {
  max-width: unset;
}
.section-page .assessments {
  align-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  max-width: 1450px;
}
.section-page .assessment {
  border-radius: 5px;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.278);
  display: flex;
  flex-direction: column;
  margin-bottom: 55px;
  margin-right: 30px;
  min-height: 250px;
  width: 440px;
}
.section-page .assessment .assessment-header {
  align-items: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: white;
  display: flex;
  font-size: 24px;
  min-height: 60px;
  line-height: 24px;
  padding: 13px 20px;
  text-transform: capitalize;
}
.section-page .assessment-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}
.section-page .desc {
  flex-grow: 1;
  line-height: 26px;
  margin-bottom: 40px;
}
.section-page .desc a {
  text-decoration: underline;
}
@media (max-width: 833.98px) {
  .section-page .page-content > h2 {
    display: none;
  }
  .section-page .assessments {
    align-content: center;
    flex-direction: column;
    height: unset;
  }
  .section-page .assessments .assessment {
    margin-right: 0;
    margin-bottom: 50px;
    max-width: 440px;
    width: unset;
  }
}
@media (max-width: 833.98px) and (max-width: 440px) {
  .section-page .assessments .assessment {
    border-radius: 0;
  }
  .section-page .assessments .assessment .assessment-header {
    border-radius: 0;
  }
}

.profile-page .page-header {
  align-items: flex-end;
  color: white;
  display: flex;
  height: 140px;
  margin-bottom: 50px;
  padding-bottom: 5px;
  padding-left: 20px;
  position: relative;
  text-transform: capitalize;
}
.profile-page .page-header h1 {
  padding: 0;
  margin: 0;
}
.profile-page .page-header .section-icon-wrap {
  position: absolute;
  transform: translateY(160px) scale(0.4);
  right: 0px;
}
@media (max-width: 833.98px) {
  .profile-page .page-header {
    display: none;
  }
}
.profile-page h1, .profile-page h2 {
  padding: 0;
  margin: 0;
}
.profile-page h2 {
  margin-bottom: 15px;
}
.profile-page .content {
  padding: 0 20px;
}
.profile-page .card {
  background-color: #F6F6F6;
}
.profile-page .page-header {
  background-color: #758587;
}
.profile-page .form-group {
  max-width: 50%;
}
.profile-page .card-body {
  padding: 20px;
}
.profile-page .continue-footer {
  margin-bottom: 200px;
}
.profile-page .content {
  margin-bottom: 100px;
}
@media (max-width: 833.98px) {
  .profile-page .content {
    margin-top: 40px;
  }
}
.profile-page .consent-agreement {
  overflow-y: scroll;
  max-height: 400px;
}

.cohorts-page .page-header {
  align-items: flex-end;
  color: white;
  display: flex;
  height: 140px;
  margin-bottom: 50px;
  padding-bottom: 5px;
  padding-left: 20px;
  position: relative;
  text-transform: capitalize;
}
.cohorts-page .page-header h1 {
  padding: 0;
  margin: 0;
}
.cohorts-page .page-header .section-icon-wrap {
  position: absolute;
  transform: translateY(160px) scale(0.4);
  right: 0px;
}
@media (max-width: 833.98px) {
  .cohorts-page .page-header {
    display: none;
  }
}
.cohorts-page .page-content {
  padding: 0 20px;
  max-width: 800px;
}
@media (max-width: 833.98px) {
  .cohorts-page .page-content {
    padding: 0 20px;
    padding-top: 40px;
  }
}
.cohorts-page .section-header {
  align-items: center;
  border-radius: 5px;
  display: flex;
  font-size: 24px;
  line-height: 40px;
  min-height: 50px;
  padding: 0 10px;
  text-transform: capitalize;
}
.cohorts-page .section-body {
  padding-left: 10px;
}
.cohorts-page .section-body:last-child {
  margin-bottom: 100px;
}
.cohorts-page .section-body p {
  margin-top: 0;
  padding: 0;
}
.cohorts-page .section-body h5 {
  padding: 0;
}
.cohorts-page .page-content {
  max-width: 700px;
}
.cohorts-page .cohort-list {
  text-transform: capitalize;
}
.cohorts-page .cohort-list .item-actions {
  text-align: right;
  width: 200px;
}
.cohorts-page .intro {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.cohorts-page .intro .icon-right_arrow {
  font-size: 16px;
  transform: rotate(90deg);
}
.cohorts-page .intro .icon-right_arrow.open {
  transform: rotate(-90deg);
}
.cohorts-page .section-header {
  margin-bottom: 20px;
  margin-top: 50px;
}
.cohorts-page .teams-body {
  min-height: 500px;
}

.cohort-page .page-header {
  align-items: flex-end;
  color: white;
  display: flex;
  height: 140px;
  margin-bottom: 50px;
  padding-bottom: 5px;
  padding-left: 20px;
  position: relative;
  text-transform: capitalize;
}
.cohort-page .page-header h1 {
  padding: 0;
  margin: 0;
}
.cohort-page .page-header .section-icon-wrap {
  position: absolute;
  transform: translateY(160px) scale(0.4);
  right: 0px;
}
@media (max-width: 833.98px) {
  .cohort-page .page-header {
    display: none;
  }
}
.cohort-page .page-content {
  padding: 0 20px;
  max-width: 800px;
}
@media (max-width: 833.98px) {
  .cohort-page .page-content {
    padding: 0 20px;
    padding-top: 40px;
  }
}
.cohort-page .section-header {
  align-items: center;
  border-radius: 5px;
  display: flex;
  font-size: 24px;
  line-height: 40px;
  min-height: 50px;
  padding: 0 10px;
  text-transform: capitalize;
}
.cohort-page .section-body {
  padding-left: 10px;
}
.cohort-page .section-body:last-child {
  margin-bottom: 100px;
}
.cohort-page .item-row {
  padding-bottom: 0;
}
.cohort-page .item-row .item-row-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-left: 15px;
  position: relative;
  text-transform: capitalize;
}
.cohort-page .item-row .item-row-header .item-actions {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 265px;
}
.cohort-page .item-row .item-row-header .item-actions > * {
  flex-shrink: 0;
}
@media (max-width: 833.98px) {
  .cohort-page .item-row .item-row-header .item-actions {
    justify-content: flex-start;
  }
  .cohort-page .item-row .item-row-header .item-actions .icon-right_arrow {
    display: none;
  }
}
.cohort-page .item-row .item-row-header .item-header-clickable {
  cursor: pointer;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}
@media print {
  .cohort-page .item-row .item-row-header .item-actions {
    display: none !important;
  }
}
.cohort-page .item-row.subsection {
  border-top-width: 1px;
  border-top-style: solid;
}
.cohort-page .item-row.subsection.open .item-row-header {
  background-color: #F6F6F6;
}
.cohort-page .item-row.subsection.open .icon-right_arrow {
  transform: rotate(-90deg);
}
.cohort-page .item-row.subsection.open .item-row-content {
  display: flex;
}
.cohort-page .item-row.subsection.closed .item-row-content {
  display: none;
}
.cohort-page .item-row.subsection:last-child {
  margin-bottom: 50px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.cohort-page .item-row.subsection .icon-right_arrow {
  color: #758587;
  margin: 0 30px;
  transform: rotate(90deg);
}
.cohort-page .item-row .item-row-header .item-buttons {
  align-items: center;
  border-right-width: 1px;
  border-right-style: solid;
  display: flex;
  height: 90px;
  padding-right: 30px;
}
.cohort-page .item-row .item-row-header .item-buttons button {
  z-index: 1;
}
.cohort-page .item-row .item-row-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  margin-top: 40px;
  padding-left: 15px;
}
.cohort-page .item-row .item-row-content scorebar {
  margin-right: 25px;
  flex-grow: 1;
}
.cohort-page .item-row .item-row-content .description-row {
  flex-basis: 400px;
  flex-grow: 5;
  padding: 0;
}
.cohort-page .item-row .sub-desc-table {
  margin-top: 20px;
}
.cohort-page .item-row .sub-desc-table td {
  padding-top: 10px;
  vertical-align: unset;
}
.cohort-page .item-row .sub-desc-table td:not(:last-child) {
  padding-right: 10px;
}
@media print {
  .cohort-page .item-row.subsection.closed .item-row-content {
    display: block !important;
  }
  .cohort-page .item-row .item-buttons {
    display: none !important;
  }
}
.cohort-page scorebar {
  flex-grow: 4;
  margin-bottom: 30px;
  margin-right: 30px;
  min-width: 400px;
}
.cohort-page .example-box {
  background-color: #F6F6F6;
  border-radius: 5px;
  padding: 15px;
}
.cohort-page .example-box p:first-child {
  margin-top: 0;
  padding-top: 0;
}
.cohort-page .example-box p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.cohort-page .instr-bold {
  font-weight: 600;
}
.cohort-page .page-content {
  max-width: 1200px;
}
.cohort-page .unassigned-table {
  text-transform: capitalize;
}
.cohort-page .status-cell {
  text-align: center;
}
.cohort-page .phase-table tr:first-child > th, .cohort-page .team-table tr:first-child > th, .cohort-page .user-table tr:first-child > th {
  border-top: 0;
  line-height: 1.2em;
}
.cohort-page .phase-table {
  max-width: 800px;
}
.cohort-page .user-table-container {
  margin-top: 20px;
  max-width: 1200px;
}
.cohort-page .user-table-container .user-table .icon-assessment_bullet_done {
  color: #55951B;
}
.cohort-page .user-table-container .user-table th {
  min-width: 95px;
}
.cohort-page .name-col {
  min-width: 150px;
}
.cohort-page .section-header {
  margin-bottom: 20px;
  margin-top: 50px;
}
.cohort-page .team-table {
  max-width: 800px;
}
.cohort-page .team-table td {
  padding: 0;
}
.cohort-page .team-table .team-header {
  background-color: #F6F6F6;
  padding: 4px 7.5px;
}
.cohort-page .member-list .member {
  display: flex;
  line-height: 25px;
  padding: 4px 7.5px;
}
.cohort-page .member-list .member:hover {
  background-color: #F6F6F6;
}
.cohort-page .member-list .member:first-child {
  padding-top: 8px;
}
.cohort-page .member-list .member-name {
  min-width: 30%;
  text-transform: capitalize;
}
.cohort-page .member-list .member-email {
  flex-grow: 1;
}
.cohort-page .start-error, .cohort-page .phase-error, .cohort-page .order-error {
  color: #CB333B;
}
.cohort-page .tab-content {
  min-height: 500px;
}
.cohort-page .tab-content .user-table .icon-assessment_bullet_done {
  color: #55951B;
}
.cohort-page .results-all-container .result-header {
  display: none !important;
}
.cohort-page .results-all-container .tab-content {
  min-height: unset;
}
.cohort-page .team-select {
  height: 40px;
  min-width: 200px;
  text-transform: capitalize;
}
.cohort-page .participate-v2 .plan-actions, .cohort-page .participate-v2 .item-buttons {
  display: none !important;
}
.cohort-page .drag-handle {
  cursor: move;
}
.cohort-page .table-striped tbody tr:nth-of-type(even) {
  background-color: white;
}
.cohort-page .request-feedback-section .intro {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.cohort-page .request-feedback-section .intro .icon-right_arrow {
  font-size: 16px;
  transform: rotate(90deg);
}
.cohort-page .request-feedback-section .intro .icon-right_arrow.open {
  transform: rotate(-90deg);
}
.cohort-page .request-feedback-section .section-body {
  max-width: 800px;
}
.cohort-page .nav-tabs-main .nav-link {
  font-weight: 600;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1.1rem;
}

@media print {
  .cohort-page .nav-tabs, .cohort-page .phase-assessments, .cohort-page .team-management, .cohort-page .participant-management, .cohort-page .request-feedback-section {
    display: none !important;
  }
  .cohort-page .item-row.subsection.closed .item-row-content {
    display: block !important;
  }
}
.teams-page .page-header {
  align-items: flex-end;
  color: white;
  display: flex;
  height: 140px;
  margin-bottom: 50px;
  padding-bottom: 5px;
  padding-left: 20px;
  position: relative;
  text-transform: capitalize;
}
.teams-page .page-header h1 {
  padding: 0;
  margin: 0;
}
.teams-page .page-header .section-icon-wrap {
  position: absolute;
  transform: translateY(160px) scale(0.4);
  right: 0px;
}
@media (max-width: 833.98px) {
  .teams-page .page-header {
    display: none;
  }
}
.teams-page .page-content {
  padding: 0 20px;
  max-width: 800px;
}
@media (max-width: 833.98px) {
  .teams-page .page-content {
    padding: 0 20px;
    padding-top: 40px;
  }
}
.teams-page .section-header {
  align-items: center;
  border-radius: 5px;
  display: flex;
  font-size: 24px;
  line-height: 40px;
  min-height: 50px;
  padding: 0 10px;
  text-transform: capitalize;
}
.teams-page .section-body {
  padding-left: 10px;
}
.teams-page .section-body:last-child {
  margin-bottom: 100px;
}
.teams-page .section-header {
  margin-bottom: 20px;
}
.teams-page .page-content {
  max-width: 700px;
}
.teams-page .team-row {
  text-transform: capitalize;
  cursor: pointer;
}
.teams-page .team-row:hover {
  background-color: #dddddd;
}

@importm "./_vars.scss";
.team-page .page-header {
  align-items: flex-end;
  color: white;
  display: flex;
  height: 140px;
  margin-bottom: 50px;
  padding-bottom: 5px;
  padding-left: 20px;
  position: relative;
  text-transform: capitalize;
}
.team-page .page-header h1 {
  padding: 0;
  margin: 0;
}
.team-page .page-header .section-icon-wrap {
  position: absolute;
  transform: translateY(160px) scale(0.4);
  right: 0px;
}
@media (max-width: 833.98px) {
  .team-page .page-header {
    display: none;
  }
}
.team-page .page-content {
  padding: 0 20px;
  max-width: 800px;
}
@media (max-width: 833.98px) {
  .team-page .page-content {
    padding: 0 20px;
    padding-top: 40px;
  }
}
.team-page .section-header {
  align-items: center;
  border-radius: 5px;
  display: flex;
  font-size: 24px;
  line-height: 40px;
  min-height: 50px;
  padding: 0 10px;
  text-transform: capitalize;
}
.team-page .item-row {
  padding-bottom: 0;
}
.team-page .item-row .item-row-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-left: 15px;
  position: relative;
  text-transform: capitalize;
}
.team-page .item-row .item-row-header .item-actions {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 265px;
}
.team-page .item-row .item-row-header .item-actions > * {
  flex-shrink: 0;
}
@media (max-width: 833.98px) {
  .team-page .item-row .item-row-header .item-actions {
    justify-content: flex-start;
  }
  .team-page .item-row .item-row-header .item-actions .icon-right_arrow {
    display: none;
  }
}
.team-page .item-row .item-row-header .item-header-clickable {
  cursor: pointer;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}
@media print {
  .team-page .item-row .item-row-header .item-actions {
    display: none !important;
  }
}
.team-page .item-row.subsection {
  border-top-width: 1px;
  border-top-style: solid;
}
.team-page .item-row.subsection.open .item-row-header {
  background-color: #F6F6F6;
}
.team-page .item-row.subsection.open .icon-right_arrow {
  transform: rotate(-90deg);
}
.team-page .item-row.subsection.open .item-row-content {
  display: flex;
}
.team-page .item-row.subsection.closed .item-row-content {
  display: none;
}
.team-page .item-row.subsection:last-child {
  margin-bottom: 50px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.team-page .item-row.subsection .icon-right_arrow {
  color: #758587;
  margin: 0 30px;
  transform: rotate(90deg);
}
.team-page .item-row .item-row-header .item-buttons {
  align-items: center;
  border-right-width: 1px;
  border-right-style: solid;
  display: flex;
  height: 90px;
  padding-right: 30px;
}
.team-page .item-row .item-row-header .item-buttons button {
  z-index: 1;
}
.team-page .item-row .item-row-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  margin-top: 40px;
  padding-left: 15px;
}
.team-page .item-row .item-row-content scorebar {
  margin-right: 25px;
  flex-grow: 1;
}
.team-page .item-row .item-row-content .description-row {
  flex-basis: 400px;
  flex-grow: 5;
  padding: 0;
}
.team-page .item-row .sub-desc-table {
  margin-top: 20px;
}
.team-page .item-row .sub-desc-table td {
  padding-top: 10px;
  vertical-align: unset;
}
.team-page .item-row .sub-desc-table td:not(:last-child) {
  padding-right: 10px;
}
@media print {
  .team-page .item-row.subsection.closed .item-row-content {
    display: block !important;
  }
  .team-page .item-row .item-buttons {
    display: none !important;
  }
}
.team-page scorebar {
  flex-grow: 4;
  margin-bottom: 30px;
  margin-right: 30px;
  min-width: 400px;
}
@media (max-width: 833.98px) {
  .team-page .page-content {
    padding-top: 0;
  }
  .team-page .team-nav {
    display: none !important;
  }
  .team-page .accordion-nav {
    display: block !important;
  }
}
.team-page .accordion-nav {
  display: none;
}
.team-page ol {
  line-height: 20px;
}
.team-page ol li a {
  text-decoration: underline;
}
.team-page .scale-container, .team-page .skills-table, .team-page .table {
  max-width: 700px;
}
.team-page .section .section-body {
  padding: 0 10px;
}
.team-page .page-content {
  margin-bottom: 200px;
  max-width: 1250px;
}
.team-page .prog-reports {
  margin-top: 20px;
}
.team-page .skills-table {
  table-layout: fixed;
  text-align: center;
}
.team-page .skills-table td {
  vertical-align: middle;
}
.team-page .skills-table button {
  margin: 0;
  width: 100px;
}
.team-page scorebar .scorebar-legend {
  justify-content: flex-end;
}
.team-page scorebar .scorebar-legend .scorebar-item {
  margin: 0 10px;
}
.team-page .team-nav {
  display: block;
  width: 100%;
  min-width: 600px;
}
.team-page .team-nav .team-navbar-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  width: 100%;
  z-index: 1;
}
.team-page .team-nav .team-navbar-item {
  flex: 1;
  position: relative;
  margin: 0 0.25rem 0.25rem 0;
  padding: 0.5rem 1.125rem;
  padding-left: 2.905rem;
  padding-right: 0.75rem;
  height: 2.56rem;
  background-color: #AFD7E1;
  color: #404040;
  line-height: 1.28rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  box-sizing: content-box;
}
.team-page .team-nav .team-navbar-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.78rem;
  border-left: solid 1.78rem #ffffff;
  border-bottom: solid 1.78rem transparent;
  border-top: solid 1.78rem transparent;
}
.team-page .team-nav .team-navbar-item:after {
  content: "";
  position: absolute;
  top: 0;
  right: -1.78rem;
  width: 1.78rem;
  border-left: solid 1.78rem #AFD7E1;
  border-bottom: solid 1.78rem transparent;
  border-top: solid 1.78rem transparent;
  z-index: 1;
}
.team-page .team-nav .team-navbar-item.active, .team-page .team-nav .team-navbar-item:hover {
  background: #62B0C4;
  color: #ffffff;
}
.team-page .team-nav .team-navbar-item.active:after, .team-page .team-nav .team-navbar-item:hover:after {
  border-left-color: #62B0C4;
}
.team-page .team-nav .team-navbar-item:first-child {
  padding-left: 1.125rem;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.team-page .team-nav .team-navbar-item:first-child:before {
  content: none;
}
.team-page .team-nav .team-navbar-item:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-right: 0;
}
.team-page .team-nav .team-navbar-item:last-child:after {
  content: none;
}
.team-page .team-nav .team-navbar-content {
  display: flex;
  align-items: center;
  height: 100%;
}
.team-page .team-nav .team-navbar-container.submenu {
  margin-top: 2rem;
  border: 3px solid #62B0C4;
  padding: 1rem;
  width: auto;
  border-radius: 5px;
}
.team-page .team-nav .team-navbar-container.submenu:after {
  content: "";
  position: absolute;
  top: -1rem;
  right: 50%;
  display: block;
  border-bottom: solid 1rem #62B0C4;
  border-left: solid 1rem transparent;
  border-right: solid 1rem transparent;
  z-index: 2;
}
.team-page .team-nav .team-navbar-container.submenu .team-navbar-item {
  flex: none;
  height: 1.28rem;
  background: #dddddd;
  margin-bottom: 0;
}
.team-page .team-nav .team-navbar-container.submenu .team-navbar-item:last-child {
  padding-right: 1rem;
}
.team-page .team-nav .team-navbar-container.submenu .team-navbar-item:before {
  width: 1.14rem;
  border-left: solid 1.14rem #ffffff;
  border-bottom: solid 1.14rem transparent;
  border-top: solid 1.14rem transparent;
}
.team-page .team-nav .team-navbar-container.submenu .team-navbar-item:after {
  right: -1.14rem;
  width: 1.14rem;
  border-left: solid 1.14rem #dddddd;
  border-bottom: solid 1.14rem transparent;
  border-top: solid 1.14rem transparent;
  z-index: 1;
}
.team-page .team-nav .team-navbar-container.submenu .team-navbar-item.active, .team-page .team-nav .team-navbar-container.submenu .team-navbar-item:hover {
  background: #C5C4C4;
  color: #262626;
}
.team-page .team-nav .team-navbar-container.submenu .team-navbar-item.active:after, .team-page .team-nav .team-navbar-container.submenu .team-navbar-item:hover:after {
  border-left-color: #C5C4C4;
}
.team-page .accordion-nav {
  margin: 0 -20px;
}
.team-page .accordion-nav .card {
  border-color: #62B0C4;
  border-radius: 0;
}
.team-page .accordion-nav .card-header {
  background-color: #AFD7E1;
  border-radius: 0;
}
.team-page .accordion-nav .card-header.active, .team-page .accordion-nav .card-header:hover {
  background: #62B0C4;
  color: #ffffff;
}
.team-page .accordion-nav button {
  box-shadow: none;
}
.team-page .accordion-nav .card-body {
  cursor: pointer;
}
.team-page .accordion-nav .card-body.active, .team-page .accordion-nav .card-body:hover {
  background: #F6F6F6;
  color: #262626;
}

@media print {
  .team-page .team-nav, .team-page .accordion-nav, .team-page .team-member-part {
    display: none !important;
  }
}
.team-charter .page-header {
  align-items: flex-end;
  color: white;
  display: flex;
  height: 140px;
  margin-bottom: 50px;
  padding-bottom: 5px;
  padding-left: 20px;
  position: relative;
  text-transform: capitalize;
}
.team-charter .page-header h1 {
  padding: 0;
  margin: 0;
}
.team-charter .page-header .section-icon-wrap {
  position: absolute;
  transform: translateY(160px) scale(0.4);
  right: 0px;
}
@media (max-width: 833.98px) {
  .team-charter .page-header {
    display: none;
  }
}
.team-charter .page-content {
  padding: 0 20px;
  max-width: 800px;
}
@media (max-width: 833.98px) {
  .team-charter .page-content {
    padding: 0 20px;
    padding-top: 40px;
  }
}
.team-charter .section-header {
  align-items: center;
  border-radius: 5px;
  display: flex;
  font-size: 24px;
  line-height: 40px;
  min-height: 50px;
  padding: 0 10px;
  text-transform: capitalize;
}
.team-charter .section-body {
  padding-left: 10px;
}
.team-charter .section-body:last-child {
  margin-bottom: 100px;
}
.team-charter input, .team-charter textarea {
  border: none;
  border-bottom: 2px solid #758587;
  width: 100%;
  max-width: 600px;
  line-height: 1.2em;
}
.team-charter table {
  width: 100%;
}
.team-charter table td {
  padding-right: 10px;
  vertical-align: top;
}
.team-charter table .subtitle {
  font-weight: normal;
  font-size: smaller;
  line-height: 1em;
}
.team-charter table .cell-content {
  display: flex;
}
.team-charter .behaviour-num {
  width: 10px;
}
.team-charter .button-bar {
  display: flex;
  justify-content: space-between;
}

.landing-page {
  /* /////////////////////////////////////////////////////////////////////////////
    variables
   */
  /* /////////////////////////////////////////////////////////////////////////////
    mixins
   */
  /* /////////////////////////////////////////////////////////////////////////////
    overrides & helper classes
   */
  /* /////////////////////////////////////////////////////////////////////////////
    above the fold
   */
  /* /////////////////////////////////////////////////////////////////////////////
    assessments
   */
  /* /////////////////////////////////////////////////////////////////////////////
    features
   */
}
.landing-page html, .landing-page body, .landing-page h1, .landing-page h2, .landing-page h3, .landing-page h4, .landing-page h5, .landing-page h6 {
  font-family: "Didact Gothic", sans-serif;
}
.landing-page p, .landing-page li {
  font-family: "Merriweather", serif;
}
.landing-page button,
.landing-page .hcap-btn {
  font-family: Roboto, "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: normal;
}
.landing-page section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.landing-page footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.landing-page p.lead {
  margin-top: 1rem;
  font-family: "Didact Gothic", sans-serif;
  font-size: 1.5rem;
}
.landing-page h2.heading-divider {
  position: relative;
  margin-bottom: 5rem;
  color: #385659;
  text-align: center;
}
.landing-page h2.heading-divider:after {
  content: "";
  position: absolute;
  bottom: 18%;
  display: block;
  border-top: 1px solid #758587;
  height: auto;
  width: 100%;
  z-index: -1;
}
.landing-page h2.heading-divider span {
  padding: 0 1em 1px 1em;
  background: #ffffff;
}
.landing-page .landing-hero {
  position: relative;
  padding: 30px 0 60px 0;
  background-image: url("/img/hero_image__pexels_1920x1346.jpg");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #758587;
  color: #ffffff;
  z-index: 1;
}
.landing-page .landing-hero h1 {
  margin-bottom: 0;
  font-size: 3.375rem;
}
.landing-page .landing-hero p {
  padding-top: 0;
  font-family: "Didact Gothic", sans-serif;
  font-size: 2.25rem;
  line-height: 1.44;
}
.landing-page .landing-hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.landing-page .landing-hero .logo {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .landing-page .landing-hero h1, .landing-page .landing-hero p {
    text-align: center;
  }
  .landing-page .landing-hero .login-card {
    margin: 2rem auto 0;
  }
}
.landing-page .assessment-heading,
.landing-page .assessment-heading-sm {
  position: relative;
  display: block;
  border-radius: 5px;
}
.landing-page .nav-link {
  font-size: unset;
}
.landing-page .assessment-heading {
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.278);
  background: #ffffff;
}
.landing-page .assessment-heading .tile-icon-wrap {
  background-color: white;
  border-radius: 100%;
  height: 260px;
  padding: 15px;
  width: 260px;
}
.landing-page .assessment-heading .tile-icon {
  align-items: center;
  background-color: unset;
  border-radius: 100%;
  border: 15px solid;
  display: flex;
  font-size: 120px;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}
.landing-page .assessment-heading .tile-bg {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 60%;
  position: relative;
  width: 100%;
}
.landing-page .assessment-heading .tile-bg::before {
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: center;
  content: "";
  filter: invert(100%);
  height: 100%;
  position: absolute;
  opacity: 0.1;
  top: 0;
  left: 0;
  width: 100%;
}
.landing-page .assessment-heading .tile-bg.bg-moral::before {
  background-image: url("/img/moral.svg");
}
.landing-page .assessment-heading .tile-bg.bg-self::before {
  background-image: url("/img/self.svg");
}
.landing-page .assessment-heading .tile-bg.bg-relationship::before {
  background-image: url("/img/relationship.svg");
}
.landing-page .assessment-heading .tile-bg.bg-team::before {
  background-image: url("/img/team.svg");
}
.landing-page .assessment-heading .tile-bg.bg-leader::before {
  background-image: url("/img/leader.svg");
}
.landing-page .assessment-heading .tile-bg {
  height: unset;
}
.landing-page .assessment-heading .tile-icon-wrap {
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.278);
  height: 121px;
  left: 50px;
  padding: 5px;
  position: absolute;
  top: -20px;
  width: 121px;
}
.landing-page .assessment-heading .tile-icon {
  border-width: 8px;
  font-size: 65px;
}
.landing-page .assessment-heading .assessment-heading-logo-bg {
  flex-basis: auto;
  flex-grow: unset;
  width: 123px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.landing-page .assessment-heading .assessment-heading-logo-bg img {
  height: 83px;
  opacity: 0.1;
}
.landing-page .assessment-heading .assessment-heading-logo-circle {
  position: relative;
  flex-basis: auto;
  flex-grow: unset;
  padding: 0;
  width: 0;
}
.landing-page .assessment-heading .assessment-heading-logo-circle img {
  position: absolute;
  top: 50%;
  left: -60.5px;
  width: 121px;
  border-radius: 100%;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.278);
  transform: translateY(-50%);
}
.landing-page .assessment-heading .assessment-heading-content {
  padding-top: 1.9375rem;
  padding-bottom: 1.25rem;
  padding-left: 90.5px;
}
.landing-page .assessment-heading .assessment-heading-content h3 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}
.landing-page .assessment-heading-sm {
  background: #758587;
  color: white;
}
.landing-page .assessment-heading-sm h3 {
  margin: 0;
  padding: 0 0 0 30px;
  font-size: 1.5rem;
}
.landing-page .assessment-heading-sm .col:last-child {
  flex-grow: unset;
  width: 100%;
}
.landing-page .assessment-heading-sm-icon {
  display: flex;
  align-items: center;
  margin: 10px 13px;
  padding: 10px;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background: #dddddd;
}
.landing-page ul.assessment-list {
  margin-top: 1.5rem;
  margin-bottom: 5rem;
  padding-top: 0;
  padding-left: 198.5px;
  list-style: none;
}
.landing-page ul.assessment-list:last-child {
  margin-bottom: 0;
}
.landing-page ul.assessment-list li {
  margin-bottom: 20px;
}
.landing-page ul.assessment-list li:before {
  content: "";
  position: relative;
  top: 0.5rem;
  display: inline-block;
  margin-right: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #758587;
}
@media (max-width: 767px) {
  .landing-page ul.assessment-list {
    padding-left: 15px;
  }
}
.landing-page .hcap-feature {
  margin-bottom: 5rem;
}
.landing-page .feature-content {
  padding-right: 1.875rem;
  padding-left: 1.875rem;
}
@media (max-width: 991px) {
  .landing-page .feature-content {
    padding-top: 3.4375rem;
    padding-bottom: 3.4375rem;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #758587;
    color: #ffffff;
  }
  .landing-page .feature-content h3 {
    padding-top: 0;
  }
}
.landing-page .feature-img {
  display: block;
  border-radius: 5px;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.278);
  background: #ffffff;
}
@media (max-width: 991px) {
  .landing-page .feature-img {
    border: 1px solid #dddddd;
    border-bottom-left-radius: none;
    border-bottom-right-radius: none;
    box-shadow: none;
  }
}
.landing-page .feature-img-mockup {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 30px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: #dddddd;
}
.landing-page .feature-img-mockup span {
  display: block;
  margin-right: 10px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: #758587;
}
.landing-page .feature-img-mockup span:last-child {
  margin-right: 0;
}
.landing-page .feature-img-mockup img {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.questions-page .response-cell {
  display: flex;
  justify-content: center;
  min-height: 35px;
  text-align: center;
}
.questions-page .response-cell .sm-response {
  display: none;
  margin-left: 10px;
}
.questions-page .caption {
  font-weight: 900;
  font-size: 1.2rem;
  margin: 20px 0;
}
.questions-page .caption-minor {
  font-weight: 900;
  margin: 10px 0 10px 0;
}
.questions-page .nav-buttons {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-top: 25px;
  margin-bottom: 100px;
}
@media (max-width: 833.98px) {
  .questions-page .question-prompt {
    margin-bottom: 20px;
  }
  .questions-page .answer-key {
    display: none;
  }
  .questions-page .response-cell {
    justify-content: flex-start;
  }
  .questions-page .response-cell .sm-response {
    display: inline;
  }
  .questions-page .nav-buttons .hcap-btn {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.activate-page .login-card {
  max-width: unset;
  min-width: 350px;
  width: 450px;
}
.activate-page .login-card .login-card-title {
  color: #385659;
  margin: 0;
  margin-top: 20px;
  padding: 0;
  text-align: center;
}
.activate-page .login-card label {
  color: #385659;
}

.invites-page .page-header {
  align-items: flex-end;
  color: white;
  display: flex;
  height: 140px;
  margin-bottom: 50px;
  padding-bottom: 5px;
  padding-left: 20px;
  position: relative;
  text-transform: capitalize;
}
.invites-page .page-header h1 {
  padding: 0;
  margin: 0;
}
.invites-page .page-header .section-icon-wrap {
  position: absolute;
  transform: translateY(160px) scale(0.4);
  right: 0px;
}
@media (max-width: 833.98px) {
  .invites-page .page-header {
    display: none;
  }
}
.invites-page .page-content {
  padding: 0 20px;
  max-width: 800px;
}
@media (max-width: 833.98px) {
  .invites-page .page-content {
    padding: 0 20px;
    padding-top: 40px;
  }
}
.invites-page .section-header {
  align-items: center;
  border-radius: 5px;
  display: flex;
  font-size: 24px;
  line-height: 40px;
  min-height: 50px;
  padding: 0 10px;
  text-transform: capitalize;
}
.invites-page .section-body {
  padding-left: 10px;
}
.invites-page .section-body:last-child {
  margin-bottom: 100px;
}
.invites-page .assessment-row {
  cursor: pointer;
}
.invites-page .page-content {
  max-width: 700px;
}

@importm "./_vars.scss";
.rater-finish .page-header {
  align-items: flex-end;
  color: white;
  display: flex;
  height: 140px;
  margin-bottom: 50px;
  padding-bottom: 5px;
  padding-left: 20px;
  position: relative;
  text-transform: capitalize;
}
.rater-finish .page-header h1 {
  padding: 0;
  margin: 0;
}
.rater-finish .page-header .section-icon-wrap {
  position: absolute;
  transform: translateY(160px) scale(0.4);
  right: 0px;
}
@media (max-width: 833.98px) {
  .rater-finish .page-header {
    display: none;
  }
}
.rater-finish .page-content {
  padding: 0 20px;
  max-width: 800px;
}
@media (max-width: 833.98px) {
  .rater-finish .page-content {
    padding: 0 20px;
    padding-top: 40px;
  }
}
.rater-finish .section-header {
  align-items: center;
  border-radius: 5px;
  display: flex;
  font-size: 24px;
  line-height: 40px;
  min-height: 50px;
  padding: 0 10px;
  text-transform: capitalize;
}

.section-icon-wrap {
  background-color: white;
  border-radius: 9000px;
  height: 380px;
  padding: 20px;
  width: 380px;
}
.section-icon-wrap .section-icon {
  background-color: unset;
  border-radius: 200px;
  border: 30px solid;
  font-size: 190px;
  height: 100%;
  line-height: 280px;
  position: relative;
  text-align: center;
  width: 100%;
}

.sidebar {
  background-color: #385659;
  position: relative;
}
.sidebar .sidebar-title, .sidebar h3 {
  text-transform: capitalize;
  padding-top: 0;
}
.sidebar .sidebar-title {
  margin-top: 0;
}
.sidebar .hamburger, .sidebar .sidebar-close {
  cursor: pointer;
  position: absolute;
}
.sidebar .sidebar-main {
  color: white;
}
.sidebar .sidebar-main .icon {
  color: white;
}
.sidebar .sidebar-main ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar .sidebar-main ul a, .sidebar .sidebar-main ul li {
  display: flex;
}
.sidebar .sidebar-main ul a {
  align-items: center;
}
.sidebar .sidebar-main .hamburger .hamburger-inner, .sidebar .sidebar-main .hamburger .hamburger-inner:before, .sidebar .sidebar-main .hamburger .hamburger-inner:after {
  background-color: white;
}
.sidebar .pending-invites .pending-badge {
  min-width: 25px;
  text-align: center;
  background-color: #758587;
  border-radius: 25%;
  display: inline-block;
  padding: 0 4px;
}
.sidebar .pending-invites .pending-badge.pending-alert {
  background-color: #EF9600;
}
.sidebar .sidebar-wrap {
  overflow-y: auto;
  direction: rtl;
}
.sidebar .sidebar-content {
  overflow-y: auto;
  direction: ltr;
}

@media (min-width: 833.98px) {
  .sidebar {
    height: 100vh;
    font-size: 16px;
    width: 300px;
  }
  .sidebar.closed {
    width: 100px;
  }
  .sidebar .sidebar-main {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 100px;
  }
  .sidebar .sidebar-main.closed .sidebar-title, .sidebar .sidebar-main.closed .item-text, .sidebar .sidebar-main.closed .open-secondary {
    display: none !important;
  }
  .sidebar .sidebar-main.closed .home-item {
    display: block;
  }
  .sidebar .sidebar-main.closed .hamburger {
    top: 30px;
    left: 18px;
    right: unset;
  }
  .sidebar .sidebar-main .item.selected {
    background-color: white;
    color: #385659;
  }
  .sidebar .sidebar-main .item.selected.moral .item-text {
    color: #EEC04F;
  }
  .sidebar .sidebar-main .item.selected.team-self .item-text {
    color: #62B0C4;
  }
  .sidebar .sidebar-main .item.selected.self .item-text {
    color: #92B54D;
  }
  .sidebar .sidebar-main .item.selected.relationship .item-text {
    color: #DD955A;
  }
  .sidebar .sidebar-main .item.selected.team .item-text {
    color: #62B0C4;
  }
  .sidebar .sidebar-main .item.selected.leader .item-text {
    color: #A56F9E;
  }
  .sidebar .sidebar-main .item.selected.action .item-text {
    color: #385659;
  }
  .sidebar .sidebar-main .item > * {
    padding-bottom: 3px;
    padding-top: 3px;
  }
  .sidebar .sidebar-main .item:not(.selected):not(.disabled) .open-secondary:hover, .sidebar .sidebar-main .item:not(.selected):not(.disabled) a:hover {
    background-color: #758587;
  }
  .sidebar .sidebar-main .item .icon-right_arrow {
    font-size: 12px;
  }
  .sidebar .sidebar-main .item .open-secondary {
    align-items: center;
    cursor: pointer;
    display: flex;
    padding: 0 15px;
  }
  .sidebar .sidebar-main .item a {
    flex-grow: 1;
    padding-left: 30px;
  }
  .sidebar .sidebar-main .item a:hover {
    color: white;
  }
  .sidebar .sidebar-main .item-text {
    user-select: none;
  }
  .sidebar .sidebar-main .hamburger, .sidebar .sidebar-main .sidebar-close {
    font-size: 30px;
    line-height: 15px;
    right: 10px;
    top: 20px;
  }
  .sidebar .sidebar-main .home-item {
    padding-left: 30px;
  }
  .sidebar .sidebar-main .action-plan-summary {
    font-size: 10px;
    line-height: 10px;
  }
  .sidebar .sidebar-main .settings {
    margin-top: 40px;
  }
  .sidebar .sidebar-main .settings .item.selected {
    color: #385659;
  }
  .sidebar .sidebar-main .settings .item.selected a:hover {
    color: #385659;
  }
  .sidebar .sidebar-main .settings .item.selected .icon {
    color: #385659;
  }
  .sidebar .sidebar-main .icon {
    border-radius: 9999px;
    color: white;
    display: inline-block;
    font-size: 25px;
    height: 45px;
    line-height: 45px;
    margin-right: 10px;
    min-width: 45px;
    position: relative;
    text-align: center;
    width: 45px;
  }
  .sidebar .sidebar-main .icon::before {
    display: inline-block;
  }
  .sidebar .sidebar-main .logo {
    padding-bottom: 40px;
    padding-left: 30px;
  }
  .sidebar .sidebar-main .disabled {
    color: #758587 !important;
  }
  .sidebar .sidebar-main .sidebar-content {
    flex-grow: 1;
  }
  .sidebar .sidebar-main .sidebar-title {
    padding-left: 30px;
  }
  .sidebar .sidebar-main .home-item {
    display: none;
  }
  .sidebar .sidebar-secondary {
    background-color: white;
    box-shadow: 8px 0px 10px rgba(0, 0, 0, 0.2);
    color: black;
    height: 100vh;
    padding-top: 100px;
    padding-left: 30px;
    padding-right: 30px;
    position: absolute;
    overflow: overlay;
    right: -480px;
    top: 0;
    width: 480px;
    z-index: 10;
  }
  .sidebar .sidebar-secondary.closed {
    display: none;
  }
  .sidebar .sidebar-secondary .hamburger, .sidebar .sidebar-secondary .sidebar-close {
    font-size: 30px;
    line-height: 15px;
    position: absolute;
  }
  .sidebar .sidebar-secondary .hamburger {
    right: 10px;
    top: 20px;
  }
  .sidebar .sidebar-secondary .sidebar-close {
    right: 25px;
    top: 30px;
  }
  .sidebar .sidebar-secondary .assessment {
    margin-bottom: 30px;
  }
}
@media (max-width: 833.98px) {
  .sidebar .sidebar-main {
    min-height: 86px;
    padding-top: 20px;
  }
  .sidebar .sidebar-main .hamburger {
    top: 15px;
    right: 0;
  }
  .sidebar .sidebar-main.closed .sidebar-content > ul {
    display: none;
  }
  .sidebar .sidebar-main:not(.closed) .sidebar-content {
    padding-bottom: 20px;
  }
  .sidebar .sidebar-main ul li > * {
    font-size: 16px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .sidebar .sidebar-main .sidebar-content {
    background-color: #385659;
    max-height: calc(100vh - 63px);
    position: absolute;
    width: 100%;
    z-index: 9999;
  }
  .sidebar .sidebar-main .icon {
    font-size: 20px;
    margin-right: 20px;
  }
  .sidebar .sidebar-main .action-plan-summary {
    display: none;
  }
  .sidebar .sidebar-main .section-link {
    width: 100%;
  }
  .sidebar .sidebar-main a, .sidebar .sidebar-main .section-link {
    padding-left: 35px;
  }
  .sidebar .sidebar-main .sidebar-title {
    font-size: 30px;
    margin-bottom: 0px;
  }
  .sidebar .sidebar-main .bg-moral {
    background-color: unset !important;
    color: #EEC04F;
  }
  .sidebar .sidebar-main .bg-self {
    background-color: unset !important;
    color: #92B54D;
  }
  .sidebar .sidebar-main .bg-relationship {
    background-color: unset !important;
    color: #DD955A;
  }
  .sidebar .sidebar-main .bg-team {
    background-color: unset !important;
    color: #62B0C4;
  }
  .sidebar .sidebar-main .bg-leader {
    background-color: unset !important;
    color: #A56F9E;
  }
  .sidebar .sidebar-secondary, .sidebar .open-secondary, .sidebar .logo {
    display: none;
  }
}
@media print {
  .sidebar {
    display: none !important;
  }
}
:root {
  --scorebar-mark-start: #447716;
}

scorebar .scorebar-bar {
  background-color: #F6F6F6;
  border-radius: 5px;
  height: 40px;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 80px;
  min-width: 450px;
  position: relative;
  width: calc(100% - 10px);
}
scorebar .scorebar-bar .scorebar-marks {
  height: 40px;
  position: absolute;
  width: 100%;
  z-index: 1;
}
scorebar .scorebar-bar .scorebar-marks .scorebar-mark {
  border-left: 5px solid;
  bottom: 0;
  position: absolute;
}
scorebar .scorebar-bar .scorebar-marks .scorebar-score {
  border-radius: 100%;
  color: white;
  height: 40px;
  left: -23px;
  line-height: 40px;
  position: absolute;
  text-align: center;
  top: -40px;
  width: 40px;
}
scorebar .scorebar-bar .scorebar-ticks {
  display: flex;
  height: 40px;
  justify-content: space-between;
  position: absolute;
  width: 100%;
}
scorebar .scorebar-bar .scorebar-ticks .scorebar-tick {
  border-left: 1px solid #dddddd;
  position: relative;
}
scorebar .scorebar-bar .scorebar-ticks .scorebar-value {
  color: #758587;
  left: -4px;
  position: absolute;
  top: calc(100% + 5px);
}
scorebar .scorebar-bar .scorebar-range {
  background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MCA1MCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNhYmM3Y2E7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5ncmFwaF9zdHJpcF9wYXR0ZXJuPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMCAwIDAgMi44MyAyLjgzIDAgMCAwIi8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjkuNjcgMCAwIDkuNjcgMCAxNS4zMyAxNS4zMyAwIDkuNjcgMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyMi4xNyAwIDAgMjIuMTcgMCAyNy44MyAyNy44MyAwIDIyLjE3IDAiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzQuNjcgMCAwIDM0LjY3IDAgNDAuMzMgNDAuMzMgMCAzNC42NyAwIi8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjUwIDIuODMgNTAgMCA0Ny4xNyAwIDAgNDcuMTcgMCA1MCAyLjgzIDUwIDUwIDIuODMiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMTUuMzMgNTAgNTAgMTUuMzMgNTAgOS42NyA5LjY3IDUwIDE1LjMzIDUwIi8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjI3LjgzIDUwIDUwIDI3LjgzIDUwIDIyLjE3IDIyLjE3IDUwIDI3LjgzIDUwIi8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQwLjMzIDUwIDUwIDQwLjMzIDUwIDM0LjY3IDM0LjY3IDUwIDQwLjMzIDUwIi8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjUwIDUwIDUwIDQ3LjE3IDQ3LjE3IDUwIDUwIDUwIi8+PC9zdmc+");
  background-repeat: repeat;
  height: 40px;
  position: absolute;
  opacity: 0.5;
}
scorebar .scorebar-bottom {
  font-size: 10px;
}
scorebar .scorebar-bottom .scorebar-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 15px;
  margin-top: 50px;
}
scorebar .scorebar-bottom .scorebar-legend .scorebar-legend-sample {
  border-radius: 100%;
  display: inline-block;
  flex-shrink: 0;
  height: 18px;
  margin-right: 5px;
  width: 18px;
}
scorebar .scorebar-bottom .scorebar-legend .scorebar-item {
  align-items: center;
  display: flex;
  max-width: 130px;
  padding-right: 25px;
}
scorebar .scorebar-bottom .scorebar-legend .scorebar-range .scorebar-legend-sample {
  background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MCA1MCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNhYmM3Y2E7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5ncmFwaF9zdHJpcF9wYXR0ZXJuPC90aXRsZT48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMCAwIDAgMi44MyAyLjgzIDAgMCAwIi8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjkuNjcgMCAwIDkuNjcgMCAxNS4zMyAxNS4zMyAwIDkuNjcgMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIyMi4xNyAwIDAgMjIuMTcgMCAyNy44MyAyNy44MyAwIDIyLjE3IDAiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMzQuNjcgMCAwIDM0LjY3IDAgNDAuMzMgNDAuMzMgMCAzNC42NyAwIi8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjUwIDIuODMgNTAgMCA0Ny4xNyAwIDAgNDcuMTcgMCA1MCAyLjgzIDUwIDUwIDIuODMiLz48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMTUuMzMgNTAgNTAgMTUuMzMgNTAgOS42NyA5LjY3IDUwIDE1LjMzIDUwIi8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjI3LjgzIDUwIDUwIDI3LjgzIDUwIDIyLjE3IDIyLjE3IDUwIDI3LjgzIDUwIi8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjQwLjMzIDUwIDUwIDQwLjMzIDUwIDM0LjY3IDM0LjY3IDUwIDQwLjMzIDUwIi8+PHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjUwIDUwIDUwIDQ3LjE3IDQ3LjE3IDUwIDUwIDUwIi8+PC9zdmc+");
  background-repeat: repeat;
  border-radius: 0;
}
scorebar .scorebar-bottom .scorebar-sample {
  display: flex;
  justify-content: center;
  line-height: 40px;
  text-align: center;
}

.login-card {
  padding: 22px 22px 44px;
  max-width: 350px;
  height: auto;
  border-radius: 5px;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
  background: #ffffff;
  color: #262626;
  max-height: 485px;
  transition: max-height 0.5s ease-out;
  overflow: hidden;
}
.login-card input {
  border: 0;
  border-bottom: 2px solid #C5C4C4;
  border-radius: 0;
}
.login-card label {
  margin-top: 30px;
  margin-bottom: 0;
  color: #62B0C4;
  font-family: Roboto, "Open Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}
.login-card.expanded {
  max-height: 1000px;
}
.login-card .login-button {
  margin-top: 2rem;
  text-align: center;
}
.login-card .login-button button {
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
.login-card .nav-tabs {
  display: flex;
  margin-bottom: 1rem;
  border: 0;
}
.login-card .nav-tabs .nav-item {
  flex: 1;
  margin-right: 1rem;
}
.login-card .nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.login-card .nav-tabs .nav-link {
  border: 0;
  border-radius: 5px;
  background: #F6F6F6;
  color: #758587;
  font-family: Roboto, "Open Sans", sans-serif;
  text-align: center;
}
.login-card .nav-tabs .nav-link:hover, .login-card .nav-tabs .nav-link:focus {
  background-color: #dddddd;
  color: #385659;
}
.login-card .nav-tabs .nav-link.active {
  border-bottom: 2px solid #62B0C4;
  border-radius: 0;
  color: #62B0C4;
  cursor: default;
  background-color: #ffffff;
}
.login-card .nav-tabs .nav-link.active:hover, .login-card .nav-tabs .nav-link.active:focus {
  background-color: #ffffff;
  color: #62B0C4;
}

.hcap-options .hcap-option {
  min-height: 50px;
  padding: 0 10px;
}
.hcap-options .hcap-option:hover {
  background-color: #F6F6F6;
}

html, body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #262626;
}

body {
  display: flex;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}
@media (max-width: 833.98px) {
  body {
    flex-direction: column;
  }
}
body * {
  color-adjust: exact;
}

h1.small, h2.small, h3.small, h4.small, h5.small, h6.small, p.small, li.small {
  font-size: 0.75rem;
  color: #758587;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Roboto, "Open Sans", sans-serif;
}

h1, h2, h3 {
  font-weight: normal;
}

h1 {
  font-size: 3.38rem;
  line-height: 1.44;
  padding-top: 2.9406rem;
  margin-top: 2.2646rem;
  margin-bottom: 0.312988rem;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.44;
  padding-top: 2.4975rem;
  margin-top: 1.8675rem;
  margin-bottom: 0.74925rem;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.08;
  padding-top: 1.935rem;
  margin-top: 1.5rem;
  margin-bottom: 1.3125rem;
}

h4, h5, h6 {
  line-height: 1.63;
  padding-top: 0.5rem;
  margin-top: 1.33rem;
  margin-bottom: 1.13rem;
}

h4 {
  font-size: 1.25rem;
  padding-top: 0.35rem;
  margin-top: 1.25rem;
  margin-bottom: 0.95rem;
}

h5 {
  font-size: 1.1rem;
  padding-top: 0.35rem;
  margin-top: 0.95rem;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1rem;
  padding-top: 0;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

p {
  font-size: 1rem;
  line-height: 1.63;
  padding-top: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1.13rem;
}
p:first-child {
  margin-top: 0;
  padding-top: 0;
}

ul {
  margin-top: 0.5rem;
  margin-bottom: 1.13rem;
}
ul li {
  font-size: 1rem;
  line-height: 1.63;
}

a {
  color: inherit;
}
a:hover {
  color: #262626;
}
a[disabled] {
  pointer-events: none;
}

button {
  font-size: 1rem;
  font-family: Roboto, "Open Sans", sans-serif;
  user-select: none;
}
button:focus {
  outline: none;
}
button[disabled], button:disabled, button.disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.65;
}

select {
  text-transform: capitalize;
}

textarea, select, input {
  outline: none;
}

input {
  padding: 5px 0;
  border: 0;
  width: 100%;
}

tr {
  line-height: 32px;
}

h1, h2, h3, h4, h5, h6, th, button, .card-title, .nav-link {
  text-transform: capitalize;
}

.form-control:focus {
  color: inherit;
  background-color: inherit;
  border-color: #262626;
  outline: none;
  box-shadow: none;
}

input[type=radio] {
  -moz-appearance: button;
  -ms-appearance: button;
  -webkit-appearance: button;
  appearance: button;
  background: #fff;
  border-left-color: #C5C4C4;
  border-radius: 50%;
  border-top-color: #C5C4C4;
  border: 3px solid #C5C4C4;
  cursor: pointer;
  height: 25px;
  width: 25px;
}
input[type=radio]:checked {
  border: 8px solid #385659;
}

input[type=file] {
  width: auto;
  display: block;
}

.table {
  color: #385659;
}
.table i {
  font-size: 20px;
}
.table th {
  border-top: 0;
}

.hcap-btn {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  border: 2px solid #C5C4C4;
  padding: 8px 18px;
  border-radius: 5px;
  background-color: #C5C4C4;
  color: #262626;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.06rem;
  cursor: pointer;
}
.hcap-btn:active, .hcap-btn:hover, .hcap-btn:focus {
  border-color: #acaaaa;
  background-color: #acaaaa;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border 0.15s ease-in-out;
  outline: none;
}
.hcap-btn.hcap-btn-small {
  font-size: 0.9rem;
  padding: 5px 13px;
}
.hcap-btn span.icon {
  margin-right: 6px;
}

.content {
  flex-grow: 1;
  overflow-y: auto;
}

.progress {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-print-color-adjust: exact;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  height: 20px;
  margin-bottom: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress-bar {
  min-width: 20px;
}

.navbar {
  padding: 0;
}
.navbar .navbar-container {
  display: flex;
  height: 80px;
}
.navbar .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar .navbar-collapse .navbar-nav {
  flex-direction: row;
  flex-grow: 1;
  justify-content: flex-end;
}
.navbar .navbar-brand {
  padding: 0;
}
.navbar .navbar-brand > img {
  display: inline-block;
}

.progress-bar {
  background-color: lightgray;
}

.paragraph-wrapper {
  margin: 0 auto;
  width: 640px;
  max-width: 640px;
}

:root {
  --dark: #262626;
}

.text-dark,
.hcap-text-dark {
  color: #262626 !important;
}

.bg-dark,
.hcap-bg-dark {
  background-color: #262626 !important;
}

.svg-fill-dark {
  fill: #262626;
}

.before-bg-dark:before,
.hcap-before-bg-dark:before {
  background-color: #262626 !important;
}

.border-dark {
  border-color: #262626;
}

:root {
  --light: #F6F6F6;
}

.text-light,
.hcap-text-light {
  color: #F6F6F6 !important;
}

.bg-light,
.hcap-bg-light {
  background-color: #F6F6F6 !important;
}

.svg-fill-light {
  fill: #F6F6F6;
}

.before-bg-light:before,
.hcap-before-bg-light:before {
  background-color: #F6F6F6 !important;
}

.border-light {
  border-color: #F6F6F6;
}

:root {
  --light-accent: #dddddd;
}

.text-light-accent,
.hcap-text-light-accent {
  color: #dddddd !important;
}

.bg-light-accent,
.hcap-bg-light-accent {
  background-color: #dddddd !important;
}

.svg-fill-light-accent {
  fill: #dddddd;
}

.before-bg-light-accent:before,
.hcap-before-bg-light-accent:before {
  background-color: #dddddd !important;
}

.border-light-accent {
  border-color: #dddddd;
}

:root {
  --grey: #C5C4C4;
}

.text-grey,
.hcap-text-grey {
  color: #C5C4C4 !important;
}

.bg-grey,
.hcap-bg-grey {
  background-color: #C5C4C4 !important;
}

.svg-fill-grey {
  fill: #C5C4C4;
}

.before-bg-grey:before,
.hcap-before-bg-grey:before {
  background-color: #C5C4C4 !important;
}

.border-grey {
  border-color: #C5C4C4;
}

:root {
  --primary: #385659;
}

.text-primary,
.hcap-text-primary {
  color: #385659 !important;
}

.bg-primary,
.hcap-bg-primary {
  background-color: #385659 !important;
}

.svg-fill-primary {
  fill: #385659;
}

.before-bg-primary:before,
.hcap-before-bg-primary:before {
  background-color: #385659 !important;
}

.border-primary {
  border-color: #385659;
}

:root {
  --secondary: #758587;
}

.text-secondary,
.hcap-text-secondary {
  color: #758587 !important;
}

.bg-secondary,
.hcap-bg-secondary {
  background-color: #758587 !important;
}

.svg-fill-secondary {
  fill: #758587;
}

.before-bg-secondary:before,
.hcap-before-bg-secondary:before {
  background-color: #758587 !important;
}

.border-secondary {
  border-color: #758587;
}

:root {
  --success: #55951B;
}

.text-success,
.hcap-text-success {
  color: #55951B !important;
}

.bg-success,
.hcap-bg-success {
  background-color: #55951B !important;
}

.svg-fill-success {
  fill: #55951B;
}

.before-bg-success:before,
.hcap-before-bg-success:before {
  background-color: #55951B !important;
}

.border-success {
  border-color: #55951B;
}

:root {
  --danger: #CB333B;
}

.text-danger,
.hcap-text-danger {
  color: #CB333B !important;
}

.bg-danger,
.hcap-bg-danger {
  background-color: #CB333B !important;
}

.svg-fill-danger {
  fill: #CB333B;
}

.before-bg-danger:before,
.hcap-before-bg-danger:before {
  background-color: #CB333B !important;
}

.border-danger {
  border-color: #CB333B;
}

:root {
  --warning: #EF9600;
}

.text-warning,
.hcap-text-warning {
  color: #EF9600 !important;
}

.bg-warning,
.hcap-bg-warning {
  background-color: #EF9600 !important;
}

.svg-fill-warning {
  fill: #EF9600;
}

.before-bg-warning:before,
.hcap-before-bg-warning:before {
  background-color: #EF9600 !important;
}

.border-warning {
  border-color: #EF9600;
}

:root {
  --info: #ABC7CA;
}

.text-info,
.hcap-text-info {
  color: #ABC7CA !important;
}

.bg-info,
.hcap-bg-info {
  background-color: #ABC7CA !important;
}

.svg-fill-info {
  fill: #ABC7CA;
}

.before-bg-info:before,
.hcap-before-bg-info:before {
  background-color: #ABC7CA !important;
}

.border-info {
  border-color: #ABC7CA;
}

:root {
  --moral: #EEC04F;
}

.text-moral,
.hcap-text-moral {
  color: #EEC04F !important;
}

.bg-moral,
.hcap-bg-moral {
  background-color: #EEC04F !important;
}

.svg-fill-moral {
  fill: #EEC04F;
}

.before-bg-moral:before,
.hcap-before-bg-moral:before {
  background-color: #EEC04F !important;
}

.border-moral {
  border-color: #EEC04F;
}

:root {
  --self: #92B54D;
}

.text-self,
.hcap-text-self {
  color: #92B54D !important;
}

.bg-self,
.hcap-bg-self {
  background-color: #92B54D !important;
}

.svg-fill-self {
  fill: #92B54D;
}

.before-bg-self:before,
.hcap-before-bg-self:before {
  background-color: #92B54D !important;
}

.border-self {
  border-color: #92B54D;
}

:root {
  --relationship: #DD955A;
}

.text-relationship,
.hcap-text-relationship {
  color: #DD955A !important;
}

.bg-relationship,
.hcap-bg-relationship {
  background-color: #DD955A !important;
}

.svg-fill-relationship {
  fill: #DD955A;
}

.before-bg-relationship:before,
.hcap-before-bg-relationship:before {
  background-color: #DD955A !important;
}

.border-relationship {
  border-color: #DD955A;
}

:root {
  --team: #62B0C4;
}

.text-team,
.hcap-text-team {
  color: #62B0C4 !important;
}

.bg-team,
.hcap-bg-team {
  background-color: #62B0C4 !important;
}

.svg-fill-team {
  fill: #62B0C4;
}

.before-bg-team:before,
.hcap-before-bg-team:before {
  background-color: #62B0C4 !important;
}

.border-team {
  border-color: #62B0C4;
}

:root {
  --team-self: #62B0C4;
}

.text-team-self,
.hcap-text-team-self {
  color: #62B0C4 !important;
}

.bg-team-self,
.hcap-bg-team-self {
  background-color: #62B0C4 !important;
}

.svg-fill-team-self {
  fill: #62B0C4;
}

.before-bg-team-self:before,
.hcap-before-bg-team-self:before {
  background-color: #62B0C4 !important;
}

.border-team-self {
  border-color: #62B0C4;
}

:root {
  --leader: #A56F9E;
}

.text-leader,
.hcap-text-leader {
  color: #A56F9E !important;
}

.bg-leader,
.hcap-bg-leader {
  background-color: #A56F9E !important;
}

.svg-fill-leader {
  fill: #A56F9E;
}

.before-bg-leader:before,
.hcap-before-bg-leader:before {
  background-color: #A56F9E !important;
}

.border-leader {
  border-color: #A56F9E;
}

:root {
  --moral-muted: #F6DFA6;
}

.text-moral-muted,
.hcap-text-moral-muted {
  color: #F6DFA6 !important;
}

.bg-moral-muted,
.hcap-bg-moral-muted {
  background-color: #F6DFA6 !important;
}

.svg-fill-moral-muted {
  fill: #F6DFA6;
}

.before-bg-moral-muted:before,
.hcap-before-bg-moral-muted:before {
  background-color: #F6DFA6 !important;
}

.border-moral-muted {
  border-color: #F6DFA6;
}

:root {
  --self-muted: #C8D9A5;
}

.text-self-muted,
.hcap-text-self-muted {
  color: #C8D9A5 !important;
}

.bg-self-muted,
.hcap-bg-self-muted {
  background-color: #C8D9A5 !important;
}

.svg-fill-self-muted {
  fill: #C8D9A5;
}

.before-bg-self-muted:before,
.hcap-before-bg-self-muted:before {
  background-color: #C8D9A5 !important;
}

.border-self-muted {
  border-color: #C8D9A5;
}

:root {
  --relationship-muted: #EDC9AB;
}

.text-relationship-muted,
.hcap-text-relationship-muted {
  color: #EDC9AB !important;
}

.bg-relationship-muted,
.hcap-bg-relationship-muted {
  background-color: #EDC9AB !important;
}

.svg-fill-relationship-muted {
  fill: #EDC9AB;
}

.before-bg-relationship-muted:before,
.hcap-before-bg-relationship-muted:before {
  background-color: #EDC9AB !important;
}

.border-relationship-muted {
  border-color: #EDC9AB;
}

:root {
  --team-muted: #AFD7E1;
}

.text-team-muted,
.hcap-text-team-muted {
  color: #AFD7E1 !important;
}

.bg-team-muted,
.hcap-bg-team-muted {
  background-color: #AFD7E1 !important;
}

.svg-fill-team-muted {
  fill: #AFD7E1;
}

.before-bg-team-muted:before,
.hcap-before-bg-team-muted:before {
  background-color: #AFD7E1 !important;
}

.border-team-muted {
  border-color: #AFD7E1;
}

:root {
  --leader-muted: #D2B6CE;
}

.text-leader-muted,
.hcap-text-leader-muted {
  color: #D2B6CE !important;
}

.bg-leader-muted,
.hcap-bg-leader-muted {
  background-color: #D2B6CE !important;
}

.svg-fill-leader-muted {
  fill: #D2B6CE;
}

.before-bg-leader-muted:before,
.hcap-before-bg-leader-muted:before {
  background-color: #D2B6CE !important;
}

.border-leader-muted {
  border-color: #D2B6CE;
}

:root {
  --team-self-muted: #AFD7E1;
}

.text-team-self-muted,
.hcap-text-team-self-muted {
  color: #AFD7E1 !important;
}

.bg-team-self-muted,
.hcap-bg-team-self-muted {
  background-color: #AFD7E1 !important;
}

.svg-fill-team-self-muted {
  fill: #AFD7E1;
}

.before-bg-team-self-muted:before,
.hcap-before-bg-team-self-muted:before {
  background-color: #AFD7E1 !important;
}

.border-team-self-muted {
  border-color: #AFD7E1;
}

:root {
  --white: #FFFFFF;
}

.text-white,
.hcap-text-white {
  color: #FFFFFF !important;
}

.bg-white,
.hcap-bg-white {
  background-color: #FFFFFF !important;
}

.svg-fill-white {
  fill: #FFFFFF;
}

.before-bg-white:before,
.hcap-before-bg-white:before {
  background-color: #FFFFFF !important;
}

.border-white {
  border-color: #FFFFFF;
}

.hcap-btn-light {
  border-color: #F6F6F6;
  background-color: #F6F6F6;
  color: #758587;
}
.hcap-btn-light:active, .hcap-btn-light:hover, .hcap-btn-light:focus {
  border-color: #dddddd;
  background-color: #dddddd;
}

.hcap-btn-outline-light {
  border-color: #F6F6F6;
  background-color: #ffffff;
  color: #F6F6F6;
  font-weight: bold;
}
.hcap-btn-outline-light:active, .hcap-btn-outline-light:hover, .hcap-btn-outline-light:focus {
  border-color: #dddddd;
  background-color: #dddddd;
  color: #758587;
}

.hcap-btn-primary {
  border-color: #385659;
  background-color: #385659;
  color: #ffffff;
}
.hcap-btn-primary:active, .hcap-btn-primary:hover, .hcap-btn-primary:focus {
  border-color: #24383a;
  background-color: #24383a;
}

.hcap-btn-outline-primary {
  border-color: #385659;
  background-color: #ffffff;
  color: #385659;
  font-weight: bold;
}
.hcap-btn-outline-primary:active, .hcap-btn-outline-primary:hover, .hcap-btn-outline-primary:focus {
  border-color: #24383a;
  background-color: #24383a;
  color: #ffffff;
}

.hcap-btn-secondary {
  border-color: #758587;
  background-color: #758587;
  color: #ffffff;
}
.hcap-btn-secondary:active, .hcap-btn-secondary:hover, .hcap-btn-secondary:focus {
  border-color: #5d6a6c;
  background-color: #5d6a6c;
}

.hcap-btn-outline-secondary {
  border-color: #758587;
  background-color: #ffffff;
  color: #758587;
  font-weight: bold;
}
.hcap-btn-outline-secondary:active, .hcap-btn-outline-secondary:hover, .hcap-btn-outline-secondary:focus {
  border-color: #5d6a6c;
  background-color: #5d6a6c;
  color: #ffffff;
}

.hcap-btn-success {
  border-color: #55951B;
  background-color: #55951B;
  color: #ffffff;
}
.hcap-btn-success:active, .hcap-btn-success:hover, .hcap-btn-success:focus {
  border-color: #3c6a13;
  background-color: #3c6a13;
}

.hcap-btn-outline-success {
  border-color: #55951B;
  background-color: #ffffff;
  color: #55951B;
  font-weight: bold;
}
.hcap-btn-outline-success:active, .hcap-btn-outline-success:hover, .hcap-btn-outline-success:focus {
  border-color: #3c6a13;
  background-color: #3c6a13;
  color: #ffffff;
}

.hcap-btn-danger {
  border-color: #CB333B;
  background-color: #CB333B;
  color: #ffffff;
}
.hcap-btn-danger:active, .hcap-btn-danger:hover, .hcap-btn-danger:focus {
  border-color: #a2292f;
  background-color: #a2292f;
}

.hcap-btn-outline-danger {
  border-color: #CB333B;
  background-color: #ffffff;
  color: #CB333B;
  font-weight: bold;
}
.hcap-btn-outline-danger:active, .hcap-btn-outline-danger:hover, .hcap-btn-outline-danger:focus {
  border-color: #a2292f;
  background-color: #a2292f;
  color: #ffffff;
}

.hcap-btn-warning {
  border-color: #EF9600;
  background-color: #EF9600;
  color: #ffffff;
}
.hcap-btn-warning:active, .hcap-btn-warning:hover, .hcap-btn-warning:focus {
  border-color: #bc7600;
  background-color: #bc7600;
}

.hcap-btn-outline-warning {
  border-color: #EF9600;
  background-color: #ffffff;
  color: #EF9600;
  font-weight: bold;
}
.hcap-btn-outline-warning:active, .hcap-btn-outline-warning:hover, .hcap-btn-outline-warning:focus {
  border-color: #bc7600;
  background-color: #bc7600;
  color: #ffffff;
}

.hcap-btn-info {
  border-color: #ABC7CA;
  background-color: #ABC7CA;
  color: #ffffff;
}
.hcap-btn-info:active, .hcap-btn-info:hover, .hcap-btn-info:focus {
  border-color: #8cb2b6;
  background-color: #8cb2b6;
}

.hcap-btn-outline-info {
  border-color: #ABC7CA;
  background-color: #ffffff;
  color: #ABC7CA;
  font-weight: bold;
}
.hcap-btn-outline-info:active, .hcap-btn-outline-info:hover, .hcap-btn-outline-info:focus {
  border-color: #8cb2b6;
  background-color: #8cb2b6;
  color: #ffffff;
}

.hcap-btn-moral {
  border-color: #EEC04F;
  background-color: #EEC04F;
  color: #ffffff;
}
.hcap-btn-moral:active, .hcap-btn-moral:hover, .hcap-btn-moral:focus {
  border-color: #eaaf20;
  background-color: #eaaf20;
}

.hcap-btn-outline-moral {
  border-color: #EEC04F;
  background-color: #ffffff;
  color: #EEC04F;
  font-weight: bold;
}
.hcap-btn-outline-moral:active, .hcap-btn-outline-moral:hover, .hcap-btn-outline-moral:focus {
  border-color: #eaaf20;
  background-color: #eaaf20;
  color: #ffffff;
}

.hcap-btn-self {
  border-color: #92B54D;
  background-color: #92B54D;
  color: #ffffff;
}
.hcap-btn-self:active, .hcap-btn-self:hover, .hcap-btn-self:focus {
  border-color: #75923d;
  background-color: #75923d;
}

.hcap-btn-outline-self {
  border-color: #92B54D;
  background-color: #ffffff;
  color: #92B54D;
  font-weight: bold;
}
.hcap-btn-outline-self:active, .hcap-btn-outline-self:hover, .hcap-btn-outline-self:focus {
  border-color: #75923d;
  background-color: #75923d;
  color: #ffffff;
}

.hcap-btn-relationship {
  border-color: #DD955A;
  background-color: #DD955A;
  color: #ffffff;
}
.hcap-btn-relationship:active, .hcap-btn-relationship:hover, .hcap-btn-relationship:focus {
  border-color: #d47a30;
  background-color: #d47a30;
}

.hcap-btn-outline-relationship {
  border-color: #DD955A;
  background-color: #ffffff;
  color: #DD955A;
  font-weight: bold;
}
.hcap-btn-outline-relationship:active, .hcap-btn-outline-relationship:hover, .hcap-btn-outline-relationship:focus {
  border-color: #d47a30;
  background-color: #d47a30;
  color: #ffffff;
}

.hcap-btn-team {
  border-color: #62B0C4;
  background-color: #62B0C4;
  color: #ffffff;
}
.hcap-btn-team:active, .hcap-btn-team:hover, .hcap-btn-team:focus {
  border-color: #429ab1;
  background-color: #429ab1;
}

.hcap-btn-outline-team {
  border-color: #62B0C4;
  background-color: #ffffff;
  color: #62B0C4;
  font-weight: bold;
}
.hcap-btn-outline-team:active, .hcap-btn-outline-team:hover, .hcap-btn-outline-team:focus {
  border-color: #429ab1;
  background-color: #429ab1;
  color: #ffffff;
}

.hcap-btn-leader {
  border-color: #A56F9E;
  background-color: #A56F9E;
  color: #ffffff;
}
.hcap-btn-leader:active, .hcap-btn-leader:hover, .hcap-btn-leader:focus {
  border-color: #8a5784;
  background-color: #8a5784;
}

.hcap-btn-outline-leader {
  border-color: #A56F9E;
  background-color: #ffffff;
  color: #A56F9E;
  font-weight: bold;
}
.hcap-btn-outline-leader:active, .hcap-btn-outline-leader:hover, .hcap-btn-outline-leader:focus {
  border-color: #8a5784;
  background-color: #8a5784;
  color: #ffffff;
}

.form-control {
  outline: 0;
  box-shadow: none;
}

.form-check {
  padding: 0.5rem 0 0.5rem 2.5rem;
}

.form-check-input {
  margin-left: -2rem;
  margin-top: unset;
}

.button.fas, .button.far, .button.fa {
  cursor: pointer;
}
.button.fas:hover, .button.far:hover, .button.fa:hover {
  color: #758587;
}

.modal-content .modal-content {
  border-radius: 5px;
}
.modal-content .modal-title {
  margin-top: 0;
  padding-top: 1rem;
}
.modal-content .error {
  color: #CB333B;
}

.card-title {
  margin-top: 0;
  padding: 0;
}

.nav-link {
  user-select: none;
}
.nav-link:not(.active) {
  cursor: pointer;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #F6F6F6;
}

.question-response-group .checkbox {
  color: #C5C4C4;
  cursor: pointer;
  font-size: 28px;
}
.question-response-group .checkbox.fa-check-square {
  color: #385659;
}
.question-response-group .question-row {
  padding-bottom: 10px;
}

.editable-click {
  color: #262626;
  border-bottom: 0;
}
.editable-click:hover {
  color: inherit;
}

.mb-1 {
  margin-bottom: 2.5px !important;
}

.mb-2 {
  margin-bottom: 5px !important;
}

.mb-3 {
  margin-bottom: 10px !important;
}

.mb-4 {
  margin-bottom: 15px !important;
}

.mb-5 {
  margin-bottom: 30px !important;
}

.mt-1 {
  margin-top: 2.5px !important;
}

.mt-2 {
  margin-top: 5px !important;
}

.mt-3 {
  margin-top: 10px !important;
}

.mt-4 {
  margin-top: 15px !important;
}

.mt-5 {
  margin-top: 30px !important;
}

.ml-1 {
  margin-left: 2.5px !important;
}

.ml-2 {
  margin-left: 5px !important;
}

.ml-3 {
  margin-left: 10px !important;
}

.ml-4 {
  margin-left: 15px !important;
}

.ml-5 {
  margin-left: 30px !important;
}

.mr-1 {
  margin-right: 2.5px !important;
}

.mr-2 {
  margin-right: 5px !important;
}

.mr-3 {
  margin-right: 10px !important;
}

.mr-4 {
  margin-right: 15px !important;
}

.mr-5 {
  margin-right: 30px !important;
}

.text-underline {
  text-decoration: underline !important;
}

.text-weight-medium {
  font-weight: 600 !important;
}

@media print {
  body {
    -webkit-print-color-adjust: exact !important;
    height: unset !important;
    max-height: unset !important;
    overflow: unset !important;
  }
}

/*# sourceMappingURL=app_v2.css.map */
