	 .container {
      max-width: 1065px;
      margin: 20px auto;
      text-align: center;
    }
    .whatsapp-icon {
      position: fixed;
      bottom: 100px;
      right: 20px;
      width: 50px;
      height: 50px;
      background-color: green;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 24px;
      cursor: pointer;
      transition: background-color 0.3s;
	  z-index: 1;
    }
    .whatsapp-icon:hover {
      background-color: darkgreen;
    }
    .popup {
      display: none;
      position: fixed;
      bottom: 80px;
      right: 20px;
	  width: 20em;
      background-color: black;
      padding: 20px;
      border: 1px solid #ccc;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      border-radius: 2em;
	  color: black;
    }
    .sendBtn{
      cursor: pointer;
    }
    .closeBtn{
      cursor: pointer;
    }
	.message,.email,.contactPerson,.brandName,.tel{
		height: 28px;
    margin-bottom: -1px;
	}