// @import 'global-styles.less';

body {
  margin: 0rem;
  border: 0rem;
  padding: 0rem;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.main-window-container {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative; // For GlobalButtons absolute positioning
}

// prevent borders around images without [src] value/attribute
img[src=''],
img:not([src]) {
  opacity: 0;
}

.fill {
  width: 100%;
  height: 100%;
}

.flexContainer {
  display: flex;
  flex-direction: column;
}

.flexContainerHorizontal {
  display: flex;
  flex-direction: row;
}

.flexFixedSize {
  flex: none;
}

.flexFill {
  flex: 1 1 auto;
  height: 0px;
}

.flexFillHorizontal {
  flex: 1 1 auto;
  width: 0px;
}

.tabPanel {
  &:extend(.flexFill);
  padding-top: 0px !important;
}

// .hoverIcon:hover {
//   color: red;
// }

// .inaccessible {
//   color: red;
// }

.inspectorHeading {
  font-size: 0.8rem;
  // font-weight: bold;
  font-variation-settings: 'wght' 800;
  padding: 0.5rem;
  margin: 0;
  color: white;
}

.Resizer {
  background: #000;
  opacity: 0.2;
  z-index: 1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
}

.Resizer:hover {
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

.Resizer.horizontal {
  height: 11px;
  margin: -5px 0;
  border-top: 5px solid rgba(255, 255, 255, 0);
  border-bottom: 5px solid rgba(255, 255, 255, 0);
  cursor: row-resize;
  width: 100%;
}

.Resizer.horizontal:hover {
  border-top: 5px solid rgba(0, 0, 0, 0.5);
  border-bottom: 5px solid rgba(0, 0, 0, 0.5);
}

.Resizer.vertical {
  width: 11px;
  margin: 0 -5px;
  border-left: 5px solid rgba(255, 255, 255, 0);
  border-right: 5px solid rgba(255, 255, 255, 0);
  cursor: col-resize;
}

.Resizer.vertical:hover {
  border-left: 5px solid rgba(0, 0, 0, 0.5);
  border-right: 5px solid rgba(0, 0, 0, 0.5);
}
.Resizer.disabled {
  cursor: not-allowed;
}
.Resizer.disabled:hover {
  border-color: transparent;
}

.mainPane {
  padding-top: 1rem;
  padding-left: 1rem;
}