:root {
  --form-width: 50%;
}

#main_Form {
  width: var(--form-width);
}

.colText {
  -moz-column-count: 4;
       column-count: 4;
}

.disabled-link {
  pointer-events: none;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  #main_Form {
    width: calc(var(--form-width) + 10%);
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .colText {
    -moz-column-count: 3;
         column-count: 3;
  }
  #main_Form {
    width: calc(var(--form-width) + 20%);
  }
}
@media screen and (min-width: 0) and (max-width: 768px) {
  .colText {
    -moz-column-count: 2;
         column-count: 2;
  }
  #main_Form {
    width: calc(var(--form-width) + 30%);
  }
}