.center-child {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.loader-body {
  display: flex;
  align-items: center;
  font-variant-numeric: normal;
  font-feature-settings: normal;
}

.splash-screen {
  display: block;
  position: fixed;
  overflow: hidden;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999999;
  background-color: var(--light);
  background-image: linear-gradient(
    135deg,
    var(--light) 0,
    var(--primary-color) 50%,
    var(--light) 100%
  );
  transition: all 0.5s ease;
}

.splash-screen-hide {
  opacity: 0;
  transform: translateY(-1000px);
}

.sp-icon,
.sp-icon::before {
  position: relative;
  max-width: 200px;
  height: 100px;
  width: 140px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.portal_name {
  max-width: 300px;
}

.sp-logo {
  position: relative;
  max-width: 200px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.sp-icon {
  content: '';
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-name: mapPin;
}

.sp-logo {
  font-size: 34px;
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@-webkit-keyframes mapPin {
  50% {
    -webkit-transform: scale(1.3, 1.3);
  }
}

@keyframes mapPin {
  50% {
    transform: scale(1.3, 1.3);
  }
}

@media screen and (max-width: 992px) {
  .loader-body {
    padding: 0 10px;
  }

  .sp-logo,
  .sp-icon,
  .sp-icon::before {
    height: 82px;
    width: 120px;
  }

  .sp-logo {
    font-size: 30px;
  }
}
