.contact-footer a {white-space: nowrap;}
#call_phone_error,
#call_phone_error1,
#call_phone_error2{
	color: red;
	display: none;
	font-size: 14px;
	text-align: center;
	margin-top: 1px;
}

.s-container.quiz-button-wrapper {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 100;
}

.quiz-button {
    position: absolute;
    bottom: 40px;
    left: -200px;
    width: 117px;
    height: 117px;
}

.quiz-button-inner{
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.quiz-button-inner::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg); // Наклон
    animation: flareAnimation;
    left: -150%;
    background: linear-gradient(90deg, rgb(255 255 255 / 30%), rgb(255 255 255 / 60%));
    animation: flareAnimation 5s infinite linear; // Время и тип анимации можно менять
}

@keyframes flareAnimation {
    0% {
        left: -150%;
    }
    25%,100% {
        left: 150%;
    }
}

.quiz-button img{
    filter: drop-shadow(0 0 24px #1ab9fc82)
}

.quiz-button img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 0;
}

@media(max-width:1440px){
	.s-container.quiz-button-wrapper{
		max-width: 100%;
	}

	.quiz-button{
		width: 80px;
    	height: 80px;
		left: 15px;
    	bottom: 10px;
	}
}

@media(max-width:1024px){
	.s-container.quiz-button-wrapper{
		display: none;
	}

	.s-container.quiz-button-wrapper.show{
		display: block;
	}
}
