.fitcom-book-pickup {
} .fitcom-book-pickup-button {
cursor: pointer;
display: inline-block;
text-align: center;
text-decoration: none;
padding: 10px 20px;
color: #fff;
animation: fitcom-glowing 1300ms infinite;
-webkit-animation: fitcom-glowing 1300ms infinite;
-moz-animation: fitcom-glowing 1300ms infinite;
-o-animation: fitcom-glowing 1300ms infinite;
} .fitcom-book-pickup-button:hover {
color: #fff;
} @keyframes fitcom-glowing {
0% {
background-color: #e21419;
box-shadow: 0 0 5px #e21419;
}
50% { background-color: #ff4347;
box-shadow: 0 0 20px #ff4347;
}
100% {
background-color: #e21419;
box-shadow: 0 0 5px #e21419;
}
}
@-webkit-keyframes fitcom-glowing {
0% {
background-color: #e21419;
-webkit-box-shadow: 0 0 5px #e21419;
}
50% {
background-color: #ff4347;
-webkit-box-shadow: 0 0 20px #ff4347;
}
100% {
background-color: #e21419;
-webkit-box-shadow: 0 0 5px #e21419;
}
}