/* -------------------------- *\
    .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;
        min-width: 175px;
        width: max-content;
        height: 38px;
        padding: 0 1rem;
        /*background: rgb(58, 119, 255);*/
        background: #612672;
        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;
        }
    }
}



.wf_mode_viber {
	position:fixed;
	bottom: 2rem;
	left: 2rem;
	background:#612672;
	color: #fff;
	z-index:10;
	padding: 1rem;
	filter: drop-shadow(0,0,0,.5);
	border: 0;
}

.wf_mode_viber img {
	filter: brightness(0) invert(1);
}

.wf_mode_viber:hover {
	background: #2C1140;
	color: #fff;
}

@media (max-width: 768px) {
	.wf_mode_viber span {
		display: none;
	}
	
	.wf_mode_viber {
		border-radius: 50%;
		bottom: 5rem;
	}
}
