#minimizedHelpIcon {
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	animation: bounce 1.5s infinite;
  }
  
  @keyframes bounce {
	0%, 100% {
	  transform: translateY(0);
	}
	50% {
	  transform: translateY(-10px);
	}
  }
  #minimizedHelpIcon {
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	width: 50px; /* Set the width of the icon */
	height: 50px; /* Set the height of the icon */
	animation: bounce 1.5s infinite;
  }
  
  #minimizedHelpIcon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
  }  