/* Hide debugbar when printing a page */
@media print {
  div.phpdebugbar {
    display: none;
  }
}

div.phpdebugbar,
div.phpdebugbar-openhandler {
  --debugbar-background: #fff;
  --debugbar-background-alt: #fafafa;
  --debugbar-text: #222;
  --debugbar-text-muted: #888;
  --debugbar-border: #eee;

  --debugbar-header: #efefef;
  --debugbar-header-text: #555;
  --debugbar-header-border: #ddd;

  --debugbar-active: #ccc;
  --debugbar-active-text: #666;

  --debugbar-icons: #555;
  --debugbar-badge: #ccc;
  --debugbar-badge-text: #555;

  --debugbar-badge-active: #555;
  --debugbar-badge-active-text: #fff;

  --debugbar-link: #888;
  --debugbar-hover: #aaa;

  --debugbar-accent: #6BB7D8;
  --debugbar-accent-border: #477e96;

  --debugbar-font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --debugbar-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

div.phpdebugbar[data-theme='dark'],
div.phpdebugbar-openhandler[data-theme='dark'] {
  --debugbar-background: #2a2a2a;
  --debugbar-background-alt: #333333;
  --debugbar-text: #e0e0e0;
  --debugbar-text-muted: #aaaaaa;
  --debugbar-border: #3a3a3a;

  --debugbar-header: #1e1e1e;
  --debugbar-header-text: #cccccc;
  --debugbar-header-border: #444;

  --debugbar-active: #444;
  --debugbar-active-text: #e0e0e0;

  --debugbar-icons: #cccccc;
  --debugbar-badge: #444;
  --debugbar-badge-text: #cccccc;

  --debugbar-badge-active: #cccccc;
  --debugbar-badge-active-text: #1e1e1e;

  --debugbar-accent: #4F8FB3;
  --debugbar-accent-border: #3F7A94;

  --debugbar-link: #aaaaaa;
  --debugbar-hover: #888888;
}


div.phpdebugbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 0;
  font-family: var(--debugbar-font-sans);
  background: var(--debugbar-background);
  z-index: 10000000000;
  font-size: 14px;
  color: var(--debugbar-text);
  text-align: left;
  line-height: 1.2em;
  letter-spacing: normal;
  direction: ltr;
}

div.phpdebugbar[data-openBtnPosition="bottomRight"].phpdebugbar-closed,
div.phpdebugbar[data-openBtnPosition="topRight"].phpdebugbar-closed {
  left:auto;
  right: 0;
}

div.phpdebugbar[data-openBtnPosition="topRight"].phpdebugbar-closed,
div.phpdebugbar[data-openBtnPosition="topLeft"].phpdebugbar-closed {
  bottom:auto;
  top: 0;
  border-bottom: 1px solid var(--debugbar-header-border);
}

div.phpdebugbar[data-openBtnPosition="bottomRight"].phpdebugbar-closed,
div.phpdebugbar[data-openBtnPosition="bottomLeft"].phpdebugbar-closed {
  border-top: 1px solid var(--debugbar-header-border);
}

.phpdebugbar-closed[data-openBtnPosition="bottomLeft"],
.phpdebugbar-closed[data-openBtnPosition="topLeft"] {
  border-right: 1px solid var(--debugbar-header-border);
}
.phpdebugbar-closed[data-openBtnPosition="bottomRight"],
.phpdebugbar-closed[data-openBtnPosition="topRight"] {
  border-left: 1px solid var(--debugbar-header-border);
}

div.phpdebugbar a,
div.phpdebugbar-openhandler {
  cursor: pointer;
}

div.phpdebugbar-drag-capture {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: none;
  display: none;
  cursor: ns-resize;
}

div.phpdebugbar-closed {
    width: auto;
}

div.phpdebugbar * {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  text-decoration: none;
  clear: initial;
  width: auto;
  direction: ltr;
  text-align: left;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
}

div.phpdebugbar select, div.phpdebugbar input {
  appearance: auto;
}

div.phpdebugbar ol, div.phpdebugbar ul {
  list-style: none;
}

div.phpdebugbar ul li, div.phpdebugbar ol li, div.phpdebugbar dl li {
  line-height: normal;
}

div.phpdebugbar table, .phpdebugbar-openhandler table {
  border-collapse: collapse;
  border-spacing: 0;
  color: inherit;
}

div.phpdebugbar input[type='text'], div.phpdebugbar input[type='password'], div.phpdebugbar select {
  font-family: var(--debugbar-font-sans);
  background: var(--debugbar-background);
  font-size: 14px;
  color: var(--debugbar-text);
  padding: 0;
  border: 1px solid var(--debugbar-border);
  border-radius: 0.25rem;
  margin: 0;
}

div.phpdebugbar code, div.phpdebugbar pre, div.phpdebugbar samp {
  background: none;
  font-family: var(--debugbar-font-mono);
  font-size: 1em;
  border: 0 !important;
  padding: 0;
  margin: 0;
}

div.phpdebugbar code, div.phpdebugbar pre {
  color: var(--debugbar-text);
}

div.phpdebugbar pre.sf-dump {
  background: none !important;
  z-index: 0 !important;
  display: block !important;
  color: #a0a000;
  outline: 0;
}

div.phpdebugbar pre.sf-dump .sf-dump-private {
  color: grey;
}

div.phpdebugbar[data-theme='dark'] pre.sf-dump .sf-dump-public {
  color: #ffcc00;
}

div.phpdebugbar[data-theme='dark'] pre.sf-dump .sf-dump-protected {
  color: #a0a000;
}

