#preloader {
  background-color: rgba(255, 255, 255, 1);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
  display: flex;
  align-items:center;
  justify-content:center;
}

#preloader .loading-icon {
  position: relative;
  width: 100px;
  height: 100px;
}

#preloader .loading-icon:before,
#preloader .loading-icon:after {
  content: '';
  border-radius: 50%;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 10px 2px rgba(131, 61, 61, 0.1) inset;
}

#preloader .loading-icon:after {
  box-shadow: 0 3px 0 #0c6c50 inset;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% {transform:rotate(0)}
  100% {transform:rotate(360deg)}
}
