#loader-page {
  width: 100%;
  height: 100%;
  position: fixed;
  background: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
	overflow-x: hidden!important;
	overflow-y: hidden!important;
}

#loader-page-refresh {
  width: 100%;
  height: 100%;
  position: fixed;
  background: whitesmoke;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
	overflow-x: hidden!important;
	overflow-y: hidden!important;
}

#loader {
  width: 60px;
  height: 60px;
  border-right: 2px solid #4c4eac;
  border-left: 2px solid rgba(169, 169, 169, 0.32);
  border-top: 2px solid rgba(169, 169, 169, 0.32);
  border-bottom: 2px solid rgba(169, 169, 169, 0.32);
  border-radius: 50%;
  opacity: .6;
  animation: spin 1s linear infinite;
}

@keyframes spin {

  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }

}
