#uwe-klapdor-dsgvo-msg {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  width: 100%;
  background: white;
  opacity: 0;

  padding: 0.5rem 1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.dsgvo-info,
.dsgvo-button {
  font-size: 1.2rem;
}

.dsgvo-info {
  padding: .5rem 1rem;
  line-height: 1.5;
}

.dsgvo-buttons {
  margin-right: 30px;
  padding-left: 1.5rem;
  border-left: 1px dashed #ccc;
}

.dsgvo-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.3rem 0.6rem;
  outline: none;

  border-color: transparent;
  -webkit-transition: .3s ease;

  transition: .3s ease;
}

.dsgvo-button:hover {
    border-color: transparent;
    background: rgb(199, 166, 110);
    color: white;
}

.fade-in {
  -webkit-animation: fade-in 2s ease 2s 1;
  animation: fade-in 2s ease 0s 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/* Animations */

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Datenschutzerklärung */

.dsgvo-wrapper {
  padding: 2rem 4rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000;
  color: #ddd;
  font-weight: 100;
  line-height: 1.8;
}

.dsgvo-section {
  padding: 1rem 2rem;
}