div.phpdebugbar[data-theme='dark'] pre.sf-dump .sf-dump-private {
  color: #9d9266;
}

a.phpdebugbar-restore-btn {
  float: left;
  padding: 5px 8px;
  font-size: 14px;
  color: var(--debugbar-icons);
  text-decoration: none;
}

div.phpdebugbar-resize-handle {
  display: none;
  height: 4px;
  margin-top: -4px;
  width: 100%;
  background: none;
  border-bottom: 1px solid var(--debugbar-header-border);
  cursor: ns-resize;
}

div.phpdebugbar-minimized{
  border-top: 1px solid var(--debugbar-header-border);
}

/* -------------------------------------- */

a.phpdebugbar-restore-btn:after {
    background: var(--debugbar-header) url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 367.6 327.1" style="enable-background:new 0 0 367.6 327.1;" xml:space="preserve"><style type="text/css">.st0{fill:%232F215D;}.st1{fill:%2301DEC1;}.st2{fill:%233B9BFE;}.st3{fill:%23FEE859;}.st4{fill:%23FF578B;}.st5{fill:%23FFFFFF;}</style><g><g><g><path class="st0" d="M120.7,155.9L120.7,155.9L120.7,155.9L120.7,155.9L120.7,155.9c0.8-4.4,1.8-9,3.2-14v-0.1c0.2-0.6,0.3-1.2,0.5-1.8c0.1-0.3,0.1-0.5,0.2-0.8c0.2-0.7,0.4-1.4,0.6-2.1c0-0.1,0.1-0.2,0.1-0.2c1-3.4,2.1-6.8,3.3-10.1c0-0.1,0.1-0.2,0.1-0.3c0.3-0.7,0.5-1.5,0.8-2.2c0.1-0.2,0.1-0.4,0.2-0.6c0.3-0.7,0.5-1.4,0.8-2c0.1-0.2,0.2-0.4,0.3-0.7c0.3-0.7,0.5-1.3,0.8-2c0.1-0.2,0.2-0.5,0.3-0.7c0.3-0.6,0.6-1.3,0.8-1.9c0.1-0.2,0.2-0.5,0.3-0.7c0.3-0.6,0.6-1.3,0.9-1.9c0.1-0.2,0.2-0.5,0.3-0.7c0.5-1.1,1.1-2.3,1.6-3.4c0.2-0.3,0.3-0.7,0.5-1c0-0.1,0.1-0.1,0.1-0.2l0,0c0.1-0.2,0.2-0.3,0.2-0.4c5.6-10.9,12.4-20.9,20.6-28.3c0.7-0.6,1.3-1.3,2-1.9l0,0c-38.8,26.7-81.9,65.3-95.8,111.7c-13.7,46.1,6.7,101.3,51.4,121.8c-0.1,0-0.1,0-0.2,0c14.9,8,32.1,13.2,51,15.1c0.1-0.1,0.1-0.1,0.2,0c62.2,5.3,128.2-24.7,158.1-80.7C245.9,337.8,83.4,288.2,120.7,155.9z"/><path class="st1" d="M345.4,150.4c-36.4,58.5-172.3,117.3-213.2,57.3c-9.9-12.9-15-30.4-11.6-51.8c-37.2,132.3,125.2,182,203.3,89.8C339.4,220.4,351.4,179.5,345.4,150.4z"/><path class="st2" d="M122.2,106.6c1-0.8,1.9-1.7,2.9-2.5c0.2-0.2,0.4-0.3,0.6-0.5c0.9-0.8,1.9-1.6,2.8-2.4c0.2-0.2,0.4-0.4,0.7-0.6c0.9-0.8,1.9-1.6,2.8-2.4c0.2-0.2,0.4-0.4,0.6-0.5c1-0.8,1.9-1.6,2.9-2.3c0.2-0.2,0.4-0.3,0.6-0.5c1-0.8,2-1.5,2.9-2.3c0.2-0.1,0.4-0.3,0.6-0.4c1-0.8,2-1.5,3-2.3c0.2-0.1,0.3-0.2,0.5-0.4c1-0.8,2.1-1.6,3.1-2.3c0.1-0.1,0.2-0.2,0.4-0.3c1.1-0.8,2.1-1.6,3.2-2.4c0.1-0.1,0.1-0.1,0.2-0.2c1.1-0.8,2.2-1.6,3.3-2.4l0,0l0,0c2-1.4,3.9-2.8,5.9-4.1l0,0l0,0c0.3-0.1,0.5-0.2,0.7-0.5l0,0c2.3-1.9,4.8-3.6,7.5-5l0,0c0.1,0,0.1-0.1,0.2-0.1c0.2-0.1,0.4-0.2,0.5-0.3c1.3-0.7,2.6-1.3,4-1.9c1.1-0.4,2.3-0.8,3.4-1.1c1.3-0.4,2.7-0.7,4.1-0.9c-3.3,0.2-6.6,0.5-9.8,0.9l0,0c-19.6,2.4-39.3,8.9-57.9,18.4c-0.1,0-0.1,0.1-0.2,0.1c-1.1,0.5-2.1,1.1-3.2,1.7l0,0c-3.2,1.7-6.4,3.6-9.6,5.5c-0.1,0-0.2,0.1-0.2,0.2c-0.9,0.6-1.8,1.1-2.8,1.7c-0.2,0.1-0.3,0.2-0.5,0.3c-0.8,0.5-1.7,1.1-2.5,1.6c-0.2,0.1-0.4,0.2-0.5,0.4c-0.9,0.6-1.8,1.2-2.7,1.8c-0.1,0.1-0.2,0.1-0.3,0.2c-2,1.4-4,2.7-5.9,4.2c-0.2,0.1-0.4,0.3-0.6,0.5c-0.7,0.5-1.5,1.1-2.2,1.6c-0.3,0.2-0.6,0.5-0.9,0.7c-0.6,0.5-1.3,1-1.9,1.5c-0.3,0.3-0.7,0.5-1,0.8c-0.6,0.5-1.2,1-1.8,1.4c-0.3,0.3-0.6,0.5-1,0.8c-0.7,0.5-1.3,1.1-2,1.6c-0.2,0.2-0.5,0.4-0.7,0.6c-0.9,0.7-1.7,1.4-2.6,2.2c-0.4,0.3-0.7,0.6-1.1,1c-0.5,0.4-1,0.9-1.5,1.3c-0.4,0.4-0.9,0.8-1.3,1.1c-0.4,0.4-0.9,0.8-1.3,1.2s-0.9,0.8-1.3,1.2s-0.8,0.7-1.2,1.1c-0.5,0.4-0.9,0.9-1.4,1.3c-0.3,0.3-0.7,0.7-1,1c-0.5,0.5-1,0.9-1.5,1.4c-0.1,0.1-0.1,0.1-0.2,0.2c-1.3,1.2-2.5,2.5-3.8,3.8c-0.2,0.2-0.4,0.4-0.6,0.6c-0.5,0.6-1.1,1.1-1.6,1.7c-0.2,0.3-0.5,0.5-0.7,0.8c-0.5,0.6-1.1,1.1-1.6,1.7c-0.2,0.3-0.5,0.5-0.7,0.8c-0.5,0.6-1.1,1.2-1.6,1.8c-0.2,0.2-0.4,0.4-0.5,0.6c-2.6,3-5.1,6-7.6,9c-0.1,0.1-0.1,0.2-0.2,0.3c-0.6,0.7-1.1,1.4-1.7,2.2c-0.1,0.1-0.2,0.3-0.3,0.4c-0.6,0.7-1.1,1.4-1.7,2.2c-0.1,0.1-0.2,0.2-0.2,0.3c-3,4.1-5.9,8.2-8.6,12.4c0,0.1-0.1,0.1-0.1,0.2c-0.5,0.8-1,1.6-1.5,2.4c0,0.1-0.1,0.1-0.1,0.2c-1.1,1.7-2.1,3.4-3.1,5.1l0,0C13,187.5,7,201.6,3.2,215.8c-12.9,40.9,14.9,86.3,56.7,94.9c17.9,4,36.9,3.1,55,0.7c0.1,0,0.1,0,0.2,0C70.4,290.9,50,235.7,63.7,189.6c0.4-1.4,0.9-2.8,1.4-4.2c0.2-0.5,0.3-0.9,0.5-1.4c0.3-0.9,0.7-1.9,1-2.8c0.2-0.6,0.4-1.1,0.7-1.7c0.3-0.8,0.7-1.7,1-2.5c0.2-0.6,0.5-1.2,0.8-1.8c0.3-0.8,0.7-1.6,1-2.3c0.3-0.6,0.6-1.2,0.9-1.8c0.4-0.7,0.7-1.5,1.1-2.2c0.3-0.6,0.6-1.2,0.9-1.8c0.4-0.7,0.8-1.4,1.1-2.2c0.3-0.6,0.7-1.2,1-1.8c0.4-0.7,0.8-1.4,1.2-2.1c0.4-0.6,0.7-1.2,1.1-1.8c0.4-0.7,0.8-1.4,1.2-2.1c0.4-0.6,0.8-1.2,1.2-1.8c0.4-0.7,0.9-1.3,1.3-2c0.4-0.6,0.8-1.2,1.2-1.8c0.4-0.7,0.9-1.3,1.3-2c0.4-0.6,0.9-1.2,1.3-1.8c0.5-0.6,0.9-1.3,1.4-1.9c0.4-0.6,0.9-1.2,1.4-1.8s0.9-1.2,1.4-1.8s0.9-1.2,1.4-1.8s0.9-1.2,1.4-1.8s1-1.2,1.5-1.9c0.5-0.6,0.9-1.1,1.4-1.7c0.5-0.6,1.1-1.3,1.6-1.9c0.5-0.5,0.9-1.1,1.4-1.6c0.6-0.6,1.1-1.3,1.7-1.9c0.4-0.5,0.9-1,1.3-1.5c0.6-0.7,1.2-1.3,1.8-2c0.4-0.4,0.8-0.8,1.2-1.2c0.7-0.7,1.4-1.5,2.1-2.2c0.2-0.2,0.5-0.5,0.7-0.7c4-4.1,8.1-8.1,12.3-11.9l0.1-0.1c1-0.9,2-1.8,3-2.7C121.9,106.9,122.1,106.8,122.2,106.6z"/><path class="st0" d="M251.4,143.8c0-0.1,0-0.1,0-0.2c-0.1-3.5-0.3-7.1-0.7-10.6c0-0.1,0-0.2,0-0.3c-0.4-3.5-0.9-6.9-1.5-10.2c0-0.1-0.1-0.3-0.1-0.4c-0.2-1.1-0.4-2.2-0.7-3.2l0,0c-0.3-1.1-0.5-2.3-0.8-3.4v-0.1c-0.3-1-0.5-2.1-0.8-3.1c0-0.2-0.1-0.3-0.1-0.5c-0.3-1-0.6-2.1-0.9-3.1l0,0c-1.5-4.4-3.2-8.7-5.1-12.9c-0.2-0.5-0.5-0.9-0.7-1.4c-0.3-0.7-0.7-1.4-1.1-2.2c-4.5-8.7-10.1-16.8-16.8-23.9c-4.8-5.4-10.1-10.1-15.7-14.1c-3.1-2.2-6.3-4.1-9.6-5.9c-0.1,0-0.2-0.1-0.3-0.1c-0.8-0.4-1.6-0.8-2.4-1.2c0,0-0.1,0-0.1-0.1c-3.3-1.7-6.7-3.2-10.2-4.5c-0.1,0-0.1,0-0.2-0.1c-0.8-0.3-1.7-0.6-2.5-0.9c-0.1,0-0.2-0.1-0.2-0.1c-4.4-1.5-8.9-2.7-13.4-3.7c-0.1,0-0.2,0-0.3-0.1c-0.9-0.2-1.8-0.4-2.6-0.5l0,0c-3.7-0.7-7.4-1.2-11.2-1.5c-0.1,0-0.2,0-0.3,0c-0.9-0.1-1.8-0.1-2.7-0.2c-0.1,0-0.1,0-0.2,0c-3.8-0.2-7.6-0.3-11.4-0.2h-0.1c-0.9,0-1.8,0.1-2.8,0.1c-0.1,0-0.2,0-0.2,0c-4.8,0.2-9.5,0.8-14.2,1.5c-0.1,0-0.1,0-0.2,0c-0.9,0.2-1.9,0.3-2.8,0.5C94.4,41.8,71.3,53,53.4,69.4c-0.1,0.1-0.3,0.2-0.4,0.4c-0.5,0.5-1,1-1.5,1.5c-0.4,0.4-0.8,0.8-1.3,1.2c-0.3,0.3-0.6,0.6-1,1c-0.6,0.6-1.1,1.2-1.7,1.7c-0.1,0.1-0.1,0.1-0.2,0.2c-0.2,0.2-0.3,0.4-0.5,0.5c-0.8,0.9-1.6,1.7-2.4,2.6l0,0l0,0c0,0.2-0.1,0.2-0.2,0.3c-18.4,27.6-26.3,61.4-23.5,94.3c34.4-54.5,92.8-101.3,159-105.1c0.6,0,1.2,0,1.8,0c0.3,0,0.6,0,0.8,0c0.3,0,0.6,0,0.8,0c0.4,0,0.7,0,1.1,0.1c0.2,0,0.3,0,0.5,0c0.4,0,0.9,0.1,1.3,0.2l0,0c0.1,0,0.2,0,0.3,0.1l0,0c0.8,0.1,1.5,0.3,2.3,0.4l0,0c0.1,0,0.2,0,0.3,0.1l0,0l0,0c0.2,0,0.4,0.1,0.6,0.1l0,0l0,0c0.4,0.1,0.8,0.2,1.2,0.3c0.3,0.1,0.7,0.2,1,0.3l0,0l0,0c0.3,0.1,0.5,0.2,0.8,0.3l0,0c0.3,0.1,0.6,0.2,0.9,0.3l0,0l0,0c1.3,0.5,2.5,1,3.7,1.6l0,0c0.1,0.1,0.3,0.1,0.4,0.2c0.6,0.3,1.1,0.6,1.7,0.9c0.1,0,0.1,0.1,0.2,0.1c0.4,0.2,0.9,0.5,1.3,0.8l0,0c0.2,0.1,0.4,0.2,0.5,0.3l0,0c0.4,0.2,0.7,0.5,1.1,0.7l0,0c0.4,0.3,0.8,0.5,1.2,0.8l0,0c0.1,0.1,0.2,0.1,0.3,0.2l0,0l0,0c0.1,0.1,0.2,0.1,0.2,0.2c1.9,1.4,3.8,3,5.7,4.8c0.2,0.1,0.3,0.3,0.5,0.4l0,0c0.1,0.1,0.2,0.2,0.3,0.3l0,0l0,0c0.4,0.4,0.8,0.8,1.2,1.2l0,0c0.7,0.7,1.4,1.5,2.1,2.3c0.1,0.1,0.2,0.2,0.3,0.4c0.6,0.7,1.2,1.4,1.8,2.1c0.1,0.1,0.1,0.2,0.2,0.2c0.7,0.8,1.3,1.6,2,2.5c0.1,0.1,0.1,0.2,0.2,0.3c0.6,0.8,1.2,1.6,1.7,2.4c0.1,0.1,0.2,0.2,0.3,0.4c0.6,0.9,1.3,1.8,1.9,2.7l0,0c0.6,0.9,1.2,1.8,1.7,2.7c0.1,0.2,0.2,0.3,0.3,0.5c1.2,1.9,2.3,3.8,3.4,5.8c0.1,0.2,0.2,0.3,0.3,0.5c0.5,0.9,1,1.9,1.5,2.9c0,0,0,0.1,0.1,0.1c0.5,1,1,2,1.5,3.1c0.1,0.2,0.1,0.3,0.2,0.5c0.4,0.9,0.9,1.8,1.3,2.8c0.1,0.1,0.1,0.3,0.2,0.4c0.5,1,0.9,2.1,1.4,3.2c0,0.1,0.1,0.2,0.1,0.3c0.4,0.9,0.8,1.9,1.2,2.9c0.1,0.2,0.1,0.4,0.2,0.6c0.4,1.1,0.8,2.1,1.2,3.2l0,0c0.4,1,0.8,2.1,1.1,3.1c0.1,0.2,0.1,0.4,0.2,0.6c0.7,2.1,1.4,4.2,2,6.4c0.1,0.2,0.1,0.4,0.2,0.6c0.3,0.9,0.5,1.9,0.8,2.8c0,0.1,0.1,0.3,0.1,0.4c0.3,1,0.6,2.1,0.8,3.1c0.1,0.2,0.1,0.4,0.1,0.6c0.2,0.9,0.4,1.7,0.6,2.6c0,0.2,0.1,0.4,0.1,0.6c0.2,1,0.4,2,0.7,3.1c0,0.1,0.1,0.3,0.1,0.4c0.2,0.9,0.3,1.7,0.5,2.6c0,0.2,0.1,0.5,0.1,0.7c0.2,1,0.3,2,0.5,3v0.1c0.1,0.9,0.3,1.9,0.4,2.8c0,0.2,0.1,0.5,0.1,0.7c0.1,0.9,0.2,1.7,0.3,2.5c0,0.1,0,0.2,0,0.3c0.1,0.9,0.2,1.8,0.2,2.7c0,0.2,0,0.5,0,0.7c0,0.7,0.1,1.5,0.1,2.2c0,0.2,0,0.4,0,0.5c0,0.9,0,1.7,0,2.6c0,0.2,0,0.4,0,0.6c0,0.7,0,1.4,0,2c0,0.2,0,0.4,0,0.6c0,0.8-0.1,1.6-0.1,2.4c0,0.1,0,0.2,0,0.4c-0.1,0.7-0.1,1.3-0.2,1.9c0,0.2,0,0.4-0.1,0.6c-0.1,0.7-0.2,1.5-0.3,2.2c-0.3,1.2-0.7,2.5-1,3.7c-1,3.5-2.3,6.7-3.6,9.7c4.5-9.1,7.6-19.3,9.2-29.8c0.5-3.5,0.9-7.1,1.2-10.7v-0.1C251.4,151,251.4,147.4,251.4,143.8z"/><path class="st3" d="M254.1,15.7L254.1,15.7l-0.7,0.2c13.4,6.9,25.3,16.5,34.4,29c5.1,6.8,9.1,13.9,12.2,21.4c0.2,0.5,0.4,0.9,0.6,1.4c0.2,0.5,0.4,1.1,0.6,1.6c11.1,29.4,7.1,61.7-6.9,89.9c0,0.1-0.1,0.1-0.1,0.2c-0.4,0.8-0.8,1.6-1.2,2.4c-10.4,20.1-25.9,38.1-45.2,50.9c-13.2,8.9-28,15.2-43.6,18.1c-5,1-10.2,1.7-15.4,2c9.9-0.3,19.7-1.3,29.3-3.2c49.9-10.4,104.6-44,126.6-77.9c0-0.1,0-0.2,0-0.3c0.3-0.4,0.6-0.7,0.9-1.1C399.5,69.9,349-3.5,254.1,15.7z"/><path class="st4" d="M288.4,45.7c-21.1-29.9-58.2-42.9-93.6-44.9C135.7-5.7,73.5,27.1,44.3,78.4l0,0l0,0c0.8-0.9,1.6-1.7,2.4-2.6c0.2-0.2,0.3-0.4,0.5-0.5c0.1-0.1,0.1-0.1,0.2-0.2c0,0,0,0,0.1-0.1c0.3-0.3,0.6-0.6,0.9-0.9c0.2-0.2,0.5-0.5,0.7-0.7c0.3-0.3,0.6-0.6,1-1c0.3-0.3,0.6-0.5,0.8-0.8c0.4-0.4,0.8-0.8,1.2-1.1c0.3-0.2,0.5-0.5,0.8-0.7c0.1-0.1,0.3-0.2,0.4-0.4c0.2-0.1,0.3-0.3,0.5-0.4c6.7-6.1,14.1-11.5,21.9-16v0.1c13.2-7.6,27.8-13,42.7-15.9c0.9-0.2,1.9-0.3,2.8-0.5c0.1,0,0.1,0,0.2,0c4.7-0.8,9.5-1.3,14.2-1.5c0.1,0,0.2,0,0.2,0c0.9,0,1.8-0.1,2.8-0.1h0.1c3.8-0.1,7.6,0,11.4,0.2c0.1,0,0.1,0,0.2,0c0.9,0.1,1.8,0.1,2.7,0.2c0.1,0,0.2,0,0.3,0c3.8,0.3,7.5,0.8,11.2,1.5l0,0c0.9,0.2,1.8,0.3,2.6,0.5c0.1,0,0.2,0,0.3,0.1c4.6,1,9,2.2,13.4,3.7c0.1,0,0.2,0.1,0.2,0.1c0.8,0.3,1.7,0.6,2.5,0.9c0.1,0,0.1,0,0.2,0.1c3.5,1.3,6.9,2.8,10.2,4.5c0,0,0.1,0,0.1,0.1c0.8,0.4,1.6,0.8,2.4,1.2c0.1,0,0.2,0.1,0.3,0.1c3.3,1.8,6.5,3.7,9.6,5.9c5.6,4,10.9,8.7,15.7,14.1c6.7,7.2,12.3,15.2,16.8,23.9c0.4,0.7,0.7,1.4,1.1,2.2c0.2,0.5,0.5,0.9,0.7,1.4c2,4.2,3.7,8.5,5.1,12.9l0,0c0.3,1,0.6,2.1,0.9,3.1c0,0.2,0.1,0.3,0.1,0.5c0.3,1,0.6,2,0.8,3.1v0.1c0.3,1.1,0.6,2.3,0.8,3.4l0,0c0.2,1.1,0.5,2.2,0.7,3.2c0,0.1,0.1,0.3,0.1,0.4c0.3,1.7,0.6,3.5,0.9,5.3l0,0c0.2,1.6,0.4,3.2,0.6,4.8c0,0.1,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3s0,0.1,0,0.2c0.4,3.4,0.6,6.8,0.7,10.2c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0.1,0,0.2,0,0.3c0,0.7,0,1.4,0,2.1c0,0.1,0,0.3,0,0.4c0,0.9,0,1.7,0,2.6c0,0.1,0,0.2,0,0.3c0,0.7,0,1.5-0.1,2.2c0,0.2,0,0.4,0,0.6c0,0.7-0.1,1.3-0.1,2c0,0.1,0,0.2,0,0.3v0.1c0,0.1,0,0.1,0,0.2c-0.1,1.7-0.3,3.4-0.4,5.1c0,0.1,0,0.2,0,0.3c-0.1,0.8-0.2,1.5-0.3,2.2c0,0.1,0,0.3-0.1,0.4c-0.1,0.8-0.2,1.5-0.3,2.3v0.1l0,0c-0.2,1.3-0.4,2.6-0.7,3.8c0,0.1,0,0.1,0,0.2c-0.2,1.3-0.5,2.5-0.8,3.8c0,0.1,0,0.1,0,0.2c-0.3,1.3-0.6,2.5-0.9,3.7v0.1c-0.3,1.3-0.7,2.5-1.1,3.7c0,0,0,0,0,0.1c-1.5,4.9-3.4,9.7-5.7,14.2c-8.7,19.3-23.7,30.6-40.2,35.1c-2.6,0.8-5.2,1.4-8,1.9C276.8,226.3,341.2,118,288.4,45.7z"/><path class="st5" d="M179.7,68c42.6-2.4,72.1,79,65.7,113.8c-20.9,82.4-138.3,57.7-124.8-26C126.1,125.6,145.9,74.1,179.7,68z"/></g></g></g></svg>')  no-repeat center / 20px 20px;
}
div.phpdebugbar-header {
  background-color: var(--debugbar-header);
  min-height: 32px;
  line-height: 16px;
}
div.phpdebugbar-header:before, div.phpdebugbar-header:after {
  display: table;
  line-height: 0;
  content: "";
}
div.phpdebugbar-header:after {
  clear: both;
}
div.phpdebugbar-header-left {
  float: left;
}
div.phpdebugbar-header-right {
  float: right;
}
div.phpdebugbar-header > div > * {
  padding: 5px;
  font-size: 13px;
  height: 22px;
  color: var(--debugbar-header-text);
  text-decoration: none;
}
div.phpdebugbar-header-left > *,
div.phpdebugbar-header-right > * {
  line-height: 0;
  display: flex;
  align-items: center;
}
div.phpdebugbar-header-left > * {
  float: left;
}
div.phpdebugbar-header-right > * {
  float: right;
}
div.phpdebugbar-header-right > select {
  padding: 0;
  line-height: 1em;
  background-color: var(--debugbar-header);
  color: var(--debugbar-header-text);
}

