﻿@keyframes slideInRight {
    from {
        transform: translate3d(0, 20%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

button.chatLauncher {
    /* please change to new image link */
    background: url('../png/ai_chat_icon_1.png');
    background-size: cover;
    animation-duration: 0.5s;
    transition-duration: 0.5s;
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    border: 0px solid #ffffff00;
    padding: 1em;
    margin: 0;
    text-decoration: none;
    background-color: #ffffff;
    color: #454545;
    font-family: sans-serif;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 232px;
    height: 68px;
    opacity: 0;
}

button.chatLauncher.open {
    animation-name: slideInRight;
    opacity: 1;
}

button.chatLauncher:hover,
button.chatLauncher:focus {
    /* please change to new image link */
    background: url('../png/ai_chat_icon_2.png');
    background-size: cover;
}

button.chatLauncher:focus {
    outline: 1px solid #ffffff00;
    outline-offset: -4px;
}