.sticky__icon {
    position: fixed;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    z-index: 8;
    transition: all 0.2s ease-in-out;
}

.sticky__icon img {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sticky__icon svg {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sticky__phone {
    bottom: 180px;
    background-color: #0090f0;
    animation: pulseTelegram 2s infinite;
}

.sticky__whatsapp {
    bottom: 20px;
    background-color: rgb(64 255 0);
    animation: pulseWhatsapp 2s infinite;
}

.sticky__telegram {
    bottom: 100px;
    background-color: #0090f0;
    animation: pulseTelegram 2s infinite;
}

.sticky__chat {
    display: none;
    bottom: 20px;
    background-color: #0090f0;
    animation: pulseTelegram 2s infinite;
}

.sticky__icon:hover {
    transform: scale(0.9);
    box-shadow: rgba(255, 255, 255, 0.2) 0px 2px 8px 0px;
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgb(64 255 0 / 40%);
    }

    70% {
        box-shadow: 0 0 0 10px rgb(27 215 65 / 0%);
    }

    100% {
        box-shadow: 0 0 0 0 rgb(27 215 65 / 0%);
    }
}

@keyframes pulseTelegram {
    0% {
        box-shadow: 0 0 0 0 rgb(0 125 255 / 40%);
    }

    70% {
        box-shadow: 0 0 0 10px rgb(27 215 65 / 0%);
    }

    100% {
        box-shadow: 0 0 0 0 rgb(27 215 65 / 0%);
    }
}

@keyframes pulsePhone {
    0% {
        box-shadow: 0 0 0 0 rgb(0 125 255 / 40%);
    }

    70% {
        box-shadow: 0 0 0 10px rgb(27 215 65 / 0%);
    }

    100% {
        box-shadow: 0 0 0 0 rgb(27 215 65 / 0%);
    }
}

.widget_container {
    position: relative;
}

.widget_container.open .sticky__whatsapp {
    bottom: 100px;
}

.widget_container.open .sticky__telegram {
    bottom: 180px;
}

.widget_container.open .sticky__phone {
    bottom: 260px;
}

#close_cross {
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    font-size: 40px;
}

@media only screen and (max-width: 1025px) {
    .sticky__chat {
        bottom: 60px;
    }

    .sticky__phone {
        bottom: 220px;
    }

    .sticky__whatsapp {
        bottom: 60px;
    }

    .sticky__telegram {
        bottom: 140px;
    }

    .widget_container.open .sticky__whatsapp {
        bottom: 140px;
    }
    
    .widget_container.open .sticky__telegram {
        bottom: 220px;
    }
    
    .widget_container.open .sticky__phone {
        bottom: 300px;
    }
}