section.init-load-spin {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 1);
  text-align: center;
  vertical-align: middle;
  transition: opacity 1s;
}
section.init-load-spin div.loading-contents {
  width: 100%;
  height: 100%;
  margin: 0;
}
section.init-load-spin div.loading-graphics {
  width: auto;
  height:  calc(50% + 72px);
  display: flex;
  align-items: center;
  justify-content: center;
}
section.init-load-spin div.loading-graphics svg {
  width: 152px;
  height: 152px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
section.init-load-spin div.loading-graphics img {
  width: 104px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@keyframes spin {
  0% {
    transform-origin: 50% 50%;
    transform: rotate(0deg);
  }
  100% {
    transform-origin: 50% 50%;
    transform: rotate(360deg);
  }
}
section.init-load-spin div.loading-graphics svg circle {
  animation: spin 1s infinite linear;
}
section.init-load-spin div.loading-message-container {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 2px;

  width: auto;
  height: 15%;
  // margin-bottom: 10px;
  color: rgb(200, 200, 200);

}
section.init-load-spin div.loading-message {
  margin-top: 10px;
  color: #ffffff;
}
