.phpdebugbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #ccc;
  font-family: arial;
  background: #fff;
}

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

.phpdebugbar-header {
  background: #efefef no-repeat 5px 4px;
  padding-left: 29px;
  min-height: 26px;
}
.phpdebugbar-header:before, .phpdebugbar-header:after {
  display: table;
  line-height: 0;
  content: "";
}
.phpdebugbar-header:after {
  clear: both;
}

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

.phpdebugbar-tab,
.phpdebugbar-indicator,
.phpdebugbar-close-btn {
  float: left;
  padding: 5px 8px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}
.phpdebugbar-indicator,
.phpdebugbar-close-btn {
  float: right;
  border-right: 1px solid #ddd;
}

.phpdebugbar-tab.active {
  background: #ccc;
  color: #444;
  background-image: linear-gradient(bottom, rgb(173,173,173) 41%, rgb(209,209,209) 71%);
  background-image: -o-linear-gradient(bottom, rgb(173,173,173) 41%, rgb(209,209,209) 71%);
  background-image: -moz-linear-gradient(bottom, rgb(173,173,173) 41%, rgb(209,209,209) 71%);
  background-image: -webkit-linear-gradient(bottom, rgb(173,173,173) 41%, rgb(209,209,209) 71%);
  background-image: -ms-linear-gradient(bottom, rgb(173,173,173) 41%, rgb(209,209,209) 71%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.41, rgb(173,173,173)), color-stop(0.71, rgb(209,209,209)));
}
  .phpdebugbar-tab .badge {
    display: none;
    margin-left: 5px;
    font-size: 11px;
    padding: 1px 6px;
    background: #ccc;
    border-radius: 4px;
    color: #555;
  }
  .phpdebugbar-tab .badge.important {
    background: #ed6868;
    color: white;
  }

.phpdebugbar-close-btn {
  display: none;
}

.phpdebugbar-indicator {
  position: relative;
}
  .phpdebugbar-indicator .text {
    margin-left: 5px;
  }
  .phpdebugbar-indicator .tooltip {
    display: none;
    position: absolute;
    top: -30px;
    background: #efefef;
    opacity: .7;
    border: 1px solid #ccc;
    color: #555;
    font-size: 11px;
    padding: 2px 3px;
    z-index: 1000;
  }
  .phpdebugbar-indicator:hover .tooltip {
    display: block;
  }

.phpdebugbar-datasets-switcher {
  float: right;
  display: none;
  margin: 2px 0 0 7px;
}

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

.phpdebugbar-body {
  border-top: 1px solid #ccc;
  display: none;
  position: relative;
  height: 300px;
}
  .phpdebugbar-resize-handle {
    display: none;
    height: 4px;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ccc;
    cursor: move;
    position: absolute;
    top: -33px;
  }

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

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

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

.phpdebugbar-widgets-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: monospace;
}
  .phpdebugbar-widgets-list .list-item {
    padding: 3px 6px;
    border-bottom: 1px solid #eee;
    position: relative;
  }
  .phpdebugbar-widgets-list .list-item:hover {
    background: #fafafa;
  }

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

.phpdebugbar-widgets-messages {
  position: relative;
  height: 100%;
}
  .phpdebugbar-widgets-messages .list-item .value.warning:before {
    font-family: FontAwesome;
    content: "\f071";
    margin-right: 8px;
    font-size: 11px;
    color: #ecb03d;
  }
  .phpdebugbar-widgets-messages .list-item .value.error {
    color: red;
  }
  .phpdebugbar-widgets-messages .list-item .value.error:before {
    font-family: FontAwesome;
    content: "\f057";
    margin-right: 8px;
    font-size: 11px;
    color: red;
  }
  .phpdebugbar-widgets-messages .list-item .backtrace,
  .phpdebugbar-widgets-messages .list-item .label {
    float: right;
    font-size: 12px;
    padding: 2px 4px;
    color: #888;
    margin: 0 2px;
    text-decoration: none;
  }
  .phpdebugbar-widgets-messages .toolbar {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
  }
    .phpdebugbar-widgets-messages .toolbar input {
      border: 0;
      margin-left: 7px;
      width: 50%;
    }
    .phpdebugbar-widgets-messages .toolbar input:focus {
      outline: none;
    }
      .phpdebugbar-widgets-messages .toolbar .filter {
        float: right;
        font-size: 12px;
        padding: 2px 4px;
        background: #7cacd5;
        margin: 0 2px;
        border-radius: 4px;
        color: #fff;
        text-decoration: none;
      }
      .phpdebugbar-widgets-messages .toolbar .filter.disabled {
        background: #eee;
        color: #888;
      }

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

