@charset "utf-8";
/* CSS Document */

.scroll-top-wrapper {
    position: fixed;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	text-align: center;
	z-index: 99999999;
    background-color: #777777;
	color: #eeeeee;
	width: 30px;
	height: 29px;
	font-size:12px;
	line-height: 24px;
	right: 20px;
	bottom: 20px;
	padding-top: 2px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.scroll-top-wrapper:hover {
	background-color: #888888;
}
.scroll-top-wrapper.show {
    visibility:visible;
    cursor:pointer;
	opacity: 1.0;
}
.scroll-top-wrapper i.fa {
	line-height: inherit;
}



/*css for whatsapp button in footer*/


.rt-whatsapp {
	position: fixed !important;
    right: 20px !important;
    left: auto !important;
    float: none !important;
    bottom: 90px;
    z-index: 99999;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.rt-whatsapp {
    position: fixed !important;
    right: 20px !important;
    left: auto !important;
    float: none !important;
    bottom: 90px;
    z-index: 99999;
}

.rt-whatsapp:hover {
    transform: scale(1.1);
}

.rt-whatsapp i {
    color: #fff;
}

.rt-tooltip {
    position: absolute;
    right: 75px;
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 13px;
    opacity: 0;
    transition: 0.3s;
    white-space: nowrap;
}

.rt-whatsapp:hover .rt-tooltip {
    opacity: 1;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.rt-whatsapp {
    animation: pulse 2s infinite;
}