html, body {
  background-color: black;
  color: #fff;
  margin: 0;
}

a { color: #fff; }
a:hover, a:focus { color: #bbb; }
a:visited { color: #ddd; }

p { margin: 0; }



.secret-shop {
  background: url(/theme/img/secret_shop.jpg) no-repeat top center #000000;
  background-size: clamp(320px, 706px, 100%) auto;
  width: 960px;
  max-width: 100%;
  min-height: 650px;
  margin: auto;
}

.order-form {
  padding: 40% 22px 0 30%;
  margin-bottom: 150px;
}



.nf-before-form-content,
.ninja-forms-req-symbol {
  display: none;
}

.nf-form-content nf-fields-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.nf-form-content nf-fields-wrap nf-field:nth-child(7) {
  grid-column: span 2;
}

@media only screen and (max-width: 600px) {
  .nf-form-content nf-fields-wrap {
    grid-template-columns: 1fr;
    gap: 0 32px;
  }

  .nf-form-content nf-fields-wrap nf-field:nth-child(7) {
    grid-column: span 1;
  }
}

.label-above .nf-field-label {
  margin-bottom: 0px !important;
  margin-left: 16px;
}

.nf-field-label .nf-label-span,
.nf-field-label label {
  font-weight: unset !important;
  font-size: 0.85rem;
}

.nf-after-field .nf-error-msg {
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #800000;
  border-top: none;
  margin-right: 0px !important;
  margin-top: -5px;
  padding: 0 16px 4px;
  font-size: 0.85rem;
}

.nf-error-msg.nf-error-field-errors {
  font-size: 0.85rem;
}

.nf-response-msg {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #008000;
  color: #00ff00;
  padding: 0 16px 4px;
}

.field-wrap input[type=submit] {
  cursor: pointer;
  margin-top: 22px;
  width: 100% !important;
  font-weight: 750;
}

.field-wrap input[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}