#user-data-popup{
position:fixed;
bottom:0;
right:0;
width:58%;
background-color:#f9f9f9;
color:#333;
padding:15px;
box-sizing:border-box;
display:flex;
align-items:center;
justify-content:space-between;
z-index:9999;
}
#user-data-popup a{
color:#007bff;
text-decoration:none;
}
#user-data-popup .close{
cursor:pointer;
font-size:18px;
}
@media(min-width:768px){
#user-data-popup{
max-width:600px;
}
}