.linea-animation {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 1.5s linear forwards;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes neonPulse {
  0%, 100% {
    stroke: white;
    filter: drop-shadow(0 0 2px #ff1d25) drop-shadow(0 0 4px #ff1d25) drop-shadow(0 0 6px #ff1d25);
  }
  50% {
    stroke: white;
    filter: drop-shadow(0 0 3px #ff3b3b) drop-shadow(0 0 5px #ff3b3b) drop-shadow(0 0 7px #ff3b3b);
  }
}
g.image-select image {
  display: none;
}
g.image-select image.active {
  display: block;
}

.line-select-content {
  padding: 10px 0;
}
@media (min-width: 768px) {
  .line-select-content {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .line-select-content {
    padding: 150px 0;
  }
}

.cls-line {
  display: none;
  stroke-linecap: round;
}
.cls-line.active {
  display: block;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 2.5s ease-out forwards, neonPulse 2.5s ease-in-out infinite;
}

.cls-circle-neon {
  fill: white;
  stroke: #ff1d25;
  stroke-width: 6px;
  filter: drop-shadow(0 0 6px #ff1d25) drop-shadow(0 0 10px #ff3b3b);
  animation: neonPulse 2.5s ease-in-out infinite;
}

.neon-circle {
  fill: none;
  stroke: white;
  stroke-width: 6px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 1.5s ease-out forwards;
}

.btn {
  border-radius: 0.5rem;
  border-width: 2px;
}
.btn.btn-front {
  background-color: #8B0F13;
}
.btn.btn-front:hover {
  background-color: #C82228;
}
.btn.btn-front.active {
  background-color: #C82228;
}
.btn.btn-front:focus {
  box-shadow: 0 0 0 0.1rem #FFFFFF, 0 0 0 0.1rem #C82228;
}
.btn.btn-back {
  background-color: #121212;
}
.btn.btn-back:hover {
  background-color: #1E1E1E;
}
.btn.btn-back.active {
  background-color: #1E1E1E;
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.1rem #2E2E2E;
}

.list-group-item.list-group-item-action {
  color: #FFFFFF;
}
.list-group-item.list-group-item-action.active {
  background-color: #8B0F13;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/*# sourceMappingURL=svg.select-detail.css.map */
