.loader-container {
  position: fixed;
  z-index: 2000;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.loader-container .loader {
  position: relative;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 100px;
}

.loader-container .loader .loader-content {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 100px;
}

.loader-container .loader .loader-content i {
  color: #B53E5D;
  font-size: xx-large;
  -webkit-animation: rotation 1s infinite linear;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
  }
}

