@charset "UTF-8";
button.chatLauncher {
	animation-duration: 2.0s;
    transition-duration: 0.2s;
    position: absolute;
    top: 300px;
    right: 40px;
    z-index: 9999;
    border: 2px solid #075cc2;
    padding: 0em;
    border-radius: 4px;
    margin: 0;
    text-decoration: none;
    background-color: #f0f0f5;
    color: #454545;
    font-family: roboto;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 200px;
    opacity: 0;
}

button.chatLauncher.open {
	animation-name: slideInRight;
    opacity: 1;
    z-index: 9999;
}

button.chatLauncher:hover,
button.chatLauncher:focus {
	background-color: rgb(225, 225, 254);
    border: 2px solid #0053ba;
}
    
button.chatLauncher:focus {
	outline: 1px solid #0053ba;
    outline-offset: -2px;
}
