body {
  padding: 0;
  margin: 0;
}

.root {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
}

.logo-wrapper svg {
  display: block;
  width: 100%;
  max-height: 100px;
  margin: 0 auto;
  fill: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* z-index: 100; */
  overflow: visible;
}

.logo-wrapper {
  height: 100px;
  width: 100px;
  overflow: visible;
}

/* 
.logo-wrapper::before {
    position: absolute;
    margin-top: 2.5px;
    margin-left: 2.5px;
    width: 90px;
    height: 90px;
    content: '';
    z-index: 1;
    border-radius: 50%;
    border: 2px solid black;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
} */

.circle {
  fill: rgb(155, 28, 28);
  transform: scale(0.5);
  transform-origin: center center;
  animation: pulse 4s linear infinite;
}

.pulse {
  overflow: visible;
}

.second-circle {
  animation-delay: 0.75s;
}

.third-circle {
  animation: pulse-active 1.5s linear infinite;
  animation-delay: 1.5s;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.07;
  }
  70% {
    opacity: 0.05;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

@keyframes pulse-active {
  from {
    transform: scale(0);
    opacity: 0.15;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}

#circle {
  border-radius: 50%;
  background: black;
  /* filter: drop-shadow(0px 0px 10px black); */
  /* transform: scale(1);
	animation: pulse 2s infinite; */
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  z-index: 9999;
}

@media (max-width: 767px) {
  .logo-wrapper {
    height: 100px;
    width: 100px;
  }
  .logo-wrapper svg {
    max-height: 100px;
  }
}
