body {
  margin: 0;
  padding: 0;
  --c64-purple: #6a75ca;
  --c64-purple-1: #6a75ca11;
}

.splash-screen {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: calc(100% + 200px);
  background-color: #ffffff;
  font-family: IRANSans;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.splash-screen .img-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
}
.splash-screen .loading-state {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 3px solid var(--c64-purple-1);
  border-right-color: var(--c64-purple);

  -webkit-animation: rotate 1.5s linear infinite;
  -moz-animation: rotate 1.5s linear infinite;
  -o-animation: rotate 1.5s linear infinite;
  animation: rotate 1.5s linear infinite;
}
.splash-screen .sm-loading-state {
  position: absolute;
  top: 120px;
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 3px solid var(--c64-purple-1);
  border-top-color: var(--c64-purple);
  border-right-color: var(--c64-purple);

  -webkit-animation: rotate 0.25s linear infinite;
  -moz-animation: rotate 0.25s linear infinite;
  -o-animation: rotate 0.25s linear infinite;
  animation: rotate 0.25s linear infinite;
}
.splash-screen .forbidden-logo {
  -webkit-animation: rotate 1.5s linear infinite;
  -moz-animation: rotate 1.5s linear infinite;
  -o-animation: rotate 1.5s linear infinite;
  animation: rotate 1.5s linear infinite;
}
.splash-screen img {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
}
