body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.fixed-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
	z-index: 999999;
}

#main-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #007BFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#main-button:before, 
#main-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 15px solid #007BFF; /* Цвет контура */
    border-radius: 50%;
    left: -1px;
    right: -1px;
    top: -1px;
    bottom: -1px;
    animation: animatePulse 3s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}


@keyframes animatePulse {
    0%
    {
        transform: scale(1.0);
        opacity: 0.1;
    }
	    25%
    {
        transform: scale(1.3);
        opacity: 0.4;
    }
	50%
    {
        transform: scale(1.6);
        opacity: 0;
    }
	100%
    {
        transform: scale(1.6);
        opacity: 0;
    }
}


#main-button img {
    width: 30px;
    height: 30px;
	max-width: 30px;
    transition: .3s;
    animation: 2000ms ease 0s normal none 1 running rotation;
    animation-iteration-count: infinite; /* Бесконечное повторение анимации */
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-30deg);
    }
    20% {
        transform: rotate(15deg);
    }
    30% {
        transform: rotate(-10deg);
    }
    40% {
        transform: rotate(7.5deg);
    }
    50% {
        transform: rotate(-6deg);
    }
    60% {
        transform: rotate(5deg);
    }
    70% {
        transform: rotate(-4.28571deg);
    }
    80% {
        transform: rotate(3.75deg);
    }
    90% {
        transform: rotate(-3.33333deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.popup {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 6px;
    flex-direction: column;
    align-items: center;
}

.popup-button {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 50%;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.popup-button img {
    width: 25px;
    height: 25px;
}

.popup-button:hover {
    transform: scale(1.1);
}