.pulse {
overflow: visible;
position: relative;
}
.pulse::before {
content: '';
display: block;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: inherit;
border-radius: inherit;
-webkit-transition: opacity .3s, -webkit-transform .3s;
transition: opacity .3s, -webkit-transform .3s;
transition: opacity .3s, transform .3s;
transition: opacity .3s, transform .3s, -webkit-transform .3s;
-webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
z-index: -1;
}
@-webkit-keyframes pulse-animation {
0% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
opacity: 0;
-webkit-transform: scale(1.5);
transform: scale(1.5);
}
100% {
opacity: 0;
-webkit-transform: scale(1.5);
transform: scale(1.5);
}
}
@keyframes pulse-animation {
0% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
opacity: 0;
-webkit-transform: scale(1.5);
transform: scale(1.5);
}
100% {
opacity: 0;
-webkit-transform: scale(1.5);
transform: scale(1.5);
}
}
.barra {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
overflow: hidden;
margin-top: -40px;
height: auto !important;
background-color: #F6F6F6;
margin-bottom: 0 !important;
}
.barra .telefones {
margin-top: 25px;
margin-bottom: 20px;
}
.barra .telefones a {
height: auto !important;
z-index: 999 !important;
}
.barra a.pulse {
position: fixed !important;
bottom: 5px !important;
right: 5px !important;
z-index: 9999 !important;
color: #FFF !important;
}
.barra a {
color: #FFF;
font-weight: bold;
font-size: 11px;
line-height: 20px;
padding: 20px !important;
border-radius: 20px;
background-color: #3EB649;
}
.pulse {
overflow: initial;
position: relative;
text-transform: uppercase;
vertical-align: middle;
text-align: center;
letter-spacing: .5px;
font-size: 15px!important;
}
@media (max-width: 767px){
.barra a.pulse {
height: 60px !important;
left: 10px !important;
right: 10px !important;
padding-top: 5px !important;
font-size: 0.8em !important;
}
}