
    #gdprWindow {
        z-index: 99999999999999;
        display: block;
        position: fixed;
        width: 90%;
        left: 5%;
        top: 5%;
        height: 90%;
        background: white;
        border-radius: 20px;
        box-shadow: 0 0 0 2000px rgba(0,0,0,.8);
      }
      
    #gdprWindow .innerWindow {
       margin: 20px;
       background: #eeeeee;
       font-size: 14px;
       line-height: 150%;
       width: auto;
       height: auto;
       border-radius: 20px;
       padding: 20px;
       overflow: scroll;
       display: box;
        height: 94%;
   }
   
    #gdprWindow .acceptButton {
      

        position: absolute;
        bottom: 5%;
        right: 4%;

    }
    
    .md-btn {
  font-family: "Roboto medium", sans-serif;
  font-size: 16px;
  display: inline-block;
  height: 40px;
  min-width: 88px;
  padding: 6px 16px;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  border-radius: 2px;
  background: #2196f3;
  color: #fff;
  outline: 0;
}
.md-btn:focus {
  background: #0b76cc;
}

.md-btn-ripple:hover {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.md-btn-raised:active {
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.4);
}

/*
 Ripple
*/
.md-btn-ripple {
  overflow: hidden;
  position: relative;
}

.md-btn-ripple:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  transform: scale(0);
}

@keyframes md-btn-ripple {
  0% {
    transform: scale(0);
  }
  20% {
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.md-btn-ripple:not(:active):after {
  animation: md-btn-ripple 0.6s ease-out;
}

.md-btn-ripple:after {
  visibility: hidden;
}

.md-btn-ripple:focus:after {
  visibility: visible;
}
    
    
    
    