.react-grid-layout {
    position: relative;
    transition: height .2s ease
}

.react-grid-item {
    transition: all .2s ease;
    transition-property: left, top
}

.react-grid-item img {
    pointer-events: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.react-grid-item.cssTransforms {
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform
}

.react-grid-item.resizing {
    will-change: width, height;
    z-index: 1
}

.react-grid-item.react-draggable-dragging {
    transition: none;
    will-change: transform;
    z-index: 3
}

.react-grid-item.dropping {
    visibility: hidden
}

.react-grid-item.react-grid-placeholder {
    background: red;
    opacity: .2;
    transition-duration: .1s;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    z-index: 2
}

.react-grid-item>.react-resizable-handle {
    height: 20px;
    position: absolute;
    width: 20px
}

.react-grid-item>.react-resizable-handle:after {
    border-bottom: 2px solid #0006;
    border-right: 2px solid #0006;
    bottom: 3px;
    content: "";
    height: 5px;
    position: absolute;
    right: 3px;
    width: 5px
}

.react-resizable-hide>.react-resizable-handle {
    display: none
}

.react-grid-item>.react-resizable-handle.react-resizable-handle-sw {
    bottom: 0;
    cursor: sw-resize;
    left: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.react-grid-item>.react-resizable-handle.react-resizable-handle-se {
    bottom: 0;
    cursor: se-resize;
    right: 0
}

.react-grid-item>.react-resizable-handle.react-resizable-handle-nw {
    cursor: nw-resize;
    left: 0;
    top: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.react-grid-item>.react-resizable-handle.react-resizable-handle-ne {
    cursor: ne-resize;
    right: 0;
    top: 0;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.react-grid-item>.react-resizable-handle.react-resizable-handle-e,
.react-grid-item>.react-resizable-handle.react-resizable-handle-w {
    cursor: ew-resize;
    margin-top: -10px;
    top: 50%
}

.react-grid-item>.react-resizable-handle.react-resizable-handle-w {
    left: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.react-grid-item>.react-resizable-handle.react-resizable-handle-e {
    right: 0;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg)
}

.react-grid-item>.react-resizable-handle.react-resizable-handle-n,
.react-grid-item>.react-resizable-handle.react-resizable-handle-s {
    cursor: ns-resize;
    left: 50%;
    margin-left: -10px
}

.react-grid-item>.react-resizable-handle.react-resizable-handle-n {
    top: 0;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg)
}

.react-grid-item>.react-resizable-handle.react-resizable-handle-s {
    bottom: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.react-resizable {
    position: relative
}

.react-resizable-handle {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgd2lkdGg9IjYiIGhlaWdodD0iNiI+PHBhdGggZD0iTTYgNkgwVjQuMmg0LjJWMEg2djZaIiBvcGFjaXR5PSIuMzAyIi8+PC9zdmc+");
    background-origin: content-box;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    box-sizing: border-box;
    height: 20px;
    padding: 0 3px 3px 0;
    position: absolute;
    width: 20px
}

.react-resizable-handle-sw {
    bottom: 0;
    cursor: sw-resize;
    left: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.react-resizable-handle-se {
    bottom: 0;
    cursor: se-resize;
    right: 0
}

.react-resizable-handle-nw {
    cursor: nw-resize;
    left: 0;
    top: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.react-resizable-handle-ne {
    cursor: ne-resize;
    right: 0;
    top: 0;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.react-resizable-handle-e,
.react-resizable-handle-w {
    cursor: ew-resize;
    margin-top: -10px;
    top: 50%
}

.react-resizable-handle-w {
    left: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.react-resizable-handle-e {
    right: 0;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg)
}

.react-resizable-handle-n,
.react-resizable-handle-s {
    cursor: ns-resize;
    left: 50%;
    margin-left: -10px
}

.react-resizable-handle-n {
    top: 0;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg)
}

.react-resizable-handle-s {
    bottom: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.drawer {
    position: fixed;
    transition: width 0s ease .3s, height 0s ease .3s, transform .3s cubic-bezier(.78, .14, .15, .86);
    z-index: 9999
}

.drawer>* {
    transition: transform .3s cubic-bezier(.78, .14, .15, .86), opacity .3s cubic-bezier(.78, .14, .15, .86), box-shadow .3s cubic-bezier(.78, .14, .15, .86)
}

.drawer.drawer-open {
    transition: transform .3s cubic-bezier(.78, .14, .15, .86)
}

.drawer .drawer-mask {
    background: #000;
    height: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity .3s cubic-bezier(.78, .14, .15, .86), height 0s ease .3s;
    width: 100%
}

.drawer-content-wrapper {
    background: #fff;
    position: absolute
}

.drawer-content {
    overflow: auto;
    position: relative;
    z-index: 1
}

.drawer-handle {
    align-items: center;
    background: #fff;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 40px;
    justify-content: center;
    line-height: 40px;
    position: absolute;
    text-align: center;
    top: 72px;
    width: 41px;
    z-index: 0
}

.drawer-handle-icon {
    background: #333;
    height: 2px;
    position: relative;
    transition: background .3s cubic-bezier(.78, .14, .15, .86);
    width: 14px
}

.drawer-handle-icon:after,
.drawer-handle-icon:before {
    background: #333;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transition: transform .3s cubic-bezier(.78, .14, .15, .86);
    width: 100%
}

.drawer-handle-icon:before {
    top: -5px
}

.drawer-handle-icon:after {
    top: 5px
}

.drawer-left,
.drawer-right {
    height: 100%;
    width: 0
}

.drawer-left .drawer-content,
.drawer-left .drawer-content-wrapper,
.drawer-right .drawer-content,
.drawer-right .drawer-content-wrapper {
    height: 100%
}

.drawer-left.drawer-open,
.drawer-right.drawer-open {
    width: 100%
}

.drawer-left.drawer-open.no-mask,
.drawer-right.drawer-open.no-mask {
    width: 0
}

.drawer-left {
    left: 0;
    top: 0
}

.drawer-left .drawer-handle {
    border-radius: 0 4px 4px 0;
    right: -40px
}

.drawer-left .drawer-handle,
.drawer-left.drawer-open .drawer-content-wrapper {
    box-shadow: 2px 0 8px #00000026
}

.drawer-right {
    right: 0;
    top: 0
}

.drawer-right .drawer-content-wrapper {
    right: 0
}

.drawer-right .drawer-handle {
    border-radius: 4px 0 0 4px;
    left: -40px
}

.drawer-right .drawer-handle,
.drawer-right.drawer-open .drawer-content-wrapper {
    box-shadow: -2px 0 8px #00000026
}

.drawer-right.drawer-open.no-mask {
    right: 1px;
    transform: translateX(1px)
}

.drawer-bottom,
.drawer-top {
    height: 0%;
    width: 100%
}

.drawer-bottom .drawer-content,
.drawer-bottom .drawer-content-wrapper,
.drawer-top .drawer-content,
.drawer-top .drawer-content-wrapper {
    width: 100%
}

.drawer-bottom .drawer-content,
.drawer-bottom.drawer-open,
.drawer-top .drawer-content,
.drawer-top.drawer-open {
    height: 100%
}

.drawer-bottom.drawer-open.no-mask,
.drawer-top.drawer-open.no-mask {
    height: 0%
}

.drawer-bottom .drawer-handle,
.drawer-top .drawer-handle {
    left: 50%;
    margin-left: -20px
}

.drawer-top {
    left: 0;
    top: 0
}

.drawer-top .drawer-handle {
    border-radius: 0 0 4px 4px;
    bottom: -40px;
    top: auto
}

.drawer-top .drawer-handle,
.drawer-top.drawer-open .drawer-content-wrapper {
    box-shadow: 0 2px 8px #00000026
}

.drawer-bottom {
    bottom: 0;
    left: 0
}

.drawer-bottom .drawer-content-wrapper {
    bottom: 0
}

.drawer-bottom .drawer-handle {
    border-radius: 4px 4px 0 0;
    top: -40px
}

.drawer-bottom .drawer-handle,
.drawer-bottom.drawer-open .drawer-content-wrapper {
    box-shadow: 0 -2px 8px #00000026
}

.drawer-bottom.drawer-open.no-mask {
    bottom: 1px;
    transform: translateY(1px)
}

.drawer.drawer-open .drawer-mask {
    height: 100%;
    opacity: .3;
    transition: opacity .3s cubic-bezier(.78, .14, .15, .86)
}

.drawer.drawer-open .drawer-handle-icon {
    background: #0000
}

.drawer.drawer-open .drawer-handle-icon:before {
    transform: translateY(5px) rotate(45deg)
}

.drawer.drawer-open .drawer-handle-icon:after {
    transform: translateY(-5px) rotate(-45deg)
}

.rc-time-picker {
    display: inline-block;
    position: relative
}

.rc-time-picker,
.rc-time-picker * {
    box-sizing: border-box
}

.rc-time-picker-clear {
    cursor: pointer;
    height: 20px;
    line-height: 20px;
    margin: 0;
    overflow: hidden;
    position: absolute;
    right: 6px;
    text-align: center;
    top: 3px;
    width: 20px
}

.rc-time-picker-clear-icon:after {
    color: #aaa;
    content: "x";
    display: inline-block;
    font-size: 12px;
    font-style: normal;
    height: 20px;
    line-height: 1;
    transition: color .3s ease;
    width: 20px
}

.rc-time-picker-clear-icon:hover:after {
    color: #666
}

.rc-time-picker-input {
    background-color: #fff;
    background-image: none;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    color: #666;
    cursor: text;
    display: inline-block;
    font-size: 12px;
    height: 28px;
    line-height: 1.5;
    padding: 4px 7px;
    position: relative;
    transition: border .2s cubic-bezier(.645, .045, .355, 1), background .2s cubic-bezier(.645, .045, .355, 1), box-shadow .2s cubic-bezier(.645, .045, .355, 1);
    width: 100%
}

.rc-time-picker-input[disabled] {
    background: #f7f7f7;
    color: #ccc;
    cursor: not-allowed
}

.rc-time-picker-panel {
    box-sizing: border-box;
    position: absolute;
    width: 170px;
    z-index: 1070
}

.rc-time-picker-panel * {
    box-sizing: border-box
}

.rc-time-picker-panel-inner {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 1px 5px #ccc;
    display: inline-block;
    font-size: 12px;
    line-height: 1.5;
    list-style: none;
    outline: none;
    position: relative;
    text-align: left
}

.rc-time-picker-panel-narrow {
    max-width: 113px
}

.rc-time-picker-panel-input {
    border: 1px solid #0000;
    cursor: auto;
    line-height: 1.5;
    margin: 0;
    outline: 0;
    padding: 0;
    width: 100%
}

.rc-time-picker-panel-input-wrap {
    border-bottom: 1px solid #e9e9e9;
    box-sizing: border-box;
    padding: 6px;
    position: relative
}

.rc-time-picker-panel-input-invalid {
    border-color: red
}

.rc-time-picker-panel-select {
    border: 1px solid #e9e9e9;
    border-width: 0 1px;
    box-sizing: border-box;
    float: left;
    font-size: 12px;
    margin-left: -1px;
    max-height: 144px;
    overflow-y: auto;
    position: relative;
    width: 56px
}

.rc-time-picker-panel-select-active {
    overflow-y: auto
}

.rc-time-picker-panel-select:first-child {
    border-left: 0;
    margin-left: 0
}

.rc-time-picker-panel-select:last-child {
    border-right: 0
}

.rc-time-picker-panel-select ul {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%
}

.rc-time-picker-panel-select li {
    cursor: pointer;
    height: 24px;
    line-height: 24px;
    list-style: none;
    margin: 0;
    padding: 0 0 0 16px;
    text-align: left;
    -webkit-user-select: none;
    user-select: none;
    width: 100%
}

.rc-time-picker-panel-select li:hover {
    background: #edfaff
}

li.rc-time-picker-panel-select-option-selected {
    background: #f7f7f7;
    font-weight: 700
}

li.rc-time-picker-panel-select-option-disabled {
    color: #ccc
}

li.rc-time-picker-panel-select-option-disabled:hover {
    background: #0000;
    cursor: not-allowed
}

.rc-slider {
    border-radius: 6px;
    height: 14px;
    padding: 5px 0;
    position: relative;
    touch-action: none;
    width: 100%
}

.rc-slider,
.rc-slider * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box
}

.rc-slider-rail {
    background-color: #e9e9e9;
    width: 100%
}

.rc-slider-rail,
.rc-slider-track {
    border-radius: 6px;
    height: 4px;
    position: absolute
}

.rc-slider-track {
    background-color: #abe2fb;
    left: 0
}

.rc-slider-handle {
    background-color: #fff;
    border: 2px solid #96dbfa;
    border-radius: 50%;
    cursor: pointer;
    cursor: -webkit-grab;
    cursor: grab;
    height: 14px;
    margin-top: -5px;
    position: absolute;
    touch-action: pan-x;
    width: 14px
}

.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
    border-color: #57c5f7;
    box-shadow: 0 0 0 5px #96dbfa
}

.rc-slider-handle:focus {
    outline: none
}

.rc-slider-handle-click-focused:focus {
    border-color: #96dbfa;
    box-shadow: unset
}

.rc-slider-handle:hover {
    border-color: #57c5f7
}

.rc-slider-handle:active {
    border-color: #57c5f7;
    box-shadow: 0 0 5px #57c5f7;
    cursor: grabbing
}

.rc-slider-mark {
    font-size: 12px;
    left: 0;
    position: absolute;
    top: 18px;
    width: 100%
}

.rc-slider-mark-text {
    color: #999;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    text-align: center;
    vertical-align: middle
}

.rc-slider-mark-text-active {
    color: #666
}

.rc-slider-step {
    background: #0000;
    height: 4px;
    position: absolute;
    width: 100%
}

.rc-slider-dot {
    background-color: #fff;
    border: 2px solid #e9e9e9;
    border-radius: 50%;
    bottom: -2px;
    cursor: pointer;
    height: 8px;
    margin-left: -4px;
    position: absolute;
    vertical-align: middle;
    width: 8px
}

.rc-slider-dot-active {
    border-color: #96dbfa
}

.rc-slider-dot-reverse {
    margin-right: -4px
}

.rc-slider-disabled {
    background-color: #e9e9e9
}

.rc-slider-disabled .rc-slider-track {
    background-color: #ccc
}

.rc-slider-disabled .rc-slider-dot,
.rc-slider-disabled .rc-slider-handle {
    background-color: #fff;
    border-color: #ccc;
    box-shadow: none;
    cursor: not-allowed
}

.rc-slider-disabled .rc-slider-dot,
.rc-slider-disabled .rc-slider-mark-text {
    cursor: not-allowed !important
}

.rc-slider-vertical {
    height: 100%;
    padding: 0 5px;
    width: 14px
}

.rc-slider-vertical .rc-slider-rail {
    height: 100%;
    width: 4px
}

.rc-slider-vertical .rc-slider-track {
    bottom: 0;
    left: 5px;
    width: 4px
}

.rc-slider-vertical .rc-slider-handle {
    margin-left: -5px;
    touch-action: pan-y
}

.rc-slider-vertical .rc-slider-mark {
    height: 100%;
    left: 18px;
    top: 0
}

.rc-slider-vertical .rc-slider-step {
    height: 100%;
    width: 4px
}

.rc-slider-vertical .rc-slider-dot {
    left: 2px;
    margin-bottom: -4px
}

.rc-slider-vertical .rc-slider-dot:first-child,
.rc-slider-vertical .rc-slider-dot:last-child {
    margin-bottom: -4px
}

.rc-slider-tooltip-zoom-down-appear,
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-leave {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused;
    display: block !important
}

.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active,
.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active {
    animation-name: rcSliderTooltipZoomDownIn;
    animation-play-state: running
}

.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
    animation-name: rcSliderTooltipZoomDownOut;
    animation-play-state: running
}

.rc-slider-tooltip-zoom-down-appear,
.rc-slider-tooltip-zoom-down-enter {
    animation-timing-function: cubic-bezier(.23, 1, .32, 1);
    transform: scale(0)
}

.rc-slider-tooltip-zoom-down-leave {
    animation-timing-function: cubic-bezier(.755, .05, .855, .06)
}

@keyframes rcSliderTooltipZoomDownIn {
    0% {
        opacity: 0;
        transform: scale(0);
        transform-origin: 50% 100%
    }
    to {
        transform: scale(1);
        transform-origin: 50% 100%
    }
}

@keyframes rcSliderTooltipZoomDownOut {
    0% {
        transform: scale(1);
        transform-origin: 50% 100%
    }
    to {
        opacity: 0;
        transform: scale(0);
        transform-origin: 50% 100%
    }
}

.rc-slider-tooltip {
    left: -9999px;
    position: absolute;
    top: -9999px;
    visibility: visible
}

.rc-slider-tooltip,
.rc-slider-tooltip * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box
}

.rc-slider-tooltip-hidden {
    display: none
}

.rc-slider-tooltip-placement-top {
    padding: 4px 0 8px
}

.rc-slider-tooltip-inner {
    background-color: #6c6c6c;
    border-radius: 6px;
    box-shadow: 0 0 4px #d9d9d9;
    color: #fff;
    font-size: 12px;
    height: 24px;
    line-height: 1;
    min-width: 24px;
    padding: 6px 2px;
    text-align: center;
    text-decoration: none
}

.rc-slider-tooltip-arrow {
    border-color: #0000;
    border-style: solid;
    height: 0;
    position: absolute;
    width: 0
}

.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
    border-top-color: #6c6c6c;
    border-width: 4px 4px 0;
    bottom: 4px;
    left: 50%;
    margin-left: -4px
}

.uplot,
.uplot *,
.uplot :after,
.uplot :before {
    box-sizing: border-box
}

.uplot {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    line-height: 1.5;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content
}

.u-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center
}

.u-wrap {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.u-over,
.u-under {
    position: absolute
}

.u-under {
    overflow: hidden
}

.uplot canvas {
    display: block;
    height: 100%;
    position: relative;
    width: 100%
}

.u-axis {
    position: absolute
}

.u-legend {
    font-size: 14px;
    margin: auto;
    text-align: center
}

.u-inline {
    display: block
}

.u-inline * {
    display: inline-block
}

.u-inline tr {
    margin-right: 16px
}

.u-legend th {
    font-weight: 600
}

.u-legend th>* {
    display: inline-block;
    vertical-align: middle
}

.u-legend .u-marker {
    background-clip: padding-box !important;
    height: 1em;
    margin-right: 4px;
    width: 1em
}

.u-inline.u-live th:after {
    content: ":";
    vertical-align: middle
}

.u-inline:not(.u-live) .u-value {
    display: none
}

.u-series>* {
    padding: 4px
}

.u-series th {
    cursor: pointer
}

.u-legend .u-off>* {
    opacity: .3
}

.u-select {
    background: #00000012
}

.u-cursor-x,
.u-cursor-y,
.u-select {
    pointer-events: none;
    position: absolute
}

.u-cursor-x,
.u-cursor-y {
    left: 0;
    top: 0;
    will-change: transform;
    z-index: 100
}

.u-hz .u-cursor-x,
.u-vt .u-cursor-y {
    border-right: 1px dashed #607d8b;
    height: 100%
}

.u-hz .u-cursor-y,
.u-vt .u-cursor-x {
    border-bottom: 1px dashed #607d8b;
    width: 100%
}

.u-cursor-pt {
    background-clip: padding-box !important;
    border: 0 solid;
    border-radius: 50%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    will-change: transform;
    z-index: 100
}

.u-axis.u-off,
.u-cursor-pt.u-off,
.u-cursor-x.u-off,
.u-cursor-y.u-off,
.u-select.u-off {
    display: none
}

.hide-text {
    background-color: initial;
    border: 0;
    color: #0000;
    font: 0/0 a;
    text-shadow: none
}

.input-block-level {
    box-sizing: border-box;
    display: block;
    min-height: 18px;
    width: 100%
}

.animate-height {
    max-height: 0;
    overflow: hidden
}

.animate-height--open {
    max-height: 1000px;
    overflow: auto;
    transition: max-height .25s ease-in-out
}

@keyframes spin-clockwise {
    0% {
        transform: rotate(0deg) scaleX(-1)
    }
    to {
        transform: rotate(359deg) scaleX(-1)
    }
}

.spin-clockwise {
    animation: spin-clockwise 3s linear infinite
}

/*! normalize.css commit fe56763 | MIT License | github.com/necolas/normalize.css */

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-family: sans-serif
}

body {
    margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: initial
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden],
template {
    display: none
}

a {
    background-color: initial
}

a:active,
a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: initial
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: initial;
    height: 0
}

pre {
    overflow: auto
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html input[type=button],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],
html input[disabled] {
    cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type=checkbox],
input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-appearance: textfield
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0
}

html {
    box-sizing: border-box
}

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

[tabindex="-1"]:focus {
    outline: none !important
}

body,
html {
    font-size: 14px;
    height: 100%
}

body {
    background-color: #111217;
    color: #ccccdc;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    position: absolute;
    width: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 8px;
    margin-top: 0
}

p {
    margin-top: 0
}

address,
p {
    margin-bottom: 16px
}

address {
    line-height: inherit
}

dl,
ol,
ul {
    margin-bottom: 0;
    margin-top: 0
}

dd {
    margin-bottom: 8px;
    margin-left: 0
}

blockquote {
    margin: 0 0 16px
}

pre {
    margin-bottom: 16px;
    margin-top: 0
}

figure {
    margin: 0 0 16px
}

img {
    vertical-align: middle
}

[role=button] {
    cursor: pointer
}

[role=button],
a,
area,
button,
input,
label,
select,
summary,
textarea {
    touch-action: manipulation
}

table {
    background-color: initial
}

caption {
    caption-side: bottom;
    color: #ccccdca6;
    padding-bottom: 4px 8px;
    padding-top: 4px 8px
}

caption,
th {
    text-align: left
}

label {
    display: inline-block
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color
}

button,
input,
select,
textarea {
    border-radius: 0;
    line-height: inherit;
    margin: 0
}

textarea {
    resize: vertical
}

fieldset {
    border: 0;
    margin: 0;
    min-width: 0;
    padding: 0
}

legend {
    display: block;
    font-size: 24px;
    line-height: inherit;
    margin-bottom: 8px;
    padding: 0;
    width: 100%
}

input[type=search] {
    -webkit-appearance: none
}

output {
    display: inline-block
}

[hidden] {
    display: none !important
}

hr {
    border: 0;
    border-top: 1px solid #343436;
    margin-bottom: 16px;
    margin-top: 16px
}

.small,
small {
    font-size: 12px;
    font-weight: 400
}

.small-xs {
    font-size: 10px
}

.mark,
mark {
    background: #f5b73d
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500
}

ol,
ul {
    padding: 0
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

li {
    line-height: 1.5
}

ol.inline,
ol.unstyled,
ul.inline,
ul.unstyled {
    list-style: none;
    margin-left: 0
}

ol.inline>li,
ul.inline>li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px
}

dl {
    margin-bottom: 1.5
}

dd,
dt {
    line-height: 1.5
}

dt {
    font-weight: 500
}

dd {
    margin-left: .75
}

.dl-horizontal:after {
    clear: both;
    content: "";
    display: table
}

.dl-horizontal dt {
    clear: left;
    float: left;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 160px
}

.dl-horizontal dd {
    margin-left: 180px
}

abbr[title] {
    border-bottom: 1px dotted #8e8e8e;
    cursor: help
}

abbr.initialism {
    font-size: 90%;
    text-transform: uppercase
}

blockquote {
    border-left: 5px solid #b3b3b3;
    margin: 0 0 1.5;
    padding: 0 0 0 15px
}

blockquote p {
    font-size: 17.5px;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 0
}

blockquote small {
    color: #8e8e8e;
    display: block;
    line-height: 1.5
}

blockquote small:before {
    content: "âÂ "
}

blockquote.pull-right {
    border-left: 0;
    border-right: 5px solid #b3b3b3;
    float: right;
    padding-left: 0;
    padding-right: 15px
}

blockquote.pull-right p,
blockquote.pull-right small {
    text-align: right
}

blockquote.pull-right small:before {
    content: ""
}

blockquote.pull-right small:after {
    content: "Â â"
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: ""
}

address {
    display: block;
    font-style: normal;
    line-height: 1.5;
    margin-bottom: 1.5
}

.grafana-info-box a,
a.external-link {
    color: #6e9fff;
    -webkit-text-decoration: normal;
    text-decoration: normal
}

.grafana-info-box a:hover,
a.external-link:hover {
    color: #6e9fff;
    text-decoration: underline
}

.link {
    color: #ccccdc;
    cursor: pointer
}

.link:hover {
    color: #fff
}

.pointer {
    cursor: pointer
}

.markdown-html img {
    max-width: 100%
}

.markdown-html ol,
.markdown-html ul {
    margin-bottom: 16px;
    padding-left: 24px
}

.markdown-html table {
    margin-bottom: 16px
}

.markdown-html table td,
.markdown-html table th {
    padding: 4px 8px
}

.markdown-html table th {
    background: #22252b;
    font-weight: 500
}

.markdown-html table,
.markdown-html td,
.markdown-html th {
    border: 1px solid #ccccdc26;
    border-collapse: collapse
}

.markdown-html a {
    color: #6e9fff;
    text-decoration: none
}

.markdown-html a:hover {
    color: #6e9fff;
    text-decoration: underline
}

.markdown-html ol:last-child,
.markdown-html p:last-child,
.markdown-html table:last-child,
.markdown-html ul:last-child {
    margin-bottom: 0
}

.no-wrap {
    white-space: nowrap
}

.highlight-search-match {
    background: #0000;
    color: #ecbb13;
    padding: 0
}

th {
    font-weight: 500
}

canvas {
    display: block
}

button,
input,
select,
textarea {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5
}

input,
select {
    background-color: #111217;
    border: none;
    box-shadow: none;
    color: #ccccdc
}

textarea {
    height: auto
}

input[type=button],
input[type=checkbox],
input[type=file],
input[type=image],
input[type=radio],
input[type=reset],
input[type=submit] {
    width: auto
}

input[type=file],
select {
    height: 32px;
    line-height: 32px
}

select {
    background-color: #111217;
    border: 1px solid #ccccdc26;
    width: 220px
}

select[multiple],
select[size] {
    height: auto
}

input[type=checkbox]:focus,
input[type=file]:focus,
input[type=radio]:focus,
select:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

input::placeholder,
textarea::placeholder {
    color: #ccccdc99
}

.input-mini {
    width: 60px
}

.input-small {
    width: 90px
}

.input-medium {
    width: 150px
}

.input-large {
    width: 210px
}

.input-xlarge {
    width: 270px
}

.input-xxlarge {
    width: 530px
}

input[disabled],
input[readonly],
select[disabled],
select[readonly],
textarea[disabled],
textarea[readonly] {
    background-color: #ccccdc0a;
    cursor: not-allowed
}

input[type=checkbox][disabled],
input[type=checkbox][readonly],
input[type=radio][disabled],
input[type=radio][readonly] {
    background-color: initial;
    cursor: not-allowed
}

input[type=text].input-fluid {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 16px;
    height: 100%;
    padding: 10px;
    width: 100%
}

input[type=checkbox].cr1 {
    display: none
}

.editor-option label.cr1 {
    display: inline-block;
    margin: 5px 0 1px
}

label.cr1 {
    background: url(../img/checkbox.png) 0 0 no-repeat;
    clear: none;
    cursor: pointer;
    display: inline-block;
    height: 18px;
    margin: 0;
    padding: 0 0 0 20px;
    position: relative;
    text-indent: 2px;
    vertical-align: top
}

input[type=checkbox].cr1:checked+label {
    background: url(../img/checkbox.png) 0 -18px no-repeat
}

.gf-fluid-input {
    border: none;
    display: block;
    overflow: hidden;
    padding-right: 10px
}

.gf-fluid-input input[type=text],
.gf-fluid-input textarea {
    box-sizing: border-box;
    height: 100%;
    padding: 5px 6px;
    width: 100%
}

.form-control-danger,
.form-control-success,
.form-control-warning {
    background-position: center right 8px;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    padding-right: 32px
}

.has-success .checkbox,
.has-success .checkbox-inline,
.has-success.checkbox-inline label,
.has-success.checkbox label,
.has-success .custom-control,
.has-success .form-control-label,
.has-success .radio,
.has-success .radio-inline,
.has-success.radio-inline label,
.has-success.radio label,
.has-success .text-help {
    color: #1a7f4b
}

.has-success .form-control {
    border-color: #1a7f4b
}

.has-success .input-group-addon {
    background-color: #80e5b1;
    border-color: #1a7f4b;
    color: #1a7f4b
}

.has-success .form-control-feedback {
    color: #1a7f4b
}

.has-success .form-control-success {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E")
}

.has-warning .checkbox,
.has-warning .checkbox-inline,
.has-warning.checkbox-inline label,
.has-warning.checkbox label,
.has-warning .custom-control,
.has-warning .form-control-label,
.has-warning .radio,
.has-warning .radio-inline,
.has-warning.radio-inline label,
.has-warning.radio label,
.has-warning .text-help {
    color: #f5b73d
}

.has-warning .form-control {
    border-color: #f5b73d
}

.has-warning .input-group-addon {
    background-color: #fff;
    border-color: #f5b73d;
    color: #f5b73d
}

.has-warning .form-control-feedback {
    color: #f5b73d
}

.has-warning .form-control-warning {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E")
}

.has-danger .checkbox,
.has-danger .checkbox-inline,
.has-danger.checkbox-inline label,
.has-danger.checkbox label,
.has-danger .custom-control,
.has-danger .form-control-label,
.has-danger .radio,
.has-danger .radio-inline,
.has-danger.radio-inline label,
.has-danger.radio label,
.has-danger .text-help {
    color: #d10e5c
}

.has-danger .form-control {
    border-color: #d10e5c
}

.has-danger .input-group-addon {
    background-color: #fab1ce;
    border-color: #d10e5c;
    color: #d10e5c
}

.has-danger .form-control-feedback {
    color: #d10e5c
}

.has-danger .form-control-danger {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E")
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
    -webkit-text-fill-color: #ccccdc !important;
    border: 1px solid #111217;
    -webkit-box-shadow: inset 0 0 0 1000px #111217 !important;
    box-shadow: inset 0 0 0 1000px #111217
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px
}

@media(min-width:544px) {
    .container {
        max-width: 576px
    }
}

@media(min-width:769px) {
    .container {
        max-width: 720px
    }
}

@media(min-width:992px) {
    .container {
        max-width: 940px
    }
}

@media(min-width:1200px) {
    .container {
        max-width: 1080px
    }
}

.container-fluid {
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-right: -16px
}

@media(min-width:0px) {
    .col-xs {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }
    .col-xs,
    .col-xs-1 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-xs-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }
    .col-xs-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }
    .col-xs-2,
    .col-xs-3 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-xs-3 {
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-xs-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }
    .col-xs-4,
    .col-xs-5 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-xs-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }
    .col-xs-6 {
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-xs-6,
    .col-xs-7 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-xs-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }
    .col-xs-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }
    .col-xs-8,
    .col-xs-9 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-xs-9 {
        flex: 0 0 75%;
        max-width: 75%
    }
    .col-xs-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }
    .col-xs-10,
    .col-xs-11 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-xs-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }
    .col-xs-12 {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .pull-xs-0 {
        right: auto
    }
    .pull-xs-1 {
        right: 8.3333333333%
    }
    .pull-xs-2 {
        right: 16.6666666667%
    }
    .pull-xs-3 {
        right: 25%
    }
    .pull-xs-4 {
        right: 33.3333333333%
    }
    .pull-xs-5 {
        right: 41.6666666667%
    }
    .pull-xs-6 {
        right: 50%
    }
    .pull-xs-7 {
        right: 58.3333333333%
    }
    .pull-xs-8 {
        right: 66.6666666667%
    }
    .pull-xs-9 {
        right: 75%
    }
    .pull-xs-10 {
        right: 83.3333333333%
    }
    .pull-xs-11 {
        right: 91.6666666667%
    }
    .pull-xs-12 {
        right: 100%
    }
    .push-xs-0 {
        left: auto
    }
    .push-xs-1 {
        left: 8.3333333333%
    }
    .push-xs-2 {
        left: 16.6666666667%
    }
    .push-xs-3 {
        left: 25%
    }
    .push-xs-4 {
        left: 33.3333333333%
    }
    .push-xs-5 {
        left: 41.6666666667%
    }
    .push-xs-6 {
        left: 50%
    }
    .push-xs-7 {
        left: 58.3333333333%
    }
    .push-xs-8 {
        left: 66.6666666667%
    }
    .push-xs-9 {
        left: 75%
    }
    .push-xs-10 {
        left: 83.3333333333%
    }
    .push-xs-11 {
        left: 91.6666666667%
    }
    .push-xs-12 {
        left: 100%
    }
    .offset-xs-1 {
        margin-left: 8.3333333333%
    }
    .offset-xs-2 {
        margin-left: 16.6666666667%
    }
    .offset-xs-3 {
        margin-left: 25%
    }
    .offset-xs-4 {
        margin-left: 33.3333333333%
    }
    .offset-xs-5 {
        margin-left: 41.6666666667%
    }
    .offset-xs-6 {
        margin-left: 50%
    }
    .offset-xs-7 {
        margin-left: 58.3333333333%
    }
    .offset-xs-8 {
        margin-left: 66.6666666667%
    }
    .offset-xs-9 {
        margin-left: 75%
    }
    .offset-xs-10 {
        margin-left: 83.3333333333%
    }
    .offset-xs-11 {
        margin-left: 91.6666666667%
    }
}

