/* --------------------------- GENERAL --------------------------- */

* {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html,
body,
#root {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-size: 13px;
  line-height: 13px;
  /* font-weight: bold; */
  margin: 0;
  padding: 0;
  color: #424242;
  height: 1080px;
  width: 1920px;
  /* min-height: 900px; */
  min-height: 1080px;
  min-width: 1700px;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

body > iframe[style*='2147483647']{
  display: none;
}

p {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  padding: 0;
  margin: 22px 0;
}

.bold {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif !important;
  font-weight: 700 !important;
}

.black {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif !important;
  font-weight: 900 !important;
}

/* --------------------------- LAYOUT --------------------------- */

#init-grid {
  flex: 1;
}

main {
  height: calc(100% - 44px);
}

#init-grid>[class|='MuiGrid-container']>[class|='MuiGrid-container']:last-child [class|='MuiPaper-root'] {
  margin-right: 0;
}

.filterBar {
  flex: 1;
  min-height: 64px;
  max-height: 64px;
  align-items: center;
}

div[class*='MuiDialog-container']>div[class*='MuiPaper-root'] {
  height: auto;
}

.widgetContainer div:last-child,
.widgetContainer:last-child {
  margin-right: 0;
}

/* --------------------------- STYLES --------------------------- */

div[class*='fullscreen'] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  margin: 0;
  padding: 15px;
  border-radius: 0;
  height: unset;
}

.scrollingiv {
  -webkit-overflow-scrolling: touch;
}

.noWrap {
  white-space: pre;
}

.wrap {
  white-space: inherit !important;
}

.preloaderDiv {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.preloader {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.4);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
