/* скрываем оригинальный виджет - чтобы не было два ярлыка на экране*/
#jivo_chat_widget{
	display: none;
}

/* стиль по умолчанию - для оффлайн сообщений, если никого нет в онлайне */
#jivo_custom_widget{
	position: fixed;
    right: 0;
    top: 50vh;
    margin-top: -77.5px;
    width: 40px;
    z-index: 300000;
    cursor: pointer;
	
	height: 155px;
	background-image: url("images/DesctopChat(Neva,Moskva).png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right center;
}
#jivo_custom_widget:hover{
    right: 0;
}

/* если есть операторы в онлайне - показываем другой ярлык*/
/* #jivo_custom_widget.jivo_online{
    height: 32px;
    background-image: url(images/jivo_widget_online-new.png);
} */


@media(max-width:767px){
    #jivoContainer{
        display: block;
        float: right;
        position: relative;
        top: 0;
        margin-right: 8px;
    }
    #jivo_custom_widget{
        position: relative;
        right: 0;
        width: 32px;
        top: 0;
        margin: 0;
    	
    	height: 32px;
    	background-image: url(images/chat2.svg);
    	background-size: contain;
    	background-position: center center;
    	animation: radial-pulse 2s infinite;
    	border-radius: 50%;
    	-moz-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        transition: transform .4s ease;
    }
    #jivo_custom_widget:hover{
        right: 0;
        -moz-transform: scale(1.15);
        -webkit-transform: scale(1.15);
        -o-transform: scale(1.15);
        -ms-transform: scale(1.15);
        transform: scale(1.15);
    }
}