.contenedor_1boton_public {
    display: none !important;
    font: caption;
    text-align: center;
    padding: 5px 0px;
    -webkit-animation: mymove 5s;
    animation: mymove 5s 3;
    width: 65px;
    right: 0;
    border-bottom-left-radius: 40px;
    border-top-left-radius: 40px;
    height: 55px;
    position: fixed;
    bottom: -20px;
    text-decoration: none;
    box-shadow: 0 0 5px #888;
    z-index: 9999;
    font-size: 2.5em;
    box-sizing: content-box;
}

.wrbtn-icon>svg {
    position: relative;

}

@media screen and (max-width: 790px) {

    @keyframes mymove {
        0% {
            transform: scale(1.5);
            -moz-transform: scale(1.5);
            -webkit-transform: scale(1.5);
            -o-transform: scale(1.5);
            -ms-transform: scale(1.5);
        }
    }

    .contenedor_1boton_public {
        display: block !important;
    }
}