.mcicon img {
  width: 32px;
  height: 32px;
  /* object-fit: cover; Ensures the image isn't distorted while fitting the dimensions */
}

.mcicon2 img {
  width: 64px;
  height: 64px;
  /* object-fit: cover; Ensures the image isn't distorted while fitting the dimensions */
}


.fixed-banner {
  position: fixed; /* Keeps it relative to the viewport */
  bottom: 20px;    /* Distance from the bottom */
  left: 20px;      /* Distance from the left */
  z-index: 9999;   /* Ensures it stays above all other elements */
  display: block;  /* Ensures the link wraps the image correctly */
}

.fixed-banner img {
  width: 250px;    /* Adjust size as needed */
  height: auto;
  display: block;
  cursor: pointer;
}