/* loader */

.rotate {
  animation: rotation 1s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.loader {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  /* background-color: #1C285A; */
  border-radius: 3px;
}

.d-flex-grid {
  display: grid;
}

img {
  max-width: 100% !important;
}
