.phone-widget {
    z-index: 1000;
    position: fixed;
    right: 20px;
    bottom: 40px;
    display: none;
}

.phone-widget ion-icon {
    margin: 0 !important
}

.phone-widget a {
    text-decoration: none;
    background-color: var(--primary);
    color: var(--primary-contrast);
}

.phone-widget a:hover {
    color: var(--primary-contrast);
}

.phone-widget .btn-circle {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-animated {
    animation-duration: .5s;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.bounce {
    animation-name: bounce
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

@-webkit-keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

@media only screen and (max-width: 768px) {
    .phone-widget {
        display: block
    }
}
