
.loader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(55,79,140,1) 0%, rgba(0,185,182,1) 100%);
  z-index: 99999;
}
.loader-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
}
.loader-icon img {
  width: 40%;
  display: inline-block;
  animation: pulse-loader 0.4s alternate infinite ease-in-out;
}

@keyframes pulse-loader {
  to {
      transform: scale(0.8);
      opacity: 0.5;
  }
}
