
/** Style for floating WhatsApp button  **/

#whatsapp-overlay {
    position: fixed;
    bottom: 15px;
    height: 45px;
    line-height: 45px;
    width: 65vw;
    max-width: 260px;
    /*left: 17vw;*/
    left: 50%;
    transform: translateX(-50%);
    background-color: #25D366;
    text-align: center;
    border-radius: 15px;
    display: none;
    box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.5);
  }

  .whatsapp-button {
    display: block;
  }

.whatsapp-button p {
    color: white;
    font-size: 1.1em;
    font-weight: 600;
  }

  .whatsapp-button img {
    height: 30px;
    width: 30px;
    margin-right: 10px;
  }

  /* OPEN WHATSAPP POPUP */

#qr-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgb(255, 240, 243);*/
    display: none;
    justify-content: center;
    align-items: center;
}

#qr-popup {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    text-align: center;
    border: 2px solid #800020; /* Border with a black color */
}

.scan-text {
    font-weight: 600;
    font-size: 1.5em;
    color: #422522;
    margin-bottom: 0;
}