:root {
  --attainment-color-1: 255 51 51;
  --attainment-color-2: 255 192 0;
  --attainment-color-3: 167 168 169;
  --attainment-color-4: 141 201 191;
  --attainment-color-5: 120 184 51;
  --attainment-color-6: 101 80 147;
}

.icp-assessment__preamble {
  display: flex;
  gap: var(--space-medium);
}
@media screen and (min-width: 992px) {
  .icp-assessment__preamble {
    flex-flow: row nowrap;
  }
  .icp-assessment__preamble > * {
    flex-basis: calc(50% - 0.5 * var(--space-medium));
  }
}
.icp-assessment__preamble .preamble__form-content:is([data-show-submitted-message=false]) .submitted-message {
  display: none !important;
}
.icp-assessment__preamble .preamble__form-content form.hs-form {
  background: transparent;
  outline: none;
  padding: 0;
}
html body form.hs-form .hs-form-field {
  padding-bottom: 30px;
}

.icp-assessment__preamble .preamble__form-content form.hs-form .hs-email.hs-form-field {
  display: none;
}

.icp-assessment {
  display: block;
  --asmt-padding: 15px;
}
@media screen and (min-width: 768px), print {
  .icp-assessment {
    --asmt-padding: 20px;
  }
}

.icp-assessment__progress {
  display: grid;
  grid-template-rows: auto;
  gap: var(--asmt-padding);
  padding-top: 10px;
  --progress-section-count: 5;
}
@media screen and (max-width: 767px) {
  .icp-assessment__progress {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px), print {
  .icp-assessment__progress {
    grid-template-columns: repeat(var(--progress-section-count), 1fr);
  }
}
.icp-assessment__progress:not([active]) {
  display: none;
}
.icp-assessment__progress .progress__section {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 5px;
  grid-row: 1/2;
  --progress-section-percent: 20%;
  --progress-section-completed: 0;
}
@media screen and (max-width: 767px) {
  .icp-assessment__progress .progress__section:not([active]) {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .icp-assessment__progress .progress__section:not([active]) {
    opacity: 0.25;
  }
  .icp-assessment__progress .progress__section:not([active]) .progress__number {
    opacity: 0;
  }
}
.icp-assessment__progress .progress__section h5 {
  flex-basis: auto;
}
.icp-assessment__progress .progress__section .progress__number {
  flex-basis: auto;
  display: flex;
  justify-content: flex-end;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  gap: 3px;
}
.icp-assessment__progress .progress__section .progress__bar {
  flex-basis: 100%;
  height: 6px;
  position: relative;
  border-radius: 3px;
}
.icp-assessment__progress .progress__section .progress__bar > span {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  border-radius: 3px;
}
.icp-assessment__progress .progress__section .progress__bar .current {
  background: var(--color-icp-cyan);
  width: calc(var(--progress-section-percent) * var(--progress-section-completed));
  z-index: 1;
}
.icp-assessment__progress .progress__section .progress__bar .total {
  background: var(--color-icp-dark-blue);
  width: 100%;
}
.icp-assessment__progress .section__overview {
  display: none;
  grid-row: 2/3;
  grid-column: 1/calc(var(--progress-section-count) + 1);
}
.icp-assessment__progress .section__overview .section__overview--inner {
  max-width: 720px;
}
.icp-assessment__progress .progress__section:is([active]) + .section__overview {
  display: block;
}

.icp-assessment__main {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, auto);
  align-items: start;
}

.icp-assessment__item {
  grid-column: 1/2;
  grid-row: 1/2;
  gap: 0 var(--asmt-padding);
  border: 1px solid var(--color-grey-90);
  border-radius: var(--radius-medium);
}
.icp-assessment__item:not(.icp-assessment__item--form) {
  display: grid;
}
@media screen and (max-width: 767px) {
  .icp-assessment__item:not(.icp-assessment__item--form) {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-template-areas: "topic" "question" "answer" "nav";
  }
}
@media screen and (min-width: 768px), print {
  .icp-assessment__item:not(.icp-assessment__item--form) {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "topic topic topic" "question answer answer" "nav nav nav";
  }
}
.icp-assessment__item:is(.icp-assessment__item--form):not([active]) .icp-assessment__form {
  display: none;
}
.icp-assessment__item:not([active]) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(var(--asmt-padding));
  z-index: -1;
  position: absolute;
}
.icp-assessment__item:is([active]) {
  transition: all 250ms ease;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
  z-index: 1;
}

