#waitingForVirtualAssistLoader {
    display: flex;
    position: absolute;
    inset: 0;
    background: rgba(20, 25, 40, 0.65);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    z-index: 2000;
}
#waitingForVirtualAssistLoader > div {
    background: #1f2a44;
    color: white;
    padding: 28px 32px;
    border-radius: 10px;
    text-align: center;
    max-width: 320px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
#waitingForVirtualAssistLoader button {
    background-color: #FEC228;
    color: #1f2a44;
    padding: 8px 20px;
    border-radius: 3px;
    border: none;
}
.assistance-cover-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Light dark tint */
    background: rgba(20, 25, 40, 0.2);

    /* Slight blur of background content */
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(4px); /* Safari */

    z-index: 2000;
    pointer-events: all;
}
.assistance-cover-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #004679;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
}
.assistance-cover-chat-container {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
}
.assistance-cover-chat-container .assistance-chat-top-bar {
    background-color: #004679;
    color: white;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    min-width: 200px;
}
.assistance-cover-chat-container .assistance-chat-ping-container.active-ping {
    border-radius: 8px;
    padding: 2px 8px;
    background-color: #FEC228;
    color: #1f2a44;
}
.assistance-cover-chat-container .assistance-chat-main {
    background-color: white;
    color: #004679;
    padding: 10px;
    height: 500px;
    width: 400px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: auto;
}
.assistance-cover-chat-container .assistance-chat-main > div {
    padding: 5px;
    margin-bottom: 10px;
}
.assistance-cover-chat-container .assistance-chat-main > div > div:nth-of-type(1) {
    font-weight: bold;
    font-size: 10px;
    margin-bottom: 8px;
}
.assistance-cover-chat-container .assistance-chat-main .assistantChat {background-color:#004679; color: white;}
.assistance-cover-chat-container .assistance-chat-main .clientChat {background-color: #FEC228; color: #1f2a44;}
.assistance-cover-chat-container .assistance-chat-input-container {
    display: flex;
    margin-top: 5px;
}
.assistance-cover-chat-container .assistance-chat-input-container input {
    margin: 0px 5px 0px 0px;
}
.assistance-cover-chat-container .assistance-chat-input-container button {
    background-color: #FEC228;
    color: #1f2a44;
    padding: 8px 20px;
    border-radius: 3px;
    border: none;
}

@media only screen and (max-width: 1000px) {
    .assistance-cover-chat-container {
        width: 100%;
        height: 50%;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }
    .assistance-cover-chat-container .assistance-chat-main {
        height: 50%;
        width: 100%;
    }
}