.webapp-specific-styles {
  color: red;
}

.bg-splashscreen {
  background: linear-gradient(180deg, var(--bs-primary-500) 5%, var(--bs-primary-900) 70%);
}

.line-punch-holes {
  height: 20px;
  margin: 0 10px;
  background-color: #fff;
  position: relative;
  box-shadow: 0 1px 0 0 #fff, 0 -1px 0 0 #fff;
}

.line-punch-holes>hr {
  position: absolute;
  left: .5rem;
  right: .5rem;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  border-top: 1px dashed var(--bs-secondary-color);
  margin: 0;
}

.line-punch-holes:before,
.line-punch-holes:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 5px solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
  border-radius: 100%;
  pointer-events: none;
}

.line-punch-holes:before {
  left: -10px;
}

.line-punch-holes:after {
  transform: translate(-50%, -50%) rotate(225deg);
  right: -40px;
}