.chat-container,
.chat-container *:not(i) {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

* {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

body {
    overflow: hidden;
    height: calc(100dvh - 16px);
    display: flex;
}

i.fa-lg {
    font-family: "Font Awesome 6 Free";
}

:root {
    --primary: #0091ed;
    --bg-color: #dfecef;
    --bg-white: #fff;
    --text-white: #fff;
    --text-dark: #424141;
    --text-light: #B2B2B2;
}

.center_img {
    position: relative;
    overflow: hidden;
    object-fit: contain;
}

.center_img img.crop_img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: inherit;
    border-radius: 0px;
    max-width: unset;
    max-height: unset;
}


.chat-open-btn {
    position: fixed;
    bottom: 8px;
    right: 8px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background 0.2s;
    z-index: 9999;
}

form .input-box {
    box-shadow: 0px 2px 4px 0px #0000000D;
    background: var(--bg-white);
    padding: 0;
    border-radius: 12px;
    margin-bottom: 8px;
    width: 100%;
    overflow: hidden;
}

form .input-box select,
form .input-box input {
    padding: 15px;
    border: 0;
    border-radius: 0;
    outline: none;
    font-size: 13px;
    box-shadow: none;
    font-weight: 500;
    width: 100%;
    appearance: none;
    color: var(--text-dark);
}

form .input-box select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    z-index: 99;
    background: none;
}

form .input-box input::-webkit-input-placeholder {
    color: #9BB1C2;
}

form .input-box input:-ms-input-placeholder {
    color: #9BB1C2;
}

form .input-box input::placeholder {
    color: #9BB1C2;
}

form .input-box select option.placeholder {
    color: #9BB1C2;
}


form .input-box select.placeholder {
    color: #9BB1C2;
}

form .input-box select option {
    color: var(--text-dark);
}

form .input-box select option.placeholder {
    display: none !important;
}


.form .input-box.select-box {
    position: relative;
}

form .input-box.select-box img.dropdown_icon {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto 0;
    height: fit-content;
}


.chat-open-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.chat-open-btn:focus {
    outline: none;
}

.chat-open-btn i {
    font-size: 28px;
}

.chat-contant {
    height: calc(604px - 0px - 32px);
    overflow: hidden;
    overflow-y: auto;
    /* border-radius: 20px 20px 0 0; */
    /* background: linear-gradient(360deg, #FFFFFF 0%, #F3F4F5 100%); */
    /* background: #F3F4F5; */
    padding: 0 0 0px;
    position: relative;
}

