#hp-email-login .gdpr-lightbox {
    color: #000;
}
.gdpr-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom:0;
    right: 0;
    z-index: 1100;
    background: rgba(0,0,0, 0.5);
    line-height: 18px;
}
.gdpr-lightbox .text {
    display: none;
    position: absolute;
    width: 550px;
    max-width: 100%;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f1f1f1;
    padding: 30px;
    border: 2px solid #dbdbdb;
    border-radius: 8px;
}
.gdpr-lightbox .loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .85;
    text-align: left;
    border: 6px solid rgba(43,51,63,.7);
    box-sizing: border-box;
    background-clip: padding-box;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    animation: 0s linear 0.3s forwards spinnershow;
}
.gdpr-lightbox .loading-spinner:after, .gdpr-lightbox .loading-spinner:before {
    content: "";
    position: absolute;
    margin: -6px;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    opacity: 1;
    border: inherit;
    border-color: transparent;
    border-top-color: #ccc;
    animation: spinnerspin 1.1s cubic-bezier(.6,.2,0,.8) infinite,spinnerfade 1.1s linear infinite;
}
.gdpr-lightbox .loading-spinner:before {
    border-top-color: #ccc;
}
.gdpr-lightbox .loading-spinner:after {
    border-top-color: #ccc;
    animation-delay: .44s;
}
.gdpr-lightbox .btn {
    height: auto;
    display: inline-block;
    color: #fff;
    line-height: 36px;
    padding: 0 20px;
    background-color: #7446aa;
    text-decoration: none;
    border-radius: 3px;
}
.gdpr-lightbox .btn:hover {
    background-color: #d38ac7;
}
.gdpr-lightbox .mb-15 {
    margin-bottom: 15px;
}
@keyframes spinnershow {
  to {
    visibility: visible;
  }
}

@keyframes spinnerspin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinnerfade {
  0% {
    border-top-color: #61738e;
  }
  20% {
    border-top-color: #61738e;
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: #61738e;
  }
  100% {
    border-top-color: #61738e;
  }
}
