.oda-chat-wrapper .oda-chat-language-selection {
  font-size: 14px;
  color: #fff;
}
/* Chat responsive layouts */

/* Mobile layout */
.oda-chat-wrapper {
    bottom: 20px;
    right: 10px;
}

[dir=rtl] .oda-chat-wrapper {
    left: 10px;
    right: unset;
}

.oda-chat-button {
    height: 48px;
    width: 48px;
}

.oda-chat-button-icon {
    max-height: 48px;
    max-width: 48px;
}

.oda-chat-widget {
    bottom: -20px;
    height: 85vh;
    max-height: calc(100vh - 60px);
    max-width: 100vw;
    right: -10px;
    width: 100vw;
    transition: all 0.25s ease-in-out;
}

[dir=rtl] .oda-chat-widget {
    left: -10px;
    right: unset;
}

.oda-chat-timestamp-header {
    align-items: center;
    display: flex;
    font-size: 13.75px;
    font-weight: 600;
    justify-content: center;
    padding: 8px;
    margin: 8px;
    text-transform: uppercase;
}

.oda-chat-relative-timestamp {
    font-size: 12px;
    margin: -16px auto 24px;
}

.oda-chat-relative-timestamp.oda-chat-left.oda-chat-has-message-icon,
[dir=rtl] .oda-chat-relative-timestamp.oda-chat-right.oda-chat-has-message-icon {
    margin-left: 40px;
}

.oda-chat-relative-timestamp.oda-chat-right.oda-chat-has-message-icon,
[dir=rtl] .oda-chat-relative-timestamp.oda-chat-left.oda-chat-has-message-icon {
    margin-right: 40px;
}

/* Large mobile and tablet layout */
@media screen and (min-width: 426px) {
    .oda-chat-widget {
        bottom: 0;
        height: 85vh;
        /* 20px compensation for bottom position of wrapper */
        max-height: calc(100vh - 20px - 60px);
        /* 10px compensation for right position of wrapper and next 10px for balanced look */
        max-width: calc(100vw - 10px - 10px);
        min-width: 300px;
        right: 0;
        width: 300px;
    }

    [dir=rtl] .oda-chat-widget {
        left: 0;
        right: unset;
    }
}
