.vr-ai-block {
    background-color: #1B1C22;

    display: flex;
    justify-content: space-between;
}

.vr-ai-info-block {
    color: #E0C522;

    font-family: "Montserrat", sans-serif;

    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;

    font-size: 14px;
}

.vr-ai-info-block b {
    font-family: "Montserrat", sans-serif;
}

.chat-message-box__content {
    box-sizing: border-box;

    width: 100%;
    height: 31.98px;

    padding: 5px 10px;
    background: rgba(199, 200, 209, 0.2);
    border: 1.142px solid rgba(199, 200, 209, 0.2);
}

.chat-message-box__content input {
    background: none;
    outline: none;
    border: none;
    color: white;
}

.chat-message-box {
    display: flex;
    gap: 10px;
    align-items: center;

    border-top: 1px solid #E0C52280;
    padding-top: 26px;
    width: 100%;
}

.vr-ai-chat {
    width: 50%;
    padding-right: 170px;
    padding-bottom: 70px;

    display: flex;
    align-items: end;
    flex-direction: column;
    justify-content: end;
}


.ai-message-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.ai-message-box__icon {
    flex-shrink: 0;
}
.ai-message-box__content {
    color: #E0C522;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.ai-message-box__content-wrapper {
    background: rgba(199, 200, 209, 0.2);
    border: 1.142px solid rgba(199, 200, 209, 0.2);
    padding: 10px 15px;

    position: relative;
    width: 87%;
}

.ai-message-box__content--text {
    color: #C7C8D1;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.ai-message-box__content--lb {
    position: absolute;
    bottom: -10px;
    left: -5px;
} 

.ai-message-box__content--rt {
    position: absolute;
    top: -10px;
    right: -5px;
}

.user-message-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.user-message-box__icon {
    flex-shrink: 0;
}
.user-message-box__content {
    color: #E0C522;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.user-message-box__content-wrapper {
    background: #E0C52233;
    border: 1.142px solid #E0C52233;
    padding: 10px 15px;

    position: relative;
    width: 87%;
}

.user-message-box__content--text {
    color: #E0C522;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.user-message-box__content--lb {
    position: absolute;
    bottom: -10px;
    left: -5px;
} 

.user-message-box__content--rt {
    position: absolute;
    top: -10px;
    right: -5px;
}

.messages-block {
    max-height: 500px;
    overflow-y: auto;
    width: 100%;
}

.chat-message-box__send {
    cursor: pointer;
}

.ai-printing-text {
    color: #C7C8D1;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    margin-top: 8px;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #C7C8D1; }
}