.kontakt-form .row.message-row:empty {
  display: none;
}
.kontakt-form .input-checkbox {
  color: var(--text-color, var(--default-text));
}
.kontakt-form .row label,
.kontakt-form .row strong {
  font-size: 0.7rem;
}
.kontakt-form .row .input-checkbox span {
  line-height: var(--text-line-height, 1.4);
  font-size: var(--text-font-size, var(--text-font-size-default, 18px));
}
.kontakt-form .row .checkbox_list label {
  margin-right: 15px;
}

@media screen and (max-width: 992px) {
  .kontakt_form .submit_button {
    width: 100%;
    display: block;
  }
}
.input-checkbox {
  position: relative;
  padding-left: 36px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
}
.input-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.input-checkbox input[type=checkbox]:checked ~ .checkbox-text::before {
  background-color: var(--primary);
  border-color: var(--primary);
}
.input-checkbox input[type=checkbox]:checked ~ .checkbox-text::after {
  opacity: 1;
}
.input-checkbox input[type=checkbox]:focus ~ .checkbox-text::before {
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.3);
}
.input-checkbox input[type=checkbox]:disabled ~ .checkbox-text {
  opacity: 0.6;
  cursor: not-allowed;
}
.input-checkbox .checkbox-text {
  position: relative;
}
.input-checkbox .checkbox-text::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #888;
  border-radius: 5px;
  background-color: #fff;
  transition: all 0.2s ease;
}
.input-checkbox .checkbox-text::after {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

/*# sourceMappingURL=kontakt.css.map */
