:root {
    --primaryGradient: linear-gradient(93.12deg, #aa0000 0.52%, #db0100 100%);
    --secondaryGradient: linear-gradient(268.91deg, #581B98 -2.14%, #9C1DE7 99.69%);
    --primaryBoxShadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    --secondaryBoxShadow: 0px -10px 15px rgba(0, 0, 0, 0.1);
    --light: 300;
    --regular: 400;
    --semiBold: 600;
    --extraLight: 300;
    --italic: 300;
    --primary: #db0100;
}

.chatbox__support {
    background: #33323E;
    height: 450px;
    width: 330px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 10px 10px;
    overflow: hidden;
}

/* HEADER */
.chatbox__header {
    background: var(--primaryGradient);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 20px;
    box-shadow: var(--primaryBoxShadow);
}

.chatbox__header p {
    line-height: normal;
}

.chatbox__image--header {
    margin-right: 10px;
}

.chatbox__heading--header {
    font-size: 1rem;
    color: white;
}

.chatbox__description--header {
    font-size: .8rem;
    color: white;
}

/* Messages */
.chatbox__messages {
    padding: 15px 20px;
    height: 100%;
}

.messages__item {
    margin-top: 10px;
    padding: 8px 12px;
    max-width: 70%;
    color: black;
}

.messages__item--answer {
    background: #E0E0E0; 
    border-radius: 10px 10px 10px 0px;
}

.messages__item--question {
    border-radius: 10px 10px 10px 10px;
    background: #fab8b8;
    cursor: pointer;
}
.messages__item--question:hover, .messages__item--question:active {
    background: #f9a8a8;
}

.messages__item--command {
    margin-left: auto;
    border-radius: 10px 10px 10px 10px;
    border: 1px solid white;
    color: white;
    cursor: pointer;
}

.chatbox__button button,
.chatbox__button button:focus,
.chatbox__button button:visited {
    padding: 10px;
    background: white;
    border: none;
    outline: none;
    border-radius: 50px 50px 0px 50px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

@media only screen and (max-width: 395px) {
    .chatbox__support {
        width: 290px;
    }

    .messages__item {
        max-width: 85%;
    }
}