/* -------------------------------------- */

span.phpdebugbar-indicator,
a.phpdebugbar-indicator
{
  border-right: 1px solid var(--debugbar-header-border);
}

.phpdebugbar[data-hideEmptyTabs=true] .phpdebugbar-tab[data-empty=true] {
  display: none;
}

a.phpdebugbar-tab.phpdebugbar-active {
  background: var(--debugbar-active);
  color: var(--debugbar-active-text);
}
  a.phpdebugbar-tab .phpdebugbar-text {
    font-size: 14px;
  }
  a.phpdebugbar-tab span.phpdebugbar-badge {
    display: none;
    margin-left: 5px;
    font-size: 11px;
    line-height: 14px;
    padding: 0 6px;
    background: var(--debugbar-badge);
    border-radius: 4px;
    color: var(--debugbar-badge-text);
    font-weight: normal;
    text-shadow: none;
  }
  a.phpdebugbar-tab.phpdebugbar-active  span.phpdebugbar-badge {
    background: var(--debugbar-badge-active);
    color: var(--debugbar-badge-active-text);
  }

  a.phpdebugbar-tab i {
    display: none;
    vertical-align: middle;
  }
  a.phpdebugbar-tab span.phpdebugbar-badge.phpdebugbar-visible {
    display: inline;
  }
  a.phpdebugbar-tab span.phpdebugbar-badge.phpdebugbar-important {
    background: #ed6868;
    color: white;
  }

