.kc-table-select {
  background: none;
  color: #1c202a;
  font-family: "ralewaysemibold";
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
  border: none;
  border-bottom: 4px #1c202a solid;
  padding: 6px 0 2px 0;
  cursor: pointer;
}
.kc-table-select:focus-visible {
  outline: 0;
  border-radius: none;
}

.kc-form-group {
  margin-bottom: 15px;
}
.kc-input {
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-family: ralewaymedium;
  height: 30px;
  color: black;
  width: 100%;
  padding-left: 10px;
}

.kc-textarea {
  height: 100px;
}
.kc-textarea.with-border {
  border: 1px solid #e2e6e8;
}
.kc-form-label {
  font-size: 14px;
  font-family: ralewayregular;
  margin-bottom: 5px;
}
input[type="radio"].kc-radio {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  width: 1em;
  height: 1em;
  border: 1px solid #707070;
  border-radius: 50%;
  transform: translateY(-0.075em);

  display: grid;
  place-content: center;
}

input[type="radio"].kc-radio::before {
  content: "";
  width: inherit;
  height: inherit;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;

  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #719a30;
}

input[type="radio"].kc-radio:checked::before {
  transform: scale(1);
}