.widget {
	position: fixed;
	z-index: 9999;
}
.widget:before {
  content: '';
  display: block;
  width: 100px;
  height: 210px;
  background: inherit;
  position: fixed;
  bottom: 0;
  right: 0;
}
@media(max-width: 768px) {
  .widget:before {
    content: none;
  }
}
.widget__message, .widget__social-item {
	background-color: #ff6b00;
	border-radius: 50%;
	box-shadow: rgb(0 0 0 / 40%) 2px 2px 6px;
	position: fixed;
	width: 50px;
	height: 50px;
	right: 20px;
	bottom: 20px;
}
.widget__message img, .widget__social-item img {
	width: 70%;
	height: 70%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.widget__social-item a {
	position: initial;
}
.close__widget {
	display: none;
}
.telegram {
	background-color: #0088cc;
}
.telegram img {
	left: 45%;
}
.whatsapp {
	background-color: #43d854;
}
.helper {
	display: none;
	position: fixed;
	right: 80px;
	bottom: 25px;
	width: 150px;
	text-align: center;
	background-color: white;
	border: 1px solid rgb(226, 226, 226);
	border-radius: 5px;
	box-shadow: rgb(0 0 0 / 10%) 2px 2px 13px;
}
.helper__telegram {
	bottom: 105px;
}
.helper__whatsapp {
	bottom: 175px;
}
.helper:before {
	content: "";
	position: absolute;
	background: white;
	border-bottom: 1px solid rgb(226, 226, 226);
	border-right: 1px solid rgb(226, 226, 226);
	right: -5px;
	top: 50%;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	z-index: 1;
	transform: rotate(-45deg);
}
.helper:after {
	content: "";
	position: absolute;
	background: white;
	border-bottom: 1px solid rgb(226, 226, 226);
	border-right: 1px solid rgb(226, 226, 226);
	right: -5px;
	top: 50%;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	z-index: 1;
	transform: rotate(-45deg);
}