.gdpr-banner{
    font-family: 'Inter', sans-serif;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    max-width: 440px;
    min-height: 144px;
    max-height: 100%;
    padding: 24px 16px;
    margin: 0 0 32px 32px;
}
.gdpr-inner{
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    max-width: 404px;
    padding: 0 32px 0 12px;
    margin: 0 auto;
}
.gdpr-banner p{
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
    text-align: left;
    letter-spacing: -0.11px;
}
.gdpr-banner p a{
    font-weight: 700;
    text-decoration: underline;
    color: #000;
    cursor: pointer;
}
.gdpr-inner .close{
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-color);
    position: absolute;
    top: -11px;
    right: 3px;
    float: right;
    cursor: pointer;
    text-decoration: none;
    opacity: 1;
}
@media screen and (max-width: 767px) {
    .gdpr-banner {
        max-width: calc(100% - 32px);
        min-height: 168px;
        max-height: 100%;
        padding: 24px 16px;
        margin: 0 auto 24px auto;
    }
    .gdpr-inner{
        padding: 0 32px 0 12px;
    }
}
@media screen and (min-width: 768px){
    .gdpr-banner p a:hover{
        text-decoration: none;
    }
}
.hide{
    display:none!important;
}