:root {
    --dark-blue: #1A659E;
}
/********************/
/****PHONE BUTTON****/
/********************/
.fixed-phone{
    width: 210px;
    height: 160px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: fixed;
    bottom: 85px;
    right: 85px;
    z-index: 100;
}
.fixed-phone-main{
    position: relative;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    border: 0 solid;
    background: linear-gradient(0deg, #0093D4 0.03%, #00B0E5 100.08%);
    cursor: pointer;
}
.fixed-phone-main > img{
    max-width: 100%;
    width: 50px;
    transform-origin: top;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.fixed-phone-wave {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: #0093D4FF;
    transition: 5s ease;
    position: absolute;
    top: 0;
}

.active-waves > img {
    -webkit-animation: tilt-shaking 0.1s linear alternate infinite;
    animation: tilt-shaking 0.1s linear alternate infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0s;
}

.active-waves img:nth-child(2) {
    animation-delay: 1s; /* Delay at second iteration */
}

.active-waves img:nth-child(3) {
    animation-delay: 2s; /* Delay at third iteration */
}
.active-waves .fixed-phone-wave-1 {
    -webkit-animation: waves 2.5s linear infinite;
    animation: waves 2.5s linear infinite;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.active-waves .fixed-phone-wave-2 {
    -webkit-animation: waves 2.5s linear 0.7s forwards infinite;
    animation: waves 2.5s linear 0.7s forwards infinite;
}
.active-waves .fixed-phone-wave-3 {
    -webkit-animation: waves 2.5s linear 1.3s forwards infinite;
    animation: waves 2.5s linear 1.3s forwards infinite;
}
.active-waves .fixed-phone-wave-4 {
    -webkit-animation: waves 2.5s linear 1.9s forwards infinite;
    animation: waves 2.5s linear 1.9s forwards infinite;
}
@-webkit-keyframes waves {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}
@keyframes tilt-shaking {
    0% { rotate: 0deg; }
    25% { rotate: 8deg; }
    50% { rotate: 0deg; }
    75% { rotate: -8deg; }
    100% { rotate: 0deg; }
}

@media only screen and (max-width: 600px) {
    .fixed-phone {
        scale: 0.4;
        bottom: 0;
        right: 0;
    }
}
