.contact-button-wrap {
    background: rgba(33,33,33,.5);
    width: 100vw;
    position: fixed;
    height: 100%;
    top: 0;
    bottom: 0;
    z-index: 999;
}

.contact-button {
    position: fixed;
    bottom: 10px;
    left: 20px;
    z-index: 1000;
}

.contact-button a {
    position: relative;
    padding: 5px;
    display: inline-block;
    border-radius: 50%;
    color: #FFFFFF;
    width: 55px;
    height: 55px;
    background-color: #1D87EA;
    opacity: 1;
    transition: .5s all;
}

.contact-button>a:hover, .contact-button>nav>a:hover {
    text-shadow: none;
}

.contact-button a i, .contact-button a img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 30px;
    padding: 6px;
}

.contact-button a img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.contact-button>span {
    display: inline-block;
    position: absolute;
    top: 0;
    right: -8px;
    background-color: #1D87EA;
    color: #FFFFFF;
    border-radius: 50%;
    min-width: 20px;
    min-height: 20px;
    padding: 2px;
    text-align: center;
    font-size: 12px;
    z-index: 1421997
}

.contact-button>nav {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 0;
}

.contact-button>nav a {
    display: block !important;
    margin-bottom: 10px;
    position: relative
}

.contact-button>nav a>span {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    background-color: #1D87EA;
    display: inline-block;
    left: calc(100% + 5px);
    top: 50%;
    text-align: center;
    padding: 10px;
    border-radius: 20px;
    min-width: 170px;
    transform: translate(0, -50%);
    transition: .5s all
}

.contact-button>nav a:hover span {
    opacity: 1
}

.pulsing-button {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1D87EA;
    cursor: pointer;
    box-shadow: 0 0 0 #1D87EA;
    animation: pulse 2s infinite;
}
.cc-1m2mf {
    animation-iteration-count: infinite;
    animation-duration: 1.25s;
    animation-name: tada;
}
@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #1D87EA;
    }

    70% {
        box-shadow: 0 0 0 20px rgba(204,169,44, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
}