body {
  margin: 0;
  padding: 0;
}
#splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f2f3f8;
}

#splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.splash-spinner {
  animation: rotate 2s linear infinite;
  margin-left: calc(100vw - 100%);
  width: 50px;
  height: 50px;
}

.splash-spinner .path {
  stroke: #5d78ff;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}



#chillsoft-log-img.hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes spin {
	0% {
		width: 130px;
	}
	
	25% {
		width: 130px;
		transform: rotate(0deg);
	}
	
  50% {
		width: 50px;
		transform: rotate(360deg);
  }
	
	75% {
		width: 50px;
		transform: rotate(0);
  }
	
	100% {
		width: 130px;
	}
}



.loading__container {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 100%;
  isolation: isolate;
  animation: spin 1.0s ease-in-out .5s forwards infinite;
}

.loading__ring {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  mix-blend-mode: plus-lighter;
}

.loading__ring--orange {
  background-color: #f58004;
  left: 0;
}

.loading__ring--green {
  background-color: #4be053;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading__ring--blue {
  background-color: #44BCF4;
  right: 0;
}
