label {
  cursor: pointer;
}

.practice_types {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
}

.practice_types li:last-child {
  grid-column: -2 / -1;
}

.two-label + label {
  display: none;
}

@media (max-width: 991px) {
  .practice_types {
    grid-template-columns: 100%;
  }
}

@media (max-width: 575px) {
  .col-form-label {
    text-align: left !important;
  }
}
