body {
  background-image: url(/img/background.jpg);
  position: relative;
  background-size: cover;
  z-index: 1;
}

#root {
  height: 100%;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.circularLoaderContainer {
  width: calc(100% - 30px);
  height: 400px;
  margin: 16px;
  background: #fff;
}
.circularLoader {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
}

.circularLoader:before,
.circularLoader:after {
  content: "";
  position: absolute;
  top: 150px;
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 6px solid transparent;
  /* main color here*/
  border-top-color: #412020;
}

.circularLoader:before {
  z-index: 100;
  animation: spin 1s infinite;
}

.circularLoader:after {
  border: 6px solid #ccc;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 990px) {
  .circularLoaderContainer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
