#topmenu, #topmenu a {
	color: #fff;
}

#topbar .safirSocial {
	float: right;
	margin: 3px 0 0 10px;
}

#menu {
	display: flex;
	justify-content: center;
}

#banner {
	display: none;
	float: right;
}

#header-cont #banner {
	display: block;
}

@media (max-width: 1024px) {
	#header-cont #banner {
		display: none;
	}
}

.safirSocial li a span {
	display: none;
} 

.safirSocial li a {
	width: 28px;
	height: 28px;
	background: transparent !important;
	background-size: contain !important;
} 

#single .share li a {
	width: 24px;
	height: 24px;
} 

ul.safirSocial li.instagram a {
	background-image: url(socials/instagram.png) !important;
} 

ul.safirSocial li.tiktok a {
	background-image: url(socials/tiktok.png) !important;
} 

ul.safirSocial li.facebook a {
	background-image: url(socials/facebook.png) !important;
}

ul.safirSocial li.twitter a {
	background-image: url(socials/twitter.png) !important;
} 

ul.safirSocial li.youtube a {
	background-image: url(socials/youtube.png) !important;
} 

ul.safirSocial li.threads a {
	background-image: url(socials/threads.png) !important;
} 

ul.safirSocial li.whatsapp a {
	background-image: url(socials/whatsapp.png) !important;
}

ul.safirSocial li.telegram a {
	background-image: url(socials/telegram.png) !important;
} 

.whatsappButton {
	z-index: 15;
	position: fixed;
	left: 40px;
	bottom: 40px;
	border-radius: 50%;
	color: #20ad38;
	background: #fff;
	cursor: pointer;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	transition: all 0.2s;
}
.whatsappButton.right {
	left: auto !important;
	right: 40px;
}
.whatsappButton:hover, #whatsappBlock.opened + .whatsappButton {
	background: #20ad38;
	color: #fff;
	transform: scale(1.05);
}
.whatsappButton .icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.whatsappButton .count {
	display: none;
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	font-size: 10px;
	font-weight: 500;
	background: #fff;
	color: #000;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.275);
	position: absolute;
	top: 0;
	right: 0;
}
.whatsappButton .icon svg {
	width: 24px;
	height: 24px;
	transition: all 0.1s;
}
#whatsappBlock {
	bottom: 100px;
	left: 40px;
	position: fixed;
	width: 300px;
	transition: transform 0.25s;
	transform: scale(0.8);
	opacity: 0;
	z-index: -1;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	overflow: hidden;
}
#whatsappBlock.right {
	left: auto !important;
	right: 40px;
}
#whatsappBlock.opened {
	transform: scale(1);
	opacity: 1;
	height: auto;
	z-index: 300;
}
#whatsappBlock.opened .chat .message .bubble {
	animation-name: lateFade;
}
#whatsappBlock .chat {
	overflow: hidden;
}
#whatsappBlock .chat .header {
	padding: 15px;
	overflow: hidden;
	background: #095e54;
	color: #fff;
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}
#whatsappBlock .chat .header .thumb {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	overflow: hidden;
}
#whatsappBlock .chat .header .thumb img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
#whatsappBlock .chat .header .name {
	font-weight: 500;
	font-size: 15px;
}
#whatsappBlock .chat .header .close {
	display: block;
	margin-left: auto;
	cursor: pointer;
	padding: 8px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 3px;
	color: #fff;
}
#whatsappBlock .chat .header .close svg {
	width: 12px;
	height: 12px;
}
#whatsappBlock .chat .message {
	padding: 15px 10px 15px 20px;
	background: url(images/whatsapp-bg.jpg);
}
#whatsappBlock .chat .message .bubble {
	background: #fff;
	width: 75%;
	padding: 10px;
	position: relative;
	border-radius: 0 5px 5px 5px;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.05);
	transform: scale(0);
	animation-duration: 0.1s;
	animation-timing-function: ease-in-out;
	animation-delay: 0.6s;
	animation-fill-mode: forwards;
}
#whatsappBlock .chat .message .bubble:before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: -10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 8px 0;
	border-color: transparent #fff transparent transparent;
}
#whatsappBlock .chat .message .bubble .name {
	font-weight: bold;
	color: #b7b7b7;
	font-size: 12px;
}
#whatsappBlock .chat .reply {
	background: #fff;
	padding: 10px;
	overflow: hidden;
}
#whatsappBlock .chat .reply a {
	font-weight: 500;
	display: block;
	border-radius: 5px;
	background: #14c656;
	line-height: 36px;
	text-align: center;
	color: #fff;
	transition: all 0.3s;
	font-size: 14px;
}
#whatsappBlock .chat .reply a:hover {
	background: #48a91f;
}
@keyframes lateFade {
	0% {
		transform: scale(0.5);
		opacity: 0;
   }
	100% {
		transform: scale(1);
		opacity: 1;
   }
}
