/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
    background-color: #71ad4d;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 290px;
    font-weight: bold;
    }
    .closePopUp{
    display: block;
    position: fixed;
    bottom: 510px;
    right: 10px;
    border: 2px solid #f1f1f1;
    z-index: 99;
    width:30px;
    height:30px;
    background-color: transparent;
    color:#f1f1f1;
    font-weight: bold;
    }
    /* The popup chat - hidden by default */
    .chat-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 1px;
    border: 3px solid #f1f1f1;
    z-index: 9;
    height:550px;
    width:400px;
    background-color:#eaeaea
   }