@import 'https://fonts.googleapis.com/css?family=Open+Sans';

 * {
     box-sizing: border-box;
 }
 
 .floating-identity {
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     position: fixed;
     bottom: 15px;
     right: 15px;
     width: 40px;
     height: 40px;
     transform: translateY(70px);
     transition: all 250ms ease-out;
     border-radius: 50%;
     opacity: 0;
     background: -moz-linear-gradient(-45deg, #183850 0, #183850 25%, #192C46 50%, #22254C 75%, #22254C 100%);
     background: -webkit-linear-gradient(-45deg, #183850 0, #183850 25%, #192C46 50%, #22254C 75%, #22254C 100%);
     background-repeat: no-repeat;
     background-attachment: fixed;
 }
 
 .floating-identity.enter:hover {
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
     opacity: 1;
 }
 
 .floating-identity.enter {
     transform: translateY(0);
     opacity: 0.6;
     box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.14);
 }
 
 .floating-identity.expand {
     width: 350px;
     max-height: 400px;
     height: 350px;
     border-radius: 5px;
     cursor: auto;
     opacity: 1;
 }
 
 .floating-identity :focus {
     outline: 0;
     box-shadow: 0 0 3pt 2pt rgba(23, 241, 150, 0.3);
 }
 
 .floating-identity button {
     background: transparent;
     border: 0;
     color: white;
     text-transform: uppercase;
     border-radius: 3px;
     cursor: pointer;
 }
 
 .floating-identity .chat {
     display: flex;
     flex-direction: column;
     position: absolute;
     opacity: 0;
     width: 1px;
     height: 1px;
     border-radius: 50%;
     transition: all 250ms ease-out;
     margin: auto;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
 }
 
 .floating-identity .chat.enter {
     opacity: 1;
     border-radius: 0;
     margin: 10px;
     width: auto;
     height: auto;
 }
 
 .floating-identity .chat .header {
     flex-shrink: 0;
     padding-bottom: 10px;
     display: flex;
     background: transparent;
 }
 
 .floating-identity .chat .header .title {
     flex-grow: 1;
     flex-shrink: 1;
     padding: 10px;
     font: 15px 'Open Sans', sans-serif;
 }
 
 .floating-identity .chat .header button {
     flex-shrink: 0;
 }
 
 .floating-identity .chat .messages {
     padding: 10px;
     margin: 0;
     list-style: none;
     overflow-y: scroll;
     overflow-x: hidden;
     flex-grow: 1;
     border-radius: 4px;
     background: transparent;
 }
 
 .floating-identity .chat .messages::-webkit-scrollbar {
     width: 5px;
 }
 
 .floating-identity .chat .messages::-webkit-scrollbar-track {
     border-radius: 5px;
     background-color: rgba(25, 147, 147, 0.1);
 }
 
 .floating-identity .chat .messages::-webkit-scrollbar-thumb {
     border-radius: 5px;
     background-color: rgba(25, 147, 147, 0.2);
 }
 
 .floating-identity .chat .messages li {
     position: relative;
     clear: both;
     display: inline-block;
     padding: 10px;
     margin: 0 0 5px 0;
     font: 12px/16px 'Open Sans', sans-serif;
     border-radius: 10px;
     background-color: rgba(25, 147, 147, 0.2);
     word-wrap: break-word;
     max-width: 100%;
 }
 
 .floating-identity .chat .messages li.self {
     animation: show-chat-even 0.15s 1 ease-in;
     -moz-animation: show-chat-even 0.15s 1 ease-in;
     -webkit-animation: show-chat-even 0.15s 1 ease-in;
     float: left;
     margin-left: 0px;
     color: #0fe48b;
 }

 .floating-identity .footer {
    flex-shrink: 0;
    display: flex;
    padding-top: 10px;
    max-height: 90px;
    background: transparent;
 }

 .floating-identity .footer .text-box {
    border-radius: 3px;
    background: rgba(25, 147, 147, 0.2);
    min-height: 100%;
    width: 100%;
    margin-right: 5px;
    color: #0EC879;
    overflow-y: auto;
    padding: 2px 5px;
    font: 12px 'Open Sans', sans-serif;
}

.floating-identity .footer .text-box::-webkit-scrollbar {
    width: 5px;
}

.floating-identity .footer .text-box::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.1);
}

.floating-identity .footer .text-box::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.2);
}
 
 @keyframes show-chat-even {
     0% {
         margin-left: -480px;
     }
 
     100% {
         margin-left: 0;
     }
 }
 
 @-moz-keyframes show-chat-even {
     0% {
         margin-left: -480px;
     }
 
     100% {
         margin-left: 0;
     }
 }
 
 @-webkit-keyframes show-chat-even {
     0% {
         margin-left: -480px;
     }
 
     100% {
         margin-left: 0;
     }
 }
 
 @keyframes show-chat-odd {
     0% {
         margin-right: -480px;
     }
 
     100% {
         margin-right: 0;
     }
 }
 
 @-moz-keyframes show-chat-odd {
     0% {
         margin-right: -480px;
     }
 
     100% {
         margin-right: 0;
     }
 }
 
 @-webkit-keyframes show-chat-odd {
     0% {
         margin-right: -480px;
     }
 
     100% {
         margin-right: 0;
     }
 }