.fcw-fixed-contacts {
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 999;
}

.fcw-toggle {
    cursor: pointer;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    border: 0;
    background-color: green !important;
    color: #fff;
    padding: 10px;
    position: relative;
}

.fcw-toggle svg {
border-radius: 50%;
    color: #000;
    width: 40px;
    background: #fff;
    padding: 5px;
}

.fcw-menu {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 230px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.fcw-menu.fcw-open {
    display: block;
}

.fcw-menu ul {
    list-style: none;
    margin: 0;
    padding: 10px;
}

.fcw-menu li {
    border-bottom: 1px solid #eee;
}

.fcw-menu li:last-child {
    border-bottom: none;
}

.fcw-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.fcw-menu a:hover {
    background: #f5f5f5;
}

.fcw-pulse {
    animation: fcw-pulse 1.2s infinite;
    background-color: green;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: -6px;
    z-index: -1;
}

@keyframes fcw-pulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}



@media not all and (min-width:48rem){
		.fcw-fixed-contacts {
			position: fixed;
			bottom: 80px;
			z-index: 999;
		}
	
		.fcw-menu.fcw-open {

		}	
	
	}