
/* Footer message box */
.footer-message {
    background: #222 url('https://liveweave.com/images/bg-polygon.jpg') !important; 
    background-size: 400% 400%;
    color: #ddd;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    height: 300px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1000;
    /* box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.4); */
    opacity: 1;
    transition: opacity 0.5s ease;
    animation: gradientBG 20s ease infinite;
  }

  /* Multi-color header */
  .multi-color-header {
    width: 100%;
    height: 8px;
    background: #4DA6FF;
    position: absolute;
    top: 0;
    left: 0;
  }

  .message-container {
    max-width: 1366px;
    text-align: center;
    position: relative;
    padding: 20px;
    width: 100%;
  }

  /* h2 with thinner font using Ubuntu */
  .footer-message h2 {
    margin: 0;
    font-size: 1.8rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    color: #eee;
  }

  .footer-message p {
    font-size: 1rem;
    margin: 10px 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #ddd;
  }

  /* Bullet points */
  .bullet-points {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    margin-top: 10px;
  }

  .bullet-points li {
    margin: 10px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: #ddd;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
  }

  /* Fancy checkmark icon for bullet points */
  .bullet-points li i {
    font-size: 1.5rem;
    color: #4DA6FF;
    margin-right: 10px;
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background-color: #4DA6FF;
    color: #fff;
    font-size: 1.5rem;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .close-btn:hover {
    background-color: #ff6347;
  }

  /* Button */
  .action-btn {
    background-color: #4DA6FF;
    color: #fff;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .action-btn:hover {
    background-color: #398edb;
  }

  a.message-box:link, a.message-box:visited {
    color: #4DA6FF;
    text-decoration: none;
    font-weight: bold;
  }


  /* Centered logo near the top of the message box */
  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 25px; /* Adjust this value as needed */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  
  .logo-container img {
    width: 40px; /* Adjust size as needed */
    height: auto;
  }
  
  @media screen and (max-width: 768px) {
    .footer-message h2 {
      font-size: 1.5rem;
    }

    .footer-message p {
      font-size: 0.9rem;
    }

    .action-btn {
      font-size: 1rem;
      padding: 10px 20px;
    }
  }