

/* CHATBOX
=============== */
@media only screen and (max-width: 540px) {
    .chatbox {
    position: fixed !important;
    bottom: 30px !important;
    right: 22px !important;
    z-index: 1000 !important;
   }
   
   .scroll-top.open {
    bottom: 120px;
   }
} 
.chatbox {
    position: fixed;
    bottom: 30px;
    right: 70px;
    z-index: 1000;
}

/* CONTENT IS CLOSE */
.chatbox__support {
    display: flex;
    flex-direction: column;
    background: #eee;
    width: 350px;
    height: 495px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: -123456;
    opacity: 0;
    transition: all .5s ease-in-out;
}

/* CONTENT ISOPEN */
.chatbox--active {
    transform: translateY(-10px);
    z-index: 123456;
    opacity: 1;
    
}

/* BUTTON */
.chatbox__button {
    text-align: right;
}


/* HEADER */
.chatbox__header {
    position: sticky;
    top: 0;
    background: #69abdd;
}

/* MESSAGES */
.chatbox__messages {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    flex-direction: column-reverse;
}

.messages__item {
    background: orange;
    max-width: 60.6%;
    width: fit-content;
}

.messages__item--operator {
    margin-left: auto;
}

.messages__item--visitor {
    margin-right: auto;
}

/* FOOTER */
.chatbox__footer {
    position: sticky;
    bottom: 0;
}

p {
    color: black;
}


