.manifest-inline_container {
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.manifest-inline_header {
    padding: 16px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.manifest-inline_profile-pic {
    border-radius: 50%;
    margin-right: 15px;
    width: 72px;
    height: 72px;
    object-fit: cover;
    background-color: #F0F0F0;
}

.manifest-inline_title {
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-family: inherit;
}

.manifest-inline_sub-title {
    color: #616161;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 6px;
    font-family: inherit;
}

.manifest-inline_content {
    padding: 0 16px 16px 16px;
    flex: 1;
}

.manifest-inline_message {
    padding: 12px 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    max-width: 80%;
    font-family: inherit;
}

.manifest-loading__bubble {
    padding: 4px 12px;
    border-radius: 22px;
    width: fit-content;
}

.manifest-inline_quick-reply-container {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.manifest-inline_quick-reply {
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 400;
    line-height: 20px;
    font-family: inherit;
}

.manifest-inline_input-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
}

.manifest-inline_input-box {
    flex: 1;
    padding: 12px;
    font-family: inherit;
}

.manifest-inline_send-button {
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing__container {
    display: flex;
    align-items: center;
    height: 22.5px;
    transition: opacity 0.1s;
}

.typing_dot {
    display: flex !important;
    width: 6px !important;
    height: 6px !important;
    margin-left: 6px;
    border-radius: 50%;
    animation: typing-dot calc(0.18s * 7) linear infinite;

    &:nth-child(1) {
        margin: 0;
    }

    &:nth-child(2) {
        animation-delay: 0.18s;
    }

    &:nth-child(3) {
        animation-delay: 0.36s;
    }
}

@keyframes typing-dot {
    0%, 100% {
        transform: scale(1);
    }
    16.67%, 33.33%, 50% {
        transform: scale(0);
    }
    66.67%, 83.33% {
        transform: scale(1);
    }
}

.manifest-widget-common > button { 
    min-height: fit-content;
}