div#llamanosBtn {
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 10000000000;
    display: block;
    width: 260px;
    height: 60px;
    background-color: transparent;
    opacity: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    max-width: 370px;
    -webkit-transition: all .2s ease-in-out;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    transition: -webkit-transform .5s ease;
    transform: translate3d(0,0,0);
    transition: opacity .4s;    
}
div#llamanosBtn.float-show {
    opacity: 1;
    transform: none;
    pointer-events: visible;
}

.container-style {
    float: right;
    /* margin-top: 5px; */
    max-width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .2s ease-in-out;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    transition: -webkit-transform .5s ease;
    transform: translate3d(0,0,0);
    transition: opacity .4s;
    opacity: 1;
    width: auto;
    height: 44px;
    border-radius: 30px;
    padding: 0px 40px 0 36px;
    margin-bottom: 0;
    margin-top: 0px;
    background-color: #a83131;
    box-sizing: border-box;
    box-shadow: 0 3px 8px 0 rgba(0,0,0,.32);
    -webkit-animation: fadein .3s;
    -moz-animation: fadein .3s;
    -ms-animation: fadein .3s;
    -o-animation: fadein .3s;
    animation: fadein .3s;}

.container-style a {
    width: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-around;
    /* float: left; */
    color: white;
}
span#popup-message-icon {
    margin: 0;
    font-weight: 700;
    cursor: pointer;
    background-size: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 44px;
}
span#popup-message-icon i {
    font-size: 16px;
    display: block;
}
span.windowTitle {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 0 8px;
    display: block;
    padding: 0;
}
.container-style a:hover {
    color: #fce8e8;
}
.container-style:hover {
    background-color: #972a2a;

}