.icp-assessment__section-overview {
  grid-row-start: topic;
  grid-row-end: answer;
  grid-column-start: topic;
  grid-column-end: answer;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  padding: calc(2 * var(--asmt-padding)) var(--asmt-padding);
}
@media screen and (min-width: 768px), print {
  .icp-assessment__section-overview {
    min-height: 600px;
  }
}
.icp-assessment__section-overview .section-overview__inner {
  max-width: 560px;
}

.icp-assessment__topic {
  border-bottom: 1px solid var(--color-grey-90);
  padding: 0 19px;
  min-height: 58px;
  display: flex;
  align-items: center;
  flex-basis: 100%;
  grid-area: topic;
}
.icp-assessment__topic > * {
  text-transform: uppercase;
}

.icp-assessment__question {
  padding: var(--asmt-padding);
  grid-area: question;
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
}
@media screen and (min-width: 768px), print {
  .icp-assessment__question {
    padding-right: 0;
  }
}
.icp-assessment__question .question__text {
  line-height: 1.4;
  font-weight: 500;
}
.icp-assessment__question .question__text strong {
  font-weight: 700;
}
.icp-assessment__question p {
  opacity: 0.8;
  margin-top: 0;
  font-size: var(--size-medium);
}
@media screen and (min-width: 768px), print {
  .icp-assessment__question p {
    font-size: var(--size-h6-s);
  }
}

.icp-assessment__answer {
  background: var(--color-grey-95);
  padding: var(--asmt-padding);
  grid-area: answer;
}
@media screen and (min-width: 768px), print {
  .icp-assessment__answer {
    border-left: 1px solid var(--color-grey-90);
  }
}
.icp-assessment__answer hr {
  height: 1px;
  background: var(--color-grey-90);
}

.icp-assessment__multiple .icp-assessment__multiple-arrow {
  position: absolute;
  top: calc(50% - var(--asmt-padding) * 2);
  width: calc(var(--asmt-padding) + 20px);
  height: calc(var(--asmt-padding) * 4);
  z-index: 9999;
  background: white;
  cursor: pointer;
  border-radius: var(--arrow-radius);
  border-width: var(--arrow-border);
  border-style: solid;
  border-color: var(--color-grey-90);
  display: none;
}
.icp-assessment__multiple .icp-assessment__multiple-arrow:is([disabled]) {
  cursor: not-allowed;
}
.icp-assessment__multiple .icp-assessment__multiple-arrow:not([disabled]) {
  color: var(--color-red);
}
.icp-assessment__multiple .icp-assessment__multiple-arrow:is([data-direction=prev]) {
  left: -20px;
  --arrow-border: 1px 1px 1px 0;
  --arrow-radius: 0 3px 3px 0;
}
.icp-assessment__multiple .icp-assessment__multiple-arrow:is([data-direction=next]) {
  right: -20px;
  --arrow-border: 1px 0 1px 1px;
  --arrow-radius: 3px 0 0 3px;
}
@media screen and (min-width: 768px), print {
  .icp-assessment__multiple .icp-assessment__multiple-arrow {
    display: none;
  }
}

