/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */


 div.pf-loadchat > a {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: auto;
    padding: 0 15px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    background-color: yellow;
    color: #333;
    font-weight: bold;
    z-index: 999999;
    font-size: 16px;
    display: flex;
    overflow: hidden;
    min-width: 50px;
    align-items: center;
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
}
div.pf-loadchat > a > img {
    display: inline-block;
    margin-left: 10px;
    float: right;
    position: relative;
    height: 30px;
}
div.pf-loadchat > a > img.loading {
    animation: loadingSpinner 1.0s linear;
    animation-iteration-count: infinite;
    opacity: 0.5;
}
@keyframes loadingSpinner {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(359deg); }
}
