.telefonet{
     position: fixed;
     left: 10px;
     bottom: 75px;
     transition: all .5s ease-in-out;z-index: 999;
 }
 .telefonet a{
     height: 50px;
     width: 50px;
     border-radius: 50%;
     overflow: hidden;
     box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
     font-size: 28px;
     display: block;
     text-align: center;
     line-height: 50px;
     color: white;
     background:#ff6c6c;
 }
 .telefonet .tooltiptext {
     visibility: hidden;
     width: 120px;
     background-color: black;
     color: #fff;
     text-align: center;
     border-radius: 6px;
     padding: 5px 0;
     position: absolute;
     z-index: 1;
     line-height: normal;
     font-size: 15px;
     top: 13px;
     right: 105%;
     height: auto;
 }
 .telefonet:hover a{
     transform: rotate(-90deg);
     -webkit-transform: rotate(-90deg);
 }
 .telefonet:hover .tooltiptext {
     visibility: visible;
 }
 .whatsapp{
     position: fixed;
     left: 10px;
     bottom: 15px;
     transition: all .5s ease-in-out;z-index: 999;
 }
 .whatsapp a{
     height: 50px;
     width: 50px;
     border-radius: 50%;
     overflow: hidden;
     box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
     font-size: 28px;
     display: block;
     text-align: center;
     line-height: 50px;
     color: white;
     background:rgb(146, 200, 44);
 }
 .whatsapp .tooltiptext {
     visibility: hidden;
     width: 120px;
     background-color: black;
     color: #fff;
     text-align: center;
     border-radius: 6px;
     padding: 5px 0;
     position: absolute;
     z-index: 1;
     line-height: normal;
     font-size: 15px;
     top: 13px;
     right: 105%;
     height: auto;
 }
 .whatsapp:hover a{
     transform: rotate(45deg);
     -webkit-transform: rotate(45deg);
 }
 .whatsapp:hover .tooltiptext {
     visibility: visible;
 }
 .cursor-pointer {
    cursor: pointer;
  }
 .hidden-xs{
     display: block;
 }

 .visible-xs{
     display: none;
 }
 @media only screen and (max-width: 768px) {
     .hidden-xs{display: none}
     .visible-xs{display: block}
     .mobile-footer{ position: fixed;display:block; bottom:0px; width:100%; left:0; right: 0; z-index:998; }
     .mobile-footer #mobile-footer{ display:table; width:100%; table-layout:fixed; }
     .mobile-footer #mobile-footer span{ display:table-cell; width:33%;text-transform: uppercase;}
     .telefonet{display:none}
     .whatsapp{display:none}
     .mobile-footer #mobile-footer span a{ display:block; padding:10px 5px; background:#222; color:#fff; font:600 10px Raleway,Arial,Helvetica,Sans-serif;  }
     .mobile-footer #mobile-footer span:first-child a{ background:#ff6c6c; }
     .mobile-footer #mobile-footer span:last-child a{ background:rgb(146, 200, 44); }
     .mobile-footer #mobile-footer span:nth-child(2) a{ background:rgb(146, 200, 44); text-align:center }
     .mobile-footer #mobile-footer span a i{ animation: blinker 1.5s linear infinite; }
     .mobile-footer #mobile-footer span b{animation: blinker 1.5s linear infinite; }
     .mobile-footer #mobile-footer span a i{ margin-right:5px; }
 }