.icp-assessment__multiple-choices {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-flow: column nowrap;
  width: 100%;
  border-bottom: 1px solid var(--color-grey-90);
  position: relative;
  gap: 15px;
}
.icp-assessment__multiple-choices:is([data-bar="1"]) {
  --bar-percentage: 0%;
}
.icp-assessment__multiple-choices:is([data-bar="2"]) {
  --bar-percentage: 25%;
}
.icp-assessment__multiple-choices:is([data-bar="3"]) {
  --bar-percentage: 50%;
}
.icp-assessment__multiple-choices:is([data-bar="4"]) {
  --bar-percentage: 75%;
}
.icp-assessment__multiple-choices:is([data-bar="5"]) {
  --bar-percentage: 100%;
}
.icp-assessment__multiple-choices::before, .icp-assessment__multiple-choices::after {
  content: " ";
  width: 4px;
  position: absolute;
  top: 28px;
  display: none;
}
.icp-assessment__multiple-choices::before {
  background: var(--color-grey-90);
  height: 100%;
  z-index: 1;
}
.icp-assessment__multiple-choices::after {
  background: var(--color-black);
  height: var(--bar-percentage);
  z-index: 2;
  transition: height 250ms ease;
}
.icp-assessment__multiple-choices button {
  position: relative;
  padding-top: var(--choice-padding);
  padding-right: calc(0.75 * var(--choice-padding));
  padding-bottom: calc(0.5 * var(--choice-padding));
  padding-left: var(--choice-padding);
  border: 1px solid var(--color-grey-80);
  background: white;
  z-index: 3;
  display: grid;
  grid-template-areas: "dot label" "dot answer";
  grid-template-columns: 20px auto;
  grid-template-rows: 20px auto;
  gap: 0 var(--choice-padding);
  border-radius: var(--radius-medium);
  --choice-padding: 15px;
  --acent-color: #000;
}
@media screen and (min-width: 768px), print {
  .icp-assessment__multiple-choices button {
    --choice-padding: 20px;
  }
}
.icp-assessment__multiple-choices button:is(.level-1) {
  --acent-color: rgb(var(--attainment-color-1));
}
.icp-assessment__multiple-choices button:is(.level-2) {
  --acent-color: rgb(var(--attainment-color-2));
}
.icp-assessment__multiple-choices button:is(.level-3) {
  --acent-color: rgb(var(--attainment-color-3));
}
.icp-assessment__multiple-choices button:is(.level-4) {
  --acent-color: rgb(var(--attainment-color-4));
}
.icp-assessment__multiple-choices button:is(.level-5) {
  --acent-color: rgb(var(--attainment-color-5));
}
.icp-assessment__multiple-choices button:is(.level-6) {
  --acent-color: rgb(var(--attainment-color-6));
}
.icp-assessment:is(.hide-assessment-level-labels) .icp-assessment__multiple-choices button {
  grid-template-areas: "dot answer";
  grid-template-columns: 20px auto;
  grid-template-rows: auto;
}
.icp-assessment:is(.hide-assessment-level-labels) .icp-assessment__multiple-choices button .label {
  display: none;
}
.icp-assessment:is(.hide-assessment-level-labels) .icp-assessment__multiple-choices button .dot {
  margin-bottom: calc(0.5 * var(--choice-padding));
}
.icp-assessment__multiple-choices button:is([active]) {
  outline: 2px solid var(--acent-color);
  outline-offset: -2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.icp-assessment__multiple-choices button:is([active]) .dot {
  transform: scale(1.4);
}
.icp-assessment__multiple-choices button:is([active]) .dot::after {
  font-family: "Material Icons" !important;
  font-weight: normal;
  font-style: normal;
  font-size: calc(0.7 * var(--dot-size));
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "check";
  color: white;
}
.icp-assessment__multiple-choices button:not([active]) .dot::after {
  content: " ";
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background-color: white;
  display: block;
  z-index: 3;
  transform: scale(0.7);
}
.icp-assessment__multiple-choices button:not([active]):hover, .icp-assessment__multiple-choices button:not([active]):focus-visible {
  cursor: pointer;
}
.icp-assessment__multiple-choices button:not([active]):hover .dot::before, .icp-assessment__multiple-choices button:not([active]):focus-visible .dot::before {
  opacity: 0.2;
  transform: scale(1);
}
.icp-assessment__multiple-choices button:not([active]):hover .dot::after, .icp-assessment__multiple-choices button:not([active]):focus-visible .dot::after {
  opacity: 0;
  transition: opacity 250ms ease;
}
.icp-assessment__multiple-choices button .dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: var(--acent-color);
  position: relative;
  grid-area: dot;
  z-index: 2;
  --dot-size: 15px;
}
@media screen and (min-width: 768px), print {
  .icp-assessment__multiple-choices button .dot {
    --dot-size: 20px;
  }
}
.icp-assessment__multiple-choices button .dot::before {
  display: block;
  content: " ";
  background: var(--acent-color);
  width: calc(2 * var(--dot-size));
  height: calc(2 * var(--dot-size));
  border-radius: 50%;
  position: absolute;
  left: calc(-0.5 * var(--dot-size));
  opacity: 0;
  transform: scale(0.5);
  transition: all 250ms ease;
  z-index: 1;
}
.icp-assessment__multiple-choices button .label {
  grid-area: label;
}
.icp-assessment__multiple-choices button .answer {
  grid-area: answer;
  font-size: calc(var(--size-base) * 1.75);
  font-weight: 500;
  line-height: 1.675;
  color: black;
  margin-top: -5px;
}

