* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body,
#root {
  height: 100vh;
}

a {
  text-decoration: none;
}

.react-grid-layout {
  position: relative;
  transition: height 200ms ease;
  margin: -10px;
  margin-top: 0;
}
.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.dropping {
  visibility: hidden;
}

.react-grid-item.react-grid-placeholder {
  border-radius: 5px;
  background: rgb(68, 106, 107);
  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 {
  position: absolute;
  width: 22px;
  height: 22px;
  bottom: 0;
  right: 0;
  cursor: se-resize;
}

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

.highcharts-tooltip-container {
  z-index: 9999 !important;
}
