#myrail-loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.logo-svg {
  width: 110px;
  height: 110px;
}

.square {
  fill: none;
  stroke: #00d084;
  stroke-width: 5;
  stroke-linejoin: miter;
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
  animation: draw 1.2s ease forwards;
}

/* Animate squares */
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}