.icp-assessment__multiple-answers {
  line-height: 1.5;
  color: black;
  font-weight: 300;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
}
@media screen and (max-width: 767px) {
  .icp-assessment__multiple-answers {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px), print {
  .icp-assessment__multiple-answers {
    font-size: 20px;
  }
}
.icp-assessment__multiple-answers div {
  grid-column: 1/2;
  grid-row: 1/2;
}
.icp-assessment__multiple-answers div:not([active]) {
  visibility: hidden;
}

.icp-assessment__bool label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
}
.icp-assessment__bool label:hover {
  cursor: pointer;
}
.icp-assessment__bool label input {
  order: 2;
  flex-shrink: 0;
}
.icp-assessment__bool label input:is(:checked) + .icp-assessment__bool-false {
  opacity: 0.5 !important;
}
.icp-assessment__bool label input:not(:checked) + .icp-assessment__bool-false + .icp-assessment__bool-true {
  opacity: 0.5;
}
.icp-assessment__bool label .icp-assessment__bool-false {
  order: 1;
}
.icp-assessment__bool label .icp-assessment__bool-true {
  order: 3;
}

.icp-assessment__child-container:not([active]) {
  display: none;
}
.icp-assessment__child-container .icp-assessment__bool {
  background: white;
  border: 1px solid var(--color-grey-90);
  padding: 14px 9px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px), print {
  .icp-assessment__child-container .icp-assessment__bool {
    padding: 19px;
  }
}
.icp-assessment__child-container .icp-assessment__bool input {
  transform: scale(0.8);
}

.icp-assessment__nav {
  border-top: 1px solid var(--color-grey-90);
  padding: 0 var(--asmt-padding);
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-basis: 100%;
  grid-area: nav;
  display: grid;
  grid-template-areas: "prev space next";
  grid-template-columns: min-content auto min-content;
}
.icp-assessment__nav:not([active]) {
  display: none;
}
.icp-assessment__nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  transition: all 250ms ease;
  border-radius: 22px;
}
.icp-assessment__nav button:is([disabled]) {
  cursor: not-allowed;
  opacity: 0.25;
}
.icp-assessment__nav button:not([disabled]) {
  color: var(--color-red);
}
.icp-assessment__nav button:not([disabled]):hover {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.025);
}
.icp-assessment__nav button:not([disabled]):hover span:not(.material-icons) {
  text-decoration: none;
}
.icp-assessment__nav button:is(.icp-assessment__prev) {
  margin-left: -10px;
  grid-area: prev;
}
.icp-assessment__nav button:is(.icp-assessment__prev) span:not(.material-icons) {
  opacity: 0;
}
.icp-assessment__nav button:is(.icp-assessment__next) {
  margin-right: -10px;
  grid-area: next;
}
.icp-assessment__nav button:is(.icp-assessment__next) > span:not(.material-icons) {
  font-size: var(--size-medium);
  font-weight: 500;
  line-height: 1.4;
  display: inline-flex;
  gap: 0 0.5ch;
  padding-top: 2.5px;
}
@media screen and (min-width: 768px), print {
  .icp-assessment__nav button:is(.icp-assessment__next) > span:not(.material-icons) {
    width: max-content;
  }
}

