* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


.loading-page {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  /*background: linear-gradient(to right, #2c5364, #203a43, #0f2027);*/
  /* background-image: url("../../img/background_qr_app.png"); */
  background: linear-gradient(to right, #ec008c, #fc6767); /* background for loader */

  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  color: #191654;
}

#svg-logo {
  height: 250px;
  width: 250px;
  stroke: white;
  fill-opacity: 0;
  stroke-width: 3px;
  stroke-dasharray: 4500;

  animation: beat .50s infinite alternate ease-in-out;
  opacity: .0;
  transform-origin: center;
  animation-delay: 1.25s;

}

/* Heart beat animation */
@keyframes beat{
  to { transform: scale(1.2); opacity: 1}
}

@keyframes draw {
  0% {
    stroke-dashoffset: 4500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.name-container {
  margin-top:-75px;
  height: 40px;
  overflow: hidden;
}

.logo-name {
  color: #fff;
  font-size: 26px;
  font-family: 'Cubano', sans-serif;
  letter-spacing: 16px;
  text-transform: uppercase;
  margin-top: -50px;
  margin-left: 20px;
  font-weight: bolder;
}