.x-file-area {
    border: 3px dashed #000;
    opacity: 0.5;
    width: 100% !important;
    height: 100% !important;
}

.poschat{
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  top: auto !important;
}


.chat-jump {
  transform-origin: 50% 50%;
  animation: chat-jump .5s linear alternate infinite;
  right: 0 !important;
  bottom: 5px !important;
  left: auto !important;
  top: auto !important;
}

@keyframes chat-jump {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(1) scale(1);
    }
    75% {
        transform: translateY(-10px) scale(1.05);
    }
}
