<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.form-controls {
    position: relative;
}

svg {
    width: 100%;
    height: 100%;
}

.main-wrap-chat {
    display: flex;
}

.live-chatbox {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 375px;
    z-index: 999;
    margin: 30px;
    pointer-events: none;
}

.live-chatbox .btn,
.live-chatbox .btn.chat-btn {
    background: var(--main-brand-color);
    width: 65px;
    height: 65px;
    padding: 15px;
    min-width: auto;
    min-height: auto;
    border: 0;
    flex-shrink: 0;
}

.live-chatbox .btn.chat-btn {
    background: var(--main-brand-color) !important;
}

.live-chatbox .auto-chat-btn {
    width: 100%;
    height: auto;
    color: #fff;
    margin-bottom: 5px;
    border-radius: 45px;
    border: 1px solid transparent;
    padding: 10px;
}

.live-chatbox .auto-chat-btn:hover {
    color: var(--main-brand-color);
    border: 1px solid var(--main-brand-color) !important;
    background: transparent;
    box-shadow: 0 1px 4px 2px rgb(0 0 0 / 6%), 0 1px 4px rgb(0 0 0 / 8%) !important;
}

.live-chatbox .chat-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    box-shadow: 0px 4px 8px #e0e0e0;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out 0.5s !important;
    pointer-events: auto;
    border-radius: 50%;
}

.chat-btn .chat-img {
    fill: var(--main-brand-text-color);
    transition: fill 0.3s ease;
}

.chat-btn:hover .chat-img {
    fill: #ddd;
}

.live-chatbox .chat-btn:hover {
    background: var(--main-brand-color);
    box-shadow: 0px 4px 8px #e0e0e0;
    border: 0;
}

.live-chatbox.is--active .chat-btn {
    transform: translateY(calc(100% + 30px));
    transition: transform 0.3s ease-in-out !important;
}

.live-chatbox img {
    width: 100%;
    height: 100%;
}

.live-chatbox .box-wrap {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    box-shadow: 0px 4px 8px #e0e0e0;
    margin-top: 30px;
    pointer-events: none;
    transform: translateY(calc(100% + 55px));
    transition: transform 0.3s ease-in-out;
}

.live-chatbox.is--active .box-wrap {
    pointer-events: auto;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out 0.5s;
}

.live-chatbox .chat-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--main-brand-color);
    padding: 10px;
    border-radius: 8px 8px 0 0;
}

.live-chatbox .chat-box {
    display: flex;
    padding: 15px 10px;
    height: 300px;
    overflow: auto;
    background: #fff;
    flex-wrap: wrap;
}

.chat-top .chat-description {
    padding-left: 70px;
    flex-grow: 1;
}

.chat-top .profile-wrap {
    position: absolute;
    left: 20px;
    top: 0px;
    border-radius: 50%;
}

.chat-top .profile-wrap:before {
    content: '';
    position: absolute;
    display: block;
    margin: 2px;
    width: 51px;
    height: 51px;
    background: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 4px 20px 1px rgb(0 0 0 / 8%), 0 1px 4px rgb(0 0 0 / 12%);
    box-shadow: 0 4px 20px 1px rgb(0 0 0 / 8%), 0 1px 4px rgb(0 0 0 / 12%);
    z-index: -1;
}

.chat-top .profile-wrap.is-active .cs-status {
    background-color: green;
}

.chat-top .profile-wrap.is-busy .cs-status {
    background-color: yellow;
}

.profile-wrap .cs-status {
    position: absolute;
    right: 0;
    bottom: 8px;
    display: block;
    width: 8px;
    height: 8px;
    background-color: red;
    border-radius: 50%;
}

.menu-left-h .button-wrap {
    display: inline-block;
    max-width: calc(100% - 150px);
}

.chat-description .designation,
.chat-description .chat-heading,
.chat-description .chat-status {
    margin: 0;
    font-size: 11px;
    line-height: 16px;
    color: var(--main-brand-text-color);
}

.chat-description .chat-heading {
    font-size: 16px;
    line-height: 18px;
    padding-bottom: 5px;
    font-weight: 700;
}

.chat-description .status-wrap {
    display: flex;
    align-items: center;
}

.status-wrap .chat-status {
    padding-right: 4px;
}

.live-chatbox .profile-img {
    width: 55px;
    height: 55px;
    padding: 6px;
    border-radius: inherit;
}

.live-chatbox .close-btn {
    background: transparent;
    width: 20px;
    height: 20px;
    padding: 2px 5px 6px !important;
    transition: background 0.3s ease;
    line-height: 1;
    border-radius: 50%;
}

.live-chatbox .close-btn:hover,
.live-chatbox .close-btn:focus,
.live-chatbox .close-btn:focus:hover {
    background: rgba(0, 0, 0, 0.4);
    border: none;
}

.live-chatbox .close-btn:hover svg,
.live-chatbox .close-btn:focus svg,
.live-chatbox .close-btn:focus:hover svg {
    fill: #fff;
}

.live-chatbox .close-btn svg {
    fill: var(--main-brand-text-color);
    transition: fill 0.3s ease;
}

.live-chatbox .close-btn:hover svg {
    fill: var(--main-brand-text-color);
}

.live-chatbox .message-box {
    display: flex;
    align-items: center;
    border-top: 1px solid #efeeee;
    padding: 10px;
}