.firstSection {
    border-radius: 20px 20px 0 0;
    background: linear-gradient(360deg, #FFFFFF 0%, #F3F4F5 100%);
    /* /* background: #F3F4F5; */
    padding: 10px;
    /* max-height: calc(485px - 0px - 32px); */
    overflow: hidden;
    overflow-y: auto;
    position: relative;
    padding-bottom: 100px;
}

.tab-container {
    border-radius: 20px 20px 0 0;
    background: linear-gradient(360deg, #FFFFFF 0%, #F3F4F5 100%);
    /* max-height: calc(485px - 55px - 0px); */
    overflow: hidden;
    overflow-y: auto;
    transition: all .2s;
}

.tab-container.tab1 {
    border-radius: 0px 20px 0 0;
}

.tab-container.tab2 {
    border-radius: 20px 0px 0 0;
}

.chat-container {
    background: var(--bg-white);
    border-radius: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    width: 320px;
    max-width: calc(100vw - 2rem);
    min-height: 604px;
    max-height: 604px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 0 10px;
    box-sizing: border-box;
    /* margin: auto; */
    margin-left: auto;
    margin-top: auto;
}

.chat-container .chat-container-inner {
    border-radius: 20px 20px 0 0;
    background: linear-gradient(360deg, #FFFFFF 0%, #F3F4F5 100%);

}

.chat-container.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chat-header {
    background: var(--bg-white);
    color: #111827;
    padding: 12px 16px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.chat-header .chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    max-width: 100%;
    overflow: hidden;
}

.chat-header .chat-title .profileImg {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.chat-header .chat-title h3 {
    margin: 0;
    color: var(--text-white);
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.chat-header .chat-title i {
    background: #2563eb10;
    /* faint tinted circle */
    padding: 6px;
    border-radius: 50%;
    font-size: 18px;
}

.chat-header .chat-icon-btn {
    color: #6b7280;
    /* gray-500 */
    transition: transform 0.2s, background 0.2s;
}

.chat-header .chat-actions {
    min-width: fit-content;
    margin-left: auto;
}

.chat-header .chat-actions .chat-icon-btn {
    min-width: 30px;
}

.chat-header .chat-icon-btn i {
    display: block;
}

.chat-header .chat-icon-btn i img {
    display: block;
    width: 20px;
}

.chat-header .chat-icon-btn i::before {
    display: none !important;
}

.chat-header .chat-actions .chat-icon-btn.mute-btn i img.speakerOff {
    display: none;
}

.chat-header .chat-actions .chat-icon-btn.mute-btn i.fa-volume-xmark img.speakerOff {
    display: block;
}

.chat-header .chat-actions .chat-icon-btn.mute-btn i.fa-volume-xmark img.speakerOn {
    display: none;
}

.chat-header .chat-title i {
    font-size: 18px;
    color: var(--primary);
    /* brand accent */
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.chat-header .mute-btn i {
    color: #6b7280;
    /* gray */
    transition: color 0.2s;
}

.chat-header .mute-btn:hover i {
    color: var(--primary);
    /* brand accent on hover */
}

.chat-footer {
    padding: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 344px;
    background: var(--bg-white);
}

.chat-footer h6 a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.chat-footer h6 a:hover {
    text-decoration: underline;
}

.chat-footer h6 {
    margin: 0;
    font-size: 10px;
    color: #93ACB2;
    text-align: center;
}

.formAboutText {
    margin: 0;
    display: flex;
    align-items: flex-start;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 300 !important;
    padding: px 0;
}

.formAboutText span {
    min-width: 25px;
    display: block;
}

.formAboutText span img {
    display: block;
    width: 15px;
}

.chat-messages {
    flex: 1;
    padding: 16px;
    /* height: 400px; */
    height: calc(528px - 146px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.chat-message {
    max-width: 95%;
    min-width: 30px;
    position: relative;
}

.chat-message .chat .chatInner {
    padding: 8px 12px;
    border-radius: 12px;
}

.chat-message.bot .chat .chatInner {
    background: var(--bg-white);
    align-self: flex-start;
    box-shadow: 0px 2px 4px 0px #0000000D;
}

.chat-message .chat .chatInner {
    background: var(--bg-white);
    align-self: flex-start;
    box-shadow: 0px 2px 4px 0px #0000000D;
    display: flex;
    align-items: flex-start;
}

.chat-message .chat {
    display: flex;
    align-items: flex-start;
}

.chat-message .chat h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

.chat-message .chat img.sparkle_icon {
    display: none;
    width: 18px;
    min-width: 18px;
    margin-right: 13px;
    position: relative;
    top: 2px;
}


.chat-message.bot .chat img.sparkle_icon {
    display: block !important;
}

/* .chat-message.bot.welcome-highlight .chat img.sparkle_icon {
    display: none !important;
}

.chat-message.bot.welcome-highlight .chat h3 {
    color: var(--text-white);
} */

.chat-message.user .chat h3 {
    color: var(--text-white);
}

.chat-message.user {
    /* background: var(--primary);
    color: var(--text-white); */
    align-self: flex-end;
}

.formContainer {
    border-radius: 50px;
    overflow: hidden;
    margin: 0 0px 10px;
    width: 100%;
    display: block;
    max-width: 300px;
}

.chat-message.user .chat .chatInner {
    background: var(--primary);
    box-shadow: none !important;
}

.chatSection {
    position: relative;
}


.formContainer #chatForm {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    padding: 5px;
    border: 1px solid #F3F2F2;
    border-radius: 50px;
}

.formContainer #chatForm input {
    flex: 1;
    padding: 10px;
    border: 0;
    border-radius: 0;
    outline: none;
    font-size: 13px;
    box-shadow: none;
    font-weight: 500;
}

.formContainer #chatForm input::-webkit-input-placeholder {
    color: #9BB1C2;
}

.formContainer #chatForm input:-ms-input-placeholder {
    color: #9BB1C2;
}

.formContainer #chatForm input::placeholder {
    color: #9BB1C2;
}

.formContainer button {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    justify-content: center;
    box-shadow: none;
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
    display: flex;
    align-items: center;
}

.formContainer button img {
    display: block;
    width: 18px;
}

.formContainer .faqButtons {
    background: #E2F4F8;
    padding: 8px;
    display: flex;
    align-items: center;
}

.formContainer .faqButtons h4 {
    margin: 0;
    font-size: 10px;
    color: #7EA8C3;
    font-weight: 500;
}

.formContainer .faqButtons button {
    border-radius: 50px;
    background: #7ECDFF;
    min-width: 80px;
    height: 27px;
    font-size: 10px;
    font-weight: 700;
    margin-left: auto;
}

.chat-icon-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
}

.chat-icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.typing-indicator {
    display: flex;
    gap: 4px;
}

.typing-indicator div {
    width: 6px;
    height: 6px;
    background: #9ca3af;
    border-radius: 50%;
    animation: bouncePulse 0.9s infinite;
}

.typing-indicator div:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator div:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bouncePulse {
    0% {
        transform: scale(0.8);
        background-color: #8b5cf6;
    }

    /* purple */
    25% {
        transform: scale(1.2);
        background-color: #7c3aed;
    }

    /* slightly deeper purple */
    50% {
        transform: scale(1);
        background-color: #6366f1;
    }

    /* indigo */
    75% {
        transform: scale(1.2);
        background-color: #7c3aed;
    }

    /* back to deeper purple */
    100% {
        transform: scale(0.8);
        background-color: #8b5cf6;
    }

    /* purple */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* .chat-message.welcome-highlight {
    background: linear-gradient(135deg, #8b5cf6, #6366f1); 
    color: #fff;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    font-size: 15px;
    font-weight: 600;
    animation: popIn 0.6s ease;
} */

@keyframes popIn {
    0% {
        transform: scale(0.8) translateY(10px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}


.faq-container {
    padding: 15px;
    height: calc(528px - 87px);
    overflow: hidden;
    overflow-y: auto;
}


.faq-header .back-btn {
    padding: 0;
    display: flex;
    align-items: center;
    width: fit-content;
    font-size: 14px;
    color: #000;
    border: 0;
    background: none;
    cursor: pointer;
    margin: 0 0 10px;
}

.faq-header .back-btn img {
    display: block;
    min-width: 15px;
    width: 15px;
    margin-right: 5px;
}

.faq-search {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    overflow: hidden;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
}

.faq-search img {
    display: block;
    min-width: 20px;
    width: 20px;
}

.faq-search input {
    width: 100%;
    padding: 3px 10px;
    border: 0;
    font-size: 13px;
    outline: 0;
    color: var(--text-black);
    font-weight: 500;
}


.faq-search input::-webkit-input-placeholder {
    color: #9BB1C2;
}

.faq-search input:-ms-input-placeholder {
    color: #9BB1C2;
}

.faq-search input::placeholder {
    color: #9BB1C2;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 15px;
    margin-bottom: 0.7rem;
    overflow: hidden;
    box-shadow: 0px 2px 4px 0px #0000000D;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.faq-question span {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 21px;
    display: block;
}

.faq-question i {
    display: block;
    min-width: fit-content;
    padding-left: 5px;
    position: relative;
    top: 6px;
}

.faq-question i img {
    width: 13px;
    display: block;
    transition: .5s;
}

.faq-question.active i img {
    transform: rotate(180deg);
}

.faq-answer {
    display: block !important;
    overflow: hidden;
    max-height: 0;
    transition: .5s;
    padding: 0 15px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 13px;
    padding-bottom: 10px;
}

.faq-question.active+.faq-answer {
    max-height: 100vh;
}

.firstSection h2 {
    font-weight: 700;
    color: transparent;
    background: linear-gradient(180deg, #8b8a8a 0%, #ededef 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: 33px;
    margin: 5px 0 10px;
}

.firstSection .card {
    box-shadow: 0px 2px 4px 0px #0000000D;
    background: var(--bg-white);
    display: flex;
    align-items: flex-start;
    border-radius: 15px;
    padding: 12px 15px;
    margin-bottom: 15px;
}

button.btn-primary {
    background: var(--primary);
    border: 0;
    border-radius: 12px;
    min-height: 50px;
    width: 100%;
    color: var(--text-white);
    font-size: 14px;
    padding: 0 20px;
    font-weight: 400;
    cursor: pointer;
}

button.btn-primary span {
    display: flex;
    margin: auto;
    align-items: center;
    width: fit-content;
}

button.btn-primary img {
    display: block;
    min-width: 18px;
    width: 18px;
}

.firstSection .card .icon_box {
    min-width: 30px;
}

.firstSection .card .icon_box img {
    display: block;
    width: 20px;
}

.firstSection .card h3 {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    padding-bottom: 5px;
}

.firstSection .card p {
    margin: 0;
    color: var(--text-light);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    padding-bottom: 15px;
}

.firstSection .faq-list {
    position: relative;

}

.firstSection .faq-list button.btn-primary {
    position: fixed;
    bottom: 35px;
    width: fit-content;
    border-radius: 50px;
    min-height: 40px;
    right: 0;
    left: 0;
    margin: 0 auto;
    display: block;
}

.tabs {
    display: flex;
    align-items: center;
    width: 100%;
}

.tabs button.tab-btn {
    display: flex;
    align-items: center;
    min-width: 50%;
    max-width: 50px;
    min-height: 50px;
    border: 0;
    background: var(--bg-white);
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    transition: all .5s;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.tabs button.tab-btn span {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: auto;
}

.tabs button.tab-btn span small {
    display: block;
    min-width: 30px;
    position: relative;
}

.tabs button.tab-btn span small img {
    display: block;
    width: 22px;
}


button {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

.tabs {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.tabs button.tab-btn span small.active::before {
    content: '';
    position: absolute;
    top: -3px;
    right: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3DC735;
    border: 2px solid #F3F4F5;
}

.tabs button.tab-btn.tabBtn1 {
    border-radius: 0 20px 0 0;
}

.tabs button.tab-btn.tabBtn2 {
    border-radius: 20px 0px 0 0;
}

/* .tabs button.tab-btn::after,
.tabs button.tab-btn::before {
    content: '';
    position: absolute;
    bottom: 0px;
    right: -20px;
    width: 20px;
    height: 20px;
    background: #f3f4f5;
    border-radius: 50px;
} */

.tabs button.tab-btn::after {
    background: var(--bg-white);
}


/* .tabs button.tab-btn.tabBtn2::before {
    display: none;
} */

.tabs button.tab-btn.active {
    /* background: linear-gradient(360deg, #fbfbfc 0%, #F3F4F5 100%); */
    /* background: linear-gradient(180deg, #fbfbfc 0%, #F3F4F5 100%); */
    background: #f3f4f5;
    z-index: 99;
}

/* .tabs button.tab-btn.active::before {
    background: #f3f4f5;
} */

.tab-content {
    display: none;
    opacity: 0;
    transition: all .5s;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

.loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 50px);
    background: #00000085;
    z-index: 999;
    display: flex;
    align-items: center;
    backdrop-filter: blur(8px);
}

.loader .loader_inner {
    text-align: center;
    background: var(--bg-white);
    margin: 0 auto;
    border-radius: 9px;
    padding: 15px 0px 25px;
    box-sizing: border-box;
    width: 220px;
}

.loader .loader_inner h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: 15px;
    line-height: normal;
    padding: 5px 0 26px;
}


.loader .loader_inner .loader-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}


.loader .loader_inner .loader-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
    animation: bounce 0.6s infinite ease-in-out;
}


.loader .loader_inner .loader-dots span:nth-child(2) {
    animation-delay: 0.12s;
}


.loader .loader_inner .loader-dots span:nth-child(3) {
    animation-delay: 0.24s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6
    }

    50% {
        transform: translateY(-8px);
        opacity: 1
    }
}



.chatbotButton {
    position: fixed;
    right: 20px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    padding: 10px;
    box-sizing: border-box;
    bottom: 1px;
    overflow: hidden;
    z-index: 99999;
    cursor: pointer;
}

.chatbotButton .triangle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    animation: rotateTriangle 3s linear infinite;
}

.chatbotButton .triangle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    transform: rotate(90deg);
    opacity: 1;
    background: var(--primary);
    border-radius: 8px;
}

@keyframes rotateTriangle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.chatbotButton .chatbotButtonInner {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    background:
        color-mix(in srgb, var(--primary) 25%, #9dfff700 40%);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 38px 0px rgb(167 167 167 / 20%) inset;
}


.chatbotButton .swiper {
    width: 100%;
    height: 25px;
    /* height for 1-line/one-item visible. increase for larger text */
    margin: 0px auto;
    overflow: hidden;
    cursor: pointer;

}

.chatbotButton .swiper .swiper-slide {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
}

/* optional: pause autoplay visual hint */
.swiper:hover {
    cursor: pointer;
}

.chatbotButton h2 {
    margin: auto;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
    letter-spacing: .5px;
    box-sizing: border-box;
    color: var(--text-white);
    /* background: linear-gradient(0deg, rgba(255, 255, 255, 0.527) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.527) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.chatbotButton img {
    display: block;
    margin: 0px auto 0;
    width: 25px;
    position: relative;
}

.chatbotButton .chatbotButtonInner h3 {
    display: block;
    margin: 0 auto;
    text-align: center;
    border: 0px solid #fff;
    border-radius: 50px;
    width: fit-content;
    color: var(--text-white);
    outline: none !important;
    font-size: 10px !important;
    background: #ffffff00;
    position: relative;
    font-weight: 500;
    padding: 5px 5px;
    min-width: 65px;
}

.chatbotButton .chatbotButtonInner .input_box {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    background: #bdbcbc1a;
    border-radius: 50px;
}


.chatbotButton .chatbotButtonInner .input_box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border: 1px solid transparent;
    border-radius: 50px;
    /* background: linear-gradient(90deg, #ffffff, #ffffff00) border-box; */
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0.322) 0%);
    background-clip: border-box;
    -webkit-mask: linear-gradient(#ffffff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    margin: auto;
    /* opacity: .8; */
}

@media (max-width: 767px) {
    body {
        margin: 0 !important;
    }

    .chat-container {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        height: calc(100dvh - 0px);
        transform: translateY(0) scale(1) !important;
        box-sizing: border-box;
        max-height: 100dvh !important;
    }

    .chat-contant {
        height: calc(100dvh - 0px - 32px) !important;
    }
}