@media(min-width:544px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }
    .col-sm,
    .col-sm-1 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-sm-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }
    .col-sm-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }
    .col-sm-2,
    .col-sm-3 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-sm-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }
    .col-sm-4,
    .col-sm-5 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-sm-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-sm-6,
    .col-sm-7 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-sm-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }
    .col-sm-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }
    .col-sm-8,
    .col-sm-9 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%
    }
    .col-sm-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }
    .col-sm-10,
    .col-sm-11 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-sm-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .pull-sm-0 {
        right: auto
    }
    .pull-sm-1 {
        right: 8.3333333333%
    }
    .pull-sm-2 {
        right: 16.6666666667%
    }
    .pull-sm-3 {
        right: 25%
    }
    .pull-sm-4 {
        right: 33.3333333333%
    }
    .pull-sm-5 {
        right: 41.6666666667%
    }
    .pull-sm-6 {
        right: 50%
    }
    .pull-sm-7 {
        right: 58.3333333333%
    }
    .pull-sm-8 {
        right: 66.6666666667%
    }
    .pull-sm-9 {
        right: 75%
    }
    .pull-sm-10 {
        right: 83.3333333333%
    }
    .pull-sm-11 {
        right: 91.6666666667%
    }
    .pull-sm-12 {
        right: 100%
    }
    .push-sm-0 {
        left: auto
    }
    .push-sm-1 {
        left: 8.3333333333%
    }
    .push-sm-2 {
        left: 16.6666666667%
    }
    .push-sm-3 {
        left: 25%
    }
    .push-sm-4 {
        left: 33.3333333333%
    }
    .push-sm-5 {
        left: 41.6666666667%
    }
    .push-sm-6 {
        left: 50%
    }
    .push-sm-7 {
        left: 58.3333333333%
    }
    .push-sm-8 {
        left: 66.6666666667%
    }
    .push-sm-9 {
        left: 75%
    }
    .push-sm-10 {
        left: 83.3333333333%
    }
    .push-sm-11 {
        left: 91.6666666667%
    }
    .push-sm-12 {
        left: 100%
    }
    .offset-sm-0 {
        margin-left: 0
    }
    .offset-sm-1 {
        margin-left: 8.3333333333%
    }
    .offset-sm-2 {
        margin-left: 16.6666666667%
    }
    .offset-sm-3 {
        margin-left: 25%
    }
    .offset-sm-4 {
        margin-left: 33.3333333333%
    }
    .offset-sm-5 {
        margin-left: 41.6666666667%
    }
    .offset-sm-6 {
        margin-left: 50%
    }
    .offset-sm-7 {
        margin-left: 58.3333333333%
    }
    .offset-sm-8 {
        margin-left: 66.6666666667%
    }
    .offset-sm-9 {
        margin-left: 75%
    }
    .offset-sm-10 {
        margin-left: 83.3333333333%
    }
    .offset-sm-11 {
        margin-left: 91.6666666667%
    }
}

@media(min-width:769px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }
    .col-md,
    .col-md-1 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-md-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }
    .col-md-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }
    .col-md-2,
    .col-md-3 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-md-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }
    .col-md-4,
    .col-md-5 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-md-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-md-6,
    .col-md-7 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-md-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }
    .col-md-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }
    .col-md-8,
    .col-md-9 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%
    }
    .col-md-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }
    .col-md-10,
    .col-md-11 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-md-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .pull-md-0 {
        right: auto
    }
    .pull-md-1 {
        right: 8.3333333333%
    }
    .pull-md-2 {
        right: 16.6666666667%
    }
    .pull-md-3 {
        right: 25%
    }
    .pull-md-4 {
        right: 33.3333333333%
    }
    .pull-md-5 {
        right: 41.6666666667%
    }
    .pull-md-6 {
        right: 50%
    }
    .pull-md-7 {
        right: 58.3333333333%
    }
    .pull-md-8 {
        right: 66.6666666667%
    }
    .pull-md-9 {
        right: 75%
    }
    .pull-md-10 {
        right: 83.3333333333%
    }
    .pull-md-11 {
        right: 91.6666666667%
    }
    .pull-md-12 {
        right: 100%
    }
    .push-md-0 {
        left: auto
    }
    .push-md-1 {
        left: 8.3333333333%
    }
    .push-md-2 {
        left: 16.6666666667%
    }
    .push-md-3 {
        left: 25%
    }
    .push-md-4 {
        left: 33.3333333333%
    }
    .push-md-5 {
        left: 41.6666666667%
    }
    .push-md-6 {
        left: 50%
    }
    .push-md-7 {
        left: 58.3333333333%
    }
    .push-md-8 {
        left: 66.6666666667%
    }
    .push-md-9 {
        left: 75%
    }
    .push-md-10 {
        left: 83.3333333333%
    }
    .push-md-11 {
        left: 91.6666666667%
    }
    .push-md-12 {
        left: 100%
    }
    .offset-md-0 {
        margin-left: 0
    }
    .offset-md-1 {
        margin-left: 8.3333333333%
    }
    .offset-md-2 {
        margin-left: 16.6666666667%
    }
    .offset-md-3 {
        margin-left: 25%
    }
    .offset-md-4 {
        margin-left: 33.3333333333%
    }
    .offset-md-5 {
        margin-left: 41.6666666667%
    }
    .offset-md-6 {
        margin-left: 50%
    }
    .offset-md-7 {
        margin-left: 58.3333333333%
    }
    .offset-md-8 {
        margin-left: 66.6666666667%
    }
    .offset-md-9 {
        margin-left: 75%
    }
    .offset-md-10 {
        margin-left: 83.3333333333%
    }
    .offset-md-11 {
        margin-left: 91.6666666667%
    }
}

@media(min-width:992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }
    .col-lg,
    .col-lg-1 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-lg-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }
    .col-lg-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }
    .col-lg-2,
    .col-lg-3 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-lg-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }
    .col-lg-4,
    .col-lg-5 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-lg-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-lg-6,
    .col-lg-7 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-lg-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }
    .col-lg-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }
    .col-lg-8,
    .col-lg-9 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%
    }
    .col-lg-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }
    .col-lg-10,
    .col-lg-11 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-lg-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .pull-lg-0 {
        right: auto
    }
    .pull-lg-1 {
        right: 8.3333333333%
    }
    .pull-lg-2 {
        right: 16.6666666667%
    }
    .pull-lg-3 {
        right: 25%
    }
    .pull-lg-4 {
        right: 33.3333333333%
    }
    .pull-lg-5 {
        right: 41.6666666667%
    }
    .pull-lg-6 {
        right: 50%
    }
    .pull-lg-7 {
        right: 58.3333333333%
    }
    .pull-lg-8 {
        right: 66.6666666667%
    }
    .pull-lg-9 {
        right: 75%
    }
    .pull-lg-10 {
        right: 83.3333333333%
    }
    .pull-lg-11 {
        right: 91.6666666667%
    }
    .pull-lg-12 {
        right: 100%
    }
    .push-lg-0 {
        left: auto
    }
    .push-lg-1 {
        left: 8.3333333333%
    }
    .push-lg-2 {
        left: 16.6666666667%
    }
    .push-lg-3 {
        left: 25%
    }
    .push-lg-4 {
        left: 33.3333333333%
    }
    .push-lg-5 {
        left: 41.6666666667%
    }
    .push-lg-6 {
        left: 50%
    }
    .push-lg-7 {
        left: 58.3333333333%
    }
    .push-lg-8 {
        left: 66.6666666667%
    }
    .push-lg-9 {
        left: 75%
    }
    .push-lg-10 {
        left: 83.3333333333%
    }
    .push-lg-11 {
        left: 91.6666666667%
    }
    .push-lg-12 {
        left: 100%
    }
    .offset-lg-0 {
        margin-left: 0
    }
    .offset-lg-1 {
        margin-left: 8.3333333333%
    }
    .offset-lg-2 {
        margin-left: 16.6666666667%
    }
    .offset-lg-3 {
        margin-left: 25%
    }
    .offset-lg-4 {
        margin-left: 33.3333333333%
    }
    .offset-lg-5 {
        margin-left: 41.6666666667%
    }
    .offset-lg-6 {
        margin-left: 50%
    }
    .offset-lg-7 {
        margin-left: 58.3333333333%
    }
    .offset-lg-8 {
        margin-left: 66.6666666667%
    }
    .offset-lg-9 {
        margin-left: 75%
    }
    .offset-lg-10 {
        margin-left: 83.3333333333%
    }
    .offset-lg-11 {
        margin-left: 91.6666666667%
    }
}

@media(min-width:1200px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }
    .col-xl,
    .col-xl-1 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-xl-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%
    }
    .col-xl-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%
    }
    .col-xl-2,
    .col-xl-3 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-xl-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%
    }
    .col-xl-4,
    .col-xl-5 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-xl-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%
    }
    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-xl-6,
    .col-xl-7 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-xl-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%
    }
    .col-xl-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%
    }
    .col-xl-8,
    .col-xl-9 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%
    }
    .col-xl-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%
    }
    .col-xl-10,
    .col-xl-11 {
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .col-xl-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%
    }
    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 1px;
        padding-left: 16px;
        padding-right: 16px;
        position: relative
    }
    .pull-xl-0 {
        right: auto
    }
    .pull-xl-1 {
        right: 8.3333333333%
    }
    .pull-xl-2 {
        right: 16.6666666667%
    }
    .pull-xl-3 {
        right: 25%
    }
    .pull-xl-4 {
        right: 33.3333333333%
    }
    .pull-xl-5 {
        right: 41.6666666667%
    }
    .pull-xl-6 {
        right: 50%
    }
    .pull-xl-7 {
        right: 58.3333333333%
    }
    .pull-xl-8 {
        right: 66.6666666667%
    }
    .pull-xl-9 {
        right: 75%
    }
    .pull-xl-10 {
        right: 83.3333333333%
    }
    .pull-xl-11 {
        right: 91.6666666667%
    }
    .pull-xl-12 {
        right: 100%
    }
    .push-xl-0 {
        left: auto
    }
    .push-xl-1 {
        left: 8.3333333333%
    }
    .push-xl-2 {
        left: 16.6666666667%
    }
    .push-xl-3 {
        left: 25%
    }
    .push-xl-4 {
        left: 33.3333333333%
    }
    .push-xl-5 {
        left: 41.6666666667%
    }
    .push-xl-6 {
        left: 50%
    }
    .push-xl-7 {
        left: 58.3333333333%
    }
    .push-xl-8 {
        left: 66.6666666667%
    }
    .push-xl-9 {
        left: 75%
    }
    .push-xl-10 {
        left: 83.3333333333%
    }
    .push-xl-11 {
        left: 91.6666666667%
    }
    .push-xl-12 {
        left: 100%
    }
    .offset-xl-0 {
        margin-left: 0
    }
    .offset-xl-1 {
        margin-left: 8.3333333333%
    }
    .offset-xl-2 {
        margin-left: 16.6666666667%
    }
    .offset-xl-3 {
        margin-left: 25%
    }
    .offset-xl-4 {
        margin-left: 33.3333333333%
    }
    .offset-xl-5 {
        margin-left: 41.6666666667%
    }
    .offset-xl-6 {
        margin-left: 50%
    }
    .offset-xl-7 {
        margin-left: 58.3333333333%
    }
    .offset-xl-8 {
        margin-left: 66.6666666667%
    }
    .offset-xl-9 {
        margin-left: 75%
    }
    .offset-xl-10 {
        margin-left: 83.3333333333%
    }
    .offset-xl-11 {
        margin-left: 91.6666666667%
    }
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

@font-face {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/fontawesome-webfont.eot?v=4.7.0);
    src: url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format("woff2"), url(../fonts/fontawesome-webfont.woff?v=4.7.0) format("woff"), url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format("truetype"), url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format("svg")
}

.fa {
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit
}

.fa-lg {
    font-size: 1.3333333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em !important
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    text-align: center;
    width: 1.2857142857em
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.1428571429em;
    padding-left: 0
}

.fa-ul>li {
    position: relative
}

.fa-li {
    left: -2.1428571429em;
    position: absolute;
    text-align: center;
    top: .1428571429em;
    width: 2.1428571429em
}

.fa-li.fa-lg {
    left: -1.8571428571em
}

.fa-border {
    border: .08em solid #eee;
    border-radius: .1em;
    padding: .2em .25em .15em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    animation: fa-spin 2s linear infinite
}

.fa-pulse {
    animation: fa-spin 1s steps(8) infinite
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    transform: scaleX(-1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    transform: scaleY(-1)
}

:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270 {
    filter: none
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2em
}

.fa-stack-1x,
.fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "ï"
}

.fa-music:before {
    content: "ï"
}

.fa-search:before {
    content: "ï"
}

.fa-envelope-o:before {
    content: "ï"
}

.fa-heart:before {
    content: "ï"
}

.fa-star:before {
    content: "ï"
}

.fa-star-o:before {
    content: "ï"
}

.fa-user:before {
    content: "ï"
}

.fa-film:before {
    content: "ï"
}

.fa-th-large:before {
    content: "ï"
}

.fa-th:before {
    content: "ï"
}

.fa-th-list:before {
    content: "ï"
}

.fa-check:before {
    content: "ï"
}

.fa-close:before,
.fa-remove:before,
.fa-times:before {
    content: "ï"
}

.fa-search-plus:before {
    content: "ï"
}

.fa-search-minus:before {
    content: "ï"
}

.fa-power-off:before {
    content: "ï"
}

.fa-signal:before {
    content: "ï"
}

.fa-cog:before,
.fa-gear:before {
    content: "ï"
}

.fa-trash-o:before {
    content: "ï"
}

.fa-home:before {
    content: "ï"
}

.fa-file-o:before {
    content: "ï"
}

.fa-clock-o:before {
    content: "ï"
}

.fa-road:before {
    content: "ï"
}

.fa-download:before {
    content: "ï"
}

.fa-arrow-circle-o-down:before {
    content: "ï"
}

.fa-arrow-circle-o-up:before {
    content: "ï"
}

.fa-inbox:before {
    content: "ï"
}

.fa-play-circle-o:before {
    content: "ï"
}

.fa-repeat:before,
.fa-rotate-right:before {
    content: "ï"
}

.fa-refresh:before {
    content: "ï¡"
}

.fa-list-alt:before {
    content: "ï¢"
}

.fa-lock:before {
    content: "ï£"
}

.fa-flag:before {
    content: "ï¤"
}

.fa-headphones:before {
    content: "ï¥"
}

.fa-volume-off:before {
    content: "ï¦"
}

.fa-volume-down:before {
    content: "ï§"
}

.fa-volume-up:before {
    content: "ï¨"
}

.fa-qrcode:before {
    content: "ï©"
}

.fa-barcode:before {
    content: "ïª"
}

.fa-tag:before {
    content: "ï«"
}

.fa-tags:before {
    content: "ï¬"
}

.fa-book:before {
    content: "ï­"
}

.fa-bookmark:before {
    content: "ï®"
}

.fa-print:before {
    content: "ï¯"
}

.fa-camera:before {
    content: "ï°"
}

.fa-font:before {
    content: "ï±"
}

.fa-bold:before {
    content: "ï²"
}

.fa-italic:before {
    content: "ï³"
}

.fa-text-height:before {
    content: "ï´"
}

.fa-text-width:before {
    content: "ïµ"
}

.fa-align-left:before {
    content: "ï¶"
}

.fa-align-center:before {
    content: "ï·"
}

.fa-align-right:before {
    content: "ï¸"
}

.fa-align-justify:before {
    content: "ï¹"
}

.fa-list:before {
    content: "ïº"
}

.fa-dedent:before,
.fa-outdent:before {
    content: "ï»"
}

.fa-indent:before {
    content: "ï¼"
}

.fa-video-camera:before {
    content: "ï½"
}

.fa-image:before,
.fa-photo:before,
.fa-picture-o:before {
    content: "ï¾"
}

.fa-pencil:before {
    content: "ï"
}

.fa-map-marker:before {
    content: "ï"
}

.fa-adjust:before {
    content: "ï"
}

.fa-tint:before {
    content: "ï"
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "ï"
}

.fa-share-square-o:before {
    content: "ï"
}

.fa-check-square-o:before {
    content: "ï"
}

.fa-arrows:before {
    content: "ï"
}

.fa-step-backward:before {
    content: "ï"
}

.fa-fast-backward:before {
    content: "ï"
}

.fa-backward:before {
    content: "ï"
}

.fa-play:before {
    content: "ï"
}

.fa-pause:before {
    content: "ï"
}

.fa-stop:before {
    content: "ï"
}

.fa-forward:before {
    content: "ï"
}

.fa-fast-forward:before {
    content: "ï"
}

.fa-step-forward:before {
    content: "ï"
}

.fa-eject:before {
    content: "ï"
}

.fa-chevron-left:before {
    content: "ï"
}

.fa-chevron-right:before {
    content: "ï"
}

.fa-plus-circle:before {
    content: "ï"
}

.fa-minus-circle:before {
    content: "ï"
}

.fa-times-circle:before {
    content: "ï"
}

.fa-check-circle:before {
    content: "ï"
}

.fa-question-circle:before {
    content: "ï"
}

.fa-info-circle:before {
    content: "ï"
}

.fa-crosshairs:before {
    content: "ï"
}

.fa-times-circle-o:before {
    content: "ï"
}

.fa-check-circle-o:before {
    content: "ï"
}

.fa-ban:before {
    content: "ï"
}

.fa-arrow-left:before {
    content: "ï "
}

.fa-arrow-right:before {
    content: "ï¡"
}

.fa-arrow-up:before {
    content: "ï¢"
}

.fa-arrow-down:before {
    content: "ï£"
}

.fa-mail-forward:before,
.fa-share:before {
    content: "ï¤"
}

.fa-expand:before {
    content: "ï¥"
}

.fa-compress:before {
    content: "ï¦"
}

.fa-plus:before {
    content: "ï§"
}

.fa-minus:before {
    content: "ï¨"
}

.fa-asterisk:before {
    content: "ï©"
}

.fa-exclamation-circle:before {
    content: "ïª"
}

.fa-gift:before {
    content: "ï«"
}

.fa-leaf:before {
    content: "ï¬"
}

.fa-fire:before {
    content: "ï­"
}

.fa-eye:before {
    content: "ï®"
}

.fa-eye-slash:before {
    content: "ï°"
}

.fa-exclamation-triangle:before,
.fa-warning:before {
    content: "ï±"
}

.fa-plane:before {
    content: "ï²"
}

.fa-calendar:before {
    content: "ï³"
}

.fa-random:before {
    content: "ï´"
}

.fa-comment:before {
    content: "ïµ"
}

.fa-magnet:before {
    content: "ï¶"
}

.fa-chevron-up:before {
    content: "ï·"
}

.fa-chevron-down:before {
    content: "ï¸"
}

.fa-retweet:before {
    content: "ï¹"
}

.fa-shopping-cart:before {
    content: "ïº"
}

.fa-folder:before {
    content: "ï»"
}

.fa-folder-open:before {
    content: "ï¼"
}

.fa-arrows-v:before {
    content: "ï½"
}

.fa-arrows-h:before {
    content: "ï¾"
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "ï"
}

.fa-twitter-square:before {
    content: "ï"
}

.fa-facebook-square:before {
    content: "ï"
}

.fa-camera-retro:before {
    content: "ï"
}

.fa-key:before {
    content: "ï"
}

.fa-cogs:before,
.fa-gears:before {
    content: "ï"
}

.fa-comments:before {
    content: "ï"
}

.fa-thumbs-o-up:before {
    content: "ï"
}

.fa-thumbs-o-down:before {
    content: "ï"
}

.fa-star-half:before {
    content: "ï"
}

.fa-heart-o:before {
    content: "ï"
}

.fa-sign-out:before {
    content: "ï"
}

.fa-linkedin-square:before {
    content: "ï"
}

.fa-thumb-tack:before {
    content: "ï"
}

.fa-external-link:before {
    content: "ï"
}

.fa-sign-in:before {
    content: "ï"
}

.fa-trophy:before {
    content: "ï"
}

.fa-github-square:before {
    content: "ï"
}

.fa-upload:before {
    content: "ï"
}

.fa-lemon-o:before {
    content: "ï"
}

.fa-phone:before {
    content: "ï"
}

.fa-square-o:before {
    content: "ï"
}

.fa-bookmark-o:before {
    content: "ï"
}

.fa-phone-square:before {
    content: "ï"
}

.fa-twitter:before {
    content: "ï"
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "ï"
}

.fa-github:before {
    content: "ï"
}

.fa-unlock:before {
    content: "ï"
}

.fa-credit-card:before {
    content: "ï"
}

.fa-feed:before,
.fa-rss:before {
    content: "ï"
}

.fa-hdd-o:before {
    content: "ï "
}

.fa-bullhorn:before {
    content: "ï¡"
}

.fa-bell:before {
    content: "ï³"
}

.fa-certificate:before {
    content: "ï£"
}

.fa-hand-o-right:before {
    content: "ï¤"
}

.fa-hand-o-left:before {
    content: "ï¥"
}

.fa-hand-o-up:before {
    content: "ï¦"
}

.fa-hand-o-down:before {
    content: "ï§"
}

.fa-arrow-circle-left:before {
    content: "ï¨"
}

.fa-arrow-circle-right:before {
    content: "ï©"
}

.fa-arrow-circle-up:before {
    content: "ïª"
}

.fa-arrow-circle-down:before {
    content: "ï«"
}

.fa-globe:before {
    content: "ï¬"
}

.fa-wrench:before {
    content: "ï­"
}

.fa-tasks:before {
    content: "ï®"
}

.fa-filter:before {
    content: "ï°"
}

.fa-briefcase:before {
    content: "ï±"
}

.fa-arrows-alt:before {
    content: "ï²"
}

.fa-group:before,
.fa-users:before {
    content: "ï"
}

.fa-chain:before,
.fa-link:before {
    content: "ï"
}

.fa-cloud:before {
    content: "ï"
}

.fa-flask:before {
    content: "ï"
}

.fa-cut:before,
.fa-scissors:before {
    content: "ï"
}

.fa-copy:before,
.fa-files-o:before {
    content: "ï"
}

.fa-paperclip:before {
    content: "ï"
}

.fa-floppy-o:before,
.fa-save:before {
    content: "ï"
}

.fa-square:before {
    content: "ï"
}

.fa-bars:before,
.fa-navicon:before,
.fa-reorder:before {
    content: "ï"
}

.fa-list-ul:before {
    content: "ï"
}

.fa-list-ol:before {
    content: "ï"
}

.fa-strikethrough:before {
    content: "ï"
}

.fa-underline:before {
    content: "ï"
}

.fa-table:before {
    content: "ï"
}

.fa-magic:before {
    content: "ï"
}

.fa-truck:before {
    content: "ï"
}

.fa-pinterest:before {
    content: "ï"
}

.fa-pinterest-square:before {
    content: "ï"
}

.fa-google-plus-square:before {
    content: "ï"
}

.fa-google-plus:before {
    content: "ï"
}

.fa-money:before {
    content: "ï"
}

.fa-caret-down:before {
    content: "ï"
}

.fa-caret-up:before {
    content: "ï"
}

.fa-caret-left:before {
    content: "ï"
}

.fa-caret-right:before {
    content: "ï"
}

.fa-columns:before {
    content: "ï"
}

.fa-sort:before,
.fa-unsorted:before {
    content: "ï"
}

.fa-sort-desc:before,
.fa-sort-down:before {
    content: "ï"
}

.fa-sort-asc:before,
.fa-sort-up:before {
    content: "ï"
}

.fa-envelope:before {
    content: "ï "
}

.fa-linkedin:before {
    content: "ï¡"
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "ï¢"
}

.fa-gavel:before,
.fa-legal:before {
    content: "ï£"
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "ï¤"
}

.fa-comment-o:before {
    content: "ï¥"
}

.fa-comments-o:before {
    content: "ï¦"
}

.fa-bolt:before,
.fa-flash:before {
    content: "ï§"
}

.fa-sitemap:before {
    content: "ï¨"
}

.fa-umbrella:before {
    content: "ï©"
}

.fa-clipboard:before,
.fa-paste:before {
    content: "ïª"
}

.fa-lightbulb-o:before {
    content: "ï«"
}

.fa-exchange:before {
    content: "ï¬"
}

.fa-cloud-download:before {
    content: "ï­"
}

.fa-cloud-upload:before {
    content: "ï®"
}

.fa-user-md:before {
    content: "ï°"
}

.fa-stethoscope:before {
    content: "ï±"
}

.fa-suitcase:before {
    content: "ï²"
}

.fa-bell-o:before {
    content: "ï¢"
}

.fa-coffee:before {
    content: "ï´"
}

.fa-cutlery:before {
    content: "ïµ"
}

.fa-file-text-o:before {
    content: "ï¶"
}

.fa-building-o:before {
    content: "ï·"
}

.fa-hospital-o:before {
    content: "ï¸"
}

.fa-ambulance:before {
    content: "ï¹"
}

.fa-medkit:before {
    content: "ïº"
}

.fa-fighter-jet:before {
    content: "ï»"
}

.fa-beer:before {
    content: "ï¼"
}

.fa-h-square:before {
    content: "ï½"
}

.fa-plus-square:before {
    content: "ï¾"
}

.fa-angle-double-left:before {
    content: "ï"
}

.fa-angle-double-right:before {
    content: "ï"
}

.fa-angle-double-up:before {
    content: "ï"
}

.fa-angle-double-down:before {
    content: "ï"
}

.fa-angle-left:before {
    content: "ï"
}

.fa-angle-right:before {
    content: "ï"
}

.fa-angle-up:before {
    content: "ï"
}

.fa-angle-down:before {
    content: "ï"
}

.fa-desktop:before {
    content: "ï"
}

.fa-laptop:before {
    content: "ï"
}

.fa-tablet:before {
    content: "ï"
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "ï"
}

.fa-circle-o:before {
    content: "ï"
}

.fa-quote-left:before {
    content: "ï"
}

.fa-quote-right:before {
    content: "ï"
}

.fa-spinner:before {
    content: "ï"
}

.fa-circle:before {
    content: "ï"
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "ï"
}

.fa-github-alt:before {
    content: "ï"
}

.fa-folder-o:before {
    content: "ï"
}

.fa-folder-open-o:before {
    content: "ï"
}

.fa-smile-o:before {
    content: "ï"
}

.fa-frown-o:before {
    content: "ï"
}

.fa-meh-o:before {
    content: "ï"
}

.fa-gamepad:before {
    content: "ï"
}

.fa-keyboard-o:before {
    content: "ï"
}

.fa-flag-o:before {
    content: "ï"
}

.fa-flag-checkered:before {
    content: "ï"
}

.fa-terminal:before {
    content: "ï "
}

.fa-code:before {
    content: "ï¡"
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "ï¢"
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "ï£"
}

.fa-location-arrow:before {
    content: "ï¤"
}

.fa-crop:before {
    content: "ï¥"
}

.fa-code-fork:before {
    content: "ï¦"
}

.fa-chain-broken:before,
.fa-unlink:before {
    content: "ï§"
}

.fa-question:before {
    content: "ï¨"
}

.fa-info:before {
    content: "ï©"
}

.fa-exclamation:before {
    content: "ïª"
}

.fa-superscript:before {
    content: "ï«"
}

.fa-subscript:before {
    content: "ï¬"
}

.fa-eraser:before {
    content: "ï­"
}

.fa-puzzle-piece:before {
    content: "ï®"
}

.fa-microphone:before {
    content: "ï°"
}

.fa-microphone-slash:before {
    content: "ï±"
}

.fa-shield:before {
    content: "ï²"
}

.fa-calendar-o:before {
    content: "ï³"
}

.fa-fire-extinguisher:before {
    content: "ï´"
}

.fa-rocket:before {
    content: "ïµ"
}

.fa-maxcdn:before {
    content: "ï¶"
}

.fa-chevron-circle-left:before {
    content: "ï·"
}

.fa-chevron-circle-right:before {
    content: "ï¸"
}

.fa-chevron-circle-up:before {
    content: "ï¹"
}

.fa-chevron-circle-down:before {
    content: "ïº"
}

.fa-html5:before {
    content: "ï»"
}

.fa-css3:before {
    content: "ï¼"
}

.fa-anchor:before {
    content: "ï½"
}

.fa-unlock-alt:before {
    content: "ï¾"
}

.fa-bullseye:before {
    content: "ï"
}

.fa-ellipsis-h:before {
    content: "ï"
}

.fa-ellipsis-v:before {
    content: "ï"
}

.fa-rss-square:before {
    content: "ï"
}

.fa-play-circle:before {
    content: "ï"
}

.fa-ticket:before {
    content: "ï"
}

.fa-minus-square:before {
    content: "ï"
}

.fa-minus-square-o:before {
    content: "ï"
}

.fa-level-up:before {
    content: "ï"
}

.fa-level-down:before {
    content: "ï"
}

.fa-check-square:before {
    content: "ï"
}

.fa-pencil-square:before {
    content: "ï"
}

.fa-external-link-square:before {
    content: "ï"
}

.fa-share-square:before {
    content: "ï"
}

.fa-compass:before {
    content: "ï"
}

.fa-caret-square-o-down:before,
.fa-toggle-down:before {
    content: "ï"
}

.fa-caret-square-o-up:before,
.fa-toggle-up:before {
    content: "ï"
}

.fa-caret-square-o-right:before,
.fa-toggle-right:before {
    content: "ï"
}

.fa-eur:before,
.fa-euro:before {
    content: "ï"
}

.fa-gbp:before {
    content: "ï"
}

.fa-dollar:before,
.fa-usd:before {
    content: "ï"
}

.fa-inr:before,
.fa-rupee:before {
    content: "ï"
}

.fa-cny:before,
.fa-jpy:before,
.fa-rmb:before,
.fa-yen:before {
    content: "ï"
}

.fa-rouble:before,
.fa-rub:before,
.fa-ruble:before {
    content: "ï"
}

.fa-krw:before,
.fa-won:before {
    content: "ï"
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "ï"
}

.fa-file:before {
    content: "ï"
}

.fa-file-text:before {
    content: "ï"
}

.fa-sort-alpha-asc:before {
    content: "ï"
}

.fa-sort-alpha-desc:before {
    content: "ï"
}

.fa-sort-amount-asc:before {
    content: "ï "
}

.fa-sort-amount-desc:before {
    content: "ï¡"
}

.fa-sort-numeric-asc:before {
    content: "ï¢"
}

.fa-sort-numeric-desc:before {
    content: "ï£"
}

.fa-thumbs-up:before {
    content: "ï¤"
}

.fa-thumbs-down:before {
    content: "ï¥"
}

.fa-youtube-square:before {
    content: "ï¦"
}

.fa-youtube:before {
    content: "ï§"
}

.fa-xing:before {
    content: "ï¨"
}

.fa-xing-square:before {
    content: "ï©"
}

.fa-youtube-play:before {
    content: "ïª"
}

.fa-dropbox:before {
    content: "ï«"
}

.fa-stack-overflow:before {
    content: "ï¬"
}

.fa-instagram:before {
    content: "ï­"
}

.fa-flickr:before {
    content: "ï®"
}

.fa-adn:before {
    content: "ï°"
}

.fa-bitbucket:before {
    content: "ï±"
}

.fa-bitbucket-square:before {
    content: "ï²"
}

.fa-tumblr:before {
    content: "ï³"
}

.fa-tumblr-square:before {
    content: "ï´"
}

.fa-long-arrow-down:before {
    content: "ïµ"
}

.fa-long-arrow-up:before {
    content: "ï¶"
}

.fa-long-arrow-left:before {
    content: "ï·"
}

.fa-long-arrow-right:before {
    content: "ï¸"
}

.fa-apple:before {
    content: "ï¹"
}

.fa-windows:before {
    content: "ïº"
}

.fa-android:before {
    content: "ï»"
}

.fa-linux:before {
    content: "ï¼"
}

.fa-dribbble:before {
    content: "ï½"
}

.fa-skype:before {
    content: "ï¾"
}

.fa-foursquare:before {
    content: "ï"
}

.fa-trello:before {
    content: "ï"
}

.fa-female:before {
    content: "ï"
}

.fa-male:before {
    content: "ï"
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "ï"
}

.fa-sun-o:before {
    content: "ï"
}

.fa-moon-o:before {
    content: "ï"
}

.fa-archive:before {
    content: "ï"
}

.fa-bug:before {
    content: "ï"
}

.fa-vk:before {
    content: "ï"
}

.fa-weibo:before {
    content: "ï"
}

.fa-renren:before {
    content: "ï"
}

.fa-pagelines:before {
    content: "ï"
}

.fa-stack-exchange:before {
    content: "ï"
}

.fa-arrow-circle-o-right:before {
    content: "ï"
}

.fa-arrow-circle-o-left:before {
    content: "ï"
}

.fa-caret-square-o-left:before,
.fa-toggle-left:before {
    content: "ï"
}

.fa-dot-circle-o:before {
    content: "ï"
}

.fa-wheelchair:before {
    content: "ï"
}

.fa-vimeo-square:before {
    content: "ï"
}

.fa-try:before,
.fa-turkish-lira:before {
    content: "ï"
}

.fa-plus-square-o:before {
    content: "ï"
}

.fa-space-shuttle:before {
    content: "ï"
}

.fa-slack:before {
    content: "ï"
}

.fa-envelope-square:before {
    content: "ï"
}

.fa-wordpress:before {
    content: "ï"
}

.fa-openid:before {
    content: "ï"
}

