:root {
  --app-splash-screen-bg-color: #040b11;
  --app-splash-screen-text-color: #ffffff;
}

.app-splash-screen-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--app-splash-screen-bg-color);
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.app-splash-screen-loading.is-loaded {
  transform: translateY(-100%);
}

.loading-container {
  display: flex;
  align-items: center;
  width: 170px;
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%) translateX(-50%);
  transition: left .3s;
}

.loading-container.is-active {
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  overflow: hidden;
}

.icon-list {
  position: absolute;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.icon-item {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.3s, transform 0.3s;
}

.icon-item.active {
  opacity: 1;
  transform: translateY(0%);
}

.icon-item svg {
  fill: white;
  width: 100%;
  height: 100%;
}

.message {
  color: var(--app-splash-screen-text-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  height: 30px; 
  overflow: hidden;
}

.text-line {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s;
}

.text-line.active {
  transform: translateY(0);
  opacity: 1;
}

.text-line.exit {
  transform: translateY(-100%);
  opacity: 0;
}
