div#load_screen {
  background: #000;
  opacity: 1;
  position: fixed;
  z-index: 999999;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: opacity 0.5s ease;
}
div#load_screen.fade-out {
  opacity: 0;
}
div#load_screen .loader {
  display: flex;
  justify-content: center;
  height: 700px;
}
div#load_screen .loader-content {
  right: 0;
  align-self: center;
}

.spinner-grow {
  background-image: url("../img/TSlogo_300.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 120px;
  height: 120px;
  border-radius: 18px;
  border: 4px solid #33ff14;
  box-shadow: 0 0 20px #33ff14, 0 0 60px #33ff14;
  animation: loader-pulse 1.5s ease-in-out infinite;
}

@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}
