.containerwhatsapp {
     border: 0;
     position: fixed;
     bottom: 15px;
     right: 15px;
     z-index: 99;
     visibility: visible;
 }

 .talk-bubble {
     margin: 0px;
     display: inline-block;
     position: relative;
     width: 200px;
     height: auto;
     background-color: #dcf8c6;
     bottom: 8px;
     right: 25px;
     z-index: 99;
     line-height: 0px;
     line-height: 1.2em;
 }

 .roundMe {
     border-radius: 12px;
     -webkit-border-radius: 12px;
     -moz-border-radius: 12px;
 }

 .tri-right.right-in:after {
     content: ' ';
     position: absolute;
     width: 0;
     height: 0;
     left: auto;
     right: -20px;
     top: 32px;
     bottom: auto;
     border: 12px solid;
     border-color: #dcf8c6 transparent transparent #dcf8c6;
 }

 .talktext {
     padding-top: 0.8em;
     padding-left: 0.8em;
     padding-right: 1.1em;
     padding-bottom: 0em;
     text-align: left;
     line-height: 1.2em;
     margin-top: -5px;
 }

 .nombreEmpresa {
     display: flex;
     font-size: 13px;
     margin: 0;
     padding: 0;
     font-family: 'Roboto', sans-serif;
     color: #254116;
     font-weight: 600;
 }

 .textoBubble {
     margin: 0;
     -webkit-margin-before: 0em;
     -webkit-margin-after: 0em;
     text-rendering: optimizeLegibility;
     font-family: 'Roboto', sans-serif;
     font-size: 14px;
     font-weight: 400;
     text-align: left;
     line-height: 1.2em;
     color: #565656;
 }

 .horaCheck {
     width: 100%;
     display: inline-block;
 }

 .estaHora {
     font-weight: 400;
     font-size: 11px;
     color: rgba(0, 0, 0, 0.45);
     float: right;
     margin: -10px 1px 0px 0px;
     padding: 0px;
     font-family: 'Roboto', sans-serif;
 }

 .check {
     float: right;
     padding: 0px;
     margin: -9px -10px 0px 0px;
 }

 .whatsapp {
     position: relative;
     bottom: 7px;
     right: 0px;
     z-index: 999998;
     width: 70px;
     height: 70px;
     transition: width 1s, height 1s;
     float: right;
 }

 #toTop {
     visibility: hidden;
 }

 .invisible {
     visibility: hidden;
     display:none;
 }

 .notificacionMe {
     position: absolute;
     top: -6px;
     right: -6px;
     padding: 2px 7px;
     border: 1px solid white;
     border-radius: 100px;
     background: -webkit-linear-gradient(top, #FF6969 0%, #ff0000 100%);
     box-shadow: 0 1px 2px rgba(0, 0, 0, .5), 0 1px 4px rgba(0, 0, 0, .4), 0 0 1px rgba(0, 0, 0, .7) inset, 0 10px 0px rgba(255, 255, 255, .11) inset;
     -webkit-background-clip: padding-box;
     font: bold 15px 'Roboto', sans-serif;
     color: white;
     text-decoration: none;
     text-shadow: 0 -1px 0 rgba(0, 0, 0, .6);
     z-index: 999999;
 }

 @media screen and (min-width:990px) {
     .whatsapp:hover {
         width: 75px;
         height: 75px;
     }
 }

 @media screen and (max-width: 600px) {
     .containerwhatsapp {}

     #toTop {
         visibility: hidden;
     }
     .nombreEmpresa {
         padding-bottom: 1px;
         padding-top: 2px;
         padding-right: 2px;
     }
 }

 .element-animation {
     animation: animationFrames ease 1s;
     animation-iteration-count: 1;
     transform-origin: 50% 50%;
     animation-fill-mode: forwards;
     /*when the spec is finished*/
     -webkit-animation: animationFrames ease 1s;
     -webkit-animation-iteration-count: 1;
     -webkit-transform-origin: 50% 50%;
     -webkit-animation-fill-mode: forwards;
     /*Chrome 16+, Safari 4+*/
     -moz-animation: animationFrames ease 1s;
     -moz-animation-iteration-count: 1;
     -moz-transform-origin: 50% 50%;
     -moz-animation-fill-mode: forwards;
     /*FF 5+*/
     -o-animation: animationFrames ease 1s;
     -o-animation-iteration-count: 1;
     -o-transform-origin: 50% 50%;
     -o-animation-fill-mode: forwards;
     /*Not implemented yet*/
     -ms-animation: animationFrames ease 1s;
     -ms-animation-iteration-count: 1;
     -ms-transform-origin: 50% 50%;
     -ms-animation-fill-mode: forwards;
     /*IE 10+*/
 }

 @keyframes animationFrames {
     0% {
         opacity: 0;
         transform: translate(-1500px, 0px);
     }

     60% {
         opacity: 1;
         transform: translate(30px, 0px);
     }

     80% {
         transform: translate(-10px, 0px);
     }

     100% {
         opacity: 1;
         transform: translate(0px, 0px);
     }
 }

 @-moz-keyframes animationFrames {
     0% {
         opacity: 0;
         -moz-transform: translate(-1500px, 0px);
     }

     60% {
         opacity: 1;
         -moz-transform: translate(30px, 0px);
     }

     80% {
         -moz-transform: translate(-10px, 0px);
     }

     100% {
         opacity: 1;
         -moz-transform: translate(0px, 0px);
     }
 }

 @-webkit-keyframes animationFrames {
     0% {
         opacity: 0;
         -webkit-transform: translate(-1500px, 0px);
     }

     60% {
         opacity: 1;
         -webkit-transform: translate(30px, 0px);
     }

     80% {
         -webkit-transform: translate(-10px, 0px);
     }

     100% {
         opacity: 1;
         -webkit-transform: translate(0px, 0px);
     }
 }

 @-o-keyframes animationFrames {
     0% {
         opacity: 0;
         -o-transform: translate(-1500px, 0px);
     }

     60% {
         opacity: 1;
         -o-transform: translate(30px, 0px);
     }

     80% {
         -o-transform: translate(-10px, 0px);
     }

     100% {
         opacity: 1;
         -o-transform: translate(0px, 0px);
     }
 }

 .Whatsapp-animation2 {
     animation: animationFrames2 ease 1s;
     animation-iteration-count: 1;
     transform-origin: 50% 50%;
     animation-fill-mode: forwards;
     /*when the spec is finished*/
     -webkit-animation: animationFrames2 ease 1s;
     -webkit-animation-iteration-count: 1;
     -webkit-transform-origin: 50% 50%;
     -webkit-animation-fill-mode: forwards;
     /*Chrome 16+, Safari 4+*/
     -moz-animation: animationFrames2 ease 1s;
     -moz-animation-iteration-count: 1;
     -moz-transform-origin: 50% 50%;
     -moz-animation-fill-mode: forwards;
     /*FF 5+*/
     -o-animation: animationFrames2 ease 1s;
     -o-animation-iteration-count: 1;
     -o-transform-origin: 50% 50%;
     -o-animation-fill-mode: forwards;
     /*Not implemented yet*/
     -ms-animation: animationFrames2 ease 1s;
     -ms-animation-iteration-count: 1;
     -ms-transform-origin: 50% 50%;
     -ms-animation-fill-mode: forwards;
     /*IE 10+*/
 }

 @keyframes animationFrames2 {
     0% {
         opacity: 1;
         transform: translate(0px, 0px);
     }

     57% {
         opacity: 1;
         transform: translate(20px, 0px);
     }

     100% {
         opacity: 0;
         transform: translate(-1000px, 0px);
     }
 }

 @-moz-keyframes animationFrames2 {
     0% {
         opacity: 1;
         -moz-transform: translate(0px, 0px);
     }

     57% {
         opacity: 1;
         -moz-transform: translate(20px, 0px);
     }

     100% {
         opacity: 0;
         -moz-transform: translate(-1000px, 0px);
     }
 }

 @-webkit-keyframes animationFrames2 {
     0% {
         opacity: 1;
         -webkit-transform: translate(0px, 0px);
     }

     57% {
         opacity: 1;
         -webkit-transform: translate(20px, 0px);
     }

     100% {
         opacity: 0;
         -webkit-transform: translate(-1000px, 0px);
     }
 }

 @-o-keyframes animationFrames2 {
     0% {
         opacity: 1;
         -o-transform: translate(0px, 0px);
     }

     57% {
         opacity: 1;
         -o-transform: translate(20px, 0px);
     }

     100% {
         opacity: 0;
         -o-transform: translate(-1000px, 0px);
     }
 }

 .logo_whatsapp {
     animation: animationFrames3 linear 25s;
     animation-iteration-count: 5;
     transform-origin: 50% 50%;
     -webkit-animation: animationFrames3 linear 25s;
     -webkit-animation-iteration-count: 5;
     -webkit-transform-origin: 50% 50%;
     -moz-animation: animationFrames3 linear 25s;
     -moz-animation-iteration-count: 5;
     -moz-transform-origin: 50% 50%;
     -o-animation: animationFrames3 linear 25s;
     -o-animation-iteration-count: 5;
     -o-transform-origin: 50% 50%;
     -ms-animation: animationFrames3 linear 25s;
     -ms-animation-iteration-count: 5;
     -ms-transform-origin: 50% 50%;
 }

 @keyframes animationFrames3 {
     0% {
         transform: translate(0px, 0px);
     }

     10% {
         transform: translate(0px, 0px);
     }

     11% {
         transform: translate(0px, -25px);
     }

     12% {
         transform: translate(0px, 0px);
     }

     13% {
         transform: translate(0px, -15px);
     }

     14% {
         transform: translate(0px, 0px);
     }

     15% {
         transform: translate(0px, -5px);
     }

     16% {
         transform: translate(0px, 0px);
     }

     100% {
         transform: translate(0px, 0px);
     }
 }

 @-moz-keyframes animationFrames3 {
     0% {
         -moz-transform: translate(0px, 0px);
     }

     10% {
         -moz-transform: translate(0px, 0px);
     }

     11% {
         -moz-transform: translate(0px, -25px);
     }

     12% {
         -moz-transform: translate(0px, 0px);
     }

     13% {
         -moz-transform: translate(0px, -15px);
     }

     14% {
         -moz-transform: translate(0px, 0px);
     }

     15% {
         -moz-transform: translate(0px, -5px);
     }

     16% {
         -moz-transform: translate(0px, 0px);
     }

     100% {
         -moz-transform: translate(0px, 0px);
     }
 }

 @-webkit-keyframes animationFrames3 {
     0% {
         -webkit-transform: translate(0px, 0px);
     }

     10% {
         -webkit-transform: translate(0px, 0px);
     }

     11% {
         -webkit-transform: translate(0px, -25px);
     }

     12% {
         -webkit-transform: translate(0px, 0px);
     }

     13% {
         -webkit-transform: translate(0px, -15px);
     }

     14% {
         -webkit-transform: translate(0px, 0px);
     }

     15% {
         -webkit-transform: translate(0px, -5px);
     }

     16% {
         -webkit-transform: translate(0px, 0px);
     }

     100% {
         -webkit-transform: translate(0px, 0px);
     }
 }

 @-o-keyframes animationFrames3 {
     0% {
         -o-transform: translate(0px, 0px);
     }

     10% {
         -o-transform: translate(0px, 0px);
     }

     11% {
         -o-transform: translate(0px, -25px);
     }

     12% {
         -o-transform: translate(0px, 0px);
     }

     13% {
         -o-transform: translate(0px, -15px);
     }

     14% {
         -o-transform: translate(0px, 0px);
     }

     15% {
         -o-transform: translate(0px, -5px);
     }

     16% {
         -o-transform: translate(0px, 0px);
     }

     100% {
         -o-transform: translate(0px, 0px);
     }
 }