/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
    background-color: #0B556A;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 200px;
    border-radius:50px;
    font-size:25px
}

.closePopUp {
    display: block;
    position: fixed;
    bottom: 412px;
    right: 25px;
    border: 0px solid #0B556A;
    z-index: 99;
    width: 30px;
    height: 30px;
    background-color: transparent;
    color: #f1f1f1;
}

/* The popup chat - hidden by default */
.chat-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    border: 1px solid #0B556A;
    z-index: 9;
    height: 450px;
    background-color:white;
    width:350px;
}
