.spinner-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4999;
  background-color: rgba(0, 0, 0, 0.5);
}
.complete-center {
  width: 90px;
  height: 100px;
  position: fixed;
  top: -100px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5000;
  opacity: 1 !important;
}
.spinner-square {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  height: 120px;
  z-index: 5000;
}
.spinner-square > .square {
  width: 17px;
  height: 80px;
  margin: auto 7px;
  border-radius: 4px;
  z-index: 5000;
}
.square-1 {
  -webkit-animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s infinite;
  animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s infinite;
}
.square-2 {
  -webkit-animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 200ms infinite;
  animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 200ms infinite;
}
.square-3 {
  -webkit-animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 400ms infinite;
  animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 400ms infinite;
}
@-webkit-keyframes square-anim {
  0% {
    height: 80px;
    background-color: #31afb4;
  }
  20% {
    height: 80px;
  }
  40% {
    height: 120px;
    background-color: #90dde0;
  }
  80% {
    height: 80px;
  }
  100% {
    height: 80px;
    background-color: #31afb4;
  }
}
@keyframes square-anim {
  0% {
    height: 80px;
    background-color: #31afb4;
  }
  20% {
    height: 80px;
  }
  40% {
    height: 120px;
    background-color: #90dde0;
  }
  80% {
    height: 80px;
  }
  100% {
    height: 80px;
    background-color: #31afb4;
  }
}
#spinnerBox {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.article-placeholder {
  width: 100%;
  background: #fff;
  border: 1px solid;
  border-color: #e5e6e9 #dfe0e4 #d0d1d5;
  border-radius: 3px;
  padding: 20px;
  margin: 0 auto;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 100px 1fr;
  grid-template-rows: minmax(50px, auto);
}
@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.loaderWrapper {
  text-align: center;
  margin: auto;
  width: 100%;
  padding: 30px;
  max-width: 600px;
}
.animated-background {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 8%, #fafafa 18%, #eeeeee 33%);
  background-size: 800px 104px;
  position: relative;
}
.article-left {
  height: 100px;
}
.article-right {
  grid-column-start: 2;
  grid-column-end: 3;
}
.article-loader {
  width: 100%;
  margin-bottom: 12px;
}
.heading {
  height: 20px;
  margin-bottom: 10px;
}
.line {
  height: 10px;
  margin-bottom: 5px;
  width: 60%;
}
.datatableLoader {
  margin-bottom: 0px !important;
}
