.kyl_security_assessment {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px;
  gap: 40px;
  border: 2px solid #F5F5F5;
  font-family: Arial;
}
.kyl_security_assessment .assessment-sidebar {
  flex: 0 0 550px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kyl_security_assessment .assessment-sidebar .step-item {
  padding: 16px;
  border-radius: 4px;
  border: 2px solid #F5F5F5;
  transition: all 0.3s ease;
  cursor: default;
}
.kyl_security_assessment .assessment-sidebar .step-item .step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.kyl_security_assessment .assessment-sidebar .step-item .step-subtitle {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.4;
}
.kyl_security_assessment .assessment-sidebar .step-item.active {
  background: linear-gradient(225deg, #803DCE 0%, #46DBFF 100%);
  color: #FFFFFF;
}
.kyl_security_assessment .assessment-sidebar .step-item.completed {
  border-color: #803DCE;
  cursor: pointer;
}
.kyl_security_assessment .assessment-sidebar .step-item.completed::after {
  content: "✓";
  margin-top: -40px;
  float: right;
  font-size: 24px;
  color: #803DCE;
  font-weight: bold;
}
.kyl_security_assessment .assessment-content {
  flex: 1;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.kyl_security_assessment .assessment-content .assessment-form {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step {
  display: none;
  flex-direction: column;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active {
  display: flex;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .step-intro-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  color: #292929;
  margin-bottom: 16px;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .step-intro-text p {
  margin: 0;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .form-field {
  width: 100%;
  position: relative;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .error-message {
  color: #9F4829;
  font-size: 14px;
  margin-left: 16px;
  margin-top: 4px;
  display: none;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .error-message.show {
  display: block;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper {
  position: relative;
  width: 100%;
  background: #F5F5F5;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .floating-label {
  position: absolute;
  left: 16px;
  top: 20px;
  font-size: 16px;
  color: black;
  font-weight: 400;
  pointer-events: none;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper input[type="text"],
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper input[type="email"] {
  width: 100%;
  height: 56px;
  background: #F5F5F5;
  padding: 10px 0 0 16px;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid black;
  transition: all 0.3s ease;
  color: #292929;
  outline: none;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper input[type="text"]:focus,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper input[type="email"]:focus,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper input[type="text"].has-value,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper input[type="email"].has-value {
  border-bottom: 2px solid #803DCE;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper input[type="text"].error,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper input[type="email"].error {
  border-bottom: 2px solid #9F4829;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-wrapper.has-value ~ .floating-label,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper.has-value ~ .floating-label {
  top: 6px;
  font-size: 12px;
  color: #803DCE;
  transition: 0.3s ease;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper input[type="text"]:focus ~ .floating-label,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper input[type="email"]:focus ~ .floating-label,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper input[type="text"].has-value ~ .floating-label,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper input[type="email"].has-value ~ .floating-label {
  top: 8px;
  font-size: 12px;
  color: #803DCE;
  transition: 0.3s ease;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #F5F5F5;
  border-radius: 4px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-dropdown .custom-select-option {
  padding: 12px 16px;
  font-size: 16px;
  color: #292929;
  cursor: pointer;
  transition: background 0.2s ease;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-dropdown .custom-select-option:hover {
  background: #DEDEDE4D;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-dropdown .custom-select-option.selected {
  color: #292929;
  font-weight: 700;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-wrapper.open .custom-select-dropdown {
  display: block;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-wrapper.open .custom-select-wrapper.error .custom-select-trigger {
  border-bottom: 2px solid #9F4829;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-wrapper,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-wrapper.open {
  position: relative;
  width: 100%;
  background: #f5f5f5;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-wrapper .custom-select-trigger,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-wrapper.open .custom-select-trigger {
  width: 100%;
  padding: 12px 25px 12px 0;
  border: none;
  height: 56px;
  border-bottom: 1px solid black;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  color: #292929;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-wrapper .custom-select-trigger span,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-wrapper.open .custom-select-trigger span {
  margin-left: 16px;
  font-size: 16px;
  margin-bottom: -10px;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-wrapper .custom-select-trigger .custom-select-arrow,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-wrapper.open .custom-select-trigger .custom-select-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  color: black;
  pointer-events: none;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-wrapper .custom-select-trigger .custom-select-value,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-wrapper.open .custom-select-trigger .custom-select-value {
  flex: 1;
  color: #292929;
  font-size: 16px;
  pointer-events: none;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  border-bottom: 1px solid black;
  transition: border-color 0.3s ease, border-width 0.3s ease;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper .custom-multiselect-trigger {
  padding: 12px 25px 12px 0;
  border: none;
  height: 56px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper .custom-multiselect-trigger span {
  margin-left: 16px;
  font-size: 15px;
  margin-bottom: -10px;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper .custom-multiselect-trigger .custom-multiselect-value {
  flex: 1;
  color: #292929;
  font-size: 16px;
  pointer-events: none;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper .custom-multiselect-trigger .custom-multiselect-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  color: black;
  pointer-events: none;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper.has-value.open,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper.open,
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper.has-value {
  border-bottom: 2px solid #803DCE;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper.error .custom-multiselect-trigger {
  border-bottom: 2px solid #9F4829;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper .custom-multiselect-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #F5F5F5;
  max-height: 250px;
  margin-top: 2px;
  z-index: 1;
  display: none;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper.open .custom-multiselect-dropdown {
  display: block;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper.open .custom-multiselect-dropdown .custom-multiselect-option {
  padding: 12px 8px 12px 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #000;
  position: relative;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper.open .custom-multiselect-dropdown .custom-multiselect-option:hover {
  background: #DEDEDE4D;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper.open .custom-multiselect-dropdown .custom-multiselect-option.selected span {
  color: #292929;
  font-weight: 700;
}
.kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper.open .custom-multiselect-dropdown .custom-multiselect-option.selected::after {
  content: "✓";
  position: absolute;
  right: 16px;
  font-size: 16px;
  color: #803DCE;
  font-weight: 700;
}
.kyl_security_assessment .assessment-content .form-navigation {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: end;
  margin-top: auto;
}
.kyl_security_assessment .assessment-content .form-navigation button {
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.kyl_security_assessment .assessment-content .form-navigation .btn-back {
  position: relative;
  background: #FFFFFF;
  color: #292929;
  border: none;
}
.kyl_security_assessment .assessment-content .form-navigation .btn-back::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(225deg, #803DCE 0%, #46DBFF 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.kyl_security_assessment .assessment-content .form-navigation .btn-next,
.kyl_security_assessment .assessment-content .form-navigation .btn-submit {
  background: linear-gradient(225deg, #803DCE 0%, #46DBFF 100%);
  color: #FFFFFF;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .kyl_security_assessment {
    padding: 20px;
    gap: 16px;
    display: flex;
    flex-direction: column;
  }
  .kyl_security_assessment .assessment-sidebar,
  .kyl_security_assessment .assessment-content {
    display: contents;
  }
  .kyl_security_assessment .assessment-sidebar {
    flex: 1;
    flex-direction: row;
    overflow-x: auto;
  }
  .kyl_security_assessment .assessment-sidebar .step-item .step-title {
    margin-bottom: 0 !important;
  }
  .kyl_security_assessment .assessment-sidebar .step-item .step-subtitle {
    display: none;
  }
  .kyl_security_assessment .assessment-sidebar .step-item.completed {
    position: relative;
    display: flex;
    align-items: center;
  }
  .kyl_security_assessment .assessment-sidebar .step-item.completed::after {
    position: absolute;
    right: 16px !important;
    margin-top: 0 !important;
  }
  .kyl_security_assessment .custom-multiselect-wrapper.has-value ~ .floating-label {
    top: 16px;
    font-size: 12px;
    transition: all 0.3s ease;
    color: #803DCE;
  }
  .kyl_security_assessment .assessment-content {
    padding: 25px 20px;
  }
  .kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-select-wrapper.has-value ~ .floating-label,
  .kyl_security_assessment .assessment-content .assessment-form .form-step.active .form-fields .input-wrapper .custom-multiselect-wrapper.has-value ~ .floating-label {
    top: 16px;
  }
  .kyl_security_assessment .assessment-content .assessment-form .form-step .step-intro-text {
    display: none;
  }
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields {
    gap: 0 !important;
  }
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field {
    margin-bottom: 16px;
  }
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper.open .custom-multiselect-trigger,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper .custom-multiselect-trigger,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper.open .custom-multiselect-trigger,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper .custom-multiselect-trigger,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper.open .custom-select-trigger,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper .custom-select-trigger,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper.open .custom-select-trigger,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper .custom-select-trigger {
    min-height: 74px;
    height: auto;
    padding: 16px 4px 16px 4px;
    position: relative;
  }
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper.open .custom-multiselect-trigger .custom-select-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper .custom-multiselect-trigger .custom-select-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper.open .custom-multiselect-trigger .custom-select-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper .custom-multiselect-trigger .custom-select-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper.open .custom-select-trigger .custom-select-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper .custom-select-trigger .custom-select-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper.open .custom-select-trigger .custom-select-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper .custom-select-trigger .custom-select-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper.open .custom-multiselect-trigger .custom-multiselect-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper .custom-multiselect-trigger .custom-multiselect-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper.open .custom-multiselect-trigger .custom-multiselect-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper .custom-multiselect-trigger .custom-multiselect-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper.open .custom-select-trigger .custom-multiselect-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper .custom-select-trigger .custom-multiselect-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper.open .custom-select-trigger .custom-multiselect-arrow,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper .custom-select-trigger .custom-multiselect-arrow {
    position: absolute;
    right: 16px;
  }
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper.open .custom-multiselect-trigger .custom-select-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper .custom-multiselect-trigger .custom-select-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper.open .custom-multiselect-trigger .custom-select-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper .custom-multiselect-trigger .custom-select-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper.open .custom-select-trigger .custom-select-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper .custom-select-trigger .custom-select-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper.open .custom-select-trigger .custom-select-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper .custom-select-trigger .custom-select-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper.open .custom-multiselect-trigger .custom-multiselect-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper .custom-multiselect-trigger .custom-multiselect-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper.open .custom-multiselect-trigger .custom-multiselect-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper .custom-multiselect-trigger .custom-multiselect-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper.open .custom-select-trigger .custom-multiselect-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-select-wrapper .custom-select-trigger .custom-multiselect-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper.open .custom-select-trigger .custom-multiselect-value,
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .custom-multiselect-wrapper .custom-select-trigger .custom-multiselect-value {
    margin-left: 12px;
    margin-right: 24px;
    margin-top: 16px;
  }
  .kyl_security_assessment .assessment-content .assessment-form .form-step .form-fields .form-field .input-wrapper .floating-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 8px;
    max-width: 85%;
  }
}
