.err-msg {
  font-size: 12px;
  margin: 0px;
  line-height: 1.3;
  color: red;
}

body {
  position: relative;
}

.spinner {
  position: absolute;
  background: rgb(0 0 0 / 42%);
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  z-index: 9999;
  bottom: 0;
  width: 100%;
}

.spinner .outer {
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #45200a;
  border-color: #45200a transparent #45200a transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}
