.hide-element {
	display: none !important;
}
.messanger-widget {
	position: fixed;
	bottom: 30px;
	right: 30px;
	display: flex;
	flex-direction: column;
	z-index: 1001;
}
.messangers-block {
	padding: 0 0 15px 0;
	justify-content: center;
	display: flex;
}
.messangers-block ul {
    margin: 0px;
	padding: 0px;
}
.messangers-list {
	list-style: none;
}
.messanger {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 0 0 10px 0;
	position: relative;
	min-height: 50px;
	min-width: 50px;
	border-radius: 50%;
	transition: transform 0.3s ease; 
}
.messanger:hover {
	/*opacity: 0.8;*/
	transform: scale(1.05);
	box-shadow: 0 1px 2px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.1);
	transition: box-shadow .17s cubic-bezier(0,0,.2,1);
}
.messanger .item-icon {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	color: #FFFFFF;
	cursor: pointer;
}
.messanger .item-icon svg {
	width: 60%;
	height: 60%;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30%;
	margin-left: -30%;
}
.messanger .desc {
	background: #ffffff;
	border: 1px solid #e1e5eb;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.13);
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.13);
	color: #000000;
	font-size: 90%;
	text-align: center;
	padding: .5em 1em;
	white-space: nowrap;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	margin-right: 10px;
	/* min-width: 155px; */
}
.messanger:hover .desc {
	visibility: visible;
	opacity: 1;
}
.contact-bt {
	background: #d87a3a;
	border: 2px solid #d87a3a;
	border-radius: 50%;
	box-shadow: 0 8px 10px rgba(105, 170, 91, 0.3);
	cursor: pointer;
	height: 70px;
	width: 70px;
	z-index: 999;
	transition: .3s;
	/* анимация волн от кнопки */
	animation: contact-an linear 1s infinite;
	-webkit-animation: contact-an linear 1s infinite;
}
.contact-bt .text-call {
    height: 100%;
    width: 100%;
    overflow: hidden;
	/* анимация пульсации надписи и иконки */
	animation: pulse 2s infinite ease-in-out;
	-webkit-animation: pulse 2s infinite ease-in-out;
}
.contact-bt .text-call span {
	position: absolute;
	top: 30%;
	right: 10%;
	opacity: 0;
	text-align: center;
	color: white;
	font-size: 9px;
	line-height: 14px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: 'montserrat', Arial, Helvetica, sans-serif;
}
.contact-bt .text-call svg {
	position: absolute;
	top: 20%;
	right: 21%;
	width: 60%;
	height: 60%;
}
.contact-bt .openbtn {
	opacity: 1;
	transition: opacity 0.5s ease-in-out;
}
.contact-bt .text-call:hover .openbtn {
	opacity: 0;
}
.contact-bt .text-call:hover span {
	opacity: 1;
	transition: opacity 0.5s ease-in-out;
}
.contact-bt .closebtn {
	transform: scale(0);
	width: 60%;
	height: 60%;
}
@-webkit-keyframes contact-an {
    0% {
        box-shadow: 
            0 8px 10px rgba(216, 122, 58, 0.3),
            0 0 0 0 rgba(216, 122, 58, 0.2),
            0 0 0 0 rgba(216, 122, 58, 0.1);
    }
	50% {
		box-shadow: 
			0 8px 10px rgba(216, 122, 58, 0.3),
			0 0 0 13px rgba(216, 122, 58, 0.15),
			0 0 0 7px rgba(216, 122, 58, 0.1);
	}
	100% {
		box-shadow: 
			0 8px 10px rgba(216, 122, 58, 0.3),
			0 0 0 27px rgba(216, 122, 58, 0),
			0 0 0 20px rgba(216, 122, 58, 0);
	}
}
@keyframes contact-an {
    0% {
        box-shadow: 
            0 8px 10px rgba(216, 122, 58, 0.3),
            0 0 0 0 rgba(216, 122, 58, 0.2),
            0 0 0 0 rgba(216, 122, 58, 0.1);
    }
	50% {
		box-shadow: 
			0 8px 10px rgba(216, 122, 58, 0.3),
			0 0 0 13px rgba(216, 122, 58, 0.15),
			0 0 0 7px rgba(216, 122, 58, 0.1);
	}
	100% {
		box-shadow: 
			0 8px 10px rgba(216, 122, 58, 0.3),
			0 0 0 27px rgba(216, 122, 58, 0),
			0 0 0 20px rgba(216, 122, 58, 0);
	}
}
@keyframes pulse {
	0% {
		opacity: 0.9;
		transform: scale(0.8);
	}
	50% {
		opacity: 1;
		transform: scale(0.9);
	}
	100% {
		opacity: 0.9;
		transform: scale(0.8);
	}
}
@-webkit-keyframes pulse {
	0% {
		opacity: 0.9;
		transform: scale(0.8);
	}
	50% {
		opacity: 1;
		transform: scale(0.9);
	}
	100% {
		opacity: 0.9;
		transform: scale(0.8);
	}
}

#overlay-messangers-button{
	z-index: 1000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.2;
	display: none;
}