#dashboard-panel {
    display: flex;
    justify-content: space-between;
}

/*
#dashboard.wrapper {
    font-family: Roboto, sans-serif;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px,1fr));
}
*/

#dashboard-panel #config-panel {
    background-color: rgb(30,30,30);
    opacity: 0.7;
    width: 220px;
    color: white;
    padding: 1em;
}

/* div#dashboard div.widget {
    color: rgba(0, 0, 0, 0.87);
    background-color: rgb(255, 255, 255);
    transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px;
    border-radius: 2px;
    z-index: 1;
} */

/* div#dashboard div.widget.maximized {
  margin: 0.5em;
} */

div#dashboard .card-widget {
    /*height: 350px;*/
}

div#dashboard .gridless-widget {
  margin: 0.5em;
}

div#dashboard .card-widget .title {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    /* font-weight: bold;*/
}


div#dashboard .gauge-wrapper {
    width: 300px;
    height: 350px;
    position: relative;
    margin: auto;
}

div#dashboard .gauge-wrapper .gauge {
    width: 100%;
    height: 100%;
    transform: rotateX(180deg);
}

div#dashboard .gauge-wrapper .meter_needle {
  height: 40%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 10%;
  transform-origin: bottom center;
  /*orientation fix*/
  transform: rotate(90deg);
}


div#dashboard .gauge-wrapper .gauge circle {
    stroke-width: 30;
    fill: none;
}

#dashboard-content .grid-box {
    background: red;
    border: 2px solid black;
}

/**********************************************************************/

.react-grid-layout {
  position: relative;
  transition: height 200ms ease;
}
.react-grid-item {
  transition: all 200ms ease;
  transition-property: left, top;
}
.react-grid-item.cssTransforms {
  transition-property: transform;
}
.react-grid-item.resizing {
  z-index: 1;
  will-change: width, height;
}

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

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


.react-grid-item > .react-resizable-handle::after {
  content: none;
}


.react-grid-item > .react-resizable-handle-se {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-radius: 4px;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #b0006a transparent;
  cursor: se-resize;
}


.react-resizable-hide .react-resizable-handle {
  display: none !important;
}