@keyframes ripple{0%{transform:scale(1);opacity:.5}100%{transform:scale(1.5);opacity:0}}@keyframes slideUp{0%{transform:translateX(200px);opacity:0}100%{transform:translateX(0);opacity:1}}#chatController{position:fixed;box-shadow:0 4px 8px 0 rgba(0,0,0,.2);animation:slideUp .6s ease-out forwards;bottom:50px;right:50px;background-color:#777;width:50px;height:50px;z-index:9999;border-radius:50%;display:flex;align-items:center;justify-content:center}#chatController i{color:#fff}#chatController:hover{cursor:pointer}#chatController::before{content:"";position:absolute;width:100%;height:100%;border-radius:50%;background-color:#777;opacity:.5;animation:ripple 2s infinite;z-index:-1}#chat-sidebar{max-width:400px;width:100%;box-shadow:0 4px 8px 0 rgba(0,0,0,.2);position:fixed;background-color:#fff;height:100%;right:-400px;top:0;z-index:9999;transition:all ease-in .3s}#chat-sidebar.active-chat{right:0}@media screen and (max-width: 1024px){#chat-sidebar.active-chat{width:100%}}#chat-sidebar .chat-heading{background-color:#777;padding:10px 20px;position:relative}#chat-sidebar .chat-heading .close-chat{box-shadow:0 4px 8px 0 rgba(0,0,0,.2);position:absolute;top:10px;right:10px;width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;background-color:#fff;transition:transform .3s ease}#chat-sidebar .chat-heading .close-chat:hover{transform:rotate(180deg);cursor:pointer}#chat-sidebar .chat-heading .close-chat i{color:#777}#chat-sidebar .chat-heading h4,#chat-sidebar .chat-heading h5{margin-top:0;color:#fff}#chat-sidebar .chat-heading .separatore{height:1px;width:100%;background-color:#fff}#chat-sidebar #nuovo-commento{padding:10px 20px}#chat-sidebar #nuovo-commento #comment-box #comment-text{width:100%;height:50px;padding:5px;border:1px solid #ccc;border-radius:4px;outline:none;font-size:12px;color:#333;margin-bottom:20px}#chat-sidebar #nuovo-commento #comment-box #comment-text.placeholder::before{content:attr(data-placeholder);color:#aaa;pointer-events:none}#chat-sidebar #nuovo-commento #comment-box #comment-actions{display:flex;justify-content:flex-end;gap:10px}#chat-sidebar #nuovo-commento #comment-box #comment-actions button{font-size:12px;padding:5px 10px}#chat-sidebar #commenti{display:flex;overflow-y:auto;height:100%;max-height:500px;justify-content:center;flex-direction:column}#chat-sidebar #commenti .comment-heading{margin:20px 10px;margin-bottom:0;border-bottom:1px solid #777}#chat-sidebar #commenti .comment-heading .user-id{max-width:50%;background-color:#777;height:20px;color:#fff;border-top-left-radius:5px;border-top-right-radius:5px;font-size:15px;text-align:left;display:flex;align-items:center;justify-content:center}#chat-sidebar #commenti .comment{background-color:#f4f4f4;color:#333;border-radius:3px;margin:20px 10px;padding:10px 20px;font-size:15px;width:95%}#chat-sidebar #commenti .no-comments{display:flex;text-align:center;flex-direction:column;align-items:center}#chat-sidebar #commenti .no-comments .circle{background-color:#ccc;width:100px;height:100px;border-radius:50%;display:flex;align-items:center;justify-content:center}#chat-sidebar #commenti .no-comments .circle i{color:#fff}#chat-sidebar #commenti .no-comments h6{font-size:18px;font-weight:500}#chat-sidebar #commenti .no-comments p{font-size:14px}