body.rfqs.edit {
  form {
    fieldset {
      scroll-margin-top: 20px;

      .details {
        display: flex;
        flex-direction: column;
        gap: 8px;

        em {
          font-weight: bold;
          font-style: normal;
        }
      }
    }

    .contact {
      display: contents;

      em {
        font-weight: bold;
        font-style: normal;
        margin-bottom: -16px;
      }

      .fields {
        display: contents;
      }
    }
  }
}

@media (min-width: 768px) {
  body.rfqs.edit {
    form {
      .field {
        .rfid {
          max-width: 500px;
        }
      }

      .contact {
        .fields {
          display: flex;
          flex-direction: row;
          gap: 20px;

          .field {
            flex: 1;

            label {
              font-weight: normal;
            }

            input {
              max-width: unset;
            }
          }
        }
      }
    }
  }
}