.live-chatbox .message-wrap {
    padding-top: 15px;
    background: #fff;
}

.message-box .sent-img {
    fill: #fff;
}

.message-box.is--focused .sent-btn {
    background-color: var(--main-brand-color);
}

.message-box .addfile-btn {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin: 0;
    background: url(../../img/svg/clip.svg) center / 16px no-repeat lightgray;
}

.message-box .icon-wrap {
    width: 30px;
    height: 30px;
}

.message-box .icon-wrap+.form-controls {
    flex-grow: 1;
}

.message-box .addfile-btn+input {
    position: absolute;
    left: -100%;
    top: -100%;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.message-box .form-controls {
    flex-grow: 1;
}

.message-box .chat {
    border: 0;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
}

.message-box .chat-box {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin: 0;
    padding: 0 10px;
    height: auto;
    background: transparent;
}

.message-box .sent-btn {
    width: 40px;
    height: 40px;
    padding: 10px !important;
    background: rgb(234, 240, 246);
    border-radius: 50%;
    margin-left: 10px;
}

.message-box .sent-btn:hover {
    background: rgb(234, 240, 246);
    border: none;
}

.message-box .sent-img {
    transform: rotate(90deg);
    transition: fill 0.3s ease;
}

.chat-box .img-wrap {
    width: 25px;
    min-width: 25px;
    height: 25px;
    overflow: hidden;
    border-radius: 50%;
}

.chat-box .chat-wrap {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    width: 100%;
}

.chat-box .user-title {
    align-self: flex-end;
    text-align: right;
    font-weight: 700;
}

.chat-wrap .msg-wrap.user {
    background: transparent;
}

.chat-wrap .msg-wrap.user .delivered {
    color: #000;
}

.chat-wrap span {
    display: inline-block;
    font-size: 13px;
    padding: 10px;
    border-radius: 0 8px 8px;
    align-self: flex-start;
}

.chat-wrap .customer-care {
    background: rgb(234, 240, 246);
    color: #000;
}

.chat-wrap .user {
    background: var(--main-brand-color);
    color: var(--main-brand-text-color);
    align-self: flex-end;
    text-align: right;
    border-radius: 8px 8px 0;
}

.user-btn-wrap,
.chat-wrap .msg-wrap {
    max-width: calc(100% - 70px);
    margin-bottom: 10px;
}

.user-btn-wrap {
    max-width: calc(100% - 40%);
    align-self: flex-end;
    text-align: right;
}

.chat-wrap .delivered {
    font-size: 11px;
    padding: 0;
}

.is--active .chat-popup-wrap .chat-top {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.chat-popup-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
}

.chat-popup-wrap .chat-top {
    margin-bottom: 75px;
    align-items: flex-start;
    pointer-events: auto;
    max-width: 275px;
    margin-left: auto;
    border-radius: 8px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out 0.5s;
    cursor: pointer;
    box-shadow: 0 4px 20px 1px rgb(0 0 0 / 8%), 0 1px 4px rgb(0 0 0 / 12%);
    background: var(--main-brand-text-color);
}

.chat-popup-wrap .chat-top .profile-img {
    width: 45px;
    height: 45px;
}

.chat-popup-wrap .chat-top .chat-description {
    padding: 30px 0 0;
}

.chat-popup-wrap .chat-top .profile-wrap {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 0 4px 20px 1px rgb(0 0 0 / 8%), 0 1px 4px rgb(0 0 0 / 12%);
}

.chat-popup-wrap .chat-top .profile-wrap:before {
    display: none;
}

.chat-popup-wrap .chat-top .close-btn {
    width: 25px;
    height: 25px;
    padding: 0;
}

.chat-popup-wrap .chat-top .chat-close {
    padding: 5px;
    fill: var(--main-brand-color);
}

.chat-popup-wrap .chat-top .chat-heading {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding-bottom: 0;
    color: var(--main-brand-desc-color);
    width: calc(100% + 25px);
}

@keyframes easeIn {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes easeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 576px) {
    .live-chatbox {
        width: 100%;
        max-width: none;
        margin: 0;
    }
    .live-chatbox .chat-btn {
        bottom: 15px;
        right: 15px;
    }
    .live-chatbox:before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        animation: easeOut 0.3s ease-in-out;
    }
    .live-chatbox.is--active:before {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        animation: easeIn 0.3s ease-in-out;
    }
}


/* =Elements style
---------------------- */

@keyframes loadingC {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    50% {
        transform: translate(0, 8px);
        opacity: 0.6;
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.load-wrapp {
    padding: 5px 10px 0;
    width: auto;
    border-radius: 0 8px 8px;
    background: rgb(234, 240, 246);
    height: 37px;
    padding-left: 10px;
}

.load-wrapp p {
    padding: 0 0 20px;
}

.load-wrapp:last-child {
    margin-right: 0;
    margin-left: 35px;
}

.line {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 3px;
    background-color: var(--main-brand-gray-color);
}

.load-3 .line:nth-last-child(1) {
    animation: loadingC 0.6s 0.1s linear infinite;
}

.load-3 .line:nth-last-child(2) {
    animation: loadingC 0.6s 0.2s linear infinite;
}

.load-3 .line:nth-last-child(3) {
    animation: loadingC 0.6s 0.3s linear infinite;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 7px 30px 7px 15px;
    width: 100%;
}

.hide {
    display: none!important;
}</pre></body></html>