@import url('https://fonts.googleapis.com/css?family=Lato:400,700');

#AE21b7 {
    display: grid;
    font-family: 'Lato', sans-serif;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}
#AE21b7 .container {
    position: relative;
    margin: 12% auto;
    width: 620px;
    height: 450px;
}
#AE21b7 .person {
    padding: 12px 0 12px 12px;
    border-bottom: 1px solid #2879fe;
    cursor: pointer;
}
#AE21b7 .person:hover {
    background: #f9fbff;
    transition: all 0.3s ease-in-out;
}
#AE21b7 .focus {
    background: #f9fbff;
    margin-left: 1px;
}
#AE21b7 .profile {
    position: absolute;
    left: 16%;
    top: 7%;
}
#AE21b7 .name2 {
    position: absolute;
    top: 50px;
    left: 2px;
    text-transform: uppercase;
    color: #2879fe;
    font-size: 0.8em;
    letter-spacing: 2px;
    font-weight: 500;
}
#AE21b7 .email {
    color: #f9fbff;
    font-size: 0.5em;
    margin-left: -30px;
    margin-top: 2px;
}
#AE21b7 .chatbox {
    position: absolute;
    left: 35%;
    height: 75%;
    width: 60%;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(119, 119, 119, 0.5);
}
#AE21b7 .top-bar {
    width: 100%;
    height: 60px;
    background: #f9fbff;
    border-radius: 10px 10px 0 0;
}
#AE21b7 .avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(to bottom left, #f2f5fa 20%, #2879fe 100%);
    border-radius: 50%;
    position: absolute;
    top: 11px;
    left: 15px;
}
#AE21b7 .avatar p {
    color: #f9fbff;
    margin: 7px 12px;
}
#AE21b7 .name {
    position: absolute;
    top: 18px;
    text-transform: uppercase;
    color: #777;
    font-size: 0.8em;
    letter-spacing: 2px;
    font-weight: 500;
    left: 60px;
}
#AE21b7 .menu {
    position: absolute;
    right: 10px;
    top: 20px;
    width: 10px;
    height: 20px;
    cursor: pointer;
}
#AE21b7 .menu:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in;
}
#AE21b7 .icons {
    position: absolute;
    color: #2879fe;
    padding: 10px;
    top: 5px;
    right: 21px;
    cursor: pointer;
}
#AE21b7 .icons .fas {
    padding: 5px;
    opacity: 0.8;
}
#AE21b7 .icons .fas:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in;
}
#AE21b7 .dots {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #2879fe;
    box-shadow: 0px 7px 0px #2879fe, 0px 14px 0px #2879fe;
}
#AE21b7 .middle {
    position: absolute;
    background: #f9fbff;
    width: 100%;
    opacity: 0.95;
    top: 60px;
    height: 80%;
}
#AE21b7 .incoming.bubble {
    background: #333333;
    margin-left: 8px;
}
#AE21b7 .typing {
    position: absolute;
    top: 67%;
    left: 20px;
}
#AE21b7 .typing .bubble {
    background: #eaeaea;
    padding: 8px 13px 9px 13px;
}
#AE21b7 .ellipsis {
    width: 5px;
    height: 5px;
    display: inline-block;
    background: #b7b7b7;
    border-radius: 50%;
    animation: bounce 1.3s linear infinite;
}
#AE21b7 .one {
    animation-delay: 0.6s;
}
#AE21b7 .two {
    animation-delay: 0.5s;
}
#AE21b7 .three {
    animation-delay: 0.8s;
}
#AE21b7 .bubble {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
    margin-right: 8px;
    color: #f9fbff;
    font-size: 0.8em;
    padding: 10px 10px 10px 12px;
    border-radius: 5px;
}
#AE21b7 .bubble:after{
    content: "";
    display: block;
    position: absolute;
    right: -4px;
    top: 14px;
    width: 8px;
    height: 8px;
    background-color: #2879fe;
    z-index: -1;
    transform:rotate(45deg);
}
#AE21b7 .bubble.incoming:after{
    background-color: #333333;
    left: -4px;
    right:unset;

}
#AE21b7 .lower {
    margin-top: 45px;
}
#AE21b7 .outgoing.bubble {
    background: #2879fe;
}
#AE21b7 .bottom-bar {
    position: absolute;
    width: 100%;
    height: 55px;
    bottom: 0;
    background: #f9fbff;
    border-radius: 0 0 10px 10px;
}
#AE21b7 .left {
    left: 0px;
}
#AE21b7 input {
    padding: 7px;
    width: 74%;
    left: 5%;
    position: absolute;
    border: 0;
    top: 13px;
    background: #f9fbff;
    color: #2879fe;
}
#AE21b7 input::placeholder {
    color: #2879fe;
}
#AE21b7 input:focus {
    color: #777;
    outline: 0;
}
#AE21b7 button {
    position: absolute;
    border: 0;
    font-size: 1em;
    color: #2879fe;
    top: 19px;
    opacity: 0.8;
    right: 17px;
    cursor: pointer;
    outline: 0;
}
#AE21b7 button:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
    color: #2879fe;
}
#AE21b7 footer {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: center;
    font-size: 0.7em;
    padding: 10px;
}
#AE21b7 footer p {
    color: #2879fe;
    text-transform: uppercase;
    letter-spacing: 2px;
}
#AE21b7 footer a {
    color: #f9fbff;
    text-decoration: none;
}
#AE21b7 footer a:hover {
    color: #2879fe;
}
.AEe6d1{
    position: relative;
    width: 100%;
    text-align: right;
}
@keyframes bounce {
    30% {
        transform: translateY(-2px);
    }
    60% {
        transform: translateY(0px);
    }
    80% {
        transform: translateY(2px);
    }
    100% {
        transform: translateY(0px);
        opacity: 0.5;
    }
}
#AE21b7 .outgoing.bubble,
#AE21b7 .incoming.bubble{
    line-height: 1.25;
}
#AE21b7 .container {
    width: 372px;
    margin-top: 0;
}
#AE21b7 .chatbox{
    width: 100%;
    left: 0;
}
#AE21b7 .chaticon{
    position: absolute;
    bottom: 95px;
    right: -8px;
}
#AE21b7 .AE191e::-webkit-scrollbar {
    display: none;
}
#AE21b7 .AE191e{
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.AE1673{
    width: 32px;
}
@media (max-width: 789px){
    #AE21b7{
        bottom: -60px;
    }
}
@media (max-width: 420px){
    #AE21b7 .chatbox{
        width: 84%;
        left: 20%;
    }
}
@media (max-width: 340px){
    #AE21b7 .chatbox{
        width: 80%;
        left: 24%;
    }
}