.live-chat-icon {
    max-width: 100px;
    width: 100%;
    position: fixed;
    bottom: 5%;
    right: 5%;
    cursor: pointer;
    z-index: 999999;
    background: white;
    border-radius: 30%;
    animation: blinkBorder 1.2s infinite ease-in-out;
    border: 3px solid #191970;
}

@keyframes blinkBorder {
    0% {
        box-shadow: 0 0 0px #191970;
    }

    50% {
        box-shadow: 0 0 40px #191970;
    }

    100% {
        box-shadow: 0 0 70px #191970;
    }
}

.pop-up-live-chat {
    max-width: 250px;
    max-height: 300px;
    height: 100%;
    width: 100%;
    background-color: #0A0E17;
    border: 1px solid white;
    position: fixed;
    bottom: 5%;
    right: 5%;
    z-index: 1000000;
    border-radius: 10px;
    overflow: hidden;
}

.close-chat {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

.support-button {
    color: white;
    background-color: #25D366;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin: 10px;
    max-width: 250px;
    width: 100%;
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.telegram-sup {
    background-color: #0088cc;
}

.support-button i {
    left: 7%;
    position: absolute;
    font-size: 20px;
}

@media(max-width:980px) {
    .live-chat-icon {
        max-width: 75px;
    }
}