.custom-notification-container {
    position: relative;
  }
  
  .custom-notification-image-wrapper {
    position: absolute;
    top: 5px;
    left: 0;
  }
  
  .custom-notification-image-wrapper img {
    max-height: 75px;
    width: 90px;
    overflow: hidden;
    border-radius: 6px 0 0 6px;
    object-fit: cover;
  }
  
  #image-1 {
    background-color: rgb(30, 134, 255);
    width: 50px;
    height: 50px;
    border-radius: 6px 0 0 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .custom-notification-content-wrapper {
    margin-left: 50px;
    height: 100%;
    color: gray;
    border-radius: 0 6px 6px 0;
    flex: 1;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
  }
  
  .custom-notification-content {
    font-family: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px;
    line-height: 16px;
  }
  
  .custom-notification-content small {
    margin-top: 3px !important;
    display: block !important;
    font-size: 12px !important;
    opacity: 0.8;
  }
  
  .custom-close {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 12px;
    width: 12px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    transform: rotate(45deg);
    opacity: 0;
  }
  
  .custom-close::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: gray;
    position: absolute;
    left: 0;
    top: 5px;
  }
  
  .custom-close::after {
    content: "";
    display: block;
    height: 100%;
    width: 2px;
    background-color: gray;
    position: absolute;
    left: 5px;
    top: 0;
  }
  
  .custom-notification:hover .custom-close {
    opacity: 1;
  }
  
  .poweredby {
    font-weight: 600;
    text-decoration: none;
    margin-left: 3px;
    color: #3498db;
  }
  
  .custom-social-proof {
    position: fixed;
    bottom: 20px;
    right: 400px;
    z-index: 9999 !important;
    font-family: 'Open Sans', sans-serif;
  }
  
  .custom-notification-container {
    position: relative;
    height: 300px;
  }
  
  .custom-notification {
    position: absolute;
    width: 400px;
    border: 0;
    text-align: left;
    z-index: 9998 !important;
    box-sizing: border-box;
    font-weight: 400;
    border-radius: 6px;
    box-shadow: 2px 2px 10px 2px hsla(0, 4%, 4%, 0.2);
    background-color: #fff;
    padding: 20px;
    margin-top: 20px;
    animation: fadeIn 0.5s;
}
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .custom-notification:nth-child(1) {
    top: -35px;
    left: 0;
    animation-delay: 0s;
  }
  
  .custom-notification:nth-child(2) {
    top: 30px;
    left: 0;
    animation-delay: 2s;
  }
  
  .custom-notification:nth-child(3) {
    top: 95px;
    left: 0;
    animation-delay: 4s;
  }
  
  .custom-notification:nth-child(4) {
    top: 160px;
    left: 0;
    animation-delay: 6s;
    }
    .custom-notification:nth-child(5) {
      top: 225px;
      left: 0;
      animation-delay: 8s;
      }
      
      .custom-notification {
      height: 60px;
      margin-bottom: 10px;
      }
      
      /* Additional styles to make notifications look more cartoonish */
      
      .custom-notification {
      border-radius: 10px;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
      }
      
      .custom-notification-content-wrapper {
      padding: 10px;
      }
      
      .custom-notification-content {
      font-size: 14px;
      line-height: 18px;
      }
      
      .custom-notification-content small {
      font-size: 12px;
      }
  
   
  
      
      /* Animations */
      
      @keyframes pulse {
      0% {
      transform: scale(1);
      }
      50% {
      transform: scale(1.1);
      }
      100% {
      transform: scale(1);
      }
      }
      
      @keyframes fadeIn {
      from {
      opacity: 0;
      }
      to {
      opacity: 1;
      }
      }