.fixed-socials {
	position: fixed;
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	transition: opacity 0.3s linear;
	visibility: hidden;
	opacity: 0;
}

.fixed-socials.active {
	visibility: visible;
	opacity: 1;
	z-index: 99;
}

.fixed-socials__backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
}

.fixed-socials__main {
	background-color: #fff;
	border-radius: 32px;
	width: 320px;
	position: fixed;
	bottom: 110px;
	right: 20px;
	padding: 24px;
	z-index: 11;
	transition: opacity 0.3s linear;
}

.fixed-socials__main--show {
	display: block;
}

.fixed-socials__head {
	display: flex;
	align-items: flex-end;
	gap: 6px;
}

.fixed-socials__head picture {
	width: 78px;
	height: 78px;
	flex: 0 0 78px;
	margin-bottom: 2px;
}

.fixed-socials__head picture img {
	border-radius: 50%;
}

.fixed-socials__content {
	background-color: #F7F7F7;
	border-radius: 24px 24px 24px 0px;
	padding: 16px;
	position: relative;
	flex: 1;
}

.fixed-socials__content strong {
	display: block;
	margin-bottom: 4px;
	/* font-family: Montserrat; */
	font-size: 12px;
	font-weight: 700;
	line-height: 16.8px;
}

.fixed-socials__content p {
	/* font-family: Montserrat; */
	font-size: 14px;
	font-weight: 500;
	line-height: 18.2px;
}

.fixed-socials__corner {
	position: absolute;
	width: 28px;
	height: 35px;
	bottom: 0;
	left: -28px;
}

.fixed-socials__links {
	display: flex;
	gap: 12px;
}

.fixed-socials__link {
	background-color: #F7F7F7;
	border-radius: 16px;
	color: #3D3D3D;
	flex-grow: 1;
	flex-basis: 0;
	/* font-family: Montserrat; */
	font-size: 14px;
	font-weight: 500;
	line-height: 17.07px;
	padding: 6px;
	text-decoration: none!important;
}

.fixed-socials__link img {
	margin: 0 auto 4px;
	width: 48px;
	height: 48px;
}

.fixed-socials__link p {
	max-width: 100px;
	text-align: center;
	margin: 0 auto;
}

@media (min-width: 500px) {
	.fixed-socials__main {
		width: 365px;
	}
}

@media (min-width: 768px) {
	.fixed-socials__main {
		right: 25px;
	}
}

.fixed-socials-btn {
	background-size: cover;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
	/*background: #3DCC65 url(/fixed-social/img/fixed-social/icon_phone.svg) center no-repeat;*/
	width: 70px;
	height: 70px;
	border-radius: 90px;
	background-size: 45px;
	transition: transform .4s, background .3s;
}

@media (min-width: 768px) {
	.fixed-socials-btn {
		bottom: 25px;
		right: 25px;
	}
}

.fixed-socials-btn:hover{
	cursor: pointer;
}
.fixed-socials-btn.active{
	/*background: #3DCC65 url(/fixed-social/img/fixed-social/icon_close.svg) center no-repeat;*/
	z-index: 100;
	transform: rotate(360deg);
	transition: transform .4s, background .3s;
}
.border_pulse {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	border: 1px solid #3DCC65;
	border-radius: 50%;
	-webkit-animation: borderPulse infinite 1.5s;
	animation: borderPulse infinite 1.5s
}
.fixed-socials-btn.active .border_pulse{
	display: none;
}
.shadow_pulse {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-webkit-animation: shadowPulse infinite 1.5s;
	animation: shadowPulse 1.5s infinite;
	--box-shadow-color: rgba(61, 204, 101, 0.4);
	--box-shadow-color-opacity: rgba(61, 204, 101, 0);
}

.fixed-socials-btn.active .shadow_pulse{
	display: none;
}

@-webkit-keyframes shadowPulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 var(--box-shadow-color);
	}
	70% {
		-webkit-box-shadow: 0 0 0 10px var(--box-shadow-color-opacity);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 var(--box-shadow-color-opacity);
	}
}

@keyframes shadowPulse {
	0% {
		-moz-box-shadow: 0 0 0 0 var(--box-shadow-color);
		box-shadow: 0 0 0 0 var(--box-shadow-color);
	}
	70% {
		-moz-box-shadow: 0 0 0 10px var(--box-shadow-color-opacity);
		box-shadow: 0 0 0 10px var(--box-shadow-color-opacity);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 var(--box-shadow-color-opacity);
		box-shadow: 0 0 0 0 var(--box-shadow-color-opacity);
	}
}
@-webkit-keyframes borderPulse {
	50% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 1
	}
	100% {
		-webkit-transform: scale(2, 2);
		transform: scale(2, 2);
		opacity: 0
	}
}

@keyframes borderPulse {
	50% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 1
	}
	100% {
		-webkit-transform: scale(2, 2);
		transform: scale(2, 2);
		opacity: 0
	}
}
