.lb_fader {
	background: rgba(1, 1, 1, .7);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
	display: block;
	cursor: url("https://dnd.cyberian-networks.de/images/cursors/cursor_close.png") 12 12, auto;
}

.lb_content {
 position: relative;
  z-index: 0;
  box-sizing: border-box;
  width: var(--width);
  margin: 65px auto;
  
  font-family: 'Tangerine', cursive;
  font-size: 26px;
  
  border: 0px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  /* Background lines */
  background-image: linear-gradient(#f5f5f0 1.3rem, #ccc 1.4rem);
  background-size: 100% 1.4rem;
  box-shadow: 2px 3px 20px black, 0 0 60px #8a4d0f inset;
  line-height: 1.4rem;
  padding: 1.4rem 0.5rem 0.3rem 0.5rem;
  text-align: center;
}

@-webkit-keyframes flashing {
  from { background-color:rgba(105, 1, 1, 0.3); }
  to { background-color: inherit; }
}
@-moz-keyframes flashing {
  from { background-color:rgba(105, 1, 1, 0.3); }
  to { background-color: inherit; }
}
@-o-keyframes flashing {
  from { background-color:rgba(105, 1, 1, 0.3); }
  to { background-color: inherit; }
}
@keyframes flashing {
  from { background-color:rgba(105, 1, 1, 0.3); }
  to { background-color: inherit; }
}
.flashing {
  -webkit-animation: flashing 0.3s ease-in-out 5; /* Safari 4+ */
  -moz-animation:    flashing 0.3s ease-in-out 5; /* Fx 5+ */
  -o-animation:      flashing 0.3s ease-in-out 5; /* Opera 12+ */
  animation:         flashing 0.3s ease-in-out 5; /* IE 10+ */
}