.gdpr-popin {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}
.gdpr-popin-content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2000;
    width: 50%;
    padding: 40px;
    min-height: 200px;
    max-height: calc(100vh - 80px);
    overflow: auto;
    background: rgb(255, 255, 255);
    transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
    .gdpr-popin-content {
        width: 80%;
    }
}

.gdpr-popin-customise-button, .gdpr-popin-back-button {
    background: transparent;
    color: rgb(180, 180, 180);
}
.gdpr-popin-customise-button:hover, .gdpr-popin-back-button:hover {
    background: transparent;
    color: rgb(140, 140, 140);
}

.gdpr-popin-customisation {
    display: none;
}
.gdpr-popin-choices {
    padding-left: 40px;
}


[data-gdpr-open-popin] {
    cursor: pointer;
}
