#stickyContacts {
position: fixed;
bottom: 1rem;
right: 1rem;
z-index: 100;
}
#stickyContacts .contact-item {
display: block;
animation-name: swing;
animation-delay: 1s;
animation-duration: 1s;
animation-iteration-count: infinite;
margin-bottom: 1rem;
}
#stickyContacts .contact-item img {
width: 36px;
height: 36px;
}
#stickyContacts .contact-item.phone {
background-image: linear-gradient(rgb(255, 221, 0), rgb(251, 176, 52));
background-color: initial;
background-size: initial;
background-origin: initial;
background-position: initial;
background-repeat: initial;
background-attachment: initial;
-webkit-background-clip: initial;
border-radius: 100%;
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
}
#stickyContacts .contact-item.phone img {
width: 13px;
height: auto;
}
@media screen and (min-width: 640px) {
#stickyContacts .contact-item img {
width: 48px;
height: 48px;
}
#stickyContacts .contact-item.phone {
width: 48px;
height: 48px;
}
#stickyContacts .contact-item.phone img {
width: 23px;
height: auto;
}
}
@keyframes swing {
20% {
transform: rotate(15deg);
}
40% {
transform: rotate(-10deg);
}
60% {
transform: rotate(5deg);
}
80% {
transform: rotate(-5deg);
}
100% {
transform: rotate(0);
}
}