

.main{
    position: relative;
}

.chat-area{
    position: fixed;
    z-index: 2;
    bottom: 20px;
    right: 20px;
}

.dialog-box{
    width: 200px;
    height: 200px;
    padding: 0 10px;
    background-color: rgba(255,255,255,1);
    border-radius: 16px;
    border: 5px solid #e3e3e3;
    overflow: scroll;
}
.dialog-box p {
    background: #00D4E6;
    padding: 5px 10px;
    border-radius: 16px;
    font-size: .9rem;
}