/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}
/*

Arduino® Light Theme - Stefania Mellai <s.mellai@arduino.cc>

*/

.hljs {
  display: block;
  overflow-x: auto;
}

.hljs,
.hljs-subst {
  color: #434f54;
}

.hljs-keyword,
.hljs-attribute,
.hljs-selector-tag,
.hljs-doctag,
.hljs-name {
  color: #00979D;
}

.hljs-built_in,
.hljs-literal,
.hljs-bullet,
.hljs-code,
.hljs-addition {
  color: #D35400;
}

.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr,
.hljs-selector-pseudo {
  color: #00979D;
}

.hljs-type,
.hljs-string,
.hljs-selector-id,
.hljs-selector-class,
.hljs-quote,
.hljs-template-tag,
.hljs-deletion {
  color: #005C5F;
}

.hljs-title,
.hljs-section {
  color: #880000;
  font-weight: bold;
}

.hljs-comment {
  color: #777;
}

.hljs-meta-keyword {
  color: #728E00;
}

.hljs-meta {
  color: #728E00;
  color: #434f54;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

.hljs-function {
  color: #728E00;
}

.hljs-number {
  color: #8A7B52;
}
/*



 */

html {
  box-sizing: border-box;
  font-size: 14px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 20px;
  background-color: #eee;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.4;
  color: #333;
}

a, a:visited, a:active {
  color: #428bca;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

th {
  text-align: left;
  border-bottom: solid 2px #ddd;
}

h1 {
  font-size: 20px;
  font-weight: bold;
}

h2 {
  font-size: 16px;
  font-weight: bold;
}

h1 small {
  font-weight: normal;
  font-size: 14px;
  color: #999;
}

h1, h2, p, ul, hr, table, pre {
  margin-top: 0;
  margin-bottom: 1rem;
}

.field {
  margin-bottom: 0.5rem;
}

h3 {
  text-align: center;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

ul.nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

table td, table th {
  padding: 8px;
}

td {
  border-top: solid 1px #ddd;
  vertical-align: top;
}

pre {
  background-color: #eee;
  padding: 10px;
  white-space: pre-wrap;
  word-break: break-word;
  margin-top: 0;
}

textarea {
  width: 100%;
  height: 120px;
  border: solid 1px #ddd;
  padding: 10px;
  font-size: inherit;
}

hr {
  border: none;
  height: 0;
  border-top: solid 1px #ddd;
}

.container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.text-muted {
  color: #999;
}

.text-right {
  text-align: right;
}

.percent {
  color: #999;
  font-size: 12px;
  margin-left: 6px;
}

.btn-explain {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: #999;
  font-size: 12px;
  line-height: 20px;
  margin-left: 6px;
}

.btn-explain:hover {
  text-decoration: underline;
}

.user {
  color: #999;
  font-size: 12px;
  float: right;
  line-height: 20px;
}

.user a {
  color: inherit;
}

.tiny {
  font-size: 12px;
  margin-left: 6px;
}

#status, .content, .alert {
  margin-bottom: 20px;
}

.content {
  padding: 20px 20px 1px 20px;
  background-color: #fff;
}

.queries td {
  vertical-align: middle;
}

#status div {
  margin-bottom: 0;
}

#slider-container {
  padding: 6px 8px 14px 8px;
}

.queries-table th a, .space-table th a {
  color: inherit;
}

#slider {
  margin: 0px 14px 18px 14px;
}

#range-start {
  min-height: 20px;
}

#range-end {
  float: right;
}

.queries-info {
  text-align: center;
  margin-top: 40px;
}

/* nav */

.nav a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 12px 20px;
}

.nav li.active a {
  background-color: #ddd;
}

.nav a:hover {
  background-color: #ddd;
}

.nav li.active-database a {
  color: #999;
}

.nav-header {
  font-weight: bold;
  color: #333;
  padding: 12px 20px 12px 0;
  margin: 0;
}

/* buttons */

.btn {
  display: inline-block;
  border: none;
  color: #fff;
  padding: 12px 20px;
  font-size: inherit;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  outline: none;
  margin: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

.btn-danger {
  background-color: #d9534f;
}

.btn-info {
  background-color: #5bc0de;
}

/* alerts */

.alert {
  padding: 12px 20px;
  color: #fff;
}

.alert-info {
  background-color: #5bc0de;
}

.alert-success {
  background-color: #5cb85c;
}

.alert-warning {
  background-color: #f0ad4e;
}

.alert-danger {
  background-color: #d9534f;
}

.alert a {
  color: #fff;
  text-decoration: none;
}

.button_to, .button_to div {
  display: inline;
}

/*
  Simple Grid
  Learn More - http://dallasbass.com/simple-grid-a-lightweight-responsive-css-grid/
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - dallasbass.com
*/

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0px;
}