a.phpdebugbar-close-btn,
a.phpdebugbar-open-btn,
a.phpdebugbar-restore-btn,
a.phpdebugbar-minimize-btn,
a.phpdebugbar-maximize-btn,
a.phpdebugbar-tab.phpdebugbar-tab-history,
a.phpdebugbar-tab.phpdebugbar-tab-settings {
  width: 16px;
  height: 22px;
}

a.phpdebugbar-close-btn,
a.phpdebugbar-open-btn,
a.phpdebugbar-restore-btn,
a.phpdebugbar-minimize-btn ,
a.phpdebugbar-maximize-btn {
    width: 16px;
    height: 22px;
    position: relative;
}

a.phpdebugbar-close-btn:after,
a.phpdebugbar-open-btn:after,
a.phpdebugbar-restore-btn:after,
a.phpdebugbar-minimize-btn:after,
a.phpdebugbar-maximize-btn:after {
    background-color: var(--debugbar-icons);
    content: " ";
    display: block;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
a.phpdebugbar-restore-btn:after {
    background-color: var(--debugbar-header);
}

a.phpdebugbar-maximize-btn { display: none}

a.phpdebugbar-minimize-btn { display: block}

div.phpdebugbar-minimized a.phpdebugbar-maximize-btn { display: block}

div.phpdebugbar-minimized a.phpdebugbar-minimize-btn { display: none}

a.phpdebugbar-minimize-btn:after {
  mask:url(data:image/svg+xml,%3Csvg%20viewBox=%220%200%201792%201792%22%20fill=%22none%22%20xmlns=%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d=%22m1683%20653.5-742%20741c-12.667%2012.67-27.667%2019-45%2019s-32.333-6.33-45-19l-742-741c-12.667-12.667-19-27.833-19-45.5s6.333-32.833%2019-45.5l166-165c12.667-12.667%2027.667-19%2045-19s32.333%206.333%2045%2019l531%20531%20531-531c12.67-12.667%2027.67-19%2045-19s32.33%206.333%2045%2019l166%20165c12.67%2012.667%2019%2027.833%2019%2045.5s-6.33%2032.833-19%2045.5Z%22%20fill=%22%23555000%22%2F%3E%3C%2Fsvg%3E) no-repeat center / 14px 14px;
}

a.phpdebugbar-maximize-btn:after {
  mask: url(data:image/svg+xml,%3Csvg%20viewBox=%220%200%201792%201792%22%20fill=%22none%22%20xmlns=%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d=%22m1683%201229.5-166%20165c-12.67%2012.67-27.67%2019-45%2019s-32.33-6.33-45-19l-531-531-531%20531c-12.667%2012.67-27.667%2019-45%2019s-32.333-6.33-45-19l-166-165c-12.667-12.67-19-27.83-19-45.5s6.333-32.83%2019-45.5l742-741c12.667-12.667%2027.667-19%2045-19s32.333%206.333%2045%2019l742%20741c12.67%2012.67%2019%2027.83%2019%2045.5s-6.33%2032.83-19%2045.5Z%22%20fill=%22%23000%22%2F%3E%3C%2Fsvg%3E) no-repeat center / 14px 14px;
}

a.phpdebugbar-close-btn:after {
  mask: url(data:image/svg+xml,%3Csvg%20viewBox=%220%200%201792%201792%22%20fill=%22none%22%20xmlns=%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d=%22M1490%201258c0%2026.67-9.33%2049.33-28%2068l-136%20136c-18.67%2018.67-41.33%2028-68%2028s-49.33-9.33-68-28l-294-294-294%20294c-18.667%2018.67-41.333%2028-68%2028s-49.333-9.33-68-28l-136-136c-18.667-18.67-28-41.33-28-68s9.333-49.33%2028-68l294-294-294-294c-18.667-18.667-28-41.333-28-68s9.333-49.333%2028-68l136-136c18.667-18.667%2041.333-28%2068-28s49.333%209.333%2068%2028l294%20294%20294-294c18.67-18.667%2041.33-28%2068-28s49.33%209.333%2068%2028l136%20136c18.67%2018.667%2028%2041.333%2028%2068s-9.33%2049.333-28%2068l-294%20294%20294%20294c18.67%2018.67%2028%2041.33%2028%2068Z%22%20fill=%22%23000%22%2F%3E%3C%2Fsvg%3E) no-repeat center / 14px 14px;
}

a.phpdebugbar-open-btn:after {
  mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 1792 1792'%3e%3cpath fill='%23000' d='M1646 991.796c0 16.494-8.25 34.064-24.75 52.684l-268.22 316.13c-22.89 27.14-54.95 50.16-96.2 69.05S1177.4 1458 1142.27 1458H273.728c-18.095 0-34.194-3.46-48.297-10.38-14.104-6.92-21.155-18.36-21.155-34.32 0-16.5 8.249-34.06 24.747-52.69l268.228-316.13c22.884-27.14 54.949-50.156 96.194-69.049 41.246-18.893 79.431-28.34 114.556-28.34h868.549c18.09 0 34.19 3.459 48.3 10.378 14.1 6.918 21.15 18.361 21.15 34.327Zm-273.82-274.615v127.728H708.001c-50.027 0-102.448 12.64-157.264 37.919-54.817 25.28-98.457 57.078-130.921 95.397L150.79 1294.35l-3.992 4.79c0-2.13-.133-5.46-.399-9.98-.266-4.52-.399-7.85-.399-9.98V512.817c0-48.962 17.563-91.005 52.688-126.13 35.125-35.126 77.168-52.688 126.131-52.688h255.455c48.962 0 91.005 17.562 126.13 52.688 35.126 35.125 52.688 77.168 52.688 126.13v25.546h434.278c48.96 0 91 17.563 126.13 52.688 35.12 35.125 52.68 77.168 52.68 126.13Z'/%3e%3c/svg%3e") no-repeat center / 14px 14px;
}

.phpdebugbar-indicator {
  position: relative;
  cursor: pointer;
}
  .phpdebugbar-indicator span.phpdebugbar-text {
    margin-left: 5px;
  }
  .phpdebugbar-indicator span.phpdebugbar-tooltip {
    display: none;
    position: absolute;
    bottom: 38px;
    background: var(--debugbar-header);
    border: 1px solid var(--debugbar-header-border);
    color: var(--debugbar-header-text);
    font-size: 11px;
    padding: 2px 6px;
    z-index: 1000;
    text-align: center;
    white-space: nowrap;
    right: 0;
    line-height: 1.5;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  .phpdebugbar-indicator:hover span.phpdebugbar-tooltip:not(.phpdebugbar-disabled) {
    display: block;
  }
  .phpdebugbar-indicator span.phpdebugbar-tooltip dl {
    display: grid;
    grid-gap: 4px 10px;
    grid-template-columns: max-content;
  }
  .phpdebugbar-indicator span.phpdebugbar-tooltip dl dt {
    font-weight: bold;
    text-align: left;
  }
  .phpdebugbar-indicator span.phpdebugbar-tooltip dl dd {
    margin: 0;
    grid-column-start: 2;
    text-align: left;
  }

.phpdebugbar select.phpdebugbar-datasets-switcher {
  float: right;
  display: none;
  max-width: 200px;
  height: 22px;
  padding: 4px 0;
  border: none;
}

.phpdebugbar button,
.phpdebugbar-openhandler button {
  color: var(--debugbar-header-text);
  background-color: var(--debugbar-header);
  border: 1px solid var(--debugbar-header-border);
  border-radius: 0.25rem;
  margin: 0 5px;
  padding: 0 12px;
  height: 20px;
  line-height: normal;
  cursor: pointer;
}

/* -------------------------------------- */

div.phpdebugbar-body {
  border-top: 1px solid var(--debugbar-header-border);
  display: none;
  position: relative;
  height: 300px;
}

/* -------------------------------------- */

div.phpdebugbar-panel {
  display: none;
  height: 100%;
  overflow: auto;
  width: 100%;
}
div.phpdebugbar-panel.phpdebugbar-active {
  display: block;
}

/* -------------------------------------- */

div.phpdebugbar-mini-design a.phpdebugbar-tab {
  position: relative;
  border-right: 1px solid var(--debugbar-header-border);
}
  div.phpdebugbar-mini-design a.phpdebugbar-tab span.phpdebugbar-text {
    display: none;
  }
  div.phpdebugbar-mini-design a.phpdebugbar-tab:hover span.phpdebugbar-text {
    display: block;
    position: absolute;
    top: -30px;
    background: var(--debugbar-background);
    opacity: 1;
    border: 1px solid var(--debugbar-header-border);
    color: var(--debugbar-header-text);
    font-size: 11px;
    padding: 2px 6px;
    z-index: 1000;
    text-align: center;
    right: 0;
    line-height: 1.5;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  div.phpdebugbar-mini-design a.phpdebugbar-tab i {
    display:inline-block;
  }

/* -------------------------------------- */

  a.phpdebugbar-tab.phpdebugbar-tab-history {
    width: auto;
    min-width: 22px;
  }
  a.phpdebugbar-tab.phpdebugbar-tab-history,
  a.phpdebugbar-tab.phpdebugbar-tab-settings {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  a.phpdebugbar-tab.phpdebugbar-tab-history .phpdebugbar-text,
  a.phpdebugbar-tab.phpdebugbar-tab-settings .phpdebugbar-text {
      display: none;
      white-space: nowrap;
  }
  a.phpdebugbar-tab.phpdebugbar-tab-history i,
  a.phpdebugbar-tab.phpdebugbar-tab-settings i{
    display:inline-block;
  }
  .phpdebugbar-widgets-dataset-history table {
      width: 100%;
      table-layout: fixed;
  }
    .phpdebugbar-widgets-dataset-history table th {
        font-weight: bold;
    }
    .phpdebugbar-widgets-dataset-history table td, .phpdebugbar-widgets-dataset-history table th {
        padding: 6px 3px;
        border-bottom: 1px solid var(--debugbar-border);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .phpdebugbar-widgets-dataset-history table td a{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .phpdebugbar-widgets-dataset-history table tr.phpdebugbar-widgets-active {
        background: var(--debugbar-active);
        color: var(--debugbar-active-text);
    }
    .phpdebugbar-widgets-dataset-history span.phpdebugbar-badge {
        margin: 0 5px 0 2px;
        font-size: 11px;
        line-height: 14px;
        padding: 0 6px;
        background: var(--debugbar-badge);
        border-radius: 4px;
        color: var(--debugbar-badge-text);
        font-weight: normal;
        text-shadow: none;
        vertical-align: middle;
    }
    .phpdebugbar-widgets-dataset-history .phpdebugbar-widgets-dataset-actions {
        text-align: center;
        padding: 7px 0;
        position: sticky;
        top: 0;
        background: var(--debugbar-background);
    }
    .phpdebugbar-widgets-dataset-history .phpdebugbar-widgets-dataset-actions a {
        margin: 0 10px;
    }
    .phpdebugbar-widgets-dataset-history .phpdebugbar-widgets-dataset-actions input {
        margin: 5px;
    }


/* -------------------------------------- */


.phpdebugbar-settings .phpdebugbar-form-row {
  display: block;
  border-top: 1px solid var(--debugbar-border);
  min-height: 17px;
  padding: 5px 10px;
}
.phpdebugbar-settings .phpdebugbar-form-label {
  width: 200px;
  font-weight: bold;
  display: inline-block;
  clear: none;
}
.phpdebugbar-settings .phpdebugbar-form-input {
  font-weight: bold;
  display: inline-block;
  clear: none;
}
.phpdebugbar-settings input[type="text"],
.phpdebugbar-settings select
{
  margin: 0 5px;
  min-width: 200px;
}

.phpdebugbar-settings input[type="checkbox"]
{
  margin: 0 5px;
}

