/* Lade-Animation */
.awac-loader-label {
    text-align: center;
    height: auto;
    padding: 10px 0;
}
.awac-loader-label .ladeanimation {
    perspective: 2000px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.awac-loader-label .ladeanimation .inhalt {
    width: 35px;
    height: 35px;
    position: absolute;
    animation: rotating 2s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
}

@keyframes rotating {
  from {
    transform: rotate3d(0, 1, 0, 360deg);
  }
  to {
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

.blatt {
  position: absolute;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.front {
    transform: rotateY( 180deg );
    background: url('../img/Boerlind_Lindenblatt_Front.svg');
    background-size: cover;
}

.verso {
    backface-visibility: hidden;
    background: url('../img/Boerlind_Lindenblatt_Verso.svg');
    background-size: cover;
}

.mid {
  display: flex;
  justify-content: center;
  align-items: center;
}
.diamond {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* 'Back to Top' button */
.awac-back-to-top,
.awac-back-to-top.visible {
    display: none;
}

.awac-back-to-top {
    position: fixed;
    top: 20px;
    cursor: pointer;
    padding: 3px 17px 3px 17px;
    font: bold 12px Arial, Helvetica, sans-serif;
    color: #fff;
    background: none repeat scroll 0 0 #406A83;
    border: solid 1px #000;
    opacity: .6;
}

.awac-back-to-top.visible {
    display: inline;
}