<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Debug
 */
#wcp-debug {
  padding: 0 0 0;
  font-size: 1em;
  margin-bottom: 20px;
}

#wcp-debug #wcp-debug-header {
  background: #3d9cd2;
  color: #ffffff;
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
}

#wcp-debug #wcp-debug-header .wcp-debug-toggle {
  background-image: var(--wpr-bg-33cb40fe-7b6a-48de-b39e-2919e989994e);
  background-repeat: no-repeat;
  background-position: right center;
  width: 42px;
  height: 100%;
  right: 0;
  top: 0;
  background-size: 42px;
  position: absolute;
  transition: .3s all;
}

#wcp-debug.closed .wcp-debug-toggle {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

#wcp-debug #wcp-debug-contents {
  padding: 20px 20px 0;
  display: none;
  border: 1px solid #dee2e6;
  border-width: 0 1px 1px;
}

#wcp-debug #wcp-debug-contents .wcp-debug-tip {
  color: #1864ab;
  background: var(--wpr-bg-052e7503-2935-41e7-b571-fb9d209464cb) no-repeat left 5px;
  background-size: 16px 16px;
  padding-left: 24px;
}

#wcp-debug #wcp-debug-contents h3 {
  margin: 10px 0 20px;
  font-weight: bold;
  font-size: 1.2em;
}

#wcp-debug #wcp-debug-contents h3.ruleset-title {
  font-size: 1em;
}

#wcp-debug #wcp-debug-contents h3.ruleset-title a {
  font-weight: bold;
}

#wcp-debug .wcp-debug-result-label {
  padding: 5px;
  border-radius: 3px;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
}

#wcp-debug .wcp-debug-result-label.wcp-debug-result-label-pass {
  background: #2b8a3e;
}

#wcp-debug .wcp-debug-result-label.wcp-debug-result-label-fail {
  background: #c92a2a;
}

#wcp-debug table.wcp-debug-table {
  border: 1px solid #dee2e6;
  margin: 0 0 20px;
}

#wcp-debug table.wcp-debug-table.wcp-debug-table-fixed {
  table-layout: fixed;
}

#wcp-debug table.wcp-debug-table td, #wcp-debug table.wcp-debug-table th {
  padding: 5px 10px;
}

#wcp-debug table.wcp-debug-table td.align-right,
#wcp-debug table.wcp-debug-table th.align-right {
  text-align: right;
}
</pre></body></html>