.fa-bank:before,
.fa-institution:before,
.fa-university:before {
    content: "ï"
}

.fa-graduation-cap:before,
.fa-mortar-board:before {
    content: "ï"
}

.fa-yahoo:before {
    content: "ï"
}

.fa-google:before {
    content: "ï "
}

.fa-reddit:before {
    content: "ï¡"
}

.fa-reddit-square:before {
    content: "ï¢"
}

.fa-stumbleupon-circle:before {
    content: "ï£"
}

.fa-stumbleupon:before {
    content: "ï¤"
}

.fa-delicious:before {
    content: "ï¥"
}

.fa-digg:before {
    content: "ï¦"
}

.fa-pied-piper-pp:before {
    content: "ï§"
}

.fa-pied-piper-alt:before {
    content: "ï¨"
}

.fa-drupal:before {
    content: "ï©"
}

.fa-joomla:before {
    content: "ïª"
}

.fa-language:before {
    content: "ï«"
}

.fa-fax:before {
    content: "ï¬"
}

.fa-building:before {
    content: "ï­"
}

.fa-child:before {
    content: "ï®"
}

.fa-paw:before {
    content: "ï°"
}

.fa-spoon:before {
    content: "ï±"
}

.fa-cube:before {
    content: "ï²"
}

.fa-cubes:before {
    content: "ï³"
}

.fa-behance:before {
    content: "ï´"
}

.fa-behance-square:before {
    content: "ïµ"
}

.fa-steam:before {
    content: "ï¶"
}

.fa-steam-square:before {
    content: "ï·"
}

.fa-recycle:before {
    content: "ï¸"
}

.fa-automobile:before,
.fa-car:before {
    content: "ï¹"
}

.fa-cab:before,
.fa-taxi:before {
    content: "ïº"
}

.fa-tree:before {
    content: "ï»"
}

.fa-spotify:before {
    content: "ï¼"
}

.fa-deviantart:before {
    content: "ï½"
}

.fa-soundcloud:before {
    content: "ï¾"
}

.fa-database:before {
    content: "ï"
}

.fa-file-pdf-o:before {
    content: "ï"
}

.fa-file-word-o:before {
    content: "ï"
}

.fa-file-excel-o:before {
    content: "ï"
}

.fa-file-powerpoint-o:before {
    content: "ï"
}

.fa-file-image-o:before,
.fa-file-photo-o:before,
.fa-file-picture-o:before {
    content: "ï"
}

.fa-file-archive-o:before,
.fa-file-zip-o:before {
    content: "ï"
}

.fa-file-audio-o:before,
.fa-file-sound-o:before {
    content: "ï"
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "ï"
}

.fa-file-code-o:before {
    content: "ï"
}

.fa-vine:before {
    content: "ï"
}

.fa-codepen:before {
    content: "ï"
}

.fa-jsfiddle:before {
    content: "ï"
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-ring:before,
.fa-life-saver:before,
.fa-support:before {
    content: "ï"
}

.fa-circle-o-notch:before {
    content: "ï"
}

.fa-ra:before,
.fa-rebel:before,
.fa-resistance:before {
    content: "ï"
}

.fa-empire:before,
.fa-ge:before {
    content: "ï"
}

.fa-git-square:before {
    content: "ï"
}

.fa-git:before {
    content: "ï"
}

.fa-hacker-news:before,
.fa-y-combinator-square:before,
.fa-yc-square:before {
    content: "ï"
}

.fa-tencent-weibo:before {
    content: "ï"
}

.fa-qq:before {
    content: "ï"
}

.fa-wechat:before,
.fa-weixin:before {
    content: "ï"
}

.fa-paper-plane:before,
.fa-send:before {
    content: "ï"
}

.fa-paper-plane-o:before,
.fa-send-o:before {
    content: "ï"
}

.fa-history:before {
    content: "ï"
}

.fa-circle-thin:before {
    content: "ï"
}

.fa-header:before {
    content: "ï"
}

.fa-paragraph:before {
    content: "ï"
}

.fa-sliders:before {
    content: "ï"
}

.fa-share-alt:before {
    content: "ï "
}

.fa-share-alt-square:before {
    content: "ï¡"
}

.fa-bomb:before {
    content: "ï¢"
}

.fa-futbol-o:before,
.fa-soccer-ball-o:before {
    content: "ï£"
}

.fa-tty:before {
    content: "ï¤"
}

.fa-binoculars:before {
    content: "ï¥"
}

.fa-plug:before {
    content: "ï¦"
}

.fa-slideshare:before {
    content: "ï§"
}

.fa-twitch:before {
    content: "ï¨"
}

.fa-yelp:before {
    content: "ï©"
}

.fa-newspaper-o:before {
    content: "ïª"
}

.fa-wifi:before {
    content: "ï«"
}

.fa-calculator:before {
    content: "ï¬"
}

.fa-paypal:before {
    content: "ï­"
}

.fa-google-wallet:before {
    content: "ï®"
}

.fa-cc-visa:before {
    content: "ï°"
}

.fa-cc-mastercard:before {
    content: "ï±"
}

.fa-cc-discover:before {
    content: "ï²"
}

.fa-cc-amex:before {
    content: "ï³"
}

.fa-cc-paypal:before {
    content: "ï´"
}

.fa-cc-stripe:before {
    content: "ïµ"
}

.fa-bell-slash:before {
    content: "ï¶"
}

.fa-bell-slash-o:before {
    content: "ï·"
}

.fa-trash:before {
    content: "ï¸"
}

.fa-copyright:before {
    content: "ï¹"
}

.fa-at:before {
    content: "ïº"
}

.fa-eyedropper:before {
    content: "ï»"
}

.fa-paint-brush:before {
    content: "ï¼"
}

.fa-birthday-cake:before {
    content: "ï½"
}

.fa-area-chart:before {
    content: "ï¾"
}

.fa-pie-chart:before {
    content: "ï"
}

.fa-line-chart:before {
    content: "ï"
}

.fa-lastfm:before {
    content: "ï"
}

.fa-lastfm-square:before {
    content: "ï"
}

.fa-toggle-off:before {
    content: "ï"
}

.fa-toggle-on:before {
    content: "ï"
}

.fa-bicycle:before {
    content: "ï"
}

.fa-bus:before {
    content: "ï"
}

.fa-ioxhost:before {
    content: "ï"
}

.fa-angellist:before {
    content: "ï"
}

.fa-cc:before {
    content: "ï"
}

.fa-ils:before,
.fa-shekel:before,
.fa-sheqel:before {
    content: "ï"
}

.fa-meanpath:before {
    content: "ï"
}

.fa-buysellads:before {
    content: "ï"
}

.fa-connectdevelop:before {
    content: "ï"
}

.fa-dashcube:before {
    content: "ï"
}

.fa-forumbee:before {
    content: "ï"
}

.fa-leanpub:before {
    content: "ï"
}

.fa-sellsy:before {
    content: "ï"
}

.fa-shirtsinbulk:before {
    content: "ï"
}

.fa-simplybuilt:before {
    content: "ï"
}

.fa-skyatlas:before {
    content: "ï"
}

.fa-cart-plus:before {
    content: "ï"
}

.fa-cart-arrow-down:before {
    content: "ï"
}

.fa-diamond:before {
    content: "ï"
}

.fa-ship:before {
    content: "ï"
}

.fa-user-secret:before {
    content: "ï"
}

.fa-motorcycle:before {
    content: "ï"
}

.fa-street-view:before {
    content: "ï"
}

.fa-heartbeat:before {
    content: "ï"
}

.fa-venus:before {
    content: "ï¡"
}

.fa-mars:before {
    content: "ï¢"
}

.fa-mercury:before {
    content: "ï£"
}

.fa-intersex:before,
.fa-transgender:before {
    content: "ï¤"
}

.fa-transgender-alt:before {
    content: "ï¥"
}

.fa-venus-double:before {
    content: "ï¦"
}

.fa-mars-double:before {
    content: "ï§"
}

.fa-venus-mars:before {
    content: "ï¨"
}

.fa-mars-stroke:before {
    content: "ï©"
}

.fa-mars-stroke-v:before {
    content: "ïª"
}

.fa-mars-stroke-h:before {
    content: "ï«"
}

.fa-neuter:before {
    content: "ï¬"
}

.fa-genderless:before {
    content: "ï­"
}

.fa-facebook-official:before {
    content: "ï°"
}

.fa-pinterest-p:before {
    content: "ï±"
}

.fa-whatsapp:before {
    content: "ï²"
}

.fa-server:before {
    content: "ï³"
}

.fa-user-plus:before {
    content: "ï´"
}

.fa-user-times:before {
    content: "ïµ"
}

.fa-bed:before,
.fa-hotel:before {
    content: "ï¶"
}

.fa-viacoin:before {
    content: "ï·"
}

.fa-train:before {
    content: "ï¸"
}

.fa-subway:before {
    content: "ï¹"
}

.fa-medium:before {
    content: "ïº"
}

.fa-y-combinator:before,
.fa-yc:before {
    content: "ï»"
}

.fa-optin-monster:before {
    content: "ï¼"
}

.fa-opencart:before {
    content: "ï½"
}

.fa-expeditedssl:before {
    content: "ï¾"
}

.fa-battery-4:before,
.fa-battery-full:before,
.fa-battery:before {
    content: "ï"
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "ï"
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "ï"
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "ï"
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "ï"
}

.fa-mouse-pointer:before {
    content: "ï"
}

.fa-i-cursor:before {
    content: "ï"
}

.fa-object-group:before {
    content: "ï"
}

.fa-object-ungroup:before {
    content: "ï"
}

.fa-sticky-note:before {
    content: "ï"
}

.fa-sticky-note-o:before {
    content: "ï"
}

.fa-cc-jcb:before {
    content: "ï"
}

.fa-cc-diners-club:before {
    content: "ï"
}

.fa-clone:before {
    content: "ï"
}

.fa-balance-scale:before {
    content: "ï"
}

.fa-hourglass-o:before {
    content: "ï"
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "ï"
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "ï"
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "ï"
}

.fa-hourglass:before {
    content: "ï"
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "ï"
}

.fa-hand-paper-o:before,
.fa-hand-stop-o:before {
    content: "ï"
}

.fa-hand-scissors-o:before {
    content: "ï"
}

.fa-hand-lizard-o:before {
    content: "ï"
}

.fa-hand-spock-o:before {
    content: "ï"
}

.fa-hand-pointer-o:before {
    content: "ï"
}

.fa-hand-peace-o:before {
    content: "ï"
}

.fa-trademark:before {
    content: "ï"
}

.fa-registered:before {
    content: "ï"
}

.fa-creative-commons:before {
    content: "ï"
}

.fa-gg:before {
    content: "ï "
}

.fa-gg-circle:before {
    content: "ï¡"
}

.fa-tripadvisor:before {
    content: "ï¢"
}

.fa-odnoklassniki:before {
    content: "ï£"
}

.fa-odnoklassniki-square:before {
    content: "ï¤"
}

.fa-get-pocket:before {
    content: "ï¥"
}

.fa-wikipedia-w:before {
    content: "ï¦"
}

.fa-safari:before {
    content: "ï§"
}

.fa-chrome:before {
    content: "ï¨"
}

.fa-firefox:before {
    content: "ï©"
}

.fa-opera:before {
    content: "ïª"
}

.fa-internet-explorer:before {
    content: "ï«"
}

.fa-television:before,
.fa-tv:before {
    content: "ï¬"
}

.fa-contao:before {
    content: "ï­"
}

.fa-500px:before {
    content: "ï®"
}

.fa-amazon:before {
    content: "ï°"
}

.fa-calendar-plus-o:before {
    content: "ï±"
}

.fa-calendar-minus-o:before {
    content: "ï²"
}

.fa-calendar-times-o:before {
    content: "ï³"
}

.fa-calendar-check-o:before {
    content: "ï´"
}

.fa-industry:before {
    content: "ïµ"
}

.fa-map-pin:before {
    content: "ï¶"
}

.fa-map-signs:before {
    content: "ï·"
}

.fa-map-o:before {
    content: "ï¸"
}

.fa-map:before {
    content: "ï¹"
}

.fa-commenting:before {
    content: "ïº"
}

.fa-commenting-o:before {
    content: "ï»"
}

.fa-houzz:before {
    content: "ï¼"
}

.fa-vimeo:before {
    content: "ï½"
}

.fa-black-tie:before {
    content: "ï¾"
}

.fa-fonticons:before {
    content: "ï"
}

.fa-reddit-alien:before {
    content: "ï"
}

.fa-edge:before {
    content: "ï"
}

.fa-credit-card-alt:before {
    content: "ï"
}

.fa-codiepie:before {
    content: "ï"
}

.fa-modx:before {
    content: "ï"
}

.fa-fort-awesome:before {
    content: "ï"
}

.fa-usb:before {
    content: "ï"
}

.fa-product-hunt:before {
    content: "ï"
}

.fa-mixcloud:before {
    content: "ï"
}

.fa-scribd:before {
    content: "ï"
}

.fa-pause-circle:before {
    content: "ï"
}

.fa-pause-circle-o:before {
    content: "ï"
}

.fa-stop-circle:before {
    content: "ï"
}

.fa-stop-circle-o:before {
    content: "ï"
}

.fa-shopping-bag:before {
    content: "ï"
}

.fa-shopping-basket:before {
    content: "ï"
}

.fa-hashtag:before {
    content: "ï"
}

.fa-bluetooth:before {
    content: "ï"
}

.fa-bluetooth-b:before {
    content: "ï"
}

.fa-percent:before {
    content: "ï"
}

.fa-gitlab:before {
    content: "ï"
}

.fa-wpbeginner:before {
    content: "ï"
}

.fa-wpforms:before {
    content: "ï"
}

.fa-envira:before {
    content: "ï"
}

.fa-universal-access:before {
    content: "ï"
}

.fa-wheelchair-alt:before {
    content: "ï"
}

.fa-question-circle-o:before {
    content: "ï"
}

.fa-blind:before {
    content: "ï"
}

.fa-audio-description:before {
    content: "ï"
}

.fa-volume-control-phone:before {
    content: "ï "
}

.fa-braille:before {
    content: "ï¡"
}

.fa-assistive-listening-systems:before {
    content: "ï¢"
}

.fa-american-sign-language-interpreting:before,
.fa-asl-interpreting:before {
    content: "ï£"
}

.fa-deaf:before,
.fa-deafness:before,
.fa-hard-of-hearing:before {
    content: "ï¤"
}

.fa-glide:before {
    content: "ï¥"
}

.fa-glide-g:before {
    content: "ï¦"
}

.fa-sign-language:before,
.fa-signing:before {
    content: "ï§"
}

.fa-low-vision:before {
    content: "ï¨"
}

.fa-viadeo:before {
    content: "ï©"
}

.fa-viadeo-square:before {
    content: "ïª"
}

.fa-snapchat:before {
    content: "ï«"
}

.fa-snapchat-ghost:before {
    content: "ï¬"
}

.fa-snapchat-square:before {
    content: "ï­"
}

.fa-pied-piper:before {
    content: "ï®"
}

.fa-first-order:before {
    content: "ï°"
}

.fa-yoast:before {
    content: "ï±"
}

.fa-themeisle:before {
    content: "ï²"
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "ï³"
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "ï´"
}

.fa-handshake-o:before {
    content: "ïµ"
}

.fa-envelope-open:before {
    content: "ï¶"
}

.fa-envelope-open-o:before {
    content: "ï·"
}

.fa-linode:before {
    content: "ï¸"
}

.fa-address-book:before {
    content: "ï¹"
}

.fa-address-book-o:before {
    content: "ïº"
}

.fa-address-card:before,
.fa-vcard:before {
    content: "ï»"
}

.fa-address-card-o:before,
.fa-vcard-o:before {
    content: "ï¼"
}

.fa-user-circle:before {
    content: "ï½"
}

.fa-user-circle-o:before {
    content: "ï¾"
}

.fa-user-o:before {
    content: "ï"
}

.fa-id-badge:before {
    content: "ï"
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: "ï"
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "ï"
}

.fa-quora:before {
    content: "ï"
}

.fa-free-code-camp:before {
    content: "ï"
}

.fa-telegram:before {
    content: "ï"
}

.fa-thermometer-4:before,
.fa-thermometer-full:before,
.fa-thermometer:before {
    content: "ï"
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "ï"
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "ï"
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "ï"
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "ï"
}

.fa-shower:before {
    content: "ï"
}

.fa-bath:before,
.fa-bathtub:before,
.fa-s15:before {
    content: "ï"
}

.fa-podcast:before {
    content: "ï"
}

.fa-window-maximize:before {
    content: "ï"
}

.fa-window-minimize:before {
    content: "ï"
}

.fa-window-restore:before {
    content: "ï"
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: "ï"
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "ï"
}

.fa-bandcamp:before {
    content: "ï"
}

.fa-grav:before {
    content: "ï"
}

.fa-etsy:before {
    content: "ï"
}

.fa-imdb:before {
    content: "ï"
}

.fa-ravelry:before {
    content: "ï"
}

.fa-eercast:before {
    content: "ï"
}

.fa-microchip:before {
    content: "ï"
}

.fa-snowflake-o:before {
    content: "ï"
}

.fa-superpowers:before {
    content: "ï"
}

.fa-wpexplorer:before {
    content: "ï"
}

.fa-meetup:before {
    content: "ï "
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto
}

@font-face {
    font-family: grafana-icons;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/grafana-icons.eot?okx5td);
    src: url(../fonts/grafana-icons.eot?okx5td#iefix) format("embedded-opentype"), url(../fonts/grafana-icons.ttf?okx5td) format("truetype"), url(../fonts/grafana-icons.woff?okx5td) format("woff"), url(../fonts/grafana-icons.svg?okx5td#grafana-icons) format("svg")
}

.icon-gf {
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-family: grafana-icons !important;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
    vertical-align: middle
}

.icon-gf-fw {
    text-align: center;
    width: 1.2857142857em
}

.inline-icon-gf {
    vertical-align: middle
}

.icon-gf-raintank_wordmark:before {
    content: "î"
}

.micon-gf-raintank_icn:before {
    content: "î"
}

.icon-gf-raintank_r-icn:before {
    content: "î¤"
}

.icon-gf-check-alt:before {
    content: "î"
}

.icon-gf-check:before {
    content: "î"
}

.icon-gf-collector:before {
    content: "î"
}

.icon-gf-dashboard:before {
    content: "î"
}

.icon-gf-panel:before {
    content: "î¤"
}

.icon-gf-endpoint-tiny:before {
    content: "î"
}

.icon-gf-critical:before {
    content: "î"
}

.icon-gf-online:before {
    content: "î"
}

.icon-gf-event-error:before {
    content: "î£"
}

.icon-gf-event:before {
    content: "î¤"
}

.icon-gf-sadface:before {
    content: "î¤"
}

.icon-gf-private-collector:before {
    content: "î"
}

.icon-gf-alert:before {
    content: "î"
}

.icon-gf-alert-disabled:before {
    content: "î¡"
}

.icon-gf-refresh:before {
    content: "î"
}

.icon-gf-save:before {
    content: "î"
}

.icon-gf-share:before {
    content: "î"
}

.icon-gf-star:before {
    content: "î"
}

.icon-gf-search:before {
    content: "î"
}

.icon-gf-settings:before {
    content: "î"
}

.icon-gf-add:before {
    content: "î"
}

.icon-gf-remove:before {
    content: "î"
}

.icon-gf-video:before {
    content: "î"
}

.icon-gf-bulk_action:before {
    content: "î"
}

.icon-gf-grabber:before {
    content: "î¤"
}

.icon-gf-users:before {
    content: "î¢"
}

.icon-gf-globe:before {
    content: "î"
}

.icon-gf-snapshot:before {
    content: "î"
}

.icon-gf-play-grafana-icon:before {
    content: "î©"
}

.icon-gf-grafana-icon:before {
    content: "î¥"
}

.icon-gf-email:before {
    content: "î¨"
}

.icon-gf-stopwatch:before {
    content: "î¦"
}

.icon-gf-skull:before {
    content: "î¤"
}

.icon-gf-probe:before {
    content: "î¤"
}

.icon-gf-apps:before {
    content: "î¤"
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: local("Roboto"), local("Roboto-Regular"), url(../fonts/roboto/ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2) format("woff2");
    unicode-range: u+0460-052f, u+20b4, u+2de0-2dff, u+a640-a69f
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: local("Roboto"), local("Roboto-Regular"), url(../fonts/roboto/mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2) format("woff2");
    unicode-range: u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: local("Roboto"), local("Roboto-Regular"), url(../fonts/roboto/-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2) format("woff2");
    unicode-range: u+1f??
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/roboto/KFOmCnqEu92Fr1Mu4WxKKTU1Kvnz.woff2) format("woff2");
    unicode-range: u+0370-03ff
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: local("Roboto"), local("Roboto-Regular"), url(../fonts/roboto/NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2) format("woff2");
    unicode-range: u+0102-0103, u+1ea0-1ef9, u+20ab
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: local("Roboto"), local("Roboto-Regular"), url(../fonts/roboto/Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2) format("woff2");
    unicode-range: u+0100-024f, u+1-1eff, u+20a0-20ab, u+20ad-20cf, u+2c60-2c7f, u+a720-a7ff
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: local("Roboto"), local("Roboto-Regular"), url(../fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2) format("woff2");
    unicode-range: u+00??, u+0131, u+0152-0153, u+02c6, u+02da, u+02dc, u+2000-206f, u+2074, u+20ac, u+2212, u+2215
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    src: local("Roboto Medium"), local("Roboto-Medium"), url(../fonts/roboto/ZLqKeelYbATG60EpZBSDyxJtnKITppOI_IvcXXDNrsc.woff2) format("woff2");
    unicode-range: u+0460-052f, u+20b4, u+2de0-2dff, u+a640-a69f
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    src: local("Roboto Medium"), local("Roboto-Medium"), url(../fonts/roboto/oHi30kwQWvpCWqAhzHcCSBJtnKITppOI_IvcXXDNrsc.woff2) format("woff2");
    unicode-range: u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    src: local("Roboto Medium"), local("Roboto-Medium"), url(../fonts/roboto/rGvHdJnr2l75qb0YND9NyBJtnKITppOI_IvcXXDNrsc.woff2) format("woff2");
    unicode-range: u+1f??
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    src: local("Roboto Medium"), local("Roboto-Medium"), url(../fonts/roboto/mx9Uck6uB63VIKFYnEMXrRJtnKITppOI_IvcXXDNrsc.woff2) format("woff2");
    unicode-range: u+0370-03ff
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    src: local("Roboto Medium"), local("Roboto-Medium"), url(../fonts/roboto/mbmhprMH69Zi6eEPBYVFhRJtnKITppOI_IvcXXDNrsc.woff2) format("woff2");
    unicode-range: u+0102-0103, u+1ea0-1ef9, u+20ab
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    src: local("Roboto Medium"), local("Roboto-Medium"), url(../fonts/roboto/oOeFwZNlrTefzLYmlVV1UBJtnKITppOI_IvcXXDNrsc.woff2) format("woff2");
    unicode-range: u+0100-024f, u+1-1eff, u+20a0-20ab, u+20ad-20cf, u+2c60-2c7f, u+a720-a7ff
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    src: local("Roboto Medium"), local("Roboto-Medium"), url(../fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2) format("woff2");
    unicode-range: u+00??, u+0131, u+0152-0153, u+02c6, u+02da, u+02dc, u+2000-206f, u+2074, u+20ac, u+2212, u+2215
}

@font-face {
    font-family: Roboto;
    font-style: italic;
    font-weight: 400;
    src: local("Roboto Italic"), local("Roboto-Italic"), url(../fonts/roboto/WxrXJa0C3KdtC7lMafG4dRTbgVql8nDJpwnrE27mub0.woff2) format("woff2");
    unicode-range: u+0460-052f, u+20b4, u+2de0-2dff, u+a640-a69f
}

@font-face {
    font-family: Roboto;
    font-style: italic;
    font-weight: 400;
    src: local("Roboto Italic"), local("Roboto-Italic"), url(../fonts/roboto/OpXUqTo0UgQQhGj_SFdLWBTbgVql8nDJpwnrE27mub0.woff2) format("woff2");
    unicode-range: u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116
}

@font-face {
    font-family: Roboto;
    font-style: italic;
    font-weight: 400;
    src: local("Roboto Italic"), local("Roboto-Italic"), url(../fonts/roboto/1hZf02POANh32k2VkgEoUBTbgVql8nDJpwnrE27mub0.woff2) format("woff2");
    unicode-range: u+1f??
}

@font-face {
    font-family: Roboto;
    font-style: italic;
    font-weight: 400;
    src: local("Roboto Italic"), local("Roboto-Italic"), url(../fonts/roboto/cDKhRaXnQTOVbaoxwdOr9xTbgVql8nDJpwnrE27mub0.woff2) format("woff2");
    unicode-range: u+0370-03ff
}

@font-face {
    font-family: Roboto;
    font-style: italic;
    font-weight: 400;
    src: local("Roboto Italic"), local("Roboto-Italic"), url(../fonts/roboto/K23cxWVTrIFD6DJsEVi07RTbgVql8nDJpwnrE27mub0.woff2) format("woff2");
    unicode-range: u+0102-0103, u+1ea0-1ef9, u+20ab
}

@font-face {
    font-family: Roboto;
    font-style: italic;
    font-weight: 400;
    src: local("Roboto Italic"), local("Roboto-Italic"), url(../fonts/roboto/vSzulfKSK0LLjjfeaxcREhTbgVql8nDJpwnrE27mub0.woff2) format("woff2");
    unicode-range: u+0100-024f, u+1-1eff, u+20a0-20ab, u+20ad-20cf, u+2c60-2c7f, u+a720-a7ff
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-style: italic;
    font-weight: 400;
    src: local("Roboto Italic"), local("Roboto-Italic"), url(../fonts/roboto/vPcynSL0qHq_6dX7lKVByfesZW2xOQ-xsNqO47m55DA.woff2) format("woff2");
    unicode-range: u+00??, u+0131, u+0152-0153, u+02c6, u+02da, u+02dc, u+2000-206f, u+2074, u+20ac, u+2212, u+2215
}

@font-face {
    font-family: Roboto;
    font-style: italic;
    font-weight: 500;
    src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(../fonts/roboto/OLffGBTaF0XFOW1gnuHF0TTOQ_MqJVwkKsUn0wKzc2I.woff2) format("woff2");
    unicode-range: u+0460-052f, u+20b4, u+2de0-2dff, u+a640-a69f
}

@font-face {
    font-family: Roboto;
    font-style: italic;
    font-weight: 500;
    src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(../fonts/roboto/OLffGBTaF0XFOW1gnuHF0TUj_cnvWIuuBMVgbX098Mw.woff2) format("woff2");
    unicode-range: u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116
}

@font-face {
    font-family: Roboto;
    font-style: italic;
    font-weight: 500;
    src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(../fonts/roboto/OLffGBTaF0XFOW1gnuHF0UbcKLIaa1LC45dFaAfauRA.woff2) format("woff2");
    unicode-range: u+1f??
}

@font-face {
    font-family: Roboto;
    font-style: italic;
    font-weight: 500;
    src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(../fonts/roboto/OLffGBTaF0XFOW1gnuHF0Wo_sUJ8uO4YLWRInS22T3Y.woff2) format("woff2");
    unicode-range: u+0370-03ff
}

@font-face {
    font-family: Roboto;
    font-style: italic;
    font-weight: 500;
    src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(../fonts/roboto/OLffGBTaF0XFOW1gnuHF0b6up8jxqWt8HVA3mDhkV_0.woff2) format("woff2");
    unicode-range: u+0102-0103, u+1ea0-1ef9, u+20ab
}

@font-face {
    font-family: Roboto;
    font-style: italic;
    font-weight: 500;
    src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(../fonts/roboto/OLffGBTaF0XFOW1gnuHF0SYE0-AqJ3nfInTTiDXDjU4.woff2) format("woff2");
    unicode-range: u+0100-024f, u+1-1eff, u+20a0-20ab, u+20ad-20cf, u+2c60-2c7f, u+a720-a7ff
}

@font-face {
    font-family: Roboto;
    font-style: italic;
    font-weight: 500;
    src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url(../fonts/roboto/OLffGBTaF0XFOW1gnuHF0Y4P5ICox8Kq3LLUNMylGO4.woff2) format("woff2");
    unicode-range: u+00??, u+0131, u+0152-0153, u+02c6, u+02da, u+02dc, u+2000-206f, u+2074, u+20ac, u+2212, u+2215
}

@font-face {
    font-display: swap;
    font-family: Roboto Mono;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/roboto/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.woff2) format("woff2");
    unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+2000-206f, u+2074, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd
}

@font-face {
    font-display: swap;
    font-family: Roboto Mono;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/roboto/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.woff2) format("woff2");
    unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+2000-206f, u+2074, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd
}

code,
pre {
    background-color: #141414;
    border: 1px solid #343436;
    border-radius: 4px;
    color: #ccccdc;
    font-family: Roboto Mono, monospace;
    font-size: 12px
}

code {
    color: #ccccdc;
    margin: 0 2px;
    padding: 2px 5px;
    white-space: nowrap
}

code.code--small {
    font-size: 10px;
    margin: 0 2px;
    padding: 2px
}

pre {
    word-wrap: break-word;
    background-color: #141414;
    display: block;
    line-height: 1.5;
    margin: 0 0 1.5;
    padding: 10px;
    white-space: pre;
    white-space: pre-wrap;
    word-break: break-all
}

pre.pre--no-style {
    background: #0000;
    border: none;
    padding: 0
}

pre.prettyprint {
    margin-bottom: 1.5
}

pre code {
    background-color: initial;
    border: 0;
    color: inherit;
    padding: 0;
    white-space: pre;
    white-space: pre-wrap
}

.gicon {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    height: 1.1057142857em;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    width: 1.1057142857em
}

.icon--has-hover {
    opacity: .7
}

.icon--has-hover:hover {
    opacity: 1
}

.gicon-add-annotation {
    background-image: url(../img/icons_dark_theme/icon_add_annotation.svg)
}

.gicon-add-annotation-alt {
    background-image: url(../img/icons_dark_theme/icon_add_annotation_alt.svg)
}

.gicon-add-datasources {
    background-image: url(../img/icons_dark_theme/icon_add_data_sources.svg)
}

.gicon-add-user {
    background-image: url(../img/icons_dark_theme/icon_add_user.svg)
}

.gicon-add-team {
    background-image: url(../img/icons_dark_theme/icon_add_team.svg)
}

.gicon-add-panel {
    background-image: url(../img/icons_dark_theme/icon_add_panel.svg)
}

.gicon-add-link {
    background-image: url(../img/icons_dark_theme/icon_add_link.svg)
}

.gicon-add-variable {
    background-image: url(../img/icons_dark_theme/icon_add_variable.svg)
}

.gicon-add-alert-notification-channel {
    background-image: url(../img/icons_dark_theme/icon_add_notification_channel.svg)
}

.gicon-alert {
    background-image: url(../img/icons_dark_theme/icon_alert.svg)
}

.gicon-remove {
    background-image: url(../img/icons_dark_theme/icon_remove.svg)
}

.gicon-arrow-left {
    background-image: url(../img/icons_dark_theme/icon_arrow_left.svg)
}

.gicon-arrow-left-circle {
    background-image: url(../img/icons_dark_theme/icon_arrow_left_circle.svg)
}

.gicon-alert-alt {
    background-image: url(../img/icons_dark_theme/icon_alert_alt.svg)
}

.gicon-alert-rules {
    background-image: url(../img/icons_dark_theme/icon_alert_rules.svg)
}

.gicon-alert-notification-channel {
    background-image: url(../img/icons_dark_theme/icon_notification_channels.svg)
}

.gicon-annotation {
    background-image: url(../img/icons_dark_theme/icon_annotation.svg)
}

.gicon-annotation-alt {
    background-image: url(../img/icons_dark_theme/icon_annotation_alt.svg)
}

.gicon-apikeys {
    background-image: url(../img/icons_dark_theme/icon_apikeys.svg)
}

.gicon-branding {
    background-image: url(../img/grafana_icon.svg)
}

.gicon-cog {
    background-image: url(../img/icons_dark_theme/icon_cog.svg)
}

.gicon-dashboard {
    background-image: url(../img/icons_dark_theme/icon_dashboard.svg)
}

.gicon-dashboard-starred {
    background-image: url(../img/icons_dark_theme/icon_dashboard_fav.svg)
}

.gicon-dashboard-list {
    background-image: url(../img/icons_dark_theme/icon_dashboard_list.svg)
}

.gicon-dashboard-new {
    background-image: url(../img/icons_dark_theme/icon_new_dashboard.svg)
}

.gicon-dashboard-import {
    background-image: url(../img/icons_dark_theme/icon_import_dashboard.svg)
}

.gicon-datasources {
    background-image: url(../img/icons_dark_theme/icon_data_sources.svg)
}

.gicon-editor {
    background-image: url(../img/icons_dark_theme/icon_editor.svg)
}

.gicon-folder-new {
    background-image: url(../img/icons_dark_theme/icon_add_folder.svg)
}

.gicon-home {
    background-image: url(../img/icons_dark_theme/icon_home.svg)
}

.gicon-json {
    background-image: url(../img/icons_dark_theme/icon_json.svg)
}

.gicon-link {
    background-image: url(../img/icons_dark_theme/icon_link.svg)
}

.gicon-manage {
    background-image: url(../img/icons_dark_theme/icon_sitemap.svg)
}

