/* 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;
}

.bg-primary,
.btn-primary {
  background-color: #fe5859 !important;
  border: #fe5859;
  color: white !important;
}

.bg-warning,
.btn-warning {
  background-color: #345ded !important;
  border: #345ded;
  color: white !important;
}
