.info {
    position: fixed;
    top: 100px;
    left: -100%; /* Initially off-screen to the left */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 90%;
    max-width: 400px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    background: #509AF8;
    border-radius: 8px;
    box-shadow: 0px 0px 5px -3px #111;
    z-index: 999;
    animation: slideIn 0.5s forwards; /* Animation for sliding in */
  }
  
  .info__icon {
    width: 20px;
    height: 20px;
    margin-right: 20px;
  }
  
  .info__icon path {
    fill: #fff;
  }
  
  .info__title {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
  }
  
  .info__close {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
  }
  
  .info__close path {
    fill: #fff;
  }
  
  @keyframes slideIn {
    from {
      left: -100%; /* Start off-screen to the left */
    }
    to {
      left: 10px; /* Slide in to the center */
    }
  }
  
  @keyframes slideOut {
    from {
      left: 10px; /* Start in the center */
    }
    to {
      left: -100%; /* Slide out to the left */
    }
  }