/* CSS para el botón */
.rw-icon-cita-button {
    position: fixed;
    bottom: 80px;
    right: 25px;
    height: 64px;
    width: 200px;
    padding: 12px 12px 12px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    font-weight: 800;
    background-color: #BE1622;
    color: ##76070C;
    border-radius: 168px;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    border: none;
    cursor: pointer;
}
/*
.rw-icon-cita-button:hover {
    background-color: #BE1622;
    color: #76070C;
    transition: ease-in 2s;
}
*/
.rw-icon-cita-button a {
    color: #76070C;
    font-weight: normal;
}

/* CSS para la imagen dentro del botón */
.rw-icon-cita-button img {
    height: 26px;
    width: 26px;
    transition: all 0.25s 0s ease-in-out;
}

/* Estilo al pasar el ratón sobre la imagen */
/*
.rw-icon-cita-button:hover img {
    transform: scale(1.1); 
}
*/