.w-btn {
    font-family: 'Montserrat', sans-serif;
    line-height: 0.7;
    display: flex;
    align-items: center;
    padding: 10px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor:pointer;
    }
    
    .w-btn-ico {
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 2;
    }
    
    .w-btn-text {
    opacity: 0;
    visibility: hidden;
    background-color: white;
    box-sizing: content-box;
    padding: 10px 50px 10px 20px;
    width: fit-content;
    border-radius: 50px;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: -210%;
    transform: translateY(-50%);
    z-index: 1;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    font-size: 0.75rem;
    color:#666666;
    }
    
    .w-btn:hover .w-btn-text {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s 0s;
    }
    
    .w-btn-text h5{
    font-size: 1rem;
    color: #25d366;
    margin:0 0 5px;
    padding:0;
    font-weight:bolder;
    }
    