/* webchat.css */

#online-chat {
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    display: block;
    position: fixed;
    z-index: 1000;
    top: 35%;
    right: 0;
    margin: 0px -18px 0px 0px;
}

#online-chat:hover {
    margin: 0px -12px 0px 0px;
}
#online-chat a {
    background-repeat: no-repeat;
    width: 50px;
    height: 266px;
    font-size: 1px;
    display: inline-block;
    color: transparent;
}
#online-chat a { background-image: url(../img/icons/icon_chat_ru.png); }
#online-chat a.local-en { background-image: url(../img/icons/icon_chat_en.png); }
#online-chat a.local-ru { background-image: url(../img/icons/icon_chat_ru.png); }
#online-chat a.local-ua { background-image: url(../img/icons/icon_chat_ua.png); }

@media all and (max-width: 992px){
    #online-chat {
        top: 60%;
    }
    #online-chat a {
        width: 50px;
        height: 70px;
    }
    #online-chat a { background-image: url(../img/icons/icon_chat_mobile.png); }
    #online-chat a.local-en { background-image: url(../img/icons/icon_chat_mobile.png); }
    #online-chat a.local-ru { background-image: url(../img/icons/icon_chat_mobile.png); }
    #online-chat a.local-ua { background-image: url(../img/icons/icon_chat_mobile.png); }
}