ul#nbvNavigation {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
  justify-content: space-around;
}

li.navItem {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 85%;
  flex-direction: column;
  pointer-events: none;
}

li.navItem .counter {
  display: block;
  border-radius: 100%;
  width: 2em;
  height: 2em;
  border: solid 1px;
  text-align: center;
  line-height: 1.7em;
  border-color: #2ab3d8;
  color: #2ab3d8;
}

li.navItem.active .counter {
  border-color: #2ab3d8;
  color: #fff;
  background: #2ab3d8;
}

li.navItem.done .counter {
  border-color: #ff751f;
  color: #fff;
  background: #ff751f;
}

.step:not(.active) {
  display: none;
}

div#nbvButtons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

div#nbvSteps {
  margin: 30px 0;
}

#nbvNext {
  margin-left: auto;
}

.radio-options label {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  margin-bottom: 0 !important;
}

.radio-options {
  display: flex;
  justify-content: space-between;
}

.radio-options.is-invalid {
  border: solid #dc3545 1px;
}

@media (max-width: 768px) {
  .radio-options {
    flex-direction: column;
  }
}

.radio-options svg {
  width: 35px;
}

.radio-options input:checked + label {
  background: #2ab3d8;
  color: #fff;
  border-color: #2ab3d8;
}

.radio-options label span {
  text-transform: uppercase;
}
