

/* CHATBOX
=============== */
.chatbox {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 123456;

}

/* CONTENT IS CLOSE */
.chatbox__support {
    display: none;
    flex-direction: column;
    opacity: 0;
    /* transition: all .5s ease-in-out; */
}

/* CONTENT ISOPEN */
.chatbox--active {
    display: flex;
    transform: translateY(-20px);
    opacity: 1;
}

/* BUTTON */
.chatbox__button {
    text-align: right;
}


/* HEADER */
.chatbox__header {
    position: sticky;
    position: relative;
    top: 0;
    background: orange;
}

/* MESSAGES */
.chatbox__messages {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}

.messages__item {
    width: fit-content;
}

.messages__item--question {
    margin-left: auto;
}

.messages__item--answer {
    margin-right: auto;
}

/* FOOTER */
.chatbox__footer {
    position: sticky;
    bottom: 0;
}


