/* Bubble button */

.hqtxZK {
    height: 64px;
    width: 64px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 12px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    /*position: relative;*/
    background-color: rgb(255, 255, 255);
    margin-bottom: 20px;
    margin-right: 20px;
    margin-left: 20px;
    border-radius: 50%;
    outline: transparent;
}

.hqtxZK::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: rgb(255, 0, 0);
    display: block;
    position: absolute;
    z-index: 1;
    right: 4px;
    top: 4px;
    border-radius: 50%;
}

.hzZnJx{
    display: flex;
}

/* the popup */

/* The popup chat - hidden by default */
.form-popup {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 20;

    -webkit-box-shadow: -4px 62px 90px -39px rgba(0,0,0,0.75);
    -moz-box-shadow: -4px 62px 90px -39px rgba(0,0,0,0.75);
    box-shadow: -4px 62px 90px -39px rgba(0,0,0,0.75);
}

/* Add styles to the form container */
.form-container {
    border-radius: 8px;
    /*background-image: url('../images/whatsapp.png');*/
    /*background-size: cover;*/
}

.popup__header{
    background-color: #029833;
    color: white;
    padding: 15px 20px;

    border: 1px solid #029833;
    border-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    display: flex;
    justify-content: space-between;
}

.popup__close{
    color: #f5deb3;
    background: transparent;
    border: none;
}
.popup__close:focus{
    outline: none;
}
.popup__close:hover{
    color: white;
}

.popup__header p {
    margin-bottom: 0;
}