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);
	padding: 0px;
}

#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-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);
}

@media (max-width: 600px) { 
	#main-button:hover .tooltip4 {
    display: none !important;
 } 
}

.popup-mb {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 70px;
    right: 6px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.popup-mb.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.popup-button .tooltip5 {
         display: none;
         position: absolute;
         top: 50%;
		 right: 60px;
         transform: translateY(-50%);
         background-color: #fff;
         color: #000000;
         padding: 5px 10px;
         border-radius: 4px;
         white-space: nowrap;
         z-index: 1000;
         font-size: 12px;
		 text-transform: none;
	     box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .1);
        }

@media (max-width: 600px) {
    .popup-button .tooltip5 {
        display: block;
    }
}