.gicon-org {
    background-image: url(../img/icons_dark_theme/icon_org.svg)
}

.gicon-playlists {
    background-image: url(../img/icons_dark_theme/icon_playlist.svg)
}

.gicon-plugins {
    background-image: url(../img/icons_dark_theme/icon_plugins.svg)
}

.gicon-preferences {
    background-image: url(../img/icons_dark_theme/icon_preferences.svg)
}

.gicon-question {
    background-image: url(../img/icons_dark_theme/icon_question.svg)
}

.gicon-shield {
    background-image: url(../img/icons_dark_theme/icon_shield.svg)
}

.gicon-snapshots {
    background-image: url(../img/icons_dark_theme/icon_snapshots.svg)
}

.gicon-team {
    background-image: url(../img/icons_dark_theme/icon_team.svg)
}

.gicon-user {
    background-image: url(../img/icons_dark_theme/icon_user.svg)
}

.gicon-variable {
    background-image: url(../img/icons_dark_theme/icon_variable.svg)
}

.gicon-viewer {
    background-image: url(../img/icons_dark_theme/icon_viewer.svg)
}

.gicon-zoom-out {
    background-image: url(../img/icons_dark_theme/icon_zoom_out.svg)
}

.gicon-explore {
    background-image: url(../img/icons_dark_theme/icon_explore.svg)
}

.gicon-reports {
    background-image: url(../img/icons_dark_theme/icon_reports.svg)
}

.sidemenu .gicon-dashboard {
    background-image: url(../img/icons_dark_theme/icon_dashboard.svg)
}

.sidemenu .gicon-alert {
    background-image: url(../img/icons_dark_theme/icon_alert.svg)
}

.sidemenu .gicon-cog {
    background-image: url(../img/icons_dark_theme/icon_cog.svg)
}

.sidemenu .gicon-question {
    background-image: url(../img/icons_dark_theme/icon_question.svg)
}

.sidemenu .gicon-explore {
    background-image: url(../img/icons_dark_theme/icon_explore.svg)
}

.sidemenu .gicon-shield {
    background-image: url(../img/icons_dark_theme/icon_shield.svg)
}

.sidemenu .gicon-reports {
    background-image: url(../img/icons_dark_theme/icon_reports.svg)
}

.fa--permissions-list {
    min-width: 20px;
    padding-right: 5px
}

.add-panel-widget__icon .gicon-advanced-active,
.panel-editor-tabs .gicon-advanced-active {
    background-image: url(../img/icons_dark_theme/icon_advanced_active.svg)
}

.add-panel-widget__icon .gicon-advanced,
.panel-editor-tabs .gicon-advanced {
    background-image: url(../img/icons_dark_theme/icon_advanced.svg)
}

.add-panel-widget__icon .gicon-alert-active,
.panel-editor-tabs .gicon-alert-active {
    background-image: url(../img/icons_dark_theme/icon_alerting_active.svg)
}

.add-panel-widget__icon .gicon-alert,
.panel-editor-tabs .gicon-alert {
    background-image: url(../img/icons_dark_theme/icon_alerting.svg)
}

.add-panel-widget__icon .gicon-queries-active,
.panel-editor-tabs .gicon-queries-active {
    background-image: url(../img/icons_dark_theme/icon_query_active.svg)
}

.add-panel-widget__icon .gicon-queries,
.panel-editor-tabs .gicon-queries {
    background-image: url(../img/icons_dark_theme/icon_query.svg)
}

.add-panel-widget__icon .gicon-visualization-active,
.panel-editor-tabs .gicon-visualization-active {
    background-image: url(../img/icons_dark_theme/icon_visualize_active.svg)
}

.add-panel-widget__icon .gicon-visualization,
.panel-editor-tabs .gicon-visualization {
    background-image: url(../img/icons_dark_theme/icon_visualize.svg)
}

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

.highlight-word {
    color: #eb7b18
}

.emphasis-word {
    color: #fff;
    font-weight: 500
}

.close {
    color: #000;
    float: right;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    opacity: .2;
    text-shadow: 0 1px 0 #fff
}

.close:focus,
.close:hover {
    color: #000;
    cursor: pointer;
    opacity: .4;
    text-decoration: none
}

button.close {
    -webkit-appearance: none;
    background: #0000;
    border: 0;
    cursor: pointer;
    padding: 0
}

.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.hide {
    display: none
}

.show {
    display: block
}

.invisible {
    visibility: hidden !important
}

.affix {
    position: fixed
}

.d-inline-block {
    display: inline-block
}

.absolute {
    position: absolute
}

.flex-grow-1 {
    flex-grow: 1
}

.flex-shrink-1 {
    flex-shrink: 1
}

.flex-shrink-0 {
    flex-shrink: 0
}

.flex-flow-column-nowrap {
    display: flex;
    flex-flow: column nowrap
}

.center-vh {
    flex-direction: column;
    height: 100%;
    justify-content: center;
    justify-items: center
}

.align-items-center,
.center-vh {
    align-items: center;
    display: flex
}

.align-items-center {
    flex-direction: row nowrap
}

input.invalid,
input.ng-dirty.ng-invalid,
input.validation-error {
    box-shadow: inset 0 0 5px #d10e5c
}

.ng-cloak,
[ng-cloak],
[ng\:cloak] {
    display: none !important
}

.m-x-auto {
    margin-left: auto !important;
    margin-right: auto !important
}

.m-a-0 {
    margin: 0 !important
}

.m-t-0 {
    margin-top: 0 !important
}

.m-r-0 {
    margin-right: 0 !important
}

.m-b-0 {
    margin-bottom: 0 !important
}

.m-l-0,
.m-x-0 {
    margin-left: 0 !important
}

.m-x-0 {
    margin-right: 0 !important
}

.m-y-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important
}

.m-a-1 {
    margin: 16px !important
}

.m-t-1 {
    margin-top: 16px !important
}

.m-r-1 {
    margin-right: 16px !important
}

.m-b-1 {
    margin-bottom: 16px !important
}

.m-l-1,
.m-x-1 {
    margin-left: 16px !important
}

.m-x-1 {
    margin-right: 16px !important
}

.m-y-1 {
    margin-bottom: 16px !important;
    margin-top: 16px !important
}

.m-a-2 {
    margin: 24px !important
}

.m-t-2 {
    margin-top: 24px !important
}

.m-r-2 {
    margin-right: 24px !important
}

.m-b-2 {
    margin-bottom: 24px !important
}

.m-l-2,
.m-x-2 {
    margin-left: 24px !important
}

.m-x-2 {
    margin-right: 24px !important
}

.m-y-2 {
    margin-bottom: 24px !important;
    margin-top: 24px !important
}

.m-a-3 {
    margin: 48px !important
}

.m-t-3 {
    margin-top: 48px !important
}

.m-r-3 {
    margin-right: 48px !important
}

.m-b-3 {
    margin-bottom: 48px !important
}

.m-l-3,
.m-x-3 {
    margin-left: 48px !important
}

.m-x-3 {
    margin-right: 48px !important
}

.m-y-3 {
    margin-bottom: 48px !important;
    margin-top: 48px !important
}

.p-a-0 {
    padding: 0 !important
}

.p-t-0 {
    padding-top: 0 !important
}

.p-r-0 {
    padding-right: 0 !important
}

.p-b-0 {
    padding-bottom: 0 !important
}

.p-l-0,
.p-x-0 {
    padding-left: 0 !important
}

.p-x-0 {
    padding-right: 0 !important
}

.p-y-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important
}

.p-a-1 {
    padding: 16px !important
}

.p-t-1 {
    padding-top: 16px !important
}

.p-r-1 {
    padding-right: 16px !important
}

.p-b-1 {
    padding-bottom: 16px !important
}

.p-l-1,
.p-x-1 {
    padding-left: 16px !important
}

.p-x-1 {
    padding-right: 16px !important
}

.p-y-1 {
    padding-bottom: 16px !important;
    padding-top: 16px !important
}

.p-a-2 {
    padding: 24px !important
}

.p-t-2 {
    padding-top: 24px !important
}

.p-r-2 {
    padding-right: 24px !important
}

.p-b-2 {
    padding-bottom: 24px !important
}

.p-l-2,
.p-x-2 {
    padding-left: 24px !important
}

.p-x-2 {
    padding-right: 24px !important
}

.p-y-2 {
    padding-bottom: 24px !important;
    padding-top: 24px !important
}

.p-a-3 {
    padding: 48px !important
}

.p-t-3 {
    padding-top: 48px !important
}

.p-r-3 {
    padding-right: 48px !important
}

.p-b-3 {
    padding-bottom: 48px !important
}

.p-l-3,
.p-x-3 {
    padding-left: 48px !important
}

.p-x-3 {
    padding-right: 48px !important
}

.p-y-3 {
    padding-bottom: 48px !important;
    padding-top: 48px !important
}

.pos-f-t {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000
}

.max-width {
    width: 100%
}

.width-auto {
    width: auto
}

.width-1 {
    width: 16px !important
}

.width-2 {
    width: 32px !important
}

.width-3 {
    width: 48px !important
}

.width-4 {
    width: 64px !important
}

.width-5 {
    width: 80px !important
}

.width-6 {
    width: 96px !important
}

.width-7 {
    width: 112px !important
}

.width-8 {
    width: 128px !important
}

.width-9 {
    width: 144px !important
}

.width-10 {
    width: 160px !important
}

.width-11 {
    width: 176px !important
}

.width-12 {
    width: 192px !important
}

.width-13 {
    width: 208px !important
}

.width-14 {
    width: 224px !important
}

.width-15 {
    width: 240px !important
}

.width-16 {
    width: 256px !important
}

.width-17 {
    width: 272px !important
}

.width-18 {
    width: 288px !important
}

.width-19 {
    width: 304px !important
}

.width-20 {
    width: 320px !important
}

.width-21 {
    width: 336px !important
}

.width-22 {
    width: 352px !important
}

.width-23 {
    width: 368px !important
}

.width-24 {
    width: 384px !important
}

.width-25 {
    width: 400px !important
}

.width-26 {
    width: 416px !important
}

.width-27 {
    width: 432px !important
}

.width-28 {
    width: 448px !important
}

.width-29 {
    width: 464px !important
}

.width-30 {
    width: 480px !important
}

.max-width-1 {
    flex-grow: 1;
    max-width: 16px !important
}

.max-width-2 {
    flex-grow: 1;
    max-width: 32px !important
}

.max-width-3 {
    flex-grow: 1;
    max-width: 48px !important
}

.max-width-4 {
    flex-grow: 1;
    max-width: 64px !important
}

.max-width-5 {
    flex-grow: 1;
    max-width: 80px !important
}

.max-width-6 {
    flex-grow: 1;
    max-width: 96px !important
}

.max-width-7 {
    flex-grow: 1;
    max-width: 112px !important
}

.max-width-8 {
    flex-grow: 1;
    max-width: 128px !important
}

.max-width-9 {
    flex-grow: 1;
    max-width: 144px !important
}

.max-width-10 {
    flex-grow: 1;
    max-width: 160px !important
}

.max-width-11 {
    flex-grow: 1;
    max-width: 176px !important
}

.max-width-12 {
    flex-grow: 1;
    max-width: 192px !important
}

.max-width-13 {
    flex-grow: 1;
    max-width: 208px !important
}

.max-width-14 {
    flex-grow: 1;
    max-width: 224px !important
}

.max-width-15 {
    flex-grow: 1;
    max-width: 240px !important
}

.max-width-16 {
    flex-grow: 1;
    max-width: 256px !important
}

.max-width-17 {
    flex-grow: 1;
    max-width: 272px !important
}

.max-width-18 {
    flex-grow: 1;
    max-width: 288px !important
}

.max-width-19 {
    flex-grow: 1;
    max-width: 304px !important
}

.max-width-20 {
    flex-grow: 1;
    max-width: 320px !important
}

.max-width-21 {
    flex-grow: 1;
    max-width: 336px !important
}

.max-width-22 {
    flex-grow: 1;
    max-width: 352px !important
}

.max-width-23 {
    flex-grow: 1;
    max-width: 368px !important
}

.max-width-24 {
    flex-grow: 1;
    max-width: 384px !important
}

.max-width-25 {
    flex-grow: 1;
    max-width: 400px !important
}

.max-width-26 {
    flex-grow: 1;
    max-width: 416px !important
}

.max-width-27 {
    flex-grow: 1;
    max-width: 432px !important
}

.max-width-28 {
    flex-grow: 1;
    max-width: 448px !important
}

.max-width-29 {
    flex-grow: 1;
    max-width: 464px !important
}

.max-width-30 {
    flex-grow: 1;
    max-width: 480px !important
}

.min-width-1 {
    min-width: 16px !important
}

.min-width-2 {
    min-width: 32px !important
}

.min-width-3 {
    min-width: 48px !important
}

.min-width-4 {
    min-width: 64px !important
}

.min-width-5 {
    min-width: 80px !important
}

.min-width-6 {
    min-width: 96px !important
}

.min-width-7 {
    min-width: 112px !important
}

.min-width-8 {
    min-width: 128px !important
}

.min-width-9 {
    min-width: 144px !important
}

.min-width-10 {
    min-width: 160px !important
}

.min-width-11 {
    min-width: 176px !important
}

.min-width-12 {
    min-width: 192px !important
}

.min-width-13 {
    min-width: 208px !important
}

.min-width-14 {
    min-width: 224px !important
}

.min-width-15 {
    min-width: 240px !important
}

.min-width-16 {
    min-width: 256px !important
}

.min-width-17 {
    min-width: 272px !important
}

.min-width-18 {
    min-width: 288px !important
}

.min-width-19 {
    min-width: 304px !important
}

.min-width-20 {
    min-width: 320px !important
}

.min-width-21 {
    min-width: 336px !important
}

.min-width-22 {
    min-width: 352px !important
}

.min-width-23 {
    min-width: 368px !important
}

.min-width-24 {
    min-width: 384px !important
}

.min-width-25 {
    min-width: 400px !important
}

.min-width-26 {
    min-width: 416px !important
}

.min-width-27 {
    min-width: 432px !important
}

.min-width-28 {
    min-width: 448px !important
}

.min-width-29 {
    min-width: 464px !important
}

.min-width-30 {
    min-width: 480px !important
}

.offset-width-1 {
    margin-left: 16px !important
}

.offset-width-2 {
    margin-left: 32px !important
}

.offset-width-3 {
    margin-left: 48px !important
}

.offset-width-4 {
    margin-left: 64px !important
}

.offset-width-5 {
    margin-left: 80px !important
}

.offset-width-6 {
    margin-left: 96px !important
}

.offset-width-7 {
    margin-left: 112px !important
}

.offset-width-8 {
    margin-left: 128px !important
}

.offset-width-9 {
    margin-left: 144px !important
}

.offset-width-10 {
    margin-left: 160px !important
}

.offset-width-11 {
    margin-left: 176px !important
}

.offset-width-12 {
    margin-left: 192px !important
}

.offset-width-13 {
    margin-left: 208px !important
}

.offset-width-14 {
    margin-left: 224px !important
}

.offset-width-15 {
    margin-left: 240px !important
}

.offset-width-16 {
    margin-left: 256px !important
}

.offset-width-17 {
    margin-left: 272px !important
}

.offset-width-18 {
    margin-left: 288px !important
}

.offset-width-19 {
    margin-left: 304px !important
}

.offset-width-20 {
    margin-left: 320px !important
}

.offset-width-21 {
    margin-left: 336px !important
}

.offset-width-22 {
    margin-left: 352px !important
}

.offset-width-23 {
    margin-left: 368px !important
}

.offset-width-24 {
    margin-left: 384px !important
}

.offset-width-25 {
    margin-left: 400px !important
}

.offset-width-26 {
    margin-left: 416px !important
}

.offset-width-27 {
    margin-left: 432px !important
}

.offset-width-28 {
    margin-left: 448px !important
}

.offset-width-29 {
    margin-left: 464px !important
}

.offset-width-30 {
    margin-left: 480px !important
}

input:-webkit-autofill {
    animation-name: onAutoFillStart;
    -webkit-transition: transform 1ms;
    transition: transform 1ms
}

input:not(:-webkit-autofill) {
    animation-name: onAutoFillCancel
}

.ui-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.ui-list>li {
    margin-bottom: 4px
}

.ui-list>li:last-child {
    margin-bottom: 0
}

.add-panel-widget,
.add-panel-widget-container {
    height: 100%
}

.add-panel-widget__header {
    align-items: center;
    background: #111217;
    border-bottom: 1px solid #111217;
    box-shadow: inset 0 -4px 14px #1f1f20;
    cursor: move;
    display: flex;
    padding: 0 8px;
    position: absolute;
    top: 0;
    width: 100%
}

.add-panel-widget__header .gicon {
    font-size: 30px;
    margin-right: 16px
}

.add-panel-widget__header:hover {
    background-color: #ccccdc29;
    transition: background-color .1s ease-in-out
}

.add-panel-widget__title {
    font-size: 14px;
    font-weight: 500;
    margin-right: 32px
}

.add-panel-widget__link {
    flex-direction: column !important;
    height: 88px !important;
    margin: 0 8px;
    width: 170px
}

.add-panel-widget__icon {
    margin-bottom: 8px
}

.add-panel-widget__icon .gicon {
    color: #fff;
    height: 44px;
    left: 5px;
    position: relative;
    width: 53px
}

.add-panel-widget__create {
    display: inherit;
    margin-bottom: 24px;
    margin-top: 55px
}

.add-panel-widget__actions {
    display: inherit
}

.add-panel-widget__action {
    margin: 0 4px
}

.add-panel-widget__btn-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center
}

.ps {
    -ms-overflow-style: none;
    overflow: hidden !important;
    overflow-anchor: none;
    touch-action: auto;
    -ms-touch-action: auto
}

.ps__rail-x {
    bottom: 0;
    height: 15px
}

.ps__rail-x,
.ps__rail-y {
    display: none;
    opacity: 0;
    position: absolute;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear
}

.ps__rail-y {
    right: 0;
    width: 15px
}

.ps--active-x>.ps__rail-x,
.ps--active-y>.ps__rail-y {
    background-color: initial;
    display: block
}

.ps--focus>.ps__rail-x,
.ps--focus>.ps__rail-y,
.ps--scrolling-x>.ps__rail-x,
.ps--scrolling-y>.ps__rail-y {
    opacity: .6
}

.ps__thumb-x {
    background-color: #aaa;
    bottom: 2px;
    height: 6px
}

.ps__thumb-x,
.ps__thumb-y {
    border-radius: 6px;
    position: absolute
}

