.app-root {
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: 200px calc(100vw - 200px);
}
.app-root.collapsed {
  grid-template-columns: 60px calc(100vw - 60px);
}
.app-root .app-loader {
  position: absolute;
  z-index: 10000;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-root .app-loader .lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.app-root .app-loader .lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.app-root .app-loader .lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}
.app-root .app-loader .lds-roller div:first-child {
  animation-delay: -36ms;
}
.app-root .app-loader .lds-roller div:first-child:after {
  top: 63px;
  left: 63px;
}
.app-root .app-loader .lds-roller div:nth-child(2) {
  animation-delay: -72ms;
}
.app-root .app-loader .lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.app-root .app-loader .lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.app-root .app-loader .lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.app-root .app-loader .lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.app-root .app-loader .lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.app-root .app-loader .lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.app-root .app-loader .lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.app-root .app-loader .lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.app-root .app-loader .lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.app-root .app-loader .lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.app-root .app-loader .lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.app-root .app-loader .lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.app-root .app-loader .lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.app-root .layout {
  /* display: grid; */
  grid-template-rows: 66px 0 calc(100vh - 111px) 45px;
  display: flex;
  flex-direction: column;
}
.app-root .layout:nth-child(2) {
  background: #edf2f9;
}
.app-root .layout:nth-child(2) router-outlet > :first-of-type {
  overflow: auto;
}

@media (min-width: 620px) and (max-width: 992px) {
  .modal-dialog.app-modal-lg {
    max-width: 620px !important;
    margin-right: auto;
    margin-left: auto;
  }
}

::placeholder {
  color: #ccc !important;
  opacity: 1 !important; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
  color: #ccc !important;
}