[class*='col-'] {
  float: left;
  padding-right: 20px;
}

[class*='col-']:last-of-type {
  padding-right: 0px;
}

.grid {
  width: 100%;

  margin: 0 auto;
  overflow: hidden;
}

.grid:after {
  content: "";
  display: table;
  clear: both;
}

.grid-pad {
  padding: 20px 0 0px 20px;
}

.grid-pad > [class*='col-']:last-of-type {
  padding-right: 20px;
}

.push-right {
  float: right;
}

/* Content Columns */

.col-1-1 {
  width: 100%;
}
.col-2-3, .col-8-12 {
  width: 66.66%;
}

.col-1-2, .col-6-12 {
  width: 50%;
}

.col-1-3, .col-4-12 {
  width: 33.33%;
}

.col-1-4, .col-3-12 {
  width: 25%;
}

.col-1-5 {
  width: 20%;
}

.col-1-6, .col-2-12 {
  width: 16.667%;
}

.col-1-7 {
  width: 14.28%;
}

.col-1-8 {
  width: 12.5%;
}

.col-1-9 {
  width: 11.1%;
}

.col-1-10 {
  width: 10%;
}

.col-1-11 {
  width: 9.09%;
}

.col-1-12 {
  width: 8.33%
}

/* Layout Columns */

.col-11-12 {
  width: 91.66%
}

.col-10-12 {
  width: 83.333%;
}

.col-9-12 {
  width: 75%;
}

.col-5-12 {
  width: 41.66%;
}

.col-7-12 {
  width: 58.33%
}

@media handheld, only screen and (max-width: 767px) {


  .grid {
    width: 100%;
    min-width: 0;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }

  [class*='col-'] {
    width: auto;
    float: none;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-right: 0px;
    padding-left: 0px;
  }
}

.noUi-connect {
  box-shadow: none;
  background: #5bc0de;
}

.noUi-handle {
  box-shadow: none;
}

.noUi-target {
  box-shadow: none;
  border-color: #eee;
}

.noUi-background {
  box-shadow: none;
  background-color: #eee;
}

.noUi-origin {
  border-radius: 0;
}

#periods {
  text-align: center;
}

#periods a {
  margin-right: 20px;
}

.chart {
  height: 300px;
  line-height: 300px;
  text-align: center;
  color: #999;
  margin-bottom: 20px;
}

.pie-chart {
  height: 260px;
  line-height: 260px;
}

.unused-index {
  color: #f0ad4e;
  font-size: 11px;
  font-weight: bold;
}

.primary-key {
  color: #f0ad4e;
  font-size: 11px;
  font-weight: bold;
}

.origins-table {
  table-layout: auto;
}

.origin {
  word-break: break-word;
  width: 90%;
}

.origin-pct {
  text-align: right;
  width: 10%;
}

.duplicate-indexes td {
  padding: 15px 0 5px 0;
}

.duplicate-indexes pre {
  margin-top: 10px;
}

.no-outline:focus {
  outline: none;
}

.width-10 {
  width: 10%;
}

.width-15 {
  width: 15%;
}

.width-20 {
  width: 20%;
}

.width-25 {
  width: 25%;
}

.width-33 {
  width: 33.33%;
}

.right-5 {
  margin-right: 5px;
}

.query-row {
  border-top: none;
  padding: 0;
}

.query-pre {
  margin-top: 1em;
}

.query-code {
  max-height: 230px;
  overflow: hidden;
}

.break-all {
  word-break: break-all;
}

.migration {
  display: none;
}

.migration pre {
  overflow: scroll;
  white-space: pre;
  word-break: normal;
}

.space-index {
  font-style: italic;
}

a.relation-link {
  color: inherit;
}

.push-left {
  float: left;
}

.clear-both {
  clear: both;
}

.create-index {
  color: #eee;
  background-color: #333;
}

.hide {
  display: none;
}

.show-details {
  float: right;
  color: #f0ad4e;
  margin-top: 0px;
  padding: 10px;
  cursor: pointer;
}

.details pre {
  color: #f0ad4e;
  background-color: #333;
}
