/** [15. WhatsChat css] **/
.wc-style {
	display: inline-block;
	position: fixed;
	letter-spacing: 0.1px;
	font-family: 'Poppins', sans-serif;
	z-index: 999; 
}
.wc-style .wc-button {
    width: 45px;
    height: 45px;
    background-color: #00a31b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
.wc-style .wc-button i {
	display: table;
	margin-right: 0;
	font-size: 23px;
	text-align: center;
	line-height: 38px;
	cursor: pointer;
	color: #fff; 
}
.wc-style .wc-panel {
    display: none;
    margin-bottom: 5%;
    width: 275px;
    box-shadow: 0 3px 7px rgba(12, 12, 12, 0.18);
    background-color: #ffffff; 
}
.wc-style .wc-panel .wc-header {
	padding: 12px 15px 15px;
	text-align: center;
	color: #ffffff;
	background: linear-gradient(to right, #26c281, #09e072); 
}
.wc-style .wc-panel .wc-body {
	min-width: 250px;
	white-space: nowrap;
	list-style: none;
	overflow-y: auto; 
}
.wc-style .wc-header strong {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500; 
}
.wc-style .wc-header p {
    margin: 5px 0 0 0;
    color: #ffffff;
    font-size: 13px;
    line-height: 20px; 
}
.wc-style .wc-list .d-flex {
    display: flex; 
}
.wc-style .wc-list .wc-img-cont {
    position: relative; 
    display: flex;
    align-items: center;
}
.wc-style .wc-list .wc-user-img {
    height: 40px;
    width: 40px;
    vertical-align: middle;
    border-radius: 50%; 
}
.wc-style .wc-list .wc-status-icon {
    position: absolute;
    bottom: 5px;
    right: 1px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    background-color: #a0a0a0; 
}
.wc-style .wc-list .wc-online {
    background-color: #26c281; 
}
.wc-style .wc-list .wc-offline {
    background-color: #d6d5d5; 
}
.wc-style .wc-list .wc-user-info {
    margin-top: 0;
    margin-bottom: auto;
    margin-left: 15px; 
}
.wc-style .wc-list .wc-user-info span {
	font-size: 15px;
	color: #333;
	font-weight: 400;
	line-height: 22px; 
}
.wc-style .wc-list .wc-user-info p {
	margin: 5px 0 0 0;
	color: #888;
	font-size: 13px;
	font-family: 'Open Sans', sans-serif;
	line-height: 15px;
	font-weight: 300; 
}
.wc-style .wc-list .wc-chat-icon {
    margin-top: -40px;
    right: -10px;
    position: absolute;
    color: #d4d4d4;
    font-size: 55px;
    opacity: 0.5;
    transition: all .05s ease-in-out;
    overflow: hidden; 
}
.wc-style .wc-body:hover {
    text-decoration: none;
    cursor: pointer; 
}
.wc-style .wc-body:hover .wc-user-img {
	transition: all .3s ease-in-out; 
}
.wc-style .wc-body li {
    display: block;
    padding: 10px;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    border-bottom: 1px solid #f5f5f5;
    list-style-type: none;
    transition: all .3s ease-in-out; 
}
.wc-style .wc-body li:hover .wc-chat-icon {
	color: #26c281;
	transition: all .05s ease-in-out; 
}
.wc-style .wc-body li:hover .wc-chat-icon i {
	transition: all .3s ease-in-out; 
}
.wc-style .wc-body .wc-chat-icon i {
    transition: all .3s ease-in-out; 
}

.wc-right-bottom {
	bottom: 15px;
	right: 15px;
	float: right; 
}
@keyframes wc-fadein {
	from {
		opacity: 0; 
	}
	to {
		opacity: 1; 
	} 
}
@-moz-keyframes wc-fadein {
	from {
		opacity: 0; 
	}
	to {
		opacity: 1; 
	} 
}
@-webkit-keyframes wc-fadein {
	from {
		opacity: 0; 
	}
	to {
		opacity: 1; 
	}
}
@-ms-keyframes wc-fadein {
	from {
		opacity: 0; 
	}
	to {
		opacity: 1; 
	} 
}
@-o-keyframes wc-fadein {
	from {
		opacity: 0; 
	}
	to {
		opacity: 1; 
	} 
}
.rotateForward {
	animation-name: rotateF;
	animation-duration: 0.65s;
	animation-iteration-count: 1; 
}

@keyframes rotateF {
	from {
		transform: rotate(0deg); 
	}
	to {
		transform: rotate(360deg); 
	} 
}
.rotateBackward {
	animation-name: rotateB;
	animation-duration: 0.65s;
	animation-iteration-count: 1;
}

@keyframes rotateB {
	from {
		transform: rotate(360deg); 
	}
	to {
		transform: rotate(0deg); 
	}
}
.wc-panel .wc-body ul {
	margin: 0;
	padding: 0; 
}





@keyframes wave {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}

.waving {
  display: inline-block; /* Ensures transform works correctly */
  animation: wave 1.5s infinite ease-in-out;
  transform-origin: center bottom; /* Adjust for button shape */
}





/* Adjust WhatsApp Chat Button */
.wc-right-bottom {
  position: fixed;
  bottom: 110px; /* Adjust the distance from the bottom */
  right: 10px; /* Align to the right */
  z-index: 998; /* Ensure it stays below the Back to Top button */
}
