.rgpd-banner{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background:#5A6776;
    color:#fff;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    z-index:9999;
    font-family:Arial, Helvetica, sans-serif;
    box-shadow:0 -2px 8px rgba(0,0,0,.25);
}

.rgpd-text{
    font-size:14px;
    line-height:1.5;
}

.rgpd-banner a{
    color:#8fd3ff;
    text-decoration:none;
}

.rgpd-banner a:hover{
    text-decoration:underline;
}

#rgpd-close{
    background:#0d6efd;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:5px;
    cursor:pointer;
}

#rgpd-close:hover{
    opacity:.9;
}

@media(max-width:700px){

.rgpd-banner{
    flex-direction:column;
    align-items:flex-start;
}

#rgpd-close{
    width:100%;
}

}