#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 100px;
  height: 100px;
 
  
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;

}

.button
{
cursor: pointer;

}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.debugklick
{
    display: block;
    background-color: #EEE;
    font-size: 27px;
    color: red;
    float: left;
    z-index: 24;
    left: 0px;
    top: 33px;
    position: relative;
    margin-right: 26px;
   
}

.Schild_BT
{
    display: block;
    text-align: center;
    font-size: 14px;
    color: #ab0909;
    /* filter: blur(0.5px); */
    font-family: 'Rock Salt';
    font-weight: 800;
    filter: blur(0.5px);
    cursor: pointer;
    opacity: 0.8;
}