@media screen and (min-width: 640px) {
  .editor ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.editor ul {
  display: grid;
  list-style-position: inside;
  padding: 0.75rem;
  background-color: rgb(243 244 246);
  border-radius: 0.375rem;
  border: 1px solid #e5e7eb;
}
.editor > ul li {
  padding: 0.2rem;
  list-style-type: disc;
}
.editor > ul a:link strong:hover,
.editor > ul a:visited strong:hover {
  color: #c51317;
  margin-right: 10px;
  text-decoration-line: underline;
}

.editor .hform {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.editor .form-group label {
  display: block;
}

.editor .form-group .form-control {
  border: 1px solid #83868b;
  padding: 0.5rem;
  border-radius: 0.25rem;
  max-width: 14rem;
  width: 100%;
}

.editor .form-group textarea.form-control {
  max-width: 100%;
  width: 100%;
  height: 10rem;
}

/*form*/
.harmonyform {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.harmonyform .form-header {
  padding: 1rem;
  font-size: 20px;
  background: #eee;
}
.harmonyform .section {
  padding: 0.5rem;
}
.harmonyform .section div.row:nth-child(n + 1) {
  margin-top: 1rem;
}

.harmonyform .section .row {
  gap: 5px;
}
.harmonyform .section .row .label {
  min-width: 50px;
}
.harmonyform .section .row:has(input[type="radio"]) {
  display: flex;
}
.harmonyform .section .row:has(select) {
  display: flex;
}
.harmonyform .section .row .field .input-width-default {
  border: 1px solid gray;
  border-radius: 5px;
}
.harmonyform .section .row span.red-star {
  color: red;
}
.harmonyform .section .row:has(input[type="button"]) {
  margin-bottom: 1.5rem;
}
.harmonyform .section .row .field {
  display: flex !important;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.harmonyform .submit-form {
  background: green;
  padding: 0.25rem 3rem;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}
.harmonyform .section .row .field select {
  min-width: 100px;
  text-align: center;
}
.harmonyform .field input[type="text"] {
  min-width: 100px;
  border: 1px solid gray;
  outline: 1px;
  border-radius: 5px;
  width: 270px;
  padding: 0.25rem;
}
.harmonyform .form-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  padding: 1rem 0 0.25rem 0;
}

@media screen and (min-width: 1024px) {
  .harmonyform .section {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .harmonyform .section .row {
    grid-column: span 6 / span 6;
  }
  .harmonyform .section .row:has(input[type="button"]) {
    grid-column: span 12 / span 12;
  }

  .harmonyform .section div.row:nth-child(even) .label {
    min-width: 70px;
  }

  .harmonyform .section .row .field {
    gap: 10px;
  }

  .harmonyform .section div.row:nth-child(even) .label {
    min-width: 70px;
  }
  .harmonyform .field input[type="text"] {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .harmonyform .section .row {
    display: flex;
    align-items: center;
  }
  .harmonyform .section .row .label {
    min-width: 115px;
  }
}

/*form*/

.editor p {
  line-height: 2rem;
  font-size: 0.75rem;
  color: var(--general);
  text-align: justify;
}

.editor strong {
  font-size: 1rem;
  color: black;
}
