body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #f9fbfc;
  font-family: "Lato", sans-serif;
}

.blur {
  filter: blur(5px);
}

.no-scroll {
  overflow: hidden;
}

.error {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ad3535;
  height: 3rem;
  color: white;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
}

/* Style for loader */

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

.loader-container {
  backdrop-filter: blur(5px);
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.loader {
  position: fixed;
  top: 45%;
  right: 50%;
  transform: translateX(-50%);
  border: 8px solid #000000;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}