	#lineFloatingPopup {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 220px;
      background-color: #fff;
      border: 2px solid #00c300;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      padding: 20px;
      z-index: 9999;
      display: none;
      font-family: Arial, sans-serif;
    }

    #lineFloatingPopup h3 {
      margin-top: 0;
      color: #00c300;
    }

    #lineFloatingPopup p {
      margin: 10px 0;
    }

    #lineFloatingPopup a {
      display: inline-block;
      background-color: #00c300;
      color: white;
      padding: 10px 15px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }

    #lineFloatingPopup a:hover {
      background-color: #00a000;
    }

    #closePopupBtn {
      position: absolute;
      top: 5px;
      right: 10px;
      font-size: 18px;
      cursor: pointer;
      color: #888;
    }

  .cta-container {
    position: fixed;
    
    bottom: 5%;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
  }

  .cta-icons {
      display: show;
      flex-direction: column;
      gap: 5px;
      margin-bottom: 10px;
      padding-bottom: 10px;
      align-items: center;
  }

  .cta-icons.show {
      display: flex;
  }

  .cta-icon {
    width: 50px;
    height: 50px;
    margin:5px;
    border-radius: 50%;
    background-color: #eff1ef;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .cta-icon:hover {
    background-color: #c2d7f4;
  }