/* 
:root {
  --wg-primary-color: #cc1e1c;
  --wg-stage-image-size-factor: 1;
  --wg-scaling: 1;
  --wg-stage-image-width: calc(800px * var(--wg-stage-image-size-factor));
  --wg-stage-image-height: var(--wg-stage-image-width);
}




.wg-stage {
  position: absolute;
  width: 800px;
  height: 800px;
  top: -400px;
  left: -400px;
  margin-top: calc(var(--wg-scaling) * 400px);
  margin-left: calc(var(--wg-scaling) * 400px);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(var(--wg-scaling));
}

.wg-stage-image {
  position: absolute;
  width: var(--wg-stage-image-width);
  height: var(--wg-stage-image-height);
  flex-shrink: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: var(--wg-primary-color);
  background-blend-mode: multiply;
  cursor: move;
}

.wg-stage-logo-hashtag,
.wg-stage-wert {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
}

 */



















