@keyframes skeleton-pulse {
  0% {
    background-color: #F5F5F5;
  }
  50% {
    background-color: #EEEEEE;
  }
  100% {
    background-color: #F5F5F5;
  }
}

/**
  * All the CSS should be nested inside this selector
  * so that these styles can't conflict with the rest of the Umbrava styles.
  */
.dundas-application--root {
  .primaryButton {
      background-color: var(--palette-primary-main, blue) !important;
      color: var(--palette-common-white, white) !important;
      border-radius: 4px !important;
      cursor: pointer;
  }
  
  .element-loading-block {
    z-index: 890;
    background: #F5F5F5;
    animation: skeleton-pulse 1.5s ease-in-out infinite !important;
  }
  
  .element-loading-spinner {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}