.ps__thumb-y {
    background-color: #414350;
    background-image: linear-gradient(180deg, #404357, #424345);
    background-repeat: repeat-x;
    right: 0;
    width: 6px
}

@supports(-ms-overflow-style:none) {
    .ps {
        overflow: auto !important
    }
}

@media (-ms-high-contrast:none),
screen and (-ms-high-contrast:active) {
    .ps {
        overflow: auto !important
    }
}

.ps__rail-x:focus,
.ps__rail-x:hover,
.ps__rail-y:focus,
.ps__rail-y:hover {
    background-color: initial;
    opacity: .9
}

.no-overlay-scrollbar ::-webkit-scrollbar {
    height: 8px;
    width: 8px
}

.no-overlay-scrollbar ::-webkit-scrollbar:hover {
    height: 8px
}

.no-overlay-scrollbar ::-webkit-scrollbar-button:end:increment,
.no-overlay-scrollbar ::-webkit-scrollbar-button:start:decrement {
    display: none
}

.no-overlay-scrollbar ::-webkit-scrollbar-button:horizontal:decrement {
    display: none
}

.no-overlay-scrollbar ::-webkit-scrollbar-button:horizontal:increment {
    display: none
}

.no-overlay-scrollbar ::-webkit-scrollbar-button:vertical:decrement {
    display: none
}

.no-overlay-scrollbar ::-webkit-scrollbar-button:vertical:increment {
    display: none
}

.no-overlay-scrollbar ::-webkit-scrollbar-button:horizontal:decrement:active {
    background-image: none
}

.no-overlay-scrollbar ::-webkit-scrollbar-button:horizontal:increment:active {
    background-image: none
}

.no-overlay-scrollbar ::-webkit-scrollbar-button:vertical:decrement:active {
    background-image: none
}

.no-overlay-scrollbar ::-webkit-scrollbar-button:vertical:increment:active {
    background-image: none
}

.no-overlay-scrollbar ::-webkit-scrollbar-track-piece {
    background-color: initial
}

.no-overlay-scrollbar ::-webkit-scrollbar-thumb:vertical {
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #404357), color-stop(100%, #424345));
    border: 1px solid #000;
    height: 50px
}

.no-overlay-scrollbar ::-webkit-scrollbar-thumb:horizontal {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #404357), color-stop(100%, #424345));
    border: 1px solid #000;
    width: 50px
}

.baron {
    overflow: hidden
}

.main-view.baron {
    width: unset
}

.baron__clipper {
    overflow: hidden;
    position: relative
}

.baron__scroller {
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    border: 0;
    box-sizing: border-box;
    height: 100%;
    margin: 0;
    overflow-y: scroll;
    padding: 0;
    width: 100%
}

.baron__scroller::-webkit-scrollbar {
    height: 0;
    width: 0
}

.baron__track {
    bottom: 0;
    display: none;
    position: absolute;
    right: 0;
    top: 0
}

.baron._scrollbar .baron__track {
    display: block
}

.baron__free {
    bottom: 0;
    top: 0
}

.baron__bar,
.baron__free {
    position: absolute;
    right: 0
}

.baron__bar {
    background: #999;
    display: none;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    width: 15px;
    z-index: 1
}

.baron._scrollbar .baron__bar {
    background-color: #414350;
    background-image: linear-gradient(180deg, #404357, #424345);
    background-repeat: repeat-x;
    border-radius: 6px;
    display: block;
    position: absolute;
    right: 0;
    width: 6px
}

.baron._scrollbar .baron__bar:focus,
.baron._scrollbar .baron__bar:hover {
    opacity: .9
}

.panel-hover-highlight .baron__track .baron__bar {
    opacity: .6
}

.baron._scrolling>.baron__track .baron__bar {
    opacity: .9
}

.baron__control {
    display: none
}

.baron.panel-content--scrollable {
    width: calc(100% - 2px)
}

.baron.panel-content--scrollable .baron__scroller {
    padding-top: 1px
}

.scroll-margin-helper {
    margin-right: 12px
}

.btn {
    align-items: center;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 500;
    height: 32px;
    justify-content: center;
    line-height: 1.5;
    padding: 0 16px;
    text-align: center;
    vertical-align: middle
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: none
}

.btn.focus,
.btn:focus,
.btn:hover {
    text-decoration: none
}

.btn.active,
.btn:active {
    background-image: none;
    outline: 0
}

.btn.disabled,
.btn:disabled,
.btn[disabled] {
    box-shadow: none;
    cursor: not-allowed;
    opacity: .65;
    pointer-events: none
}

.btn--radius-left-0 {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn--radius-right-0 {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-large {
    border-radius: 2px;
    font-size: 18px;
    font-weight: 400;
    height: 48px;
    padding: 11px 24px
}

.btn-large .gicon {
    filter: brightness(100);
    margin-right: 8px
}

.btn-small {
    height: 24px
}

.btn-mini,
.btn-small {
    border-radius: 2px;
    font-size: 12px;
    padding: 4px 8px
}

.btn-mini {
    height: height-smpx
}

.btn-link {
    background: #0000;
    color: #b3b3b3
}

.btn-primary,
.btn-success {
    background-color: #4979db;
    background-image: linear-gradient(180deg, #3d71d9, #5a86de);
    background-repeat: repeat-x;
    border-color: #3d71d9;
    color: #fff;
    text-shadow: 0 1px 0 #0000001a
}

.btn-primary.active,
.btn-primary.disabled,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary[disabled],
.btn-success.active,
.btn-success.disabled,
.btn-success:active,
.btn-success:focus,
.btn-success:hover,
.btn-success[disabled] {
    background-color: #3d71d9;
    background-image: none;
    color: #fff
}

.btn-secondary,
.btn-secondary.active,
.btn-secondary.disabled,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary[disabled] {
    color: #fff
}

.btn-danger {
    background-color: #d31c66;
    background-image: linear-gradient(180deg, #d10e5c, #d73274);
    background-repeat: repeat-x;
    border-color: #d10e5c;
    color: #fff;
    text-shadow: 0 1px 0 #0000001a
}

.btn-danger.active,
.btn-danger.disabled,
.btn-danger:active,
.btn-danger:focus,
.btn-danger:hover,
.btn-danger[disabled] {
    background-color: #d10e5c;
    background-image: none;
    color: #fff
}

.btn-secondary {
    background-color: #2a2a2c;
    background-image: linear-gradient(180deg, #262628, #303032);
    background-repeat: repeat-x;
    border-color: #262628;
    color: #ccccdc;
    text-shadow: 0 1px 0 #0000001a
}

.btn-secondary.active,
.btn-secondary.disabled,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary[disabled] {
    background-color: #262628;
    background-image: none;
    color: #ccccdc
}

.btn-inverse {
    background-color: #2a2a2c;
    background-image: linear-gradient(180deg, #262628, #303032);
    background-repeat: repeat-x;
    border-color: #262628;
    box-shadow: none;
    color: #ccccdc;
    text-shadow: 0 1px 0 #0000001a
}

.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse:active,
.btn-inverse:focus,
.btn-inverse:hover,
.btn-inverse[disabled] {
    background-color: #262628;
    background-image: none;
    color: #ccccdc
}

.btn-outline-primary,
.btn-transparent {
    background-color: initial
}

.btn-outline-primary {
    background-image: none;
    border: 1px solid #fff;
    color: #fff
}

.btn-outline-primary.active,
.btn-outline-primary.focus,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:hover,
.open>.btn-outline-primary.dropdown-toggle {
    background-color: #3d71d9;
    color: #fff
}

.btn-outline-primary.active.focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.active:hover,
.btn-outline-primary:active.focus,
.btn-outline-primary:active:focus,
.btn-outline-primary:active:hover,
.open>.btn-outline-primary.dropdown-toggle.focus,
.open>.btn-outline-primary.dropdown-toggle:focus,
.open>.btn-outline-primary.dropdown-toggle:hover {
    background-color: #1f4aa0;
    border-color: #193a7e;
    color: #fff
}

.btn-outline-primary.disabled.focus,
.btn-outline-primary.disabled:focus,
.btn-outline-primary.disabled:hover,
.btn-outline-primary:disabled.focus,
.btn-outline-primary:disabled:focus,
.btn-outline-primary:disabled:hover {
    border-color: #92afea
}

.btn-outline-secondary {
    background-color: initial;
    background-image: none;
    border: 1px solid #fff;
    color: #fff
}

.btn-outline-secondary.active,
.btn-outline-secondary.focus,
.btn-outline-secondary:active,
.btn-outline-secondary:focus,
.btn-outline-secondary:hover,
.open>.btn-outline-secondary.dropdown-toggle {
    background-color: #303032;
    color: #fff
}

.btn-outline-secondary.active.focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.active:hover,
.btn-outline-secondary:active.focus,
.btn-outline-secondary:active:focus,
.btn-outline-secondary:active:hover,
.open>.btn-outline-secondary.dropdown-toggle.focus,
.open>.btn-outline-secondary.dropdown-toggle:focus,
.open>.btn-outline-secondary.dropdown-toggle:hover {
    background-color: #060606;
    border-color: #000;
    color: #fff
}

.btn-outline-secondary.disabled.focus,
.btn-outline-secondary.disabled:focus,
.btn-outline-secondary.disabled:hover,
.btn-outline-secondary:disabled.focus,
.btn-outline-secondary:disabled:focus,
.btn-outline-secondary:disabled:hover {
    border-color: #626267
}

.btn-outline-inverse {
    background-color: initial;
    background-image: none;
    border: 1px solid #fff;
    color: #fff
}

.btn-outline-inverse.active,
.btn-outline-inverse.focus,
.btn-outline-inverse:active,
.btn-outline-inverse:focus,
.btn-outline-inverse:hover,
.open>.btn-outline-inverse.dropdown-toggle {
    background-color: #262628;
    color: #fff
}

.btn-outline-inverse.active.focus,
.btn-outline-inverse.active:focus,
.btn-outline-inverse.active:hover,
.btn-outline-inverse:active.focus,
.btn-outline-inverse:active:focus,
.btn-outline-inverse:active:hover,
.open>.btn-outline-inverse.dropdown-toggle.focus,
.open>.btn-outline-inverse.dropdown-toggle:focus,
.open>.btn-outline-inverse.dropdown-toggle:hover {
    background-color: #000;
    border-color: #000;
    color: #fff
}

.btn-outline-inverse.disabled.focus,
.btn-outline-inverse.disabled:focus,
.btn-outline-inverse.disabled:hover,
.btn-outline-inverse:disabled.focus,
.btn-outline-inverse:disabled:focus,
.btn-outline-inverse:disabled:hover {
    border-color: #58585c
}

.btn-outline-danger {
    background-color: initial;
    background-image: none;
    border: 1px solid #fff;
    color: #fff
}

.btn-outline-danger.active,
.btn-outline-danger.focus,
.btn-outline-danger:active,
.btn-outline-danger:focus,
.btn-outline-danger:hover,
.open>.btn-outline-danger.dropdown-toggle {
    background-color: #d10e5c;
    color: #fff
}

.btn-outline-danger.active.focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.active:hover,
.btn-outline-danger:active.focus,
.btn-outline-danger:active:focus,
.btn-outline-danger:active:hover,
.open>.btn-outline-danger.dropdown-toggle.focus,
.open>.btn-outline-danger.dropdown-toggle:focus,
.open>.btn-outline-danger.dropdown-toggle:hover {
    background-color: #800938;
    border-color: #5a0627;
    color: #fff
}

.btn-outline-danger.disabled.focus,
.btn-outline-danger.disabled:focus,
.btn-outline-danger.disabled:hover,
.btn-outline-danger:disabled.focus,
.btn-outline-danger:disabled:focus,
.btn-outline-danger:disabled:hover {
    border-color: #f35292
}

.btn-outline-disabled {
    background-color: initial;
    background-image: none;
    border: 1px solid #fff;
    box-shadow: none;
    color: #fff;
    cursor: default
}

.btn-outline-disabled.active,
.btn-outline-disabled.focus,
.btn-outline-disabled:active,
.btn-outline-disabled:focus,
.btn-outline-disabled:hover,
.open>.btn-outline-disabled.dropdown-toggle {
    background-color: #555;
    color: #fff
}

.btn-outline-disabled.active.focus,
.btn-outline-disabled.active:focus,
.btn-outline-disabled.active:hover,
.btn-outline-disabled:active.focus,
.btn-outline-disabled:active:focus,
.btn-outline-disabled:active:hover,
.open>.btn-outline-disabled.dropdown-toggle.focus,
.open>.btn-outline-disabled.dropdown-toggle:focus,
.open>.btn-outline-disabled.dropdown-toggle:hover {
    background-color: #2a2a2a;
    border-color: #151515;
    color: #fff
}

.btn-outline-disabled.disabled.focus,
.btn-outline-disabled.disabled:focus,
.btn-outline-disabled.disabled:hover,
.btn-outline-disabled:disabled.focus,
.btn-outline-disabled:disabled:focus,
.btn-outline-disabled:disabled:hover {
    border-color: #888
}

.btn-outline-disabled:active,
.btn-outline-disabled:active:hover,
.btn-outline-disabled:focus,
.btn-outline-disabled:hover {
    background-color: initial;
    border-color: #555;
    color: #555
}

.btn-p-x-2 {
    padding-left: 20px;
    padding-right: 20px
}

.btn-p-x-0 {
    padding-left: 0;
    padding-right: 0
}

.btn-service {
    position: relative
}

.btn-service--github {
    background-color: #464646;
    border: 1px solid #393939
}

.btn-service--github .btn-service-icon {
    border-right: 1px solid #393939;
    font-size: 24px
}

.btn-service--gitlab {
    background-color: #fc6d26;
    border: 1px solid #e24329
}

.btn-service--gitlab .btn-service-icon {
    border-right: 1px solid #e24329;
    font-size: 24px
}

.btn-service--google {
    background-color: #e84d3c;
    border: 1px solid #b83e31
}

.btn-service--google .btn-service-icon {
    border-right: 1px solid #b83e31;
    font-size: 24px
}

.btn-service--azuread {
    background-color: #2f2f2f;
    border: 1px solid #2f2f2f
}

.btn-service--azuread .btn-service-icon {
    border-right: 1px solid #2f2f2f;
    font-size: 24px
}

.btn-service--grafanacom {
    background-color: #262628;
    border: 1px solid #393939
}

.btn-service--grafanacom .btn-service-icon {
    border-right: 1px solid #393939;
    font-size: 24px
}

.btn-service--okta {
    background-color: #2f2f2f;
    border: 1px solid #393939
}

.btn-service--okta .btn-service-icon {
    border-right: 1px solid #393939;
    font-size: 24px
}

.btn-service--oauth {
    background-color: #262628;
    border: 1px solid #393939
}

.btn-service--oauth .btn-service-icon {
    border-right: 1px solid #393939;
    font-size: 24px
}

.btn-service-icon {
    height: 100%;
    left: 0;
    padding-left: 8px;
    padding-right: 8px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 35px
}

.btn-service-icon:before {
    position: relative;
    top: 4px
}

.btn-service--grafanacom .btn-service-icon {
    background-image: url(../img/grafana_mask_icon_white.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 60%
}

.btn-service--azuread .btn-service-icon {
    background-image: url(../img/microsoft_auth_icon.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 60%
}

.btn-service--okta .btn-service-icon {
    background-image: url(../img/okta_logo_white.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 60%
}

.toggle-btn {
    background: #22252b;
    box-shadow: none;
    color: #ccccdca6
}

.toggle-btn:first-child {
    border-radius: 2px 0 0 2px;
    margin: 0
}

.toggle-btn:last-child {
    border-radius: 0 2px 2px 0;
    margin-left: 0 !important
}

.toggle-btn.active {
    background-color: #2d3139;
    color: #ccccdc
}

.toggle-btn.active:hover {
    cursor: default
}

.btn-loading span {
    animation-duration: 1.4s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: blink
}

.btn-loading span:nth-child(2) {
    animation-delay: .2s
}

.btn-loading span:nth-child(3) {
    animation-delay: .4s
}

@keyframes blink {
    0% {
        font-size: 14;
        opacity: .2
    }
    20% {
        font-size: 18;
        opacity: 1
    }
    to {
        font-size: 14;
        opacity: .2
    }
}

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

.nav>li>a {
    display: block
}

.nav>.pull-right {
    float: right
}

.nav-tabs:after {
    clear: both;
    content: "";
    display: table
}

.nav-tabs>li {
    float: left
}

.nav-tabs>li>a {
    line-height: 14px;
    margin-right: 2px;
    padding-left: 12px;
    padding-right: 12px
}

.nav-tabs {
    border-bottom: 1px solid #555;
    margin: 0 0 10px;
    padding-left: 10px
}

.nav-tabs>li {
    margin-bottom: -1px
}

.nav-tabs>.active>a,
.nav-tabs>.active>a:focus,
.nav-tabs>.active>a:hover {
    border-color: #555;
    border-bottom: 1px solid #181b1f;
    border-radius: 3px;
    color: #ccccdc
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.modal-body .nav-tabs {
    border-bottom: none
}

.modal-body .nav-tabs>li>a {
    border: none;
    border-radius: 0
}

.modal-body .nav-tabs>li>a:focus,
.modal-body .nav-tabs>li>a:hover {
    border-bottom: 1px solid #33a2e5
}

.modal-body .nav-tabs>.active>a,
.modal-body .nav-tabs>.active>a:focus,
.modal-body .nav-tabs>.active>a:hover {
    border: none;
    border-bottom: 1px solid #33a2e5;
    color: #ccccdc
}

.gf-tabs {
    float: left;
    position: relative;
    top: 1px
}

.gf-tabs:after {
    clear: both;
    content: "";
    display: table
}

.gf-tabs-item {
    float: left;
    list-style: none
}

.gf-tabs-link {
    border: 1px solid #0000;
    border-radius: 3px 3px 0 0;
    border-top: 0 solid #0000;
    color: #ccccdc;
    display: block;
    margin-right: 8px;
    padding: 10px 15px 9px;
    position: relative
}

.gf-tabs-link i {
    margin-right: 5px
}

.gf-tabs-link .gicon {
    position: relative;
    top: -2px
}

.gf-tabs-link:focus,
.gf-tabs-link:hover {
    color: #fff
}

.gf-tabs-link.active,
.gf-tabs-link.active:focus,
.gf-tabs-link.active:hover {
    background: #111217;
    border-color: #eb7b18 #343436 #0000;
    color: #ccccdc;
    overflow: hidden
}

.gf-tabs-link.active:before,
.gf-tabs-link.active:focus:before,
.gf-tabs-link.active:hover:before {
    background-image: linear-gradient(90deg, #f05a28 30%, #fbca0a 99%);
    content: " ";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.gf-tabs-link.active--panel {
    background: #181b1f !important
}

.alert {
    align-items: center;
    background: #22252b;
    border-left: 3px solid #d10e5c;
    border-radius: 2px;
    display: flex;
    flex-direction: row;
    margin-bottom: 4px;
    padding: 15px 20px;
    position: relative
}

.alert-success {
    border-color: #1a7f4b
}

.alert-danger,
.alert-error {
    border-color: #d10e5c
}

.alert-info,
.alert-warning {
    border-color: #f5b73d
}

.page-alert-list {
    max-width: 600px;
    min-width: 400px;
    position: fixed;
    right: 10px;
    top: 60px;
    z-index: 8000
}

.alert-close {
    align-items: center;
    background: none;
    border: none;
    display: flex;
    padding: 0 0 0 16px
}

.alert-close .fa {
    align-self: flex-end;
    color: #ffffffbf;
    font-size: 21px
}

.alert-title {
    font-weight: 500
}

.alert-icon {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 0 16px 0 0;
    width: 35px
}

.alert-icon .fa {
    font-size: 21px
}

.alert-body {
    flex-grow: 1;
    overflow-wrap: break-word;
    word-break: break-word
}

.alert-icon-on-top {
    align-items: flex-start
}

@media(max-width:768px) {
    .page-alert-list {
        max-height: calc(100% - 60px);
        min-width: 0;
        overflow-y: auto;
        top: 30px;
        width: calc(100% - 20px)
    }
}

gf-form-switch[disabled] .gf-form-switch,
gf-form-switch[disabled] .gf-form-switch-container {
    cursor: default;
    pointer-events: none !important
}

gf-form-switch[disabled] .gf-form-switch-container .gf-form-label,
gf-form-switch[disabled] .gf-form-switch .gf-form-label {
    color: #ccccdca6
}

.gf-form-switch-container-react {
    display: flex;
    flex-shrink: 0
}

.gf-form-switch-container {
    cursor: pointer;
    display: flex;
    margin-right: 4px
}

.gf-form-switch {
    align-items: center;
    background: #111217;
    border: 1px solid #ccccdc26;
    border-radius: 2px;
    display: flex;
    height: 32px;
    justify-content: center;
    position: relative;
    width: 56px
}

.gf-form-switch input {
    height: 0;
    opacity: 0;
    width: 0
}

.gf-form-switch--transparent {
    background: #0000;
    border: 0;
    width: 40px
}

.gf-form-switch__slider {
    background: #555;
    border-radius: 8px;
    display: block;
    height: 16px;
    position: relative;
    width: 32px
}

.gf-form-switch__slider:before {
    background: #1f1f20;
    border-radius: 50%;
    box-shadow: 0 0 3px #000;
    content: "";
    height: 12px;
    left: 2px;
    position: absolute;
    top: 2px;
    transition: .4s;
    width: 12px
}

input:checked+.gf-form-switch__slider {
    background: #5794f2
}

input:checked+.gf-form-switch__slider:before {
    transform: translateX(16px)
}

.gf-form-checkbox {
    align-items: center;
    background: #111217;
    border: 1px solid #ccccdc26;
    border-left: none;
    border-radius: 2px;
    display: flex;
    height: 32px;
    justify-content: center;
    position: relative;
    width: 50px
}

.gf-form-checkbox input {
    -webkit-appearance: none;
    appearance: none;
    height: 0;
    opacity: 0;
    width: 0
}

.gf-form-checkbox--transparent {
    background: #0000;
    border: none;
    height: auto;
    padding-left: 8px;
    position: relative;
    width: 23px
}

.gf-form-checkbox--table-cell {
    background: #0000;
    border: none;
    height: auto;
    position: relative;
    top: -5px;
    width: 20px
}

.gf-form-switch__checkbox {
    align-items: center;
    background: #141414;
    border: 1px solid #555;
    border-radius: 3px;
    display: flex;
    height: 16px;
    justify-content: center;
    width: 16px
}

input:checked+.gf-form-switch__checkbox:before {
    color: #141414;
    content: "ï";
    font-family: FontAwesome
}

input:checked+.gf-form-switch__checkbox {
    background: linear-gradient(0deg, #eb7b18, #d44a3a);
    border: none
}

.tooltip {
    display: block;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0;
    position: absolute;
    visibility: visible;
    z-index: 1040
}

.tooltip.in {
    opacity: 1
}

.tooltip.top {
    margin-top: -3px;
    padding: 5px 0
}

.tooltip.right {
    margin-left: 3px;
    padding: 0 5px
}

.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0
}

.tooltip.left {
    margin-left: -3px;
    padding: 0 5px
}

.tooltip-inner {
    background-color: #22252b;
    border-radius: 2px;
    color: #ccccdc;
    max-width: 400px;
    padding: 4px 8px;
    text-align: center;
    text-decoration: none
}

.tooltip-arrow {
    border-color: #0000;
    border-style: solid;
    height: 0;
    position: absolute;
    width: 0
}

.tooltip.top .tooltip-arrow {
    border-top-color: #22252b;
    border-width: 5px 5px 0;
    bottom: 0;
    left: 50%;
    margin-left: -5px
}

.tooltip.right .tooltip-arrow {
    border-right-color: #22252b;
    border-width: 5px 5px 5px 0;
    left: 0;
    margin-top: -5px;
    top: 50%
}

.tooltip.left .tooltip-arrow {
    border-left-color: #22252b;
    border-width: 5px 0 5px 5px;
    margin-top: -5px;
    right: 0;
    top: 50%
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #22252b;
    border-width: 0 5px 5px;
    left: 50%;
    margin-left: -5px;
    top: 0
}

.grafana-tooltip {
    background-color: #22252b;
    border-radius: 5px;
    color: #ccccdc;
    font-size: 11pt;
    font-weight: 200;
    left: 0;
    line-height: 14px;
    max-height: 600px;
    max-width: 800px;
    overflow: hidden;
    padding: 10px;
    position: absolute;
    top: -1000;
    z-index: 9999
}

.grafana-tooltip a {
    color: #ccccdc
}

.grafana-info-box .grafana-tooltip a,
.grafana-tooltip .grafana-info-box a,
.grafana-tooltip a.external-link {
    color: #6e9fff
}

.grafana-tip {
    padding-left: 5px
}

.badge,
.label {
    background-color: #555;
    color: #fff;
    display: inline-block;
    font-size: 11.844px;
    font-weight: 500;
    line-height: 14px;
    padding: 2px 4px;
    text-shadow: 0 -1px 0 #00000040;
    vertical-align: initial;
    white-space: nowrap
}

.label-tag {
    background-color: #93c;
    border-radius: 3px;
    color: #f2f2f2;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    padding: 0 6px;
    text-shadow: none;
    white-space: nowrap
}

.label-tag svg {
    margin-bottom: 0
}

.label-tag .icon-tag {
    padding-right: 4px;
    position: relative;
    top: 1px
}

.label-tag.muted {
    color: #ccccdca6
}

.label-tag.muted,
.label-tag:hover {
    background-color: #7a29a3;
    opacity: .85
}

.label-tag--gray {
    border-color: #8e8e8e;
    opacity: .85
}

.label-tag--gray,
.label-tag--gray:hover {
    background-color: #555
}

.graph-panel {
    display: flex;
    flex-direction: column;
    height: 100%
}

@media(min-width:544px) {
    .graph-panel--legend-right {
        flex-direction: row
    }
    .graph-panel--legend-right .graph-legend {
        flex: 0 1 10px;
        max-height: 100%;
        overflow-y: initial
    }
    .graph-panel--legend-right .graph-legend-series {
        display: block;
        padding-left: 4px
    }
    .graph-panel--legend-right .graph-legend-table .graph-legend-series {
        display: table-row
    }
}

.graph-panel__chart {
    cursor: crosshair;
    flex-grow: 1;
    min-height: 65%;
    position: relative
}

.datapoints-warning {
    cursor: auto;
    left: 50%;
    margin-left: -100px;
    margin-top: -50px;
    padding: 10px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 200px;
    z-index: 10
}

.graph-legend {
    display: flex;
    flex: 0 1 auto;
    margin: 0;
    max-height: 35%;
    overflow-y: auto;
    padding-top: 6px;
    position: relative;
    text-align: center
}

.graph-legend .popover-content {
    padding: 0
}

.graph-legend-content {
    position: relative
}

.graph-legend-icon {
    padding-right: 4px;
    position: relative;
    top: 1px
}

.graph-legend-alias,
.graph-legend-icon,
.graph-legend-value {
    cursor: pointer;
    display: inline;
    font-size: 12px;
    text-align: left;
    white-space: nowrap
}

.graph-legend-alias.current:before,
.graph-legend-icon.current:before,
.graph-legend-value.current:before {
    content: "Current: "
}

.graph-legend-alias.max:before,
.graph-legend-icon.max:before,
.graph-legend-value.max:before {
    content: "Max: "
}

.graph-legend-alias.min:before,
.graph-legend-icon.min:before,
.graph-legend-value.min:before {
    content: "Min: "
}

.graph-legend-alias.total:before,
.graph-legend-icon.total:before,
.graph-legend-value.total:before {
    content: "Total: "
}

.graph-legend-alias.avg:before,
.graph-legend-icon.avg:before,
.graph-legend-value.avg:before {
    content: "Avg: "
}

.graph-legend-icon .fa {
    font-size: 135%;
    position: relative;
    top: 1px
}

.graph-legend-series {
    align-items: center;
    display: flex;
    float: left;
    padding-left: 10px;
    white-space: nowrap
}

.graph-legend-series--right-y {
    float: right
}

.graph-panel--legend-right .graph-legend-series--right-y {
    float: left
}

.graph-legend-value {
    padding-left: 6px
}

.graph-legend-table {
    padding-left: 5px;
    padding-right: 5px
}

.graph-legend-table .graph-legend-series {
    display: table-row;
    float: none;
    padding-left: 0
}

.graph-legend-table .graph-legend-series--right-y {
    float: none
}

.graph-legend-table .graph-legend-series--right-y .graph-legend-alias:after {
    color: #ccccdca6;
    content: "(right-y)";
    padding: 0 5px
}

.graph-legend-table .graph-legend-alias,
.graph-legend-table .graph-legend-icon,
.graph-legend-table .graph-legend-value,
.graph-legend-table td {
    display: table-cell;
    float: none;
    padding: 2px;
    text-align: right;
    white-space: nowrap
}

.graph-legend-table .graph-legend-icon {
    cursor: pointer
}

.graph-legend-table .graph-legend-value {
    padding-left: 15px
}

.graph-legend-table .graph-legend-alias {
    max-width: 650px;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis
}

.graph-legend-table .graph-legend-series:nth-child(2n) {
    background: #22252b
}

.graph-legend-table .graph-legend-value.avg:before,
.graph-legend-table .graph-legend-value.current:before,
.graph-legend-table .graph-legend-value.max:before,
.graph-legend-table .graph-legend-value.min:before,
.graph-legend-table .graph-legend-value.total:before {
    content: ""
}

.graph-legend-table th {
    color: #33a2e5;
    font-size: 85%;
    font-weight: 700;
    padding: 0 10px 1px 0;
    text-align: right;
    white-space: nowrap
}

.graph-legend-series__table-name {
    align-items: center;
    display: flex
}

.graph-legend-series-hidden .graph-legend-alias,
.graph-legend-series-hidden .graph-legend-value {
    color: #ccccdc99
}

.graph-legend-popover {
    width: 210px
}

.graph-legend-popover label {
    display: inline-block
}

.graph-legend-popover .btn {
    line-height: normal;
    margin-right: 0;
    padding: 1px 3px
}

.annotation-tags {
    color: #93c
}

.graph-series-override__properties {
    margin-left: 16px
}

.graph-tooltip {
    background-color: #141414;
    color: #ccccdc;
    font-size: 12px;
    white-space: nowrap
}

.graph-tooltip .graph-tooltip-time {
    color: #ccccdc;
    font-weight: 500;
    padding: 2px;
    position: relative;
    text-align: center;
    top: -3px
}

.graph-tooltip .graph-tooltip-list-item {
    display: table-row
}

.graph-tooltip .graph-tooltip-list-item--highlight {
    color: #fff;
    font-weight: 500
}

.graph-tooltip .graph-tooltip-series-name {
    display: table-cell;
    max-width: 650px;
    overflow: hidden;
    padding: 2px;
    text-overflow: ellipsis
}

.graph-tooltip .graph-tooltip-value {
    display: table-cell;
    font-weight: 500;
    padding-left: 15px;
    text-align: right
}

.graph-annotation .label-tag {
    margin-right: 4px;
    margin-top: 8px
}

.graph-annotation .graph-annotation__header {
    background: #22252b;
    display: flex;
    flex-wrap: nowrap;
    padding: 4px 8px
}

.graph-annotation .graph-annotation__title {
    display: inline-block;
    flex-grow: 1;
    font-weight: 500;
    overflow: hidden;
    padding-right: 16px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.graph-annotation .graph-annotation__edit-icon {
    padding-left: 16px
}

.graph-annotation .graph-annotation__time {
    color: #ccccdca6;
    display: inline-block;
    font-style: italic;
    font-weight: 400;
    position: relative;
    top: 1px
}

.graph-annotation .graph-annotation__body {
    padding: 8px
}

.graph-annotation .graph-annotation__user img {
    border-radius: 50%;
    height: 16px;
    width: 16px
}

.graph-annotation a[href] {
    color: #33a2e5;
    text-decoration: underline
}

.left-yaxis-label {
    left: 8px;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-90deg)
}

.right-yaxis-label {
    right: 8px;
    top: 50%;
    transform: translateX(50%) translateY(-50%) rotate(90deg)
}

.axisLabel {
    color: #ccccdc;
    display: inline-block;
    font-size: 12px;
    position: absolute;
    text-align: center
}

.alert-handle-wrapper {
    position: absolute;
    -webkit-user-select: none;
    user-select: none
}

.alert-handle-wrapper .alert-handle {
    background: #22252b;
    border-radius: 4px;
    box-shadow: none;
    color: #ccccdca6;
    cursor: move;
    float: right;
    font-size: 12px;
    position: relative;
    text-align: left;
    width: 100px;
    z-index: 10
}

.alert-handle-wrapper .alert-handle:hover {
    background-color: #303032
}

.alert-handle-wrapper .alert-handle .icon-gf {
    border-right: 1px solid #343436;
    float: left;
    font-size: 14px;
    padding: 6px 4px 4px 6px;
    position: relative;
    top: 0
}

.alert-handle-wrapper .alert-handle-value {
    border-left: 1px solid #1f1f20;
    height: 24px;
    line-height: 24px;
    padding: 7px
}

.alert-handle-wrapper .alert-handle-value .alert-handle-grip {
    background: url(../img/grab_dark.svg) no-repeat 50% 50%;
    background-size: 8px;
    float: right;
    height: 24px;
    margin-right: 2px;
    width: 16px
}

.alert-handle-wrapper--T1 {
    right: -222px;
    width: 245px
}

.alert-handle-wrapper--T1 .alert-handle-line {
    width: 145px
}

.alert-handle-wrapper--T0 {
    right: -104px;
    width: 129px
}

.alert-handle-wrapper--T0 .alert-handle-line {
    width: 28px
}

.alert-handle-wrapper--no-value .alert-handle-line {
    display: none
}

.alert-handle-wrapper .alert-handle-line {
    float: left;
    height: 2px;
    margin-top: 13px;
    position: relative;
    z-index: 0
}

.alert-handle-wrapper .alert-handle-line--critical {
    background-color: #ed2e1899
}

.alert-handle-wrapper .alert-handle-line--warning {
    background-color: #f7952099
}

.thresholds-form-disabled {
    filter: blur(3px)
}

.submenu-controls {
    align-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0 8px
}

.annotation-segment {
    padding: 8px 7px
}

.annotation-segment label.cr1 {
    margin-left: 5px;
    margin-top: 3px
}

.submenu-item {
    display: inline-block;
    margin-right: 15px
}

.submenu-item .fa-caret-down {
    font-size: 75%;
    padding-left: 8px
}

.submenu-item .gf-form {
    margin-bottom: 0
}

.variable-value-link {
    align-items: center;
    background-color: #111217;
    border: 1px solid #ccccdc26;
    border-radius: 2px;
    color: #ccccdc;
    display: flex;
    height: 32px;
    max-width: 500px;
    padding: 0 8px
}

.variable-value-link .label-tag {
    margin: 0 5px
}

.variable-link-wrapper {
    display: inline-block;
    position: relative
}

.variable-value-dropdown {
    background-color: #181b1f;
    border: 1px solid #22252b;
    border-radius: 3px 3px 0 0;
    box-shadow: 0 8px 24px #010409;
    font-size: 14px;
    max-height: 400px;
    min-height: 150px;
    min-width: 150px;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: 32px;
    z-index: 1030
}

.variable-value-dropdown.multi .selected .variable-option-icon {
    background: url(../img/checkbox.png) 0 -18px no-repeat
}

.variable-value-dropdown.single .variable-option-icon {
    display: none
}

.variable-value-dropdown.single .selected {
    background-color: #282b31
}

.variable-options-wrapper {
    display: table;
    width: 100%
}

.variable-options-column {
    display: table-cell;
    line-height: 26px;
    max-height: 350px
}

.variable-options-column:nth-child(2) {
    border-left: 1px solid #22252b
}

.variable-option,
.variable-option-tag,
.variable-options-column-header {
    display: block;
    min-width: 115px;
    padding: 2px 27px 0 8px;
    position: relative;
    white-space: nowrap
}

.variable-options-column-header {
    margin-bottom: 5px;
    padding-bottom: 5px;
    padding-top: 5px
}

.variable-options-column-header.many-selected .variable-option-icon {
    background: url(../img/checkbox.png) 0 -36px no-repeat
}

.variable-option-icon {
    background: url(../img/checkbox.png) 0 0 no-repeat;
    display: inline-block;
    height: 18px;
    position: relative;
    top: 4px;
    width: 24px
}

.variable-option.highlighted,
.variable-option:hover {
    background-color: #343436
}

.dash-nav-link {
    color: #ccccdc;
    display: inline-block;
    padding: 8px 7px
}

.dashlist-section-header {
    color: #ccccdca6;
    margin-bottom: 16px
}

.dashlist-section {
    margin-bottom: 16px;
    padding-top: 3px
}

.dashlist-link {
    background: #22252b;
    border-radius: 2px;
    box-shadow: none;
    display: block;
    display: flex;
    margin: 3px;
    padding: 7px
}

.dashlist-link:hover {
    background: #282b31
}

.dashlist-link .fa {
    padding-top: 3px
}

.dashlist-link .fa-star {
    color: #eb7b18
}

.dashlist-star {
    align-items: center;
    color: #ccccdca6;
    display: flex
}

.dashlist-folder {
    color: #ccccdca6;
    font-size: 10px
}

.dashlist-link-body {
    flex-grow: 1
}

.progress-tracker-container {
    align-items: center;
    display: flex;
    height: 100%
}

.progress-tracker-close-btn {
    background-color: initial;
    border: none;
    color: #ccccdca6;
    font-size: 18px;
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 10
}

.progress-tracker-close-btn:hover {
    color: #fff
}

.progress-tracker {
    align-items: center;
    display: flex;
    padding: 0;
    width: 100%
}

.progress-step {
    color: #ccccdca6;
    flex: 1 1 0%;
    height: 84px;
    margin: 0;
    min-width: 60px;
    padding: 0;
    position: relative;
    text-align: center
}

.progress-step:after {
    border-top: 2px solid #555;
    bottom: 29px;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    right: -30px;
    top: 29px;
    width: 100%;
    z-index: 0
}

.progress-step:first-child:after {
    left: 50%
}

.progress-step:last-child:after {
    right: 50%
}

.progress-step.active .progress-step-cta {
    display: inline-flex
}

.progress-step.active .progress-title {
    font-weight: 400
}

.progress-step.active .progress-text {
    display: none
}

.progress-step.active .progress-marker .icon-gf {
    -webkit-text-fill-color: #0000;
    background: linear-gradient(90deg, #f05a28 30%, #fbca0a 99%);
    -webkit-background-clip: text;
    color: #eb7b18;
    text-decoration: none
}

.progress-step.active .progress-marker .gicon {
    opacity: 1
}

.progress-step.completed .progress-marker {
    color: #6ccf8e
}

.progress-step.completed .progress-marker .icon-gf:before {
    content: "î"
}

.progress-step.completed .progress-text {
    text-decoration: line-through
}

.progress-step-cta {
    background-color: #4979db;
    background-image: linear-gradient(180deg, #3d71d9, #5a86de);
    background-repeat: repeat-x;
    border-color: #3d71d9;
    border-radius: 2px;
    color: #fff;
    display: none;
    font-size: 12px;
    padding: 4px 7px;
    text-shadow: 0 1px 0 #0000001a
}

.progress-step-cta.active,
.progress-step-cta.disabled,
.progress-step-cta:active,
.progress-step-cta:focus,
.progress-step-cta:hover,
.progress-step-cta[disabled] {
    background-color: #3d71d9;
    background-image: none;
    color: #fff
}

.progress-marker {
    align-items: center;
    background-color: #181b1f;
    display: flex;
    height: 60px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2px;
    position: relative;
    width: 60px;
    z-index: 1
}

.progress-text {
    color: #ccccdca6;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis
}

.progress-marker {
    color: #ccccdca6;
    font-size: 35px;
    text-decoration: none;
    vertical-align: sub
}

.progress-marker .gicon {
    opacity: .7
}

a.progress-link:hover .progress-marker,
a.progress-link:hover .progress-text {
    color: #fff
}

a.progress-link:hover:hover .progress-marker.completed {
    color: #6ccf8e
}

.piechart-panel {
    display: table;
    height: 100%;
    position: relative;
    width: 100%
}

.piechart-panel .piechart-container {
    margin: auto;
    top: 10px
}

.piechart-panel .piechart-container svg {
    height: 100%;
    width: 100%
}

.piechart-panel .piechart-tooltip {
    background-color: #141414;
    color: #d8d9da;
    font-size: 12px;
    opacity: 0;
    position: absolute;
    white-space: nowrap
}

.piechart-panel .piechart-tooltip .piechart-tooltip-time {
    color: #d8d9da;
    font-weight: 700;
    padding: 2px;
    position: relative;
    text-align: center
}

.piechart-panel .piechart-tooltip .piechart-tooltip-time .piechart-tooltip-value {
    display: table-cell;
    font-weight: 700;
    padding: 15px;
    text-align: right
}

.pluginlist-section-header {
    color: #ccccdca6;
    margin-bottom: 16px
}

.pluginlist-section {
    margin-bottom: 16px
}

.pluginlist-link {
    background: #22252b;
    border-radius: 2px;
    box-shadow: none;
    display: block;
    margin: 3px;
    padding: 7px
}

.pluginlist-link:hover {
    background: #282b31
}

.pluginlist-icon {
    font-size: 2rem;
    margin-right: 8px;
    vertical-align: sub
}

.pluginlist-image {
    width: 17px
}

.pluginlist-title {
    margin-right: 5.3333333333px
}

.pluginlist-version {
    color: #ccccdca6;
    font-size: 12px
}

.pluginlist-message {
    float: right;
    font-size: 12px
}

.pluginlist-message--update:hover {
    border-bottom: 1px solid #ccccdc
}

.pluginlist-message--enable {
    color: #6e9fff
}

.pluginlist-message--enable:hover {
    border-bottom: 1px solid #6e9fff
}

.pluginlist-message--no-update {
    color: #ccccdca6
}

.pluginlist-emphasis {
    font-weight: 500
}

.singlestat-panel {
    display: table;
    height: 100%;
    position: relative;
    width: 100%
}

.singlestat-panel-value-container {
    display: table-cell;
    font-weight: 500;
    line-height: 1;
    position: relative;
    text-align: center;
    vertical-align: middle;
    z-index: 1
}

.panel-container--no-title .singlestat-panel-value-container {
    padding-bottom: 0
}

.singlestat-panel-prefix {
    padding-right: 20px
}

#flotGaugeValue0 {
    font-weight: 500
}

.table-panel-content {
    padding: 0
}

.table-panel-content .panel-title-container {
    padding-bottom: 4px
}

.table-panel-scroll {
    overflow: auto
}

.table-panel-container {
    padding-top: 2.2em;
    position: relative
}

.table-panel-footer {
    font-size: 90%;
    line-height: 2px;
    text-align: center
}

.table-panel-footer ul {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 0;
    position: relative
}

.table-panel-footer ul>li {
    display: inline
}

.table-panel-footer ul>li>a {
    border-left-width: 0;
    float: left;
    padding: 4px 12px;
    text-decoration: none
}

.table-panel-footer ul>li>a:hover {
    background-color: #22252b
}

.table-panel-footer ul>li>a.active {
    color: #33a2e5;
    font-weight: 700
}

.table-panel-table {
    border-collapse: collapse;
    width: 100%
}

.table-panel-table th {
    padding: 0
}

.table-panel-table th:first-child .table-panel-table-header-inner {
    padding-left: 15px
}

.table-panel-table td {
    border-bottom: 2px solid #111217;
    border-right: 2px solid #111217;
    padding: .45em 1.1em
}

.table-panel-table td:first-child {
    padding-left: 15px
}

.table-panel-table td:last-child {
    border-right: none
}

.table-panel-table td.table-panel-cell-pre {
    white-space: pre
}

.table-panel-table td.table-panel-cell-link {
    padding: 0
}

.table-panel-table td.table-panel-cell-link a {
    display: inline-block;
    height: 100%;
    padding: .45em 0 .45em 1.1em;
    text-decoration: underline;
    text-underline-position: under
}

.table-panel-table td.cell-highlighted:hover {
    background-color: #22252b
}

.table-panel-table td:hover .table-panel-filter-link {
    visibility: visible
}

.table-panel-filter-link {
    color: #ccccdca6;
    display: block;
    float: right;
    padding: 0 5px;
    visibility: hidden
}

.table-panel-header-bg {
    background: #22252b;
    border-bottom: 2px solid #111217;
    border-top: 2px solid #111217;
    height: 2em;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.table-panel-table-header-inner {
    color: #33a2e5;
    padding: .3em 0 .45em 1.1em;
    position: absolute;
    text-align: left;
    top: 0
}

.table-panel-width-hack {
    height: 0;
    line-height: 0px;
    visibility: hidden
}

.table-panel-color-cell,
.table-panel-color-cell a,
.table-panel-color-row,
.table-panel-color-row a {
    color: #fff
}

.heatmap-canvas-wrapper {
    cursor: crosshair
}

.heatmap-panel {
    position: relative
}

.heatmap-panel .axis .tick text {
    fill: #ccccdc;
    color: #ccccdc;
    font-size: 11px
}

.heatmap-panel .axis .tick line {
    stroke: #ccccdca6;
    opacity: .4
}

.heatmap-panel svg {
    pointer-events: none
}

.heatmap-panel svg rect {
    pointer-events: visiblePainted
}

.heatmap-tooltip {
    background-color: #141414;
    color: #ccccdc;
    font-size: 12px;
    white-space: nowrap
}

.heatmap-histogram rect {
    fill: #ccccdca6
}

.heatmap-crosshair line {
    stroke: #89093c;
    stroke-width: 1
}

.heatmap-selection {
    stroke-width: 1;
    fill: #6666;
    stroke: #666c
}

.heatmap-legend-wrapper {
    margin: 0 16px;
    padding-top: 4px
}

.heatmap-legend-wrapper:after {
    clear: both;
    content: "";
    display: table
}

.heatmap-legend-wrapper svg {
    float: left;
    height: 18px;
    max-width: 300px;
    white-space: nowrap;
    width: 100%
}

.heatmap-legend-wrapper .heatmap-legend-values {
    display: inline-block
}

.heatmap-legend-wrapper .axis .tick text {
    fill: #ccccdc;
    color: #ccccdc;
    font-size: 11px
}

.heatmap-legend-wrapper .axis .tick .domain,
.heatmap-legend-wrapper .axis .tick line {
    stroke: #ccccdca6;
    opacity: .4
}

.bootstrap-tagsinput {
    background-color: #111217;
    border: 1px solid #ccccdc26;
    display: inline-block;
    line-height: 22px;
    max-width: 100%;
    padding: 0 0 0 6px;
    vertical-align: middle
}

.bootstrap-tagsinput input {
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    display: inline-block;
    height: 100%;
    margin: 0;
    padding: 8px 6px;
    width: 70px
}

.bootstrap-tagsinput input.gf-form-input--has-help-icon {
    padding-right: 32px
}

.bootstrap-tagsinput .tag {
    color: #fff;
    margin-right: 2px
}

.bootstrap-tagsinput .tag [data-role=remove] {
    cursor: pointer;
    margin-left: 8px
}

.bootstrap-tagsinput .tag [data-role=remove]:after {
    content: "x";
    padding: 0 2px
}

.bootstrap-tagsinput .tag [data-role=remove]:hover {
    box-shadow: inset 0 1px 0 #fff3, 0 1px 2px #0000000d
}

.bootstrap-tagsinput .tag [data-role=remove]:hover:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.tag-filter {
    flex-grow: 1
}

.tag-filter .label-tag {
    cursor: pointer;
    margin-left: 6px
}

.tag-filter .label-tag .fa.fa-remove {
    margin-right: 3px
}

.tag-filter-option {
    border-radius: 0;
    cursor: pointer;
    display: block;
    padding: 2px 0;
    position: relative;
    text-align: left;
    width: 100%
}

.tag-count-label {
    margin-left: 3px
}

.tag-filter-values {
    display: inline
}

.tag-filter-values .label-tag {
    cursor: pointer;
    font-size: 11px;
    margin: 6px 6px 0 0
}

.tag-filter-values .label-tag .fa.fa-remove {
    margin-right: 3px
}

.grafana-options-table {
    width: 100%
}

.grafana-options-table th {
    border-bottom: 4px solid #181b1f;
    padding: 5px 10px;
    text-align: left
}

.grafana-options-table tr td {
    background-color: #22252b;
    border-bottom: 4px solid #181b1f;
    padding: 5px 10px;
    white-space: nowrap
}

.grafana-options-table tr td.nobg {
    background-color: initial
}

.grafana-options-table .max-width-btns {
    padding-right: 0
}

.grafana-options-table .max-width-btns .btn {
    box-sizing: border-box;
    width: 100%
}

.max-width {
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap
}

.grafana-list-item {
    background-color: #22252b;
    cursor: pointer;
    display: block;
    line-height: 34px;
    margin-bottom: 4px;
    padding: 1px 10px
}

.search-results-container {
    background: #181b1f;
    border: 1px solid #ccccdc12;
    border-radius: 3px;
    display: block;
    flex-grow: 10;
    height: unset;
    margin-bottom: 16px;
    padding: 16px;
    position: relative
}

.search-results-container .label-tag {
    font-size: 11px;
    margin-left: 6px;
    margin-top: 2px;
    padding: 2px 6px
}

.search-results-container .selected .search-result-tag {
    color: #fff;
    opacity: .7
}

.search-section {
    background: #181b1f;
    border-bottom: 1px solid #2c3235;
    margin-bottom: 3px;
    padding: 0 4px 4px
}

.search-section__header {
    color: #ccccdca6;
    display: flex;
    flex-grow: 1;
    font-size: 1rem;
    padding: 7px 4px 3px 0
}

.search-section__header.selected,
.search-section__header:hover {
    color: #ccccdc
}

.search-section__header:hover .search-section__header__link {
    opacity: 1
}

.search-section__header__icon {
    padding: 5px 0;
    text-align: center;
    width: 43px
}

.search-section__header__toggle {
    padding: 5px
}

.search-section__header__text {
    flex-grow: 1;
    line-height: 24px
}

.search-section__header__link {
    color: #ccccdca6;
    opacity: 0;
    padding: 2px 10px 0;
    transition: opacity .15s ease-in-out
}

.search-item {
    align-items: center;
    background: #22252b;
    border-radius: 2px;
    box-shadow: none;
    display: block;
    display: flex;
    flex-grow: 1;
    height: auto;
    margin: 3px;
    min-height: 37px;
    padding: 0;
    white-space: normal
}

.search-item.selected,
.search-item:hover {
    background: #282b31
}

.search-item.selected .search-item__body-title,
.search-item:hover .search-item__body-title {
    color: #fff
}

.search-item__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 0 10px
}

.search-item__body-folder-title {
    color: #ccccdca6;
    font-size: 10px;
    line-height: 11px;
    position: relative;
    top: -1px
}

.search-item__icon {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    font-size: 19px;
    padding: 0 2px 0 10px
}

.search-item__tags {
    display: none;
    padding: 10px
}

.search-item__actions {
    flex: 0 0 auto;
    padding: 0 10px 0 0
}

.search-item__actions__item {
    display: inline-block;
    opacity: 0;
    transition: all .2s ease-in-out;
    width: 0
}

.search-item__actions__item .fa-star,
.search-item__actions__item .fa-star-o {
    color: #eb7b18;
    line-height: 37px
}

.search-item:hover .search-item__actions__item {
    opacity: 1;
    width: 15px
}

.search-button-row {
    background: #181b1f;
    padding: 32px 16px;
    text-align: center
}

@media(min-width:769px) {
    .search-item__tags {
        display: flex;
        flex: 1 1 auto;
        flex-wrap: wrap;
        justify-content: flex-end;
        margin-top: -2px
    }
}

.gf-form {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    margin-bottom: 4px;
    position: relative;
    text-align: left
}

.gf-form--offset-1 {
    margin-left: 16px
}

.gf-form--grow {
    flex-grow: 1
}

.gf-form--flex-end {
    justify-content: flex-end
}

.gf-form--align-center {
    align-content: center
}

.gf-form--alt {
    align-items: flex-start;
    flex-direction: column
}

.gf-form--alt .gf-form-label {
    padding: 4px 0
}

.gf-form--has-input-icon {
    margin-right: 4px;
    position: relative
}

.gf-form--has-input-icon .gf-form-input-icon {
    color: #ccccdc99;
    font-size: 18px;
    left: 10px;
    position: absolute;
    top: 8px
}

.gf-form--has-input-icon>input {
    padding-left: 35px
}

.gf-form--has-input-icon>input:focus+.gf-form-input-icon {
    color: #ccccdca6
}

.gf-form--has-input-icon .Select--multi .Select-multi-value-wrapper,
.gf-form--has-input-icon .Select-placeholder {
    padding-left: 30px
}

.gf-form-disabled,
.gf-form-disabled .gf-form-input,
.gf-form-disabled .gf-form-select-wrapper:after,
.gf-form-disabled a {
    color: #ccccdca6
}

.gf-form-group {
    margin-bottom: 40px
}

.gf-form-inline {
    align-content: flex-start;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

.gf-form-inline--nowrap {
    flex-wrap: nowrap
}

.gf-form-inline--xs-view-flex-column {
    flex-direction: row;
    flex-wrap: nowrap
}

@media(max-width:543px) {
    .gf-form-inline--xs-view-flex-column {
        flex-direction: column
    }
}

.gf-form-inline .gf-form-spacing,
.gf-form-inline .select-container {
    margin-right: 4px
}

.gf-form-button-row {
    padding-top: 24px
}

.gf-form-button-row a,
.gf-form-button-row button {
    margin-right: 16px
}

.gf-form-label {
    align-items: center;
    background-color: #22252b;
    border: none;
    border-radius: 2px;
    display: flex;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 500;
    height: 32px;
    justify-content: space-between;
    line-height: 32px;
    margin-right: 4px;
    padding: 0 8px
}

.gf-form-label--grow {
    flex-grow: 1
}

.gf-form-label--error {
    color: #ff5286
}

.gf-form-label--transparent {
    background-color: initial;
    border: 0;
    padding-left: 0;
    text-align: right
}

.gf-form-label--variable {
    color: #6e9fff
}

.gf-form-label--dashlink,
.gf-form-label--variable {
    background: #181b1f;
    border: 1px solid #ccccdc12
}

.gf-form-label--justify-left {
    justify-content: left
}

.gf-form-label--btn {
    border: none;
    border-radius: 2px
}

.gf-form-label--btn:hover {
    background: #282b31;
    color: #ccccdc
}

.gf-form-label:disabled {
    color: #ccccdca6
}

.gf-form-label+.gf-form-label {
    margin-right: 4px
}

.gf-form-pre {
    border: 1px solid #0000;
    border-left: none;
    border-radius: 2px;
    display: block !important;
    flex-grow: 1;
    margin: 0 4px 0 0
}

.gf-form-textarea {
    max-width: 650px
}

.gf-form-input {
    background-clip: padding-box;
    background-color: #111217;
    background-image: none;
    border: 1px solid #ccccdc26;
    border-radius: 2px;
    color: #ccccdc;
    display: block;
    font-size: 14px;
    height: 32px;
    line-height: 18px;
    margin-right: 4px;
    overflow: hidden;
    padding: 0 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

textarea.gf-form-input {
    height: auto;
    min-height: 32px;
    overflow: auto;
    padding: 6px 8px;
    white-space: pre-wrap
}

.gf-form-input::-ms-expand {
    background-color: initial;
    border: 0;
    display: none
}

.gf-form-input:focus {
    border-color: #6e9fff;
    outline: none
}

.gf-form-input::placeholder {
    color: #ccccdc99;
    opacity: 1
}

.gf-form-input:disabled,
.gf-form-input[readonly] {
    background-color: #ccccdc0a;
    opacity: 1
}

.gf-form-input:disabled {
    cursor: not-allowed
}

.gf-form-input.gf-size-auto {
    width: auto
}

.gf-form-input--dropdown {
    align-items: center;
    display: flex;
    padding-right: 24px;
    position: relative
}

.gf-form-input--dropdown:after {
    background-color: initial;
    color: #ccccdc;
    content: "ï";
    font-size: 11px;
    font: normal normal normal 12px/1 FontAwesome;
    pointer-events: none;
    position: absolute;
    right: 11px;
    top: 36%
}

.gf-form-input--small {
    font-size: 12px;
    padding-bottom: 4px;
    padding-top: 4px
}

.gf-form-input--plaintext {
    white-space: unset
}

.gf-form-input--has-help-icon {
    padding-right: 32px
}

.gf-form-hint {
    width: 100%
}

.gf-form-hint-text {
    display: block;
    padding-top: .5em;
    text-align: right
}

.gf-form-select-wrapper {
    background-color: #111217;
    margin-right: 4px;
    position: relative
}

.gf-form-select-wrapper .gf-form-select-icon {
    left: 0 8px;
    margin-top: -7px;
    position: absolute;
    top: 50%;
    z-index: 1
}

.gf-form-select-wrapper .gf-form-select-icon+.gf-form-input {
    background-color: initial;
    padding-left: 32px;
    position: relative;
    z-index: 2
}

.gf-form-select-wrapper .gf-form-select-icon+.gf-form-input option {
    color: #000
}

.gf-form-select-wrapper .gf-form-input {
    line-height: 32px;
    margin-right: 0
}

.gf-form-select-wrapper select.gf-form-input {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 32px;
    text-indent: .01px;
    text-overflow: ""
}

.gf-form-select-wrapper select.gf-form-input:-moz-focusring {
    color: #0000;
    outline: none;
    text-shadow: 0 0 0 #ccccdc
}

.gf-form-select-wrapper select.gf-form-input.ng-empty {
    color: #ccccdca6
}

.gf-form-select-wrapper:after {
    background-color: initial;
    color: #ccccdc;
    content: "ï";
    font: normal normal normal 12px/1 FontAwesome;
    font-size: 11px;
    pointer-events: none;
    position: absolute;
    right: 11px;
    top: 36%
}

.gf-form-select-wrapper--has-help-icon:after {
    right: 32px
}

.gf-form--v-stretch {
    align-items: stretch
}

.gf-form-btn {
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 12px;
    line-height: 18px;
    margin-right: 4px;
    padding: 0 8px
}

.natural-language-inputinput[type=number] {
    font-size: 14px;
    line-height: 18px;
    margin: -6px -5px 0 5px;
    padding: 4px
}

.gf-form-dropdown-typeahead {
    position: relative
}

.gf-form-dropdown-typeahead:after {
    background-color: initial;
    color: #ccccdc;
    content: "ï";
    font: normal normal normal 12px/1 FontAwesome;
    font-size: 11px;
    pointer-events: none;
    position: absolute;
    right: 8px;
    top: 35%
}

.gf-form-help-icon {
    color: #ccccdca6;
    flex-grow: 0
}

.gf-form-help-icon--bold {
    color: #fff;
    padding-left: 0
}

.gf-form-help-icon--right-absolute {
    position: absolute;
    right: 16px;
    top: 6px
}

.gf-form-help-icon--right-normal {
    float: right
}

.gf-form-help-icon--header {
    margin-bottom: 2px
}

.gf-form-help-icon--small-padding {
    padding-left: 4px
}

.gf-form-help-icon:hover {
    color: #ccccdc
}

select.gf-form-input~.gf-form-help-icon {
    right: 10px
}

.gf-form-icon--right-absolute {
    color: #ccccdca6;
    position: absolute;
    right: 16px;
    top: 10px
}

.cta-form {
    background-color: #22252b;
    border-top: 3px solid #1a7f4b;
    margin-bottom: 24px;
    padding: 24px;
    position: relative
}

.cta-form__close {
    background: #0000;
    border: none;
    font-size: 14px;
    padding: 4px 8px 4px 9px;
    position: absolute;
    right: 0;
    top: -2px
}

.cta-form__close:hover {
    color: #fff
}

.cta-form__bar {
    align-content: center;
    align-items: center;
    display: flex;
    margin-bottom: 20px
}

.cta-form__bar-header {
    font-size: 1.2857142857rem;
    padding-right: 20px
}

.navbar-page-btn {
    align-items: center;
    display: flex;
    font-size: 18px;
    margin: 0;
    min-height: 55px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.navbar-page-btn .gicon {
    display: none;
    font-size: 17px;
    line-height: 8px;
    margin-right: 10px;
    opacity: .75;
    position: relative;
    top: -2px
}

@media(min-width:769px) {
    .navbar-page-btn .gicon {
        display: inline-block
    }
}

.navbar-page-btn .navbar-page-btn__folder-icon {
    display: none
}

@media(min-width:769px) {
    .navbar-page-btn .navbar-page-btn__folder-icon {
        display: inline-block
    }
}

.filter-controls-filters {
    display: inline-block;
    margin-bottom: 40px
}

.tab-pane>.filter-controls-filters {
    margin-top: 20px
}

.filter-controls-actions {
    list-style: none;
    margin: 0 0 10px;
    padding: 0
}

.filter-controls-actions>li {
    display: inline-block;
    margin-right: 10px
}

.filter-controls-actions-selected {
    text-transform: uppercase
}

.filter-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.filter-list>li {
    background: #181b1f;
    margin-bottom: 2px;
    padding: 10px
}

.filter-list>li:last-child {
    margin: 0
}

.filter-list-card {
    display: table;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%
}

.filter-list-card>li {
    display: table-cell;
    vertical-align: top
}

.filter-list-card-select {
    padding-right: 5px;
    width: 23px
}

.filter-list-card-title {
    display: block;
    font-size: 16px;
    font-weight: 400
}

.filter-list-card-image {
    padding: 5px 50px 5px 5px;
    width: 50px
}

.filter-list-card-status {
    color: #777;
    font-size: 12px
}

.filter-list-card-state {
    background: 0 bottom no-repeat;
    background-size: 24px auto;
    display: inline-block;
    font-size: 14px;
    padding: 5px 0 0 28px;
    text-transform: uppercase
}

.filter-list-card-state.online {
    background-image: url(/img/online.svg);
    color: #6ccf8e
}

.filter-list-card-state.warn {
    background-image: url(/img/warn-tiny.svg);
    color: #f8d06b
}

.filter-list-card-state.critical {
    background-image: url(/img/critical.svg);
    color: #ff5286
}

.filter-list-card-controls {
    float: right
}

.filter-list-card-config,
.filter-list-card-expand,
.filter-list-card-links {
    display: inline-block;
    vertical-align: middle
}

.filter-list-card-link {
    color: #777;
    display: block;
    text-align: right
}

.filter-list-card-link>a {
    color: #777
}

.filter-list-card-config {
    color: #777;
    font-size: 25px;
    padding: 8px 8px 8px 16px
}

.filter-list-card-config>a {
    color: #777
}

.filter-list-card-expand {
    color: #aaa;
    cursor: pointer;
    font-size: 30px;
    padding: 8px 0 8px 8px;
    text-align: center;
    width: 20px
}

.filter-list-card-details {
    padding: 20px 0 0 30px
}

.filter-list-card-details-heading {
    font-weight: 400
}

.filter-list-card-details-heading>a {
    color: #33a2e5;
    float: right;
    font-size: 12px
}

.filter-table * {
    box-sizing: border-box
}

.filter-table {
    border-collapse: initial;
    width: 100%
}

.filter-table tbody tr:nth-child(odd) {
    background: #1c1f23
}

.filter-table th {
    text-align: left;
    width: auto
}

.filter-table td,
.filter-table th {
    height: 30px;
    line-height: 30px;
    padding: 4px 8px;
    white-space: nowrap
}

.filter-table td.filter-table__switch-cell {
    border-right: 3px solid #111217;
    padding: 0
}

.filter-table .link-td {
    height: 30px;
    line-height: 30px;
    padding: 0;
    white-space: nowrap
}

.filter-table .link-td.filter-table__switch-cell {
    border-right: 3px solid #111217;
    padding: 0
}

.filter-table .link-td a {
    display: block;
    height: 30px;
    padding: 0 8px
}

.filter-table .ellipsis {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.filter-table .expanded {
    border-color: #181b1f
}

.filter-table .expanded>td {
    padding-bottom: 0
}

.filter-table .filter-table__avatar {
    border-radius: 50%;
    height: 25px;
    width: 25px
}

.filter-table--hover tbody tr:hover {
    background: #23262a
}

.filter-table__weak-italic {
    color: #ccccdca6;
    font-style: italic
}

.editor-row {
    vertical-align: top
}

.section {
    margin-right: 42px
}

.section,
div.editor-option {
    display: inline-block;
    vertical-align: top
}

div.editor-option {
    margin-right: 10px
}

div.editor-option label {
    display: block
}

.slate-query-field {
    font-family: Roboto Mono, monospace;
    font-size: 14px;
    height: auto;
    overflow: auto;
    word-break: break-word
}

.slate-query-field__wrapper {
    background-color: #111217;
    background-image: none;
    border: 1px solid #ccccdc26;
    border-radius: 2px;
    color: #ccccdc;
    display: inline-block;
    line-height: 18px;
    min-height: 32px;
    padding: 6px 8px;
    position: relative;
    transition: all .3s;
    width: 100%
}

.slate-query-field__wrapper--disabled {
    background-color: inherit;
    cursor: not-allowed
}

.slate-typeahead .typeahead {
    background: #181b1f;
    border: 1px solid #ccccdc12;
    border-radius: 2px;
    box-shadow: 0 5px 10px 0 #000;
    color: #ccccdc;
    list-style: none;
    max-height: 66vh;
    outline: none;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
    z-index: 1030
}

.slate-typeahead .typeahead-group__title {
    color: #ccccdca6;
    font-size: 12px;
    line-height: 1.5;
    padding: 8px
}

.slate-typeahead .typeahead-item {
    cursor: pointer;
    display: block;
    font-family: Roboto Mono, monospace;
    font-size: 12px;
    height: auto;
    overflow: hidden;
    padding: 8px 8px 8px 16px;
    text-overflow: ellipsis;
    transition: color .3s cubic-bezier(.645, .045, .355, 1), border-color .3s cubic-bezier(.645, .045, .355, 1), background .3s cubic-bezier(.645, .045, .355, 1), padding .15s cubic-bezier(.645, .045, .355, 1);
    white-space: nowrap;
    z-index: 1
}

.slate-typeahead .typeahead-item__selected {
    background-color: #343436
}

.slate-typeahead .typeahead-item__selected .typeahead-item-hint {
    color: #ccccdc;
    font-size: 10px;
    white-space: normal
}

.slate-typeahead .typeahead-match {
    background: inherit;
    border-bottom: 1px solid #ecbb13;
    color: #ecbb13;
    padding: inherit
}

.prism-syntax-highlight .token.block-comment,
.prism-syntax-highlight .token.cdata,
.prism-syntax-highlight .token.comment,
.prism-syntax-highlight .token.doctype,
.prism-syntax-highlight .token.prolog,
.slate-query-field .token.block-comment,
.slate-query-field .token.cdata,
.slate-query-field .token.comment,
.slate-query-field .token.doctype,
.slate-query-field .token.prolog {
    color: #ccccdca6
}

.prism-syntax-highlight .token.entity,
.prism-syntax-highlight .token.variable,
.slate-query-field .token.entity,
.slate-query-field .token.variable {
    color: #ccccdc
}

.prism-syntax-highlight .token.constant,
.prism-syntax-highlight .token.deleted,
.prism-syntax-highlight .token.property,
.prism-syntax-highlight .token.symbol,
.prism-syntax-highlight .token.tag,
.slate-query-field .token.constant,
.slate-query-field .token.deleted,
.slate-query-field .token.property,
.slate-query-field .token.symbol,
.slate-query-field .token.tag {
    color: #ff5286
}

.prism-syntax-highlight .token.attr-value,
.prism-syntax-highlight .token.builtin,
.prism-syntax-highlight .token.char,
.prism-syntax-highlight .token.inserted,
.prism-syntax-highlight .token.selector,
.prism-syntax-highlight .token.string,
.slate-query-field .token.attr-value,
.slate-query-field .token.builtin,
.slate-query-field .token.char,
.slate-query-field .token.inserted,
.slate-query-field .token.selector,
.slate-query-field .token.string {
    color: #6ccf8e
}

.prism-syntax-highlight .token.boolean,
.prism-syntax-highlight .token.number,
.prism-syntax-highlight .token.operator,
.prism-syntax-highlight .token.url,
.slate-query-field .token.boolean,
.slate-query-field .token.number,
.slate-query-field .token.operator,
.slate-query-field .token.url {
    color: #fe85fc
}

.prism-syntax-highlight .token.atrule,
.prism-syntax-highlight .token.attr-name,
.prism-syntax-highlight .token.class-name,
.prism-syntax-highlight .token.function,
.prism-syntax-highlight .token.function-name,
.prism-syntax-highlight .token.keyword,
.slate-query-field .token.atrule,
.slate-query-field .token.attr-name,
.slate-query-field .token.class-name,
.slate-query-field .token.function,
.slate-query-field .token.function-name,
.slate-query-field .token.keyword {
    color: #6e9fff
}

.prism-syntax-highlight .token.important,
.prism-syntax-highlight .token.punctuation,
.prism-syntax-highlight .token.regex,
.slate-query-field .token.important,
.slate-query-field .token.punctuation,
.slate-query-field .token.regex {
    color: #eb7b18
}

.prism-syntax-highlight .token.important,
.slate-query-field .token.important {
    font-weight: 400
}

.prism-syntax-highlight .token.bold,
.slate-query-field .token.bold {
    font-weight: 700
}

.prism-syntax-highlight .token.italic,
.slate-query-field .token.italic {
    font-style: italic
}

.prism-syntax-highlight .token.entity,
.slate-query-field .token.entity {
    cursor: help
}

.prism-syntax-highlight .namespace,
.slate-query-field .namespace {
    opacity: .7
}

.typeahead {
    max-height: 300px;
    overflow-y: auto
}

.typeahead strong {
    color: #ecbb13
}

.modal-backdrop {
    background-color: #ccccdc29;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1050
}

.modal-backdrop,
.modal-backdrop.fade.in {
    opacity: .7
}

.modal {
    background: #111217;
    background-clip: padding-box;
    box-shadow: 0 3px 7px #0000004d;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 750px;
    outline: none;
    position: fixed;
    right: 0;
    top: 10%;
    width: 100%;
    z-index: 1060
}

.modal-header {
    align-items: center;
    background: #111217;
    border-bottom: 1px solid #111217;
    box-shadow: inset 0 -4px 14px #1f1f20;
    display: flex;
    justify-content: space-between
}

.modal-header-title {
    float: left;
    font-size: 18px;
    margin: 0 16px;
    padding-top: 8px
}

.modal-header-close {
    float: right;
    padding: 9px 16px
}

.modal-body {
    position: relative
}

.modal-content {
    padding: 32px
}

.modal-content--has-scroll {
    max-height: calc(100vh - 400px);
    position: relative
}

.modal-form {
    margin-bottom: 0
}

.modal-footer {
    background-color: #181b1f;
    border-top: 1px solid #181b1f;
    padding: 14px 15px 15px;
    text-align: right
}

.modal-footer:after {
    clear: both;
    content: "";
    display: table
}

.confirm-modal,
.modal--narrow {
    max-width: 500px
}

.confirm-modal .confirm-modal-icon {
    color: #1a7f4b;
    font-size: 280%;
    padding-bottom: 20px;
    padding-top: 41px
}

.confirm-modal .confirm-modal-text {
    color: #ccccdc;
    font-size: 1.2857142857rem;
    margin-bottom: 32px;
    padding-top: 16px
}

.confirm-modal .confirm-modal-text2 {
    font-size: 14px;
    padding-top: 16px
}

.confirm-modal .confirm-modal-buttons {
    margin-bottom: 16px
}

.confirm-modal .confirm-modal-buttons button {
    margin-right: 8px
}

.confirm-modal .modal-content-confirm-text {
    margin-bottom: 32px
}

.confirm-modal .modal-content-confirm-text span {
    text-align: center
}

.share-modal-body .share-modal-options {
    display: inline-block;
    margin: 11px 0 33px
}

.share-modal-body .share-modal-big-icon {
    margin-right: 8px;
    margin-top: -7px
}

.share-modal-body .share-modal-info-text {
    margin-top: 5px
}

.share-modal-body .share-modal-info-text strong {
    color: #fff;
    font-weight: 500
}

.share-modal-body .share-modal-header {
    display: flex;
    margin: 0 0 22px
}

.share-modal-body .share-modal-content {
    flex-grow: 1
}

.share-modal-body .share-modal-link {
    display: block;
    max-width: 716px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.dropdown,
.dropup {
    position: relative
}

.dropdown-toggle:active,
.open .dropdown-toggle {
    outline: 0
}

.dropdown-desc {
    color: #8e8e8e;
    font-size: 12px;
    margin-left: 22px;
    position: relative;
    top: -3px;
    white-space: normal;
    width: 250px
}

.caret {
    border-left: 4px solid #0000;
    border-right: 4px solid #0000;
    border-top: 4px solid #ccccdca6;
    content: "";
    display: inline-block;
    height: 0;
    vertical-align: top;
    width: 0
}

.dropdown .caret {
    margin-left: 2px;
    margin-top: 8px
}

.dropdown-menu {
    background-color: #181b1f;
    border: 1px solid #ccccdc12;
    display: none;
    float: left;
    left: 0;
    list-style: none;
    margin: 2px 0 0;
    min-width: 140px;
    position: absolute;
    text-align: left;
    top: 100%;
    z-index: 1030
}

.dropdown-menu.pull-left {
    left: auto;
    right: 0
}

.dropdown-menu .divider {
    background-color: #ccccdc12;
    border-bottom: 1px solid #ccccdc12;
    height: 1px;
    margin: 8px 0;
    overflow: hidden
}

.dropdown-menu>li>a,
.dropdown-menu>li>button {
    clear: both;
    color: #ccccdc;
    display: block;
    font-weight: 400;
    line-height: 1.5;
    padding: 3px 20px 3px 15px;
    white-space: nowrap
}

.dropdown-menu>li>a i,
.dropdown-menu>li>button i {
    color: #ccccdc99;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: 3px
}

.dropdown-menu>li>a .gicon,
.dropdown-menu>li>button .gicon {
    height: 14px;
    opacity: .7;
    width: 18px
}

.dropdown-menu--menu {
    background: #181b1f;
    box-shadow: 0 8px 24px #010409;
    margin-top: 0
}

.dropdown-menu--menu>li>a,
.dropdown-menu--menu>li>button {
    border-left: 2px solid #0000;
    display: flex;
    padding: 5px 10px
}

.dropdown-menu--menu>li>a:hover,
.dropdown-menu--menu>li>button:hover {
    background: #ccccdc29 !important;
    color: #fff
}

.dropdown-item-text {
    flex-grow: 1
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover,
.dropdown-menu>li>button:focus,
.dropdown-menu>li>button:hover,
.dropdown-submenu:focus>a,
.dropdown-submenu:focus>button,
.dropdown-submenu:hover>a,
.dropdown-submenu:hover>button {
    background-color: #343436;
    color: #fff;
    text-decoration: none
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>button,
.dropdown-menu>.active>button:focus,
.dropdown-menu>.active>button:hover {
    background-color: #343436;
    color: #fff;
    outline: 0;
    text-decoration: none
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>button,
.dropdown-menu>.disabled>button:focus,
.dropdown-menu>.disabled>button:hover {
    color: #8e8e8e
}

.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>button:focus,
.dropdown-menu>.disabled>button:hover {
    background-color: initial;
    background-image: none;
    cursor: default;
    text-decoration: none
}

.open.cascade-open .dropdown-menu,
.open>.dropdown-menu,
.open>.dropdown>.dropdown-menu {
    display: block
}

.dropdown-backdrop {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1020
}

.pull-right>.dropdown-menu {
    left: auto;
    right: 0
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-bottom: 4px solid #000;
    border-top: 0;
    content: ""
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    bottom: 0;
    margin-bottom: 1px;
    top: auto
}

.dropdown-submenu {
    position: relative
}

.dropdown-submenu>.dropdown-menu {
    border-radius: 0 6px 6px 6px;
    left: 100%;
    margin-left: -1px;
    margin-top: 0;
    top: 0
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block
}

.dropup .dropdown-submenu>.dropdown-menu {
    border-radius: 5px 5px 5px 0;
    bottom: 0;
    margin-bottom: -2px;
    margin-top: 0;
    top: auto
}

.dropdown-submenu:hover>a:after,
.dropdown-submenu:hover>button:after {
    border-left-color: #fff
}

.dropdown-submenu.pull-left {
    float: none !important
}

.dropdown-submenu.pull-left>.dropdown-menu {
    border-radius: 6px 0 6px 6px;
    left: -100%;
    margin-left: 2px;
    width: 100%
}

.dropdown-submenu.pull-right {
    float: none !important
}

.dropdown .dropdown-menu .nav-header {
    padding-left: 20px;
    padding-right: 20px
}

.typeahead {
    z-index: 1030
}

.dropdown-menu-item-shortcut {
    color: #ccccdca6;
    display: block;
    margin-left: 16px;
    min-width: 47px
}

.dropdown-menu.dropdown-menu--new li a,
.dropdown-menu.dropdown-menu--new li button {
    background: #181b1f;
    border-left: 2px solid #181b1f;
    padding: 8px 16px
}

.dropdown-menu.dropdown-menu--new li a i,
.dropdown-menu.dropdown-menu--new li button i {
    display: inline-block;
    padding-right: 21px
}

.dropdown-menu.dropdown-menu--new li a:hover,
.dropdown-menu.dropdown-menu--new li button:hover {
    background: #22252b;
    color: #fff
}

.page-dashboard .footer {
    display: none
}

.footer {
    font-size: 12px;
    padding: 16px 0;
    position: relative;
    width: 98%
}

.footer,
.footer a {
    color: #8e8e8e
}

.footer a:hover {
    color: #d8d9da
}

.footer a i {
    display: inline-block;
    padding-right: 2px
}

.footer ul {
    list-style: none
}

.footer li {
    display: inline-block
}

.footer li:after {
    content: " | ";
    padding: 0 8px
}

.footer li:last-child:after {
    content: "";
    padding-left: 0
}

.login-page .footer {
    bottom: 16px;
    color: #ccccdc;
    display: block;
    padding: 16px 0;
    position: absolute
}

.login-page .footer a {
    color: #ccccdc
}

.login-page .footer a:hover {
    color: #fff
}

@media(max-width:991px) {
    .login-page .footer {
        display: none
    }
}

.grafana-info-box {
    background-color: #22252b;
    border-left: 3px solid #3d71d9;
    box-shadow: none;
    flex-grow: 1;
    margin-right: 4px;
    padding: 24px;
    position: relative
}

.grafana-info-box,
.grafana-info-box h5 {
    margin-bottom: 16px
}

.grafana-info-box ul {
    padding-left: 24px
}

.grafana-info-box code {
    background-color: #141414;
    border: 1px solid #343436;
    border-radius: 4px;
    color: #ccccdc;
    font-family: Roboto Mono, monospace;
    font-size: 12px
}

.grafana-info-box p:last-child {
    margin-bottom: 0
}

.grafana-info-box--max-lg {
    max-width: 992px
}

.grafana-info-box__close {
    color: #ccccdc !important;
    display: block;
    height: 0;
    position: relative;
    text-align: center;
    top: -9px
}

.drop-element.drop-error {
    max-height: 100%;
    max-width: 100%
}

.drop-element.drop-error .drop-content {
    word-wrap: break-word;
    background: #d10e5c;
    border: 1px solid #d10e5c;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    max-width: 280px;
    padding: 8px;
    position: relative
}

.drop-element.drop-error .drop-content:before {
    border: 10px solid #0000;
    content: "";
    display: block;
    height: 0;
    position: absolute;
    width: 0
}

.drop-element.drop-error.drop-wide .drop-content {
    max-width: 560px
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-center .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-center .drop-content:before {
    border-top-color: #d10e5c;
    left: 50%;
    margin-left: -10px;
    top: 100%
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-center .drop-content {
    margin-top: 10px
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-center .drop-content:before {
    border-bottom-color: #d10e5c;
    bottom: 100%;
    left: 50%;
    margin-left: -10px
}

.drop-element.drop-error.drop-element-attached-right.drop-element-attached-middle .drop-content {
    margin-right: 10px
}

.drop-element.drop-error.drop-element-attached-right.drop-element-attached-middle .drop-content:before {
    border-left-color: #d10e5c;
    left: 100%;
    margin-top: -10px;
    top: 50%
}

.drop-element.drop-error.drop-element-attached-left.drop-element-attached-middle .drop-content {
    margin-left: 10px
}

.drop-element.drop-error.drop-element-attached-left.drop-element-attached-middle .drop-content:before {
    border-right-color: #d10e5c;
    margin-top: -10px;
    right: 100%;
    top: 50%
}

.drop-element.drop-error.drop-element-attached-left.drop-target-attached-center .drop-content {
    left: -20px
}

.drop-element.drop-error.drop-element-attached-right.drop-target-attached-center .drop-content {
    left: 20px
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-left.drop-target-attached-middle .drop-content {
    margin-top: 10px
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-left.drop-target-attached-middle .drop-content:before {
    border-bottom-color: #d10e5c;
    bottom: 100%;
    left: 10px
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-right.drop-target-attached-middle .drop-content {
    margin-top: 10px
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-right.drop-target-attached-middle .drop-content:before {
    border-bottom-color: #d10e5c;
    bottom: 100%;
    right: 10px
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-middle .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-middle .drop-content:before {
    border-top-color: #d10e5c;
    left: 10px;
    top: 100%
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-middle .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-middle .drop-content:before {
    border-top-color: #d10e5c;
    right: 10px;
    top: 100%
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-left.drop-target-attached-bottom .drop-content {
    margin-top: 10px
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-left.drop-target-attached-bottom .drop-content:before {
    border-bottom-color: #d10e5c;
    bottom: 100%;
    left: 10px
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-right.drop-target-attached-bottom .drop-content {
    margin-top: 10px
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-right.drop-target-attached-bottom .drop-content:before {
    border-bottom-color: #d10e5c;
    bottom: 100%;
    right: 10px
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-top .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-top .drop-content:before {
    border-top-color: #d10e5c;
    left: 10px;
    top: 100%
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-top .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-top .drop-content:before {
    border-top-color: #d10e5c;
    right: 10px;
    top: 100%
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-right.drop-target-attached-left .drop-content {
    margin-right: 10px
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-right.drop-target-attached-left .drop-content:before {
    border-left-color: #d10e5c;
    left: 100%;
    top: 10px
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-left.drop-target-attached-right .drop-content {
    margin-left: 10px
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-left.drop-target-attached-right .drop-content:before {
    border-right-color: #d10e5c;
    right: 100%;
    top: 10px
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-left .drop-content {
    margin-right: 10px
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-left .drop-content:before {
    border-left-color: #d10e5c;
    bottom: 10px;
    left: 100%
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-right .drop-content {
    margin-left: 10px
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-right .drop-content:before {
    border-right-color: #d10e5c;
    bottom: 10px;
    right: 100%
}

.drop-element.drop-popover {
    max-height: 100%;
    max-width: 100%
}

.drop-element.drop-popover .drop-content {
    word-wrap: break-word;
    background: #181b1f;
    border: 1px solid #ccccdc12;
    border-radius: 6px;
    color: #ccccdc;
    font-weight: 500;
    max-width: 280px;
    padding: 8px;
    position: relative
}

.drop-element.drop-popover .drop-content:before {
    border: 10px solid #0000;
    content: "";
    display: block;
    height: 0;
    position: absolute;
    width: 0
}

.drop-element.drop-popover.drop-wide .drop-content {
    max-width: 560px
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-center .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-center .drop-content:before {
    border-top-color: #ccccdc12;
    left: 50%;
    margin-left: -10px;
    top: 100%
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-center .drop-content {
    margin-top: 10px
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-center .drop-content:before {
    border-bottom-color: #ccccdc12;
    bottom: 100%;
    left: 50%;
    margin-left: -10px
}

.drop-element.drop-popover.drop-element-attached-right.drop-element-attached-middle .drop-content {
    margin-right: 10px
}

.drop-element.drop-popover.drop-element-attached-right.drop-element-attached-middle .drop-content:before {
    border-left-color: #ccccdc12;
    left: 100%;
    margin-top: -10px;
    top: 50%
}

.drop-element.drop-popover.drop-element-attached-left.drop-element-attached-middle .drop-content {
    margin-left: 10px
}

.drop-element.drop-popover.drop-element-attached-left.drop-element-attached-middle .drop-content:before {
    border-right-color: #ccccdc12;
    margin-top: -10px;
    right: 100%;
    top: 50%
}

.drop-element.drop-popover.drop-element-attached-left.drop-target-attached-center .drop-content {
    left: -20px
}

.drop-element.drop-popover.drop-element-attached-right.drop-target-attached-center .drop-content {
    left: 20px
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-left.drop-target-attached-middle .drop-content {
    margin-top: 10px
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-left.drop-target-attached-middle .drop-content:before {
    border-bottom-color: #ccccdc12;
    bottom: 100%;
    left: 10px
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-right.drop-target-attached-middle .drop-content {
    margin-top: 10px
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-right.drop-target-attached-middle .drop-content:before {
    border-bottom-color: #ccccdc12;
    bottom: 100%;
    right: 10px
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-middle .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-middle .drop-content:before {
    border-top-color: #ccccdc12;
    left: 10px;
    top: 100%
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-middle .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-middle .drop-content:before {
    border-top-color: #ccccdc12;
    right: 10px;
    top: 100%
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-left.drop-target-attached-bottom .drop-content {
    margin-top: 10px
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-left.drop-target-attached-bottom .drop-content:before {
    border-bottom-color: #ccccdc12;
    bottom: 100%;
    left: 10px
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-right.drop-target-attached-bottom .drop-content {
    margin-top: 10px
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-right.drop-target-attached-bottom .drop-content:before {
    border-bottom-color: #ccccdc12;
    bottom: 100%;
    right: 10px
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-top .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-top .drop-content:before {
    border-top-color: #ccccdc12;
    left: 10px;
    top: 100%
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-top .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-top .drop-content:before {
    border-top-color: #ccccdc12;
    right: 10px;
    top: 100%
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-right.drop-target-attached-left .drop-content {
    margin-right: 10px
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-right.drop-target-attached-left .drop-content:before {
    border-left-color: #ccccdc12;
    left: 100%;
    top: 10px
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-left.drop-target-attached-right .drop-content {
    margin-left: 10px
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-left.drop-target-attached-right .drop-content:before {
    border-right-color: #ccccdc12;
    right: 100%;
    top: 10px
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-left .drop-content {
    margin-right: 10px
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-left .drop-content:before {
    border-left-color: #ccccdc12;
    bottom: 10px;
    left: 100%
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-right .drop-content {
    margin-left: 10px
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-right .drop-content:before {
    border-right-color: #ccccdc12;
    bottom: 10px;
    right: 100%
}

.drop-element.drop-help {
    max-height: 100%;
    max-width: 100%
}

.drop-element.drop-help .drop-content {
    word-wrap: break-word;
    background: #22252b;
    border: 1px solid #22252b;
    border-radius: 6px;
    color: #ccccdc;
    font-weight: 500;
    max-width: 280px;
    padding: 8px;
    position: relative
}

.drop-element.drop-help .drop-content:before {
    border: 10px solid #0000;
    content: "";
    display: block;
    height: 0;
    position: absolute;
    width: 0
}

.drop-element.drop-help.drop-wide .drop-content {
    max-width: 560px
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-center .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-center .drop-content:before {
    border-top-color: #22252b;
    left: 50%;
    margin-left: -10px;
    top: 100%
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-center .drop-content {
    margin-top: 10px
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-center .drop-content:before {
    border-bottom-color: #22252b;
    bottom: 100%;
    left: 50%;
    margin-left: -10px
}

.drop-element.drop-help.drop-element-attached-right.drop-element-attached-middle .drop-content {
    margin-right: 10px
}

.drop-element.drop-help.drop-element-attached-right.drop-element-attached-middle .drop-content:before {
    border-left-color: #22252b;
    left: 100%;
    margin-top: -10px;
    top: 50%
}

.drop-element.drop-help.drop-element-attached-left.drop-element-attached-middle .drop-content {
    margin-left: 10px
}

.drop-element.drop-help.drop-element-attached-left.drop-element-attached-middle .drop-content:before {
    border-right-color: #22252b;
    margin-top: -10px;
    right: 100%;
    top: 50%
}

.drop-element.drop-help.drop-element-attached-left.drop-target-attached-center .drop-content {
    left: -20px
}

.drop-element.drop-help.drop-element-attached-right.drop-target-attached-center .drop-content {
    left: 20px
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-left.drop-target-attached-middle .drop-content {
    margin-top: 10px
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-left.drop-target-attached-middle .drop-content:before {
    border-bottom-color: #22252b;
    bottom: 100%;
    left: 10px
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-right.drop-target-attached-middle .drop-content {
    margin-top: 10px
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-right.drop-target-attached-middle .drop-content:before {
    border-bottom-color: #22252b;
    bottom: 100%;
    right: 10px
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-middle .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-middle .drop-content:before {
    border-top-color: #22252b;
    left: 10px;
    top: 100%
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-middle .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-middle .drop-content:before {
    border-top-color: #22252b;
    right: 10px;
    top: 100%
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-left.drop-target-attached-bottom .drop-content {
    margin-top: 10px
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-left.drop-target-attached-bottom .drop-content:before {
    border-bottom-color: #22252b;
    bottom: 100%;
    left: 10px
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-right.drop-target-attached-bottom .drop-content {
    margin-top: 10px
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-right.drop-target-attached-bottom .drop-content:before {
    border-bottom-color: #22252b;
    bottom: 100%;
    right: 10px
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-top .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-top .drop-content:before {
    border-top-color: #22252b;
    left: 10px;
    top: 100%
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-top .drop-content {
    margin-bottom: 10px
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-top .drop-content:before {
    border-top-color: #22252b;
    right: 10px;
    top: 100%
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-right.drop-target-attached-left .drop-content {
    margin-right: 10px
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-right.drop-target-attached-left .drop-content:before {
    border-left-color: #22252b;
    left: 100%;
    top: 10px
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-left.drop-target-attached-right .drop-content {
    margin-left: 10px
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-left.drop-target-attached-right .drop-content:before {
    border-right-color: #22252b;
    right: 100%;
    top: 10px
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-left .drop-content {
    margin-right: 10px
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-left .drop-content:before {
    border-left-color: #22252b;
    bottom: 10px;
    left: 100%
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-right .drop-content {
    margin-left: 10px
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-right .drop-content:before {
    border-right-color: #22252b;
    bottom: 10px;
    right: 100%
}

.drop-element.drop-help {
    opacity: 0;
    transform: translateZ(0);
    transition: opacity .1s
}

.drop-element.drop-help .drop-content {
    transform: scale(.8) translateZ(0);
    transition: transform .2s cubic-bezier(0, 0, .265, 1)
}

.drop-element.drop-help.drop-open {
    display: none
}

.drop-element.drop-help.drop-open-transitionend {
    display: block
}

.drop-element.drop-help.drop-after-open {
    opacity: 1;
    transition: none
}

.drop-element.drop-help.drop-after-open .drop-content {
    transform: scale(1) translateZ(0)
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-center .drop-content {
    transform-origin: 50% 100%
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-center .drop-content {
    transform-origin: 50% 0
}

.drop-element.drop-help.drop-element-attached-right.drop-element-attached-middle .drop-content {
    transform-origin: 100% 50%
}

.drop-element.drop-help.drop-element-attached-left.drop-element-attached-middle .drop-content {
    transform-origin: 0 50%
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-left.drop-target-attached-bottom .drop-content {
    transform-origin: 0 0
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-right.drop-target-attached-bottom .drop-content {
    transform-origin: 100% 0
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-top .drop-content {
    transform-origin: 0 100%
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-top .drop-content {
    transform-origin: 100% 100%
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-right.drop-target-attached-left .drop-content {
    transform-origin: 100% 0
}

.drop-element.drop-help.drop-element-attached-top.drop-element-attached-left.drop-target-attached-right .drop-content {
    transform-origin: 0 0
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-left .drop-content {
    transform-origin: 100% 100%
}

.drop-element.drop-help.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-right .drop-content {
    transform-origin: 0 100%
}

.drop-element.drop-error {
    opacity: 0;
    transform: translateZ(0);
    transition: opacity .1s
}

.drop-element.drop-error .drop-content {
    transform: scale(.8) translateZ(0);
    transition: transform .2s cubic-bezier(0, 0, .265, 1)
}

.drop-element.drop-error.drop-open {
    display: none
}

.drop-element.drop-error.drop-open-transitionend {
    display: block
}

.drop-element.drop-error.drop-after-open {
    opacity: 1;
    transition: none
}

.drop-element.drop-error.drop-after-open .drop-content {
    transform: scale(1) translateZ(0)
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-center .drop-content {
    transform-origin: 50% 100%
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-center .drop-content {
    transform-origin: 50% 0
}

.drop-element.drop-error.drop-element-attached-right.drop-element-attached-middle .drop-content {
    transform-origin: 100% 50%
}

.drop-element.drop-error.drop-element-attached-left.drop-element-attached-middle .drop-content {
    transform-origin: 0 50%
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-left.drop-target-attached-bottom .drop-content {
    transform-origin: 0 0
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-right.drop-target-attached-bottom .drop-content {
    transform-origin: 100% 0
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-top .drop-content {
    transform-origin: 0 100%
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-top .drop-content {
    transform-origin: 100% 100%
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-right.drop-target-attached-left .drop-content {
    transform-origin: 100% 0
}

.drop-element.drop-error.drop-element-attached-top.drop-element-attached-left.drop-target-attached-right .drop-content {
    transform-origin: 0 0
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-left .drop-content {
    transform-origin: 100% 100%
}

.drop-element.drop-error.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-right .drop-content {
    transform-origin: 0 100%
}

.drop-element.drop-popover {
    opacity: 0;
    transform: translateZ(0);
    transition: opacity .1s
}

.drop-element.drop-popover .drop-content {
    transform: scale(.8) translateZ(0);
    transition: transform .2s cubic-bezier(0, 0, .265, 1)
}

.drop-element.drop-popover.drop-open {
    display: none
}

.drop-element.drop-popover.drop-open-transitionend {
    display: block
}

.drop-element.drop-popover.drop-after-open {
    opacity: 1;
    transition: none
}

.drop-element.drop-popover.drop-after-open .drop-content {
    transform: scale(1) translateZ(0)
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-center .drop-content {
    transform-origin: 50% 100%
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-center .drop-content {
    transform-origin: 50% 0
}

.drop-element.drop-popover.drop-element-attached-right.drop-element-attached-middle .drop-content {
    transform-origin: 100% 50%
}

.drop-element.drop-popover.drop-element-attached-left.drop-element-attached-middle .drop-content {
    transform-origin: 0 50%
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-left.drop-target-attached-bottom .drop-content {
    transform-origin: 0 0
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-right.drop-target-attached-bottom .drop-content {
    transform-origin: 100% 0
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-top .drop-content {
    transform-origin: 0 100%
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-top .drop-content {
    transform-origin: 100% 100%
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-right.drop-target-attached-left .drop-content {
    transform-origin: 100% 0
}

.drop-element.drop-popover.drop-element-attached-top.drop-element-attached-left.drop-target-attached-right .drop-content {
    transform-origin: 0 0
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-right.drop-target-attached-left .drop-content {
    transform-origin: 100% 100%
}

.drop-element.drop-popover.drop-element-attached-bottom.drop-element-attached-left.drop-target-attached-right .drop-content {
    transform-origin: 0 100%
}

.drop-element {
    display: none;
    opacity: 0;
    position: absolute;
    z-index: 10000
}

.drop-element.drop-open {
    display: block
}

.drop-element,
.drop-element * {
    box-sizing: border-box
}

.drop-popover-close {
    font-size: 18px;
    position: absolute;
    right: 0;
    top: -5px
}

.drop-help a {
    color: #f4f5f8
}

.drop-help a:hover {
    color: #fff
}

.drop-hide-out-of-bounds.drop-open-transitionend.drop-help.drop-out-of-bounds,
.drop-hide-out-of-bounds.drop-open.drop-help.drop-out-of-bounds {
    display: none
}

.drop-element.drop-popover .drop-content {
    box-shadow: 0 8px 24px #010409
}

.drop-element.drop-popover--form .drop-content {
    max-width: none;
    padding: 0
}

.drop-element.drop-popover--annotation .drop-content {
    padding: 0
}

.drop-popover.gf-color-picker .drop-content {
    width: 210px
}

.drop-popover.drop-popover--transparent .drop-content {
    background: none;
    border: none;
    max-width: none;
    padding: 0
}

.drop-popover.drop-popover--transparent .drop-content:before {
    display: none
}

.query-keyword {
    color: #6e9fff !important;
    font-weight: 500
}

.query-segment-operator {
    color: #eb7b18 !important
}

.query-placeholder {
    color: #8e8e8e
}

input[type=text].tight-form-func-param {
    background: #0000;
    border: none;
    font-size: 12px;
    margin: 0;
    padding: 0
}

.tight-form-func-controls {
    text-align: center
}

.tight-form-func-controls .fa-arrow-left {
    float: left;
    position: relative;
    top: 2px
}

.tight-form-func-controls .fa-arrow-right {
    float: right;
    position: relative;
    top: 2px
}

.tight-form-func-controls .fa-remove {
    margin-left: 10px
}

.grafana-metric-options {
    margin-top: 25px
}

.tight-form-func {
    background: #22252b
}

.tight-form-func.show-function-controls {
    min-width: 100px;
    padding-top: 5px;
    text-align: center
}

.rst-text:before {
    content: " "
}

.rst-unknown.rst-directive {
    word-wrap: break-word;
    font-family: monospace;
    margin-bottom: 16px
}

.rst-interpreted_text {
    display: inline;
    font-family: monospace
}

.rst-bullet-list {
    margin-bottom: 16px;
    padding-left: 24px
}

.rst-paragraph:last-child {
    margin-bottom: 0
}

.drop-element.drop-popover.drop-function-def .drop-content {
    max-width: 416px
}

.rst-literal-block .rst-text {
    display: block
}

.query-editor-row {
    margin-bottom: 2px
}

.query-editor-row:hover .query-editor-row__actions {
    display: flex
}

.query-editor-row--disabled .query-keyword {
    color: #ccccdca6
}

.query-editor-row__action {
    background: #0000;
    border: none;
    box-shadow: none;
    margin-left: 3px
}

.query-editor-row__action:hover {
    color: #ccccdc
}

.query-editor-row__body {
    background: #111217;
    margin: 2px 0 10px 40px
}

.query-editor-row__body--collapsed {
    display: none
}

.tabbed-view {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%
}

.tabbed-view.tabbed-view--new {
    height: 100%;
    padding: 0
}

.tabbed-view-header {
    border-bottom: 1px solid #111217;
    box-shadow: inset 0 -4px 14px #1f1f20;
    padding: 0 16px
}

.tabbed-view-header:after {
    clear: both;
    content: "";
    display: table
}

.tabbed-view-title {
    float: left;
    margin: 0 48px 0 0;
    padding-top: 8px
}

.tabbed-view-close-btn {
    background-color: initial;
    border: none;
    color: #ccccdc;
    float: right;
    margin: 0;
    padding: 10px 15px 9px
}

.tabbed-view-close-btn i {
    font-size: 120%
}

.tabbed-view-close-btn:hover {
    color: #fff
}

.tabbed-view-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 32px 16px 16px
}

.tabbed-view-body--small {
    min-height: 0;
    padding-bottom: 0
}

.section-heading {
    font-size: 14px;
    margin-bottom: 8px
}

.query-part {
    background-color: #22252b
}

.query-part.show-function-controls {
    min-width: 100px;
    padding-top: 5px;
    text-align: center
}

.query-part .query-part__last {
    display: none
}

.query-part:hover .query-part__last {
    display: inline
}

.query-part:hover {
    background: #282b31
}

.query-part__link {
    cursor: pointer
}

.query-part__link--no-value {
    color: #ccccdca6
}

json-tree .json-tree-key {
    vertical-align: middle
}

json-tree .expandable {
    position: relative
}

json-tree .expandable:before {
    pointer-events: none
}

json-tree .expandable:before,
json-tree .expandable>.json-tree-key {
    cursor: pointer
}

json-tree .json-tree-branch-preview {
    display: inline-block;
    vertical-align: middle
}

json-tree ul {
    padding-left: 16px
}

json-tree li,
json-tree ul {
    list-style: none
}

json-tree li {
    line-height: 18px
}

json-tree .json-tree-key {
    color: #6e9fff;
    padding: 5px 10px 5px 15px
}

json-tree .json-tree-key:after {
    content: ":"
}

json-tree json-node.expandable:before {
    content: "â¶";
    font-size: 8px;
    left: 0;
    position: absolute;
    transition: transform .1s ease
}

json-tree json-node.expandable.expanded:before {
    transform: rotate(90deg)
}

json-tree .json-tree-branch-preview,
json-tree .json-tree-leaf-value {
    word-break: break-all
}

json-tree .json-tree-branch-preview {
    font-style: italic;
    height: 1.5em;
    max-width: 40%;
    opacity: .7;
    overflow: hidden
}

.edit-tab-with-sidemenu {
    display: flex;
    flex-direction: row
}

.edit-tab-content {
    flex-grow: 1;
    min-width: 0
}

.edit-sidemenu-aside {
    margin-right: 32px
}

.edit-sidemenu {
    list-style: none;
    width: 100%
}

.edit-sidemenu li.active {
    border-image: linear-gradient(#f05a28 30%, #fbca0a 99%);
    border-image-slice: 1;
    border-style: solid;
    border-bottom: 0;
    border-left-width: 2px;
    border-right: 0;
    border-top: 0
}

.edit-sidemenu a {
    color: #ccccdc;
    display: block;
    margin: 0 0 1.5rem 1rem;
    white-space: nowrap
}

.column-styles-heading {
    border-bottom: 1px solid #555
}

@media(max-width:768px) {
    .edit-tab-with-sidemenu {
        flex-direction: column
    }
    .edit-sidemenu-aside {
        margin-bottom: 2rem;
        width: 100%
    }
    .edit-sidemenu li {
        float: left
    }
    .edit-sidemenu a {
        margin: .3rem 1rem
    }
}

.dashboard-row {
    align-items: center;
    display: flex;
    height: 100%
}

.dashboard-row--collapsed {
    background: #181b1f
}

.dashboard-row--collapsed .dashboard-row__panel_count {
    display: inline-block
}

.dashboard-row--collapsed .dashboard-row__drag {
    opacity: 1;
    visibility: visible
}

.dashboard-row--collapsed .dashboard-row__actions {
    visibility: hidden
}

.dashboard-row--collapsed .dashboard-row__toggle-target {
    cursor: pointer;
    flex: 1;
    margin-right: 15px
}

.dashboard-row:hover .dashboard-row__actions {
    opacity: 1;
    visibility: visible
}

.dashboard-row__title {
    color: #ccccdc;
    flex-grow: 0;
    font-size: 1.1428571429rem;
    font-weight: 500
}

.dashboard-row__title .fa {
    color: #ccccdca6;
    font-size: 10px;
    padding: 0 8px
}

.dashboard-row__actions {
    color: #ccccdca6;
    opacity: 0;
    transition: opacity .2s ease-in .2s;
    visibility: hidden
}

.dashboard-row__actions a {
    color: #ccccdca6;
    padding-left: 16px
}

.dashboard-row__actions a:hover {
    color: #fff
}

.dashboard-row__panel_count {
    color: #ccccdca6;
    display: none;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    padding-left: 16px
}

.dashboard-row__drag {
    background: url(../img/grab_dark.svg) no-repeat 50% 50%;
    background-size: 8px;
    cursor: move;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    visibility: hidden;
    width: 16px
}

.json-formatter-row {
    font-family: monospace
}

.json-formatter-row,
.json-formatter-row a,
.json-formatter-row a:hover {
    color: #ccccdc;
    text-decoration: none
}

.json-formatter-row .json-formatter-row {
    margin-left: 16px
}

.json-formatter-row .json-formatter-children.json-formatter-empty {
    margin-left: 16px;
    opacity: .5
}

.json-formatter-row .json-formatter-children.json-formatter-empty:after {
    display: none
}

.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {
    content: "No properties"
}

.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {
    content: "[]"
}

.json-formatter-row .json-formatter-string {
    word-wrap: break-word;
    color: #23d662;
    white-space: pre-wrap;
    word-break: break-all
}

.json-formatter-row .json-formatter-boolean,
.json-formatter-row .json-formatter-number {
    color: #6e9fff
}

.json-formatter-row .json-formatter-null {
    color: #eec97d
}

.json-formatter-row .json-formatter-undefined {
    color: #ef8fbe
}

.json-formatter-row .json-formatter-function {
    color: #fd48cb
}

.json-formatter-row .json-formatter-date {
    background-color: fade(#ccccdc, 5%)
}

.json-formatter-row .json-formatter-url {
    color: #027bff;
    cursor: pointer;
    text-decoration: underline
}

.json-formatter-row .json-formatter-bracket {
    color: #9494ff
}

.json-formatter-row .json-formatter-key {
    color: #23a0db;
    cursor: pointer;
    margin-right: 4px;
    padding-right: 2px
}

.json-formatter-row .json-formatter-constructor-name {
    cursor: pointer
}

.json-formatter-row .json-formatter-array-comma {
    margin-right: 4px
}

.json-formatter-row .json-formatter-toggler {
    cursor: pointer;
    font-size: 10px;
    line-height: 16px;
    opacity: .6;
    padding-right: 2px;
    vertical-align: middle
}

.json-formatter-row .json-formatter-toggler:after {
    content: "âº";
    display: inline-block;
    transition: transform .1s ease-in
}

.json-formatter-row>a>.json-formatter-preview-text {
    font-style: italic;
    opacity: 0;
    transition: opacity .15s ease-in
}

.json-formatter-row:hover>a>.json-formatter-preview-text {
    opacity: .6
}

.json-formatter-row.json-formatter-open>.json-formatter-toggler-link .json-formatter-toggler:after {
    transform: rotate(90deg)
}

.json-formatter-row.json-formatter-open>.json-formatter-children:after {
    display: inline-block
}

.json-formatter-row.json-formatter-open>a>.json-formatter-preview-text {
    display: none
}

.json-formatter-row.json-formatter-open.json-formatter-empty:after {
    display: block
}

.gf-code-editor {
    flex-grow: 1;
    margin-right: 4px;
    min-height: 36px;
    min-width: 280px
}

.gf-code-editor.ace_editor {
    border: 1px solid #ccccdc26;
    border-radius: 2px;
    font-family: Roboto Mono, monospace;
    font-size: 14px;
    min-height: 50px
}

.gf-code-editor .ace_content {
    z-index: 0
}

.ace_editor.ace_autocomplete {
    background-color: #181b1f !important;
    border: 1px solid #ccccdc12 !important;
    color: #ccccdc !important;
    font-family: Roboto Mono, monospace;
    font-size: 14px;
    width: 550px !important
}

.ace_editor.ace_autocomplete .ace_scroller .ace_active-line,
.ace_editor.ace_autocomplete .ace_scroller .ace_line-hover,
.ace_editor.ace_autocomplete .ace_scroller .ace_selected {
    background-color: #343436 !important;
    color: #fff
}

.ace_editor.ace_autocomplete .ace_scroller .ace_line-hover {
    border-color: #0000
}

.ace_editor.ace_autocomplete .ace_scroller .ace_completion-highlight {
    color: #ecbb13
}

.ace_editor.ace_autocomplete .ace_scroller .ace_rightAlignedText {
    color: #ccccdca6;
    z-index: 0
}

.ace_tooltip.ace_doc-tooltip {
    background-color: #22252b;
    background-image: none;
    border: 1px solid #ccccdc12;
    color: #ccccdc;
    font-family: Roboto Mono, monospace;
    font-size: 12px;
    padding: 8px 16px
}

.ace_tooltip.ace_doc-tooltip hr {
    background-color: #ccccdc;
    margin: 8px 0
}

.ace_tooltip.ace_doc-tooltip code {
    margin: 0;
    padding: 0 1px
}

.ace_tooltip {
    border-radius: 3px
}

.ace_hidden-cursors .ace_cursor {
    opacity: 0 !important
}

.react-resizable-handle {
    visibility: hidden
}

.react-grid-item {
    touch-action: auto !important
}

.react-grid-item:hover .react-resizable-handle {
    visibility: visible
}

.panel-in-fullscreen .react-grid-item {
    display: none !important;
    transition-property: none !important
}

.panel-in-fullscreen .react-grid-item--fullscreen {
    display: block !important;
    position: unset !important;
    transform: translate(0) !important
}

.panel-in-fullscreen .panel-header:hover {
    background-color: inherit
}

.panel-in-fullscreen .panel-title-container {
    cursor: pointer
}

.panel-in-fullscreen .react-resizable-handle {
    display: none
}

.panel-in-fullscreen .react-grid-layout {
    transition-property: none
}

@media(max-width:768px) {
    .react-grid-item {
        display: block !important;
        margin-bottom: 16px;
        position: unset !important;
        transform: translate(0) !important;
        transition-property: none !important
    }
}

.react-grid-item.react-grid-placeholder {
    background: #0a1f40;
    box-shadow: 0 0 4px #3274d9;
    opacity: unset;
    z-index: -1
}

.theme-dark .react-grid-item>.react-resizable-handle:after {
    border-bottom: 2px solid #555;
    border-right: 2px solid #555
}

.theme-light .react-grid-item>.react-resizable-handle:after {
    border-bottom: 2px solid #b3b3b3;
    border-right: 2px solid #b3b3b3
}

.react-grid-item.panel.dropdown-menu-open,
.react-grid-item.react-draggable-dragging.panel,
.react-grid-item.resizing.panel {
    z-index: 1030
}

.react-grid-item.cssTransforms {
    transition-property: none
}

.animated .react-grid-item.cssTransforms {
    transition-property: transform
}

.dashboard-list .search-results-container {
    padding: 5px 0 0
}

.search-results {
    margin-top: 32px
}

.search-results-filter-row {
    align-items: center;
    display: flex;
    height: 35px;
    justify-content: space-between
}

.search-results-filter-row .gf-form-button-row {
    padding-top: 0
}

.search-results-filter-row .gf-form-button-row button:last-child {
    margin-right: 0
}

.search-results-filter-row__filters {
    display: flex
}

.search-results-filter-row__filters-item {
    margin-right: 0;
    width: 150px
}

.page-header {
    margin-top: 16px
}

.page-header .btn {
    float: right;
    margin-left: 16px
}

.page-header .btn .fa {
    position: relative;
    top: 1px
}

@media(min-width:769px) {
    .page-header {
        margin-top: 0
    }
}

.page-header__inner {
    display: flex;
    flex-grow: 1;
    padding: 24px 0
}

.page-header__title {
    font-size: 1.7142857143rem;
    margin-bottom: 1px;
    padding-top: 16px
}

.page-header__img {
    height: 50px;
    position: relative;
    top: 10px
}

.page-header__icon {
    color: #ccccdca6;
    font-size: 50px;
    height: 50px;
    position: relative;
    width: 50px
}

.page-header__icon.fa,
.page-header__icon.gicon {
    top: 10px
}

.page-header__icon.icon-gf {
    top: 3px
}

.page-header__logo {
    color: #ccccdca6;
    margin: -1px 16px -1px 0
}

.page-header__sub-title {
    color: #ccccdca6
}

.page-header-stamps-type {
    color: #ccccdc99;
    text-transform: uppercase
}

.page-header__select-nav {
    margin-bottom: 10px;
    max-width: 100%
}

@media(min-width:992px) {
    .page-header__select-nav {
        display: none
    }
}

.page-header__link {
    color: #ccccdc;
    text-decoration: underline
}

.page-header__tabs {
    display: none
}

@media(min-width:992px) {
    .page-header__tabs {
        display: block
    }
}

.page-breadcrumbs {
    display: flex;
    line-height: .5;
    padding: 10px 0
}

.breadcrumb {
    border-radius: 5px;
    box-shadow: 0 0 15px 1px #00000059;
    counter-reset: flag;
    display: inline-block;
    overflow: hidden
}

.dashboard-settings {
    background: #111217;
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1020
}

.dashboard-settings__body {
    background: #181b1f;
    display: flex;
    flex-direction: row;
    min-height: 100%;
    width: 100%
}

.dashboard-settings__aside {
    display: flex;
    flex-direction: column;
    margin-top: 16px
}

.dashboard-settings__aside-header {
    color: #ccccdca6;
    font-size: 1.5rem;
    margin-bottom: 16px;
    padding-right: 60px;
    white-space: nowrap
}

.dashboard-settings__aside-header i {
    font-size: 25px;
    padding-right: 5px;
    position: relative;
    top: 1px
}

.dashboard-settings__header {
    font-size: 1.5rem;
    margin-bottom: 16px
}

.dashboard-settings__subheader {
    color: #ccccdca6;
    font-style: italic
}

.dashboard-settings__nav-item {
    border-left: 2px solid #0000;
    color: #ccccdca6;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 40px 8px 8px;
    position: relative
}

.dashboard-settings__nav-item.active {
    color: #ccccdc;
    font-weight: 500
}

.dashboard-settings__nav-item.active:before {
    background: linear-gradient(#f05a28 30%, #fbca0a 99%);
    border-radius: 4px;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 4px
}

.dashboard-settings__nav-item .gicon {
    margin-bottom: 2px;
    margin-right: 4px
}

.dashboard-settings__nav-item .fa {
    font-size: 17px;
    margin-right: 4px;
    width: 16px
}

.dashboard-settings__aside-actions {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    margin: 40px 32px 0 0
}

.dashboard-settings__aside-actions button {
    margin-bottom: 8px
}

.dashboard-settings__json-save-button {
    margin-top: 16px
}

.toolbar {
    align-content: center;
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    padding: 16px;
    position: relative
}

.toolbar__heading {
    font-size: 18px;
    padding-right: 20px
}

.toolbar__left {
    flex-grow: 1
}

.toolbar__left,
.toolbar__main {
    align-items: center;
    display: flex
}

.toolbar__main {
    background-color: #111217;
    border: 1px solid #ccccdc26;
    border-radius: 2px;
    color: #ccccdc;
    cursor: pointer;
    font-size: 14px;
    height: 32px;
    line-height: 18px;
    padding: 0 8px
}

.toolbar__main .fa {
    display: inline-block;
    margin-left: 20px;
    position: relative
}

.toolbar__main-image {
    display: inline-block;
    height: 20px;
    margin-right: 10px;
    width: 20px
}

.toolbar__close {
    flex-grow: 1;
    text-align: left
}

.add-data-source-header {
    margin-bottom: 32px;
    padding-top: 16px;
    text-align: center
}

.add-data-source-search {
    display: flex;
    justify-content: center;
    margin-bottom: 24px
}

.add-data-source-category {
    margin-bottom: 16px
}

.add-data-source-category__header {
    font-size: 1.1428571429rem;
    margin-bottom: 8px
}

.add-data-source-item {
    align-items: center;
    background: #111217;
    border: 1px solid #0000;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    margin-bottom: 2px;
    padding: 16px
}

.add-data-source-item:hover {
    background: #071124;
    border: 1px solid #6e9fff;
    box-shadow: 0 0 4px #6e9fff;
    color: #fff
}

.add-data-source-item:hover .add-data-source-item-actions {
    opacity: 1;
    transition: opacity .15s ease-in-out
}

.add-data-source-item-text-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.add-data-source-item-desc {
    color: #ccccdca6;
    font-size: 12px
}

.add-data-source-item-badge {
    margin-top: 6px
}

.add-data-source-item-text {
    font-size: 1.1428571429rem
}

.add-data-source-item-logo {
    margin-left: 8px;
    margin-right: 24px;
    max-height: 55px;
    width: 55px
}

.add-data-source-item-actions {
    align-items: center;
    display: flex;
    opacity: 0;
    padding-left: 16px
}

.add-data-source-item-actions>button {
    cursor: pointer;
    margin-left: 16px
}

.add-datasource-item-actions__btn-icon {
    margin-left: 8px
}

.add-data-source-more {
    margin: 32px;
    text-align: center
}

.page-loader-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px
}

.page-loader-wrapper__spinner {
    font-size: 32px;
    margin-bottom: 8px
}

.page-loader-wrapper__text {
    font-size: 14px
}

.toggle-button-group {
    display: flex
}

.toggle-button-group .btn {
    background-color: #2a2a2c;
    background-image: linear-gradient(180deg, #262628, #303032);
    background-repeat: repeat-x;
    border-color: #262628;
    border-radius: 0;
    border-right: 1px solid #161719;
    color: #ccccdc;
    font-size: 12px;
    font-weight: 500;
    height: 32px;
    padding: 7px 10px;
    text-shadow: 0 1px 0 #0000001a
}

.toggle-button-group .btn.active,
.toggle-button-group .btn.disabled,
.toggle-button-group .btn:active,
.toggle-button-group .btn:focus,
.toggle-button-group .btn:hover,
.toggle-button-group .btn[disabled] {
    background-color: #262628;
    background-image: none;
    color: #ccccdc
}

.toggle-button-group .btn.active {
    background: linear-gradient(90deg, #eb7b18, #d44a3a);
    border-right: 0;
    box-shadow: inset 0 0 4px #000;
    color: #fff
}

.toggle-button-group .btn.active:hover {
    cursor: default
}

.toggle-button-group .btn:first-child {
    border-radius: 2px 0 0 2px;
    margin: 0
}

.toggle-button-group .btn:last-child {
    border-radius: 0 2px 2px 0;
    margin-left: 0
}

.toggle-button-group--padded {
    padding-left: 2px
}

.popover-box {
    background-color: #181b1f;
    border: 1px solid #ccccdc12;
    border-radius: 2px;
    color: #ccccdc;
    max-width: 500px
}

.popover-box__header {
    background-color: #ccccdc12;
    display: flex;
    padding: 6px 10px
}

.popover-box__title {
    display: inline-block;
    flex-grow: 1;
    font-weight: 500;
    overflow: hidden;
    padding-right: 16px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.popover-box__body {
    padding: 20px 10px 10px
}

.popover-box__close {
    cursor: pointer
}

.panel-header:hover {
    background-color: #ccccdc29;
    transition: background-color .1s ease-in-out
}

.panel-container--no-title .panel-header {
    left: min(50px, 10%);
    position: absolute;
    right: min(50px, 10%);
    z-index: 10
}

.panel-container--no-title .panel-header:hover {
    left: 0;
    right: 0
}

.panel-container--no-title .panel-content {
    height: 100%
}

.panel-title-container {
    word-wrap: break-word;
    cursor: move;
    display: block
}

.panel-title {
    align-items: center;
    border: 0;
    display: flex;
    flex-wrap: nowrap;
    font-weight: 500;
    height: 32px;
    justify-content: center;
    line-height: 32px;
    position: relative;
    width: 100%
}

.panel-menu-container {
    display: inline-block;
    height: 19px;
    width: 0
}

.panel-menu-toggle {
    color: #ccccdca6;
    cursor: pointer;
    margin: 2px 0 0 2px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 9px);
    visibility: hidden
}

.panel-menu-toggle:hover {
    color: #fff
}

.panel-loading {
    color: #ccccdca6;
    font-size: 18px;
    position: absolute;
    right: 4px;
    top: 0;
    z-index: 11
}

.panel-loading:hover {
    cursor: pointer
}

.panel-empty {
    align-items: center;
    display: flex;
    height: 100%;
    width: 100%
}

.panel-empty p {
    color: #ccccdca6;
    font-size: 18px;
    text-align: center;
    width: 100%
}

.panel-menu {
    left: -100px;
    top: 25px
}

.panel-info-corner-inner {
    bottom: 0;
    height: 0;
    left: 0;
    position: absolute;
    width: 0
}

.panel-info-corner {
    color: #ccccdca6;
    cursor: pointer;
    display: none;
    height: 32px;
    left: 0;
    position: absolute;
    top: 0;
    width: 32px;
    z-index: 2
}

.panel-info-corner .fa {
    font-size: 75%;
    left: 6px;
    position: relative;
    top: -2px;
    z-index: 3
}

.panel-info-corner--info {
    display: block
}

.panel-info-corner--info .panel-info-corner-inner {
    border-bottom: 32px solid #0000;
    border-left: 32px solid #252a30;
    border-right: none
}

.panel-info-corner--info .fa:before {
    content: "ï©"
}

.panel-info-corner--links {
    display: block
}

.panel-info-corner--links .panel-info-corner-inner {
    border-bottom: 32px solid #0000;
    border-left: 32px solid #252a30;
    border-right: none
}

.panel-info-corner--links .fa {
    left: 4px
}

.panel-info-corner--links .fa:before {
    content: "ï"
}

.panel-info-corner--error {
    color: #fff;
    display: block
}

.panel-info-corner--error .panel-info-corner-inner {
    border-bottom: 32px solid #0000;
    border-left: 32px solid #d10e5c;
    border-right: none
}

.panel-info-corner--error .fa:before {
    content: "ïª"
}

.panel-info-content code {
    word-wrap: break-word;
    white-space: normal
}

.panel-info-content pre>code {
    display: block
}

.panel-info-content .panel-info-corner-links {
    list-style: none;
    padding-left: 0
}

.panel-time-info {
    color: #33a2e5;
    float: right;
    font-size: 85%;
    font-weight: 500;
    margin-right: 8px;
    position: absolute;
    right: 0
}

.rc-cascader {
    font-size: 12px
}

.rc-cascader-dropdown {
    position: absolute;
    z-index: 9999
}

.rc-cascader-dropdown-hidden {
    display: none
}

.rc-cascader-menus {
    background: #111217;
    border: 1px solid #ccccdc12;
    border-radius: 2px;
    box-shadow: 0 5px 10px 0 #000;
    overflow: hidden;
    white-space: nowrap
}

.rc-cascader-menus.slide-up-appear,
.rc-cascader-menus.slide-up-enter {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused;
    animation-timing-function: cubic-bezier(.08, .82, .17, 1);
    opacity: 0;
    transform-origin: 0 0
}

.rc-cascader-menus.slide-up-appear.slide-up-appear-active.rc-cascader-menus-placement-bottomLeft,
.rc-cascader-menus.slide-up-enter.slide-up-enter-active.rc-cascader-menus-placement-bottomLeft {
    animation-name: SlideUpIn;
    animation-play-state: running
}

.rc-cascader-menus.slide-up-appear.slide-up-appear-active.rc-cascader-menus-placement-topLeft,
.rc-cascader-menus.slide-up-enter.slide-up-enter-active.rc-cascader-menus-placement-topLeft {
    animation-name: SlideDownIn;
    animation-play-state: running
}

.rc-cascader-menus.slide-up-leave {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused;
    animation-timing-function: cubic-bezier(.6, .04, .98, .34);
    opacity: 1;
    transform-origin: 0 0
}

.rc-cascader-menus.slide-up-leave.slide-up-leave-active.rc-cascader-menus-placement-bottomLeft {
    animation-name: SlideUpOut;
    animation-play-state: running
}

.rc-cascader-menus.slide-up-leave.slide-up-leave-active.rc-cascader-menus-placement-topLeft {
    animation-name: SlideDownOut;
    animation-play-state: running
}

.rc-cascader-menu {
    border-right: 1px solid #ccccdc12;
    display: inline-block;
    height: 192px;
    list-style: none;
    margin: 0;
    max-width: 50vw;
    overflow: auto;
    padding: 0
}

.rc-cascader-menu:last-child {
    border-right: 0
}

.rc-cascader-menu-item {
    cursor: pointer;
    height: 32px;
    line-height: 32px;
    overflow: hidden;
    padding: 0 2.5em 0 16px;
    position: relative;
    text-overflow: ellipsis;
    transition: all .3s ease;
    white-space: nowrap
}

.rc-cascader-menu-item:hover {
    background: #ccccdc29
}

.rc-cascader-menu-item-disabled {
    color: #ccccdca6;
    cursor: not-allowed
}

.rc-cascader-menu-item-disabled:hover {
    background: #0000
}

.rc-cascader-menu-item-disabled:after {
    color: #ccccdca6;
    content: "loading";
    font-style: italic;
    position: absolute;
    right: 12px
}

.rc-cascader-menu-item-active {
    background: #ccccdc1f;
    color: #fff
}

.rc-cascader-menu-item-active:hover {
    background: #ccccdc29
}

.rc-cascader-menu-item-expand {
    position: relative
}

.rc-cascader-menu-item-expand:after {
    color: #ccccdca6;
    content: ">";
    font-size: 12px;
    line-height: 32px;
    position: absolute;
    right: 16px;
    top: 0
}

@keyframes SlideUpIn {
    0% {
        opacity: 0;
        transform: scaleY(.8);
        transform-origin: 0 0
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: 0 0
    }
}

@keyframes SlideUpOut {
    0% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: 0 0
    }
    to {
        opacity: 0;
        transform: scaleY(.8);
        transform-origin: 0 0
    }
}

@keyframes SlideDownIn {
    0% {
        opacity: 0;
        transform: scaleY(.8);
        transform-origin: 0 100%
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: 0 100%
    }
}

@keyframes SlideDownOut {
    0% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: 0 100%
    }
    to {
        opacity: 0;
        transform: scaleY(.8);
        transform-origin: 0 100%
    }
}

.gf-form-select-box__control {
    background-color: #111217;
    border: 1px solid #ccccdc26;
    border-radius: 2px;
    color: #ccccdc;
    cursor: default;
    height: 32px;
    margin-right: 4px;
    outline: none;
    overflow: hidden;
    position: relative;
    width: 100%
}

.gf-form-select-box__control--is-focused {
    background-color: #111217;
    border-color: #6e9fff;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px #6e9fff;
    outline: none
}

.gf-form-select-box__control--is-disabled {
    background-color: #ccccdc0a
}

.gf-form-select-box__control--menu-right .gf-form-select-box__menu {
    left: unset;
    right: 0
}

.gf-form-select-box__input input {
    line-height: inherit
}

.gf-form-select-box__menu {
    background: #181b1f;
    box-shadow: 0 8px 24px #010409;
    min-width: 100%;
    position: absolute;
    z-index: 1030
}

.gf-form-select-box__menu-notice--no-options {
    background-color: #111217;
    padding: 10px
}

.gf-form-select-box__menu-list {
    max-height: 300px;
    max-width: 600px;
    overflow-y: auto
}

.tag-filter .gf-form-select-box__menu {
    width: 100%
}

.gf-form-select-box__multi-value {
    cursor: pointer;
    display: inline;
    margin: 0 6px 0 0
}

.gf-form-select-box__multi-value__remove {
    display: inline-block;
    margin-left: 2px;
    position: relative;
    text-align: center
}

.gf-form-select-box__multi-value__label {
    display: inline;
    vertical-align: middle
}

.gf-form-select-box__option {
    background-color: #111217;
    border-left: 2px solid #0000;
    white-space: nowrap
}

.gf-form-select-box__option.gf-form-select-box__option--is-focused {
    background: #ccccdc29;
    border-image: linear-gradient(#f05a28 30%, #fbca0a 99%);
    border-image-slice: 1;
    border-style: solid;
    border-bottom: 0;
    border-left-width: 2px;
    border-right: 0;
    border-top: 0;
    color: #fff
}

.gf-form-select-box__option.gf-form-select-box__option--is-selected .fa {
    color: #fff
}

.gf-form-select-box__placeholder {
    color: #ccccdc99
}

.gf-form-select-box__control--is-focused .gf-form-select-box__placeholder {
    display: none
}

.gf-form-select-box__value-container {
    padding: 6px 20px 6px 10px
}

.gf-form-select-box__value-container,
.gf-form-select-box__value-container>div {
    display: inline-block;
    vertical-align: middle
}

.gf-form-select-box__indicators {
    display: inline-block;
    height: 100%;
    position: absolute;
    right: 8px;
    text-align: right;
    top: 1px
}

.gf-form-input--form-dropdown {
    border: 0;
    overflow: visible;
    padding: 0;
    position: relative
}

.gf-form--has-input-icon .gf-form-select-box__value-container {
    padding-left: 30px
}

.gf-form-select-box__desc-option {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    justify-items: center;
    padding: 7px 10px;
    width: 100%
}

.gf-form-select-box__desc-option__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-weight: 500;
    padding-right: 10px
}

.gf-form-select-box__desc-option__desc {
    color: #ccccdca6;
    font-size: 12px;
    font-weight: 400
}

.gf-form-select-box__desc-option__img {
    margin-right: 10px;
    width: 16px
}

.gf-form-select-box__option-group__header {
    align-items: center;
    border-bottom: 1px solid #343436;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    justify-items: center;
    padding: 7px 10px;
    text-transform: capitalize;
    width: 100%
}

.gf-form-select-box__option-group__header .fa {
    padding-right: 2px
}

.gf-form-select-box-button-select {
    height: auto
}

.select-button {
    align-items: center;
    display: flex
}

.rc-time-picker-input,
.rc-time-picker-panel-inner,
.rc-time-picker-panel-input-wrap {
    background-color: #111217;
    border-color: #ccccdc26;
    color: #ccccdc;
    font-size: 14px
}

.rc-time-picker-input {
    height: 32px;
    padding: 0 8px
}

.rc-time-picker-panel {
    width: 176px
}

.rc-time-picker-panel-select {
    width: 50%
}

.rc-time-picker-panel-select:only-child {
    width: 100%
}

.rc-time-picker-panel-select .rc-time-picker-panel-select-option-selected,
.rc-time-picker-panel-select li:hover {
    background-color: #ccccdc29
}

.rc-time-picker-panel-narrow {
    max-width: none
}

.uplot {
    font-family: inherit
}

.u-select {
    background: #78788233
}

.u-cursor-x {
    border-right: 1px dashed #78788280
}

.u-cursor-y {
    border-bottom: 1px dashed #78788280;
    width: 100%
}

.shared-crosshair:not(.plot-active) .u-cursor-pt {
    display: none !important
}

.login-form {
    margin-bottom: 16px;
    width: 100%
}

.panel {
    height: 100%
}

.panel-height-helper {
    display: block;
    height: 100%
}

.panel-container {
    background-color: #181b1f;
    border: 1px solid #ccccdc12;
    border-radius: 3px;
    box-shadow: none;
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    height: 100%;
    position: relative;
    width: 100%
}

.panel-container--transparent {
    background-color: initial;
    border: 1px solid #0000;
    box-shadow: none
}

.panel-container:hover .panel-menu-toggle {
    opacity: 1;
    transition: opacity .1s ease-in .2s;
    visibility: visible
}

.panel-container--is-editing {
    height: auto
}

.panel-container--absolute {
    position: absolute
}

.panel-content {
    flex-grow: 1;
    height: calc(100% - 32px);
    padding: 8px;
    width: 100%
}

.panel-content--no-padding {
    padding: 0
}

div.flot-text {
    color: #ccccdc !important
}

.dashboard-solo .footer,
.dashboard-solo .sidemenu {
    display: none
}

.template-variable {
    color: #6e9fff
}

.panel-solo {
    bottom: 0;
    height: "100%";
    left: 0;
    margin: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: "100%"
}

.panel-solo .panel-container {
    border: none
}

.panel-solo .panel-menu,
.panel-solo .panel-menu-toggle {
    display: none
}

.playlist-description {
    margin-bottom: 20px;
    width: 555px
}

.playlist-search-container {
    background-color: #181b1f;
    box-shadow: 0 0 55px 0 #000;
    position: relative;
    width: 700px;
    z-index: 1000
}

.playlist-search-container .label-tag {
    font-size: 11px;
    margin-left: 6px;
    padding: 2px 6px
}

.playlist-search-switches {
    position: absolute;
    right: 11px;
    top: 8px
}

.playlist-search-containerwrapper {
    margin-bottom: 15px
}

.playlist-search-field-wrapper input {
    box-sizing: border-box;
    height: 100%;
    padding: 8px;
    width: 100%
}

.playlist-search-field-wrapper button {
    margin: 0 4px 0 0
}

.playlist-search-field-wrapper>span {
    display: block;
    overflow: hidden
}

.playlist-search-results-container {
    display: block;
    line-height: 28px;
    min-height: 100px;
    overflow: auto
}

.playlist-search-results-container .search-item.selected,
.playlist-search-results-container .search-item:hover {
    background-color: #282b31
}

.playlist-search-results-container .selected .search-result-tag {
    color: #fff;
    opacity: .7
}

.playlist-search-results-container .fa-star,
.playlist-search-results-container .fa-star-o {
    padding-left: 13px
}

.playlist-search-results-container .fa-star {
    color: #eb7b18
}

.playlist-search-results-container .search-result-link .fa {
    padding-right: 10px
}

.playlist-search-results-container .search-item {
    background-color: #22252b;
    display: block;
    margin-bottom: 4px;
    padding: 3px 10px;
    white-space: nowrap
}

.playlist-search-results-container .search-item .search-result-icon:before {
    content: "ï"
}

.playlist-search-results-container .search-item.search-item-dash-home .search-result-icon:before {
    content: "ï"
}

.playlist-search-results-container .search-result-tags {
    float: right
}

.playlist-search-results-container .search-result-actions {
    float: right;
    padding-left: 20px
}

.playlist-available-list td {
    line-height: 28px;
    max-width: 335px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.playlist-available-list .add-dashboard {
    text-align: center
}

.playlist-available-list .fa-star {
    color: #eb7b18
}

.playlist-column-header {
    border-bottom: thin solid #555;
    margin-bottom: 15px;
    padding-bottom: 3px
}

.selected-playlistitem-settings {
    text-align: right
}

.admin-settings-section {
    color: #6e9fff;
    font-weight: 500
}

td.admin-settings-key {
    padding-left: 20px
}

.admin-list-table {
    margin-bottom: 20px
}

.admin-list-paging {
    float: right
}

.admin-list-paging li {
    display: inline-block;
    margin-bottom: 5px;
    padding-left: 10px
}

.admin-list-table .team-permissions {
    padding-right: 120px
}

.alert-state-paused,
.alert-state-pending {
    color: #ccccdca6;
    font-weight: 500
}

.alert-state-ok {
    color: #6ccf8e;
    font-weight: 500
}

.alert-state-warning {
    color: #f8d06b;
    font-weight: 500
}

.alert-state-critical {
    color: #ff5286;
    font-weight: 500
}

.alert-notify-emails {
    border-right: 1px solid #000;
    width: 400px
}

.alert-notify-emails .bootstrap-tagsinput {
    width: 394px
}

.alert-notify-emails .bootstrap-tagsinput input {
    border: 0
}

.panel-alert-icon {
    display: none
}

.panel-has-alert .panel-alert-icon {
    display: inline-block
}

.panel-alert-state--alerting svg.panel-alert-icon {
    animation: alerting-panel 1s cubic-bezier(1, .1, .73, 1) 0s infinite alternate;
    color: #ff5286
}

.panel-alert-state--ok svg.panel-alert-icon {
    color: #6ccf8e
}

.panel-alert-state--pending svg.panel-alert-icon {
    color: #f8d06b
}

@keyframes alerting-panel {
    to {
        transform: scale(1.2)
    }
}

.alert-rule-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style-type: none
}

.alert-rule-item {
    align-items: center;
    background: #22252b;
    border-radius: 4px;
    box-shadow: none;
    display: flex;
    height: 100%;
    margin-bottom: 4px;
    padding: 4px 8px;
    width: 100%
}

.alert-rule-item__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    overflow: hidden
}

.alert-rule-item__icon {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 0 4px 0 2px;
    width: 40px
}

.alert-rule-item__icon .fa,
.alert-rule-item__icon .icon-gf {
    font-size: 200%;
    position: relative;
    top: 2px
}

.alert-rule-item__header {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.alert-rule-item__name {
    font-size: 14px;
    font-weight: 500;
    margin: 0
}

.alert-list__btn {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 2px
}

.alert-rule-item__text {
    font-size: 12px;
    font-weight: 700;
    margin: 0
}

.alert-rule-item__time {
    color: #ccccdca6;
    font-weight: 400;
    white-space: nowrap
}

.alert-rule-item__info {
    align-items: flex-end;
    display: flex;
    flex-grow: 2;
    font-weight: 400
}

.alert-rule-item__actions {
    align-items: center;
    display: flex
}

.alert-tesint {
    display: flex
}

.diff-indent-0 {
    margin-left: 10px;
    padding-left: 0
}

.diff-indent-1 {
    margin-left: 10px;
    padding-left: 21px
}

.diff-indent-2 {
    margin-left: 10px;
    padding-left: 42px
}

.diff-indent-3 {
    margin-left: 10px;
    padding-left: 63px
}

.diff-indent-4 {
    margin-left: 10px;
    padding-left: 84px
}

.diff-indent-5 {
    margin-left: 10px;
    padding-left: 105px
}

.diff-indent-6 {
    margin-left: 10px;
    padding-left: 126px
}

.diff-indent-7 {
    margin-left: 10px;
    padding-left: 147px
}

.diff-indent-8 {
    margin-left: 10px;
    padding-left: 168px
}

.diff-indent-9 {
    margin-left: 10px;
    padding-left: 189px
}

.diff-indent-10 {
    margin-left: 10px;
    padding-left: 210px
}

.diff-indent-11 {
    margin-left: 10px;
    padding-left: 231px
}

.diff-indent-12 {
    margin-left: 10px;
    padding-left: 252px
}

.diff-indent-13 {
    margin-left: 10px;
    padding-left: 273px
}

.diff-indent-14 {
    margin-left: 10px;
    padding-left: 294px
}

.diff-indent-15 {
    margin-left: 10px;
    padding-left: 315px
}

.diff-indent-16 {
    margin-left: 10px;
    padding-left: 336px
}

.delta-html {
    background: #22252b;
    padding-bottom: 5px;
    padding-top: 5px;
    -webkit-user-select: none;
    user-select: none
}

.diff-line {
    color: #ccccdc;
    font-family: Roboto Mono, monospace;
    font-size: 12px;
    line-height: 2;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap
}

.diff-line:after {
    left: -40px
}

.diff-line-number {
    color: #ccccdca6;
    display: inline-block;
    font-size: 10px;
    line-height: 2.3;
    text-align: right;
    width: 30px
}

.diff-line-number-hide {
    visibility: hidden
}

.diff-line-icon {
    color: #ececec;
    float: right;
    font-size: 10px;
    position: relative;
    right: 10px;
    top: 2px
}

.diff-json-added,
.diff-json-deleted,
.diff-json-new,
.diff-json-old {
    color: #ececec
}

.diff-json-added .diff-line-number,
.diff-json-deleted .diff-line-number,
.diff-json-new .diff-line-number,
.diff-json-old .diff-line-number {
    color: #ccccdc
}

.diff-json-new {
    background-color: #457740
}

.diff-json-old {
    background-color: #a04338
}

.diff-json-added {
    background-color: #5a86de
}

.diff-json-deleted {
    background-color: #d73274
}

.diff-value {
    -webkit-user-select: all;
    user-select: all
}

.diff-circle {
    margin-right: .5em
}

.diff-circle * {
    margin-bottom: 1px
}

.diff-circle-changed {
    color: #f59433
}

.diff-circle-added {
    color: #29d761
}

.diff-circle-deleted {
    color: #fd474a
}

.diff-item-added,
.diff-item-deleted {
    list-style: none
}

.diff-group {
    background: #22252b;
    font-size: 16px;
    font-style: normal;
    margin: 16px 0;
    padding: 10px 15px
}

.diff-group .diff-group {
    padding: 0 5px
}

.diff-group-name {
    display: inline-block;
    font-size: 16px;
    margin: 0 0 14px;
    padding-left: 1.75em;
    width: 100%
}

.diff-summary-key {
    padding-left: .25em
}

.diff-list {
    padding-left: 40px
}

.diff-list .diff-list {
    padding-left: 0
}

.diff-item {
    color: #8e8e8e;
    line-height: 2.5
}

.diff-item>div {
    display: inline
}

.diff-item-changeset {
    list-style: none
}

.diff-label {
    background-color: #ccccdc29;
    border-radius: 3px;
    color: #fff;
    display: inline;
    font-size: 14px;
    margin: 0 5px;
    padding: 3px 8px
}

.diff-linenum {
    float: right
}

.diff-arrow {
    color: #fff
}

.diff-block {
    display: inline-block;
    width: 100%
}

.diff-block-title {
    display: inline-block;
    font-size: 16px
}

.diff-title {
    font-size: 16px
}

.diff-change-container {
    margin: 0;
    padding-left: 3em;
    padding-right: 0
}

.diff-change-group {
    color: #ccccdc;
    margin-bottom: 14px;
    width: 100%
}

.diff-change-item {
    display: inline-block
}

.diff-change-title {
    font-size: 16px
}

.bullet-position-container {
    left: -6px;
    position: relative
}

.diff-list-circle {
    margin-bottom: 3px
}

.signup-page-container {
    background-image: url(/img/background_tease.jpg);
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%
}

.signup-page-container .signup-logo-container {
    margin: 0 auto;
    padding: 80px 0;
    width: 150px
}

.error-container,
.error-row {
    display: flex;
    flex-direction: row
}

.error-column {
    display: flex;
    flex-direction: column
}

.error-space-between {
    justify-content: space-between
}

.graph-box {
    padding: 32px 16px;
    width: 62%
}

.info-box {
    padding: 32px 16px;
    width: 38%
}

.graph-percentage {
    padding: 0 0 18px
}

.image-box {
    padding: 8px
}

.left-margin {
    padding: 0 0 0 64px
}

.current-box {
    justify-content: flex-end
}

.current-text {
    color: #33a2e5;
    font-weight: 700;
    line-height: 14px
}

.error-link {
    color: #eb7b18
}

.error-minus {
    color: #7eb26d;
    line-height: 21px;
    padding: 0 8px
}

.graph-percentage p {
    line-height: 14px;
    margin: 0;
    text-align: right
}

.graph-text {
    margin: 0
}

@media(max-width:768px) {
    .graph-box,
    .info-box {
        width: 50%
    }
}

@media(max-width:543px) {
    .error-container {
        flex-direction: column
    }
    .error-full-width,
    .graph-box,
    .info-box {
        width: 100%
    }
}

.explore-active-button {
    border: 1px solid #ff780a !important;
    box-shadow: 0 0 4px #ff780a80;
    color: #ff780a !important
}

.explore {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column
}

.explore+.explore {
    border-left: 1px dotted #ccccdc26
}

.explore-container {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 0 16px 16px
}

.explore-wrapper {
    display: flex;
    height: 100%
}

.explore-wrapper>.explore-split {
    width: 50%
}

.explore-input-margin {
    margin-right: 4px
}

.navbar .elapsed-time {
    font-size: 11px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 48px
}

.graph-legend {
    flex-wrap: wrap
}

.query-row-break {
    flex-basis: 100%
}

.explore .prom-query-field-info {
    display: flex;
    margin: .25em .5em .5em
}

.explore .prom-query-field-info details {
    margin-left: 1em
}

.ReactTable {
    border: none
}

.ReactTable .rt-table {
    min-height: 90px
}

.ReactTable .rt-thead.-header {
    background: #22252b;
    border-bottom: 2px solid #111217;
    border-top: 2px solid #111217;
    box-shadow: none;
    height: 2em
}

.ReactTable .rt-thead.-header .rt-th {
    color: #33a2e5;
    font-weight: 500;
    text-align: left
}

.ReactTable .rt-thead .rt-td,
.ReactTable .rt-thead .rt-th {
    border-right: none;
    box-shadow: none;
    padding: .45em 0 .45em 1.1em
}

.ReactTable .rt-tbody .rt-td {
    border-bottom: 2px solid #111217;
    border-right: 2px solid #111217;
    padding: .45em 0 .45em 1.1em
}

.ReactTable .rt-tbody .rt-td:last-child {
    border-right: none
}

.ReactTable .-pagination {
    border-top: none;
    box-shadow: none;
    margin-top: 8px
}

.ReactTable .-pagination .-btn {
    background: #22252b;
    color: #33a2e5
}

.ReactTable .-pagination input,
.ReactTable .-pagination select {
    background-color: #111217;
    color: #ccccdc
}

.ReactTable .-loading {
    background: #111217
}

.ReactTable .-loading.-active {
    opacity: .8
}

.ReactTable .-loading>div {
    color: #ccccdc
}

.ReactTable .rt-tr .rt-td:last-child {
    text-align: right
}

.ReactTable .rt-noData {
    top: 60px;
    z-index: inherit
}

.rc-cascader-menu-item-loading:after {
    color: #767980;
    content: "loading";
    font-style: italic;
    position: absolute;
    right: 12px
}

.rc-cascader-menu {
    scrollbar-width: thin;
    vertical-align: top
}

.cheat-sheet-item {
    margin: 24px 0
}

.cheat-sheet-item__title {
    font-size: 1.5rem
}

.cheat-sheet-item__example {
    cursor: pointer;
    margin: 4px 0
}

.query-type-toggle {
    margin-left: 5px
}

.query-type-toggle .btn.active {
    background-clip: padding-box;
    background-color: #111217;
    background-image: none;
    border: 1px solid #ccccdc26;
    border-radius: 2px;
    box-shadow: none;
    color: #ccccdc
}

.sidebar-content {
    width: calc(100% - 210px)
}

@media(min-width:769px) {
    .sidebar-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap
    }
    .page-sidebar {
        margin-left: 56px;
        width: 154px
    }
}

.page-sidebar-section {
    margin-bottom: 32px
}

.get-more-plugins-link {
    color: #b3b3b3;
    font-size: 12px;
    position: relative;
    top: 16px
}

.get-more-plugins-link:hover {
    color: #fff
}

.get-more-plugins-link img {
    vertical-align: top
}

@media(max-width:768px) {
    .get-more-plugins-link {
        display: none
    }
}

.plugin-info-list-item {
    max-width: 154px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.plugin-info-list-item i,
.plugin-info-list-item img {
    margin-bottom: 1px;
    margin-right: 4px;
    width: 16px
}

@media(max-width:543px) {
    input[type=number],
    input[type=text],
    textarea {
        font-size: 16px
    }
}

.view-mode--inactive .add-row-panel-hint,
.view-mode--inactive .dash-row-menu-container,
.view-mode--inactive .panel-info-corner--info,
.view-mode--inactive .panel-info-corner--links,
.view-mode--inactive .react-resizable-handle,
.view-mode--kiosk .add-row-panel-hint,
.view-mode--kiosk .dash-row-menu-container,
.view-mode--kiosk .panel-info-corner--info,
.view-mode--kiosk .panel-info-corner--links,
.view-mode--kiosk .react-resizable-handle,
.view-mode--tv .add-row-panel-hint,
.view-mode--tv .dash-row-menu-container,
.view-mode--tv .panel-info-corner--info,
.view-mode--tv .panel-info-corner--links,
.view-mode--tv .react-resizable-handle {
    display: none
}

.view-mode--kiosk .sidemenu,
.view-mode--tv .sidemenu {
    background-color: initial;
    box-shadow: none;
    position: fixed
}

.view-mode--kiosk .sidemenu .sidemenu__bottom,
.view-mode--kiosk .sidemenu .sidemenu__logo_small_breakpoint,
.view-mode--kiosk .sidemenu .sidemenu__top,
.view-mode--tv .sidemenu .sidemenu__bottom,
.view-mode--tv .sidemenu .sidemenu__logo_small_breakpoint,
.view-mode--tv .sidemenu .sidemenu__top {
    display: none
}

@media(max-width:768px) {
    .view-mode--kiosk .sidemenu .sidemenu__logo,
    .view-mode--tv .sidemenu .sidemenu__logo {
        display: block
    }
}

.view-mode--kiosk .page-toolbar,
.view-mode--tv .page-toolbar {
    padding-left: 60px
}

.view-mode--kiosk .page-toolbar--fullscreen,
.view-mode--tv .page-toolbar--fullscreen {
    padding-left: 16px
}

.view-mode--kiosk .page-toolbar,
.view-mode--kiosk .sidemenu,
.view-mode--kiosk .submenu-controls,
.view-mode--tv .submenu-controls {
    display: none
}

@media(max-width:768px) {
    div.page-toolbar {
        padding-left: 53px
    }
    div.page-toolbar--fullscreen {
        padding-left: 16px
    }
}