/* -------------------------- *\
    .webfactor_call
\* -------------------------- */

.webfactor_call {
    display: none;
}

@media (max-width: 768px) {
    .webfactor_call {
        opacity: 0;
        position: fixed;
        z-index: 90;
        left: 50%; 
        bottom: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 175px; 
        height: 38px;
        background: rgb(58, 119, 255);
        color: #fff;
        font-size: 17px;
        border: 5px solid rgb(235, 241, 255);
        border-radius: 4px;
        font-weight: 500;
        transition: .3s ease;
        transform: translate(-50%, 120px);
        animation: webfactor_call_up .3s forwards 5s;
        text-decoration: none; 
    }

    .webfactor_call:hover {
        color: #fff;
        background: #4DAB00;
        border: 5px solid #4DAB00;
    }

    .webfactor_call svg {
        width: 15px; 
        height: 15px;
        margin-right: 10px;
        fill: #fff;
    }

    @keyframes webfactor_call_up {
        from {
            transform: translate(-50%, 120px);
            opacity: 0;
        }
        to {
            transform: translate(-50%, 0);
            opacity: 1;
        }
    }
}
