.call-wapp-mes {
        background-color: #0095b1;
        text-align: center;
        position: fixed;
        bottom: 0px;

        width: 100%;
        display: run-in;
        z-index: 999
    }

    .call-wapp-mes .wapp-col {
        width: 33%;
        float: left;
        padding: 5px 5px
    }

    .call-wapp-mes .wapp-col:hover {
        background-color: #22a745
    }

    .call-wapp-mes .wapp-col img {
        width: auto;
        height: 24px;
        margin-bottom: 1px
    }

    .call-wapp-mes .wapp-col span {
        display: block;
        font-size: 16px
    }

    .call-wapp-mes .wapp-col a {
        color: #fff
    }
      /* Container for the scrolling message */
    .scrolling-message {
      width: 100%;
      white-space: nowrap;
      overflow: hidden;
      padding: 100px;
      background-color: #0095b1;
      text-align: center;
      position: fixed;
      bottom: 30px;
      width: 100%;
      display: run-in;
      z-index: 999;
      color: white;
      font-size: 12px;
      text-align: center;

      animation: scrollMessage 15s linear infinite;
    }

    /* Define the scrolling animation */
    @keyframes scrollMessage {
      from {
        transform: translateX(100%);
      }
      to {
        transform: translateX(-100%);
      }
    }
