﻿/*Floating Corner Style*/
#AvtecChatCircle {
    position: fixed;
    bottom: 1em;
    right: 1em;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1000;
}

@media only screen and (min-width:40em) {
    #AvtecChatCircle {
        right: 3.5em;
    }
}
.avtec-chatsprite {
    display: inline-block;
    position: relative;
    text-indent: -9999px;
    width: 60px;
    height: 60px;
    background: url(/images/graphics/chat-sprite-blue.png) no-repeat;
}

    .avtec-chatsprite:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: url(/images/graphics/chat-sprite-blue.png) no-repeat;
        background-position: 0 -60px;
        opacity: 0;
        -webkit-transition: opacity 0.5s;
        -moz-transition: opacity 0.5s;
        -o-transition: opacity 0.5s;
    }

    .avtec-chatsprite:hover:after {
        opacity: 1;
    }
