{
    background-color: rgba(40, 134, 179);
}

.container-boton{
    background-color: #fff;
    border: 3px solid #0e74a5;
    position: fixed;
    z-index: 100;
    border-radius: 50%;
    bottom: 25px;
    right: 5px;
    padding: 10px;
    transition: ease 0.3s;
    animation: efecto 1.0s infinite;
}

.container-boton:hover{
    transform: scale(1.1);
    transition: 0.3s;
}

.boton{
    width:50px;
    transition: ease 1s;
}

@keyframes efecto{
    0%{
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
    }
    100%{
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}