.sidebar_wsp {
	position: fixed;
	z-index: 999;
	bottom: 80px;
	right: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	transition: all .4s ease;
}
.sidebar_wsp .content-info {
	position: relative;
}
.sidebar_wsp .content-info a {
	padding: 12px;
	border-radius: 10px;
	background: white;
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 8px;
}
.sidebar_wsp .content-info a p {
	font-weight: 700;
	margin-bottom: 0 !important;
	color: #008649  ;
	font-size: 16px !important;
	line-height: 16px !important;
}
.sidebar_wsp .content-info a span {
	font-weight: 500;
	color: #008649 ;
	font-size: 13px;
	line-height: 13px;
}
.btn-close {
	position: absolute;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background: #00AB67 ;
	color: white;
	font-weight: 500;
	position: absolute;
	left: -10px;
	top: -10px;
	margin: 0 !important;
	font-size: 13px;
	line-height: 13px !important;
}
.btn-close img {
	width: 12px;
	height: 12px;
}
.btn-close:hover {
	cursor: pointer;
}
.sidebar_wsp > a {
	width: 55px;
  height: 55px;
  background: linear-gradient(180deg, #00AB67 0%, #008649 100%);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sidebar_wsp > a img {
	max-width: 30px;
}
@media(max-width: 768px) {
	.sidebar_wsp  {
		bottom: 130px;
	}
}