body {
  margin: 0;
}

.dms-root-app {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex: 1;
}

.content-wrapper > div,
.main-content > div {
  display: flex;
  flex: 1;
  width: 100%;
}

.main-content {
  flex: 1;
}

.root-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.root-loader-circular {
  animation: root-loader-rotate 2s linear infinite;
  height: 100px;
  position: relative;
  width: 100px;
}

.root-loader-circular .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: root-loader-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: #ea7042;
}

@keyframes root-loader-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes root-loader-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}
