/*
 * Styles that used to live in an inline <style> block inside src/index.html.
 *
 * They were moved out so that the application can be served with a Content
 * Security Policy that does not need 'unsafe-inline' (or a per-build hash) for
 * the document itself. Keep this file free of anything that is not required
 * before the Angular bundle boots - it is render blocking.
 *
 * See docs/SECURITY-CSP.md
 */

body {
  overflow-x: hidden;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 0.3s cubic-bezier(0.1, 0, 0.1, 0.3) infinite;
  border-color: #fc6115 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.15s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.15s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.1s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
