#toast-container:not(.toast-bottom-full-width, .toast-top-full-width)>div {
    font-size: 10pt;
}

/* mobile devices css */
@media all and (max-width: 990px) {
    .sidebar.sidebar-shop {
        position: fixed;
        left: 0;
        bottom: -100%;
        background: rgb(231, 231, 231);
        transition: 300ms;
        padding: 30px;
        height: 100%;
        z-index: 9999;
        margin-top: 0;
        padding-right: 10%;
    }

    .sidebar-shop .widget {
        padding: 0;
        margin: 0;
    }

    .sidebar-shop .closeFilterMenu {
        display: block;
    }
}

@media all and (min-width: 990px) {
    .sidebar-shop .closeFilterMenu {
        display: none;
    }
}

/* chat css */

.chat {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chat .chat-header {
    padding: 15px 20px;
    border-bottom: 2px solid #f4f7f6;
}

.chat .chat-header img {
    float: left;
    border-radius: 40px;
    width: 40px;
}

.chat .chat-header .chat-about {
    float: left;
    padding-left: 10px;
}

.chat .chat-history {
    padding: 20px;
    border-bottom: 2px solid #fff;
    overflow: scroll;
    scroll-behavior: smooth;
    max-height: 60vh;
    min-height: 46vh;
}

.chat .chat-history ul {
    padding: 0;
}

.chat .chat-history ul li {
    list-style: none;
    margin: 10px 0;
}

.chat .chat-history ul li span {
    background: #e9e9e9;
    padding: 10px;
    border-radius: 7px;
    display: inline-block;
}

.chat .chat-history ul li.me {
    text-align: right;
    color: white;
}

.chat .chat-history ul li.me span a {
    color: white;
    text-decoration: underline;
}

.chat .chat-history ul li.me span {
    background: #6a3093;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #a044ff, #6a3093);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #a044ff, #6a3093);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.chat .chat-message input {
    border: none;
    outline: none;
    background-color: #f2f2f2;
    padding: 10px 10px;
    border-radius: 7px;
    width: 100%;
}

.chat .chat-message button {
    border: none;
    outline: none;
    background-color: #8b009dfe;
    color: white;
    padding: 10px 20px;
    border-radius: 7px;
    white-space: nowrap;
    margin-left: 10px;
    transition: 300ms;
}

.chat .chat-message button:disabled {
    background-color: #a4a4a4fe;
}

.text-blink {
    animation: animate 2s linear infinite;
}

.text-blink:hover {
    animation: unset;
}

@keyframes animate {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.bottomBar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    z-index: 2;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    height: 64px;
    z-index: 11000;
}

.bottomBar,
.bottomBar .item {
    align-items: center;
    justify-content: center;
}

.bottomBar .item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.bottomBar .item span {
    color: var(#167389);
}

.bottomBar .item:active {
    background-color: transparent !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
    background: transparent !important;
}

.bottomBar span {
    font-size: 12px;
    font-weight: 700;
    color: #000;
}

.bottomBar img {
    width: 24px;
    height: 24px;
    margin-bottom: 0.075rem;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* 
.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
} */