#npm-container {
  position: fixed;
  bottom: 20px;
  right: 5px;
  width: 100%;
  max-width:400px;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  z-index: 1000;
}

.npm {
  background-color: #333;
  color: white;
  /* padding: 15px; */
  border-radius: 40px 10px 0 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  position: relative;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height:80px;
}

.npm.show {
  transform: translateX(0);
  opacity: 1;
}

.npm.hide {
  transform: translateX(120%);
  opacity: 0;
}

.npm button {
  position:absolute;
  top:-5px;
  right:-5px;
  background: #333;
  border: 2px #fff solid;
  border-radius:50%;
  width:28px;
  height:28px;
  color: white;
  font-size: 16px;
  cursor: pointer;
}