body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
}
.btn-book-a-call {
    position: fixed;
    bottom: 5px;
    right: calc(50% - 140px);
    color: #fff;
    padding: 10px 20px;
    border-radius: 100%;
    text-decoration: none;
    font-family: "p2ALaNy060gO", sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #7F3FFF;
    background: linear-gradient(39deg, rgba(127, 63, 255, 1) 0%, rgba(93, 161, 250, 1) 46%, rgba(96, 252, 199, 1) 100%);
    border-radius: 100px;
    animation: were-online-pulse 2s infinite;
}
.btn-book-a-call span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 100%;
    background-color: #2ECC71;
    animation: were-online-icon-pulse 2s infinite;
}
@keyframes were-online-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes were-online-icon-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(81, 271, 172, 0.2);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(81, 271, 172, 0);
    }
}
@media(max-width: 768px) {
    .btn-book-a-call {
        bottom: 43px;
        right: calc(50% - 80px);
        border-radius: 10px;
        width: 160px;
        font-size: 12px;
        line-height: 14px;
    }
    .btn-book-a-call span {
        height: 6px;
    }
}