.phpdebugbar-widgets-kvlist {
  margin: 0;
}
  .phpdebugbar-widgets-kvlist dt {
    float: left;
    width: 140px;
    padding: 5px;
    border-top: 1px solid #eee;
    font-weight: bold;
    clear: both;
  }
  .phpdebugbar-widgets-kvlist dd {
    margin-left: 150px;
    padding: 5px;
    border-top: 1px solid #eee;
    cursor: pointer;
  }

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

.phpdebugbar-widgets-varlist {
  font-family: monospace;
}

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

.phpdebugbar-widgets-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}
  .phpdebugbar-widgets-timeline li {
    height: 20px;
    position: relative;
    border-bottom: 1px solid #eee;
  }
  .phpdebugbar-widgets-timeline li:hover {
    background: #fafafa;
  }
    .phpdebugbar-widgets-timeline li .label {
      position: absolute;
      font-size: 12px;
      font-family: monospace;
      color: #555;
      top: 4px;
      left: 5px;
    }
    .phpdebugbar-widgets-timeline li .value {
      display: block; 
      position: absolute;
      height: 10px;
      background: #3db9ec;
      top: 5px;
      border-radius: 2px;
    }

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

.phpdebugbar-widgets-exceptions .list-item {
  cursor: pointer;
}
  .phpdebugbar-widgets-exceptions .list-item .message {
    display: block;
    color: red;
  }

  .phpdebugbar-widgets-exceptions .list-item .filename {
    display: block;
    font-style: italic;
    color: #555;
  }

  .phpdebugbar-widgets-exceptions .list-item .type {
    display: block;
    position: absolute;
    right: 4px;
    top: 4px;
    font-weight: bold;
  }

  .phpdebugbar-widgets-exceptions .list-item .file {
    display: none;
    margin: 10px;
    padding: 5px;
    border: 1px solid #ddd;
    font-family: monospace;
  }

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

.phpdebugbar-widgets-sqlqueries .status {
  font-family: monospace;
  padding: 6px 6px;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  color: #555;
  background: #fafafa;
}

.phpdebugbar-widgets-sqlqueries .list-item.error {
  color: red;
}

.phpdebugbar-widgets-sqlqueries .duration,
.phpdebugbar-widgets-sqlqueries .memory,
.phpdebugbar-widgets-sqlqueries .row-count,
.phpdebugbar-widgets-sqlqueries .stmt-id {
  float: right;
  margin-left: 8px;
  color: #888;
}
.phpdebugbar-widgets-sqlqueries .status .duration,
.phpdebugbar-widgets-sqlqueries .status .memory,
.phpdebugbar-widgets-sqlqueries .status .row-count,
.phpdebugbar-widgets-sqlqueries .status .stmt-id {
  color: #555;
}
.phpdebugbar-widgets-sqlqueries .duration:before,
.phpdebugbar-widgets-sqlqueries .memory:before,
.phpdebugbar-widgets-sqlqueries .row-count:before,
.phpdebugbar-widgets-sqlqueries .stmt-id:before {
  font-family: FontAwesome;
  margin-right: 4px;
  font-size: 12px;
}
.phpdebugbar-widgets-sqlqueries .duration:before {
  content: "\f017";
}
.phpdebugbar-widgets-sqlqueries .memory:before {
  content: "\f085";
}
.phpdebugbar-widgets-sqlqueries .row-count:before {
  content: "\f0ce";
}
.phpdebugbar-widgets-sqlqueries .stmt-id:before {
  content: "\f08d";
}

.phpdebugbar-widgets-sqlqueries .list-item .error {
  display: block;
  font-weight: bold;
}

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

.phpdebugbar-widgets-templates .status {
  font-family: monospace;
  padding: 6px 6px;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  color: #555;
  background: #fafafa;
}

.phpdebugbar-widgets-templates .render_time {
  float: right;
}
.phpdebugbar-widgets-templates .render_time:before {
  content: "\f017";
  font-family: FontAwesome;
  font-size: 12px;
  margin-right: 4px;
}

.phpdebugbar-widgets-templates .status .render_time {
  color: #555;
}