.icp-assessment__form {
  padding: calc(2 * var(--asmt-padding)) var(--asmt-padding);
  max-width: 560px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(var(--asmt-padding));
  z-index: -1;
  margin: 0 auto;
}
@media screen and (min-width: 768px), print {
  .icp-assessment__form {
    min-height: 560px;
  }
}
.icp-assessment__form:is([active]) {
  transition: all 250ms ease;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
  z-index: 1;
}
.icp-assessment__form:is([loading]) > * {
  opacity: 0 !important;
}
.icp-assessment__form:is([loading]) > .icp-loader {
  opacity: 1 !important;
  display: block;
}
.icp-assessment__form .form__before-submit:is([active]) {
  display: block !important;
}
.icp-assessment__form form.hs-form {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  outline: 0;
}
.icp-assessment__form .icp-loader {
  display: none;
}
.icp-assessment__form .hs_cos_wrapper_type_form {
  width: 100%;
  max-width: 380px;
  margin: 0;
  text-align: center;
}
.icp-assessment__form .hs_cos_wrapper_type_form .actions .hs-button {
  width: 100%;
  text-align: center;
}
.icp-assessment__form .hs_cos_wrapper_type_form .submitted-message {
  outline-color: var(--color-grey-90);
  border-radius: var(--radius-medium);
}
.icp-assessment__form .actions input[type=submit]:is([disabled]) {
  opacity: 0.5;
  cursor: not-allowed;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=checkbox].switch {
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 2px solid var(--border-color);
    background: var(--background);
    transition: background 300ms, border-color 300ms, box-shadow 200ms;
    width: 38px;
    border-radius: 10.5px;
    --active: var(--color-red);
    --active-inner: var(--color-white);
    --focus: 2px rgba(var(--bold-green), .5);
    --border-color: var(--color-grey-70);
    --border-hover: var(--bold-green-light);
    --background: var(--color-grey-70);
    --box-shadow: 0 0 0 rgb(0 0 0 / 0%);
    --dot-color: var(--color-white);
    --dot-time: 500ms;
    --dot-time-easing: cubic-bezier(.2, .85, .32, 1.2);
    --disabled: light-grey;
    --disabled-inner: grey;
  }
  input[type=checkbox].switch::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    background: var(--dot-color);
    transform: translateX(var(--x-pos, 0));
    transition: transform var(--dot-time) var(--dot-time-easing);
    box-shadow: var(--box-shadow);
  }
  input[type=checkbox].switch:is(:checked) {
    --background: var(--active);
    --border-color: var(--active);
    --x-pos: 17px;
    --box-shadow: 0 5px 5px rgb(0 0 0 / 20%);
  }
  input[type=checkbox].switch:is(:disabled) {
    cursor: not-allowed;
    opacity: 0.5;
    --background: var(--disabled);
    --border-color: grey;
  }
  input[type=checkbox].switch:is(:disabled):is(:checked) {
    --background: var(--disabled-inner);
    --border-color: var(--border);
  }
  input[type=checkbox].switch:is(:disabled) + label {
    cursor: not-allowed;
  }
  input[type=checkbox].switch:is(:disabled):not(:checked)::after {
    opacity: 0.6;
  }
  input[type=checkbox].switch:focus {
    outline: 2px solid cornflowerblue;
  }
}
.icp-loader {
  height: var(--loader-size);
  width: var(--loader-size);
  --loader-size: 48px;
}
.icp-loader span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: var(--loader-size);
  width: var(--loader-size);
}
.icp-loader span::before, .icp-loader span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: var(--loader-size);
  width: var(--loader-size);
  border: 2px solid var(--color-red);
  border-radius: 50%;
  opacity: 0;
}
.icp-loader span::before {
  animation: icp-loader-1 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) infinite;
}
.icp-loader span::after {
  animation: icp-loader-2 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s infinite;
}

@keyframes icp-loader-1 {
  0% {
    transform: translate3d(0, 0, 0) scale(0);
    opacity: 1;
  }
  20% {
    opacity: 0.95;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0;
  }
}
@keyframes icp-loader-2 {
  0% {
    transform: translate3d(0, 0, 0) scale(0);
    opacity: 1;
  }
  20% {
    opacity: 0.95;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0.75);
    opacity: 0;
  }
}
