.dashboard-iframe {
  width: 100%;
  min-height: calc(100vh - 5.6rem);
  border-radius: 4px;

  position: relative;

  .iframe-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #8134af;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
  }

  &.with-border-radius {
    border-radius: 24px;
    overflow: hidden;
  }
}

/* Loader Animation */
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
