#call-chat{
	display:none;
    z-index: 10;
    background-color: rgb(254, 182, 1);
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: rgba(254, 182, 1, 0.4) 0 0 4px 5px;
}

#call-chat:hover{
    scale: 1.1;
    background-color: rgb(254,193,40);
    box-shadow: rgba(254, 182, 1, 0.4) 0 0 4px 7px;
}

@media (min-width: 768px) {
    #call-chat{
        display: none;
    }
}