/*@import "./normalize.css";*/

:root {
    --color-dot: #b6b5ba;
    --color-online: #4ad504;
    --color-primary: #2584ff;
    --color-whatsApp-bg: rgb(250, 250, 250);
    --color-whatsApp-body: #e6ddd4;
    /* --color-whatsApp-btn: #14c656; */
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

::selection {
    background: var(--color-primary);
    color: #fff;
}

.fw-semibold {
    font-weight: 600;
}

/*main code*/

.widget-container {
    z-index: 9999999;
}

.widget-btn-container {
    position: fixed;
    bottom: 0px;
    z-index: 10000;
}

.widget-btn {
    align-items: center;
    background-color: #fefdff;
    border-radius: 100%;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    height: 64px;
    justify-content: center;
    margin: 20px;
    outline: transparent;
    position: relative;
    width: 64px;
}

.pulse-whatsapp {
    box-shadow: 0 0 0 0 var(--color-whatsApp-btn);
    animation: pulse-whatsapp 20s linear 1s infinite;
}

@keyframes pulse-whatsapp {
    10%, 20% {
        box-shadow: 0 0 0 3px var(--color-whatsApp-btn);
    }

    30%, 100% {
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    }
}

.notification-badge {
    width: 10px;
    height: 10px;
    background-color: rgb(255, 0, 0);
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    right: 4px;
    top: 4px;
    display: block !important;
}

.widget-icon {
    width: 32px;
    height: 32px;
}



.widget {
    background-color: #fff;
    border-radius: 10px;
    bottom: 0px;
    box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    margin-bottom: 95px;
    max-width: 280px;
    opacity: 0;
    /* overflow: hidden;*/
    pointer-events: none;
    position: fixed;
    touch-action: none;
    /* transition: opacity 0.3s ease 0s, margin 0.3s ease 0s, visibility 0.3s ease 0s;*/
    /* visibility: hidden;*/
    width: 100%;
}

.widget--right {
    right: 0px;
    /* margin-right: 20px;*/
}

.widget--left {
    left: 0px;
    /* margin-left: 20px;*/
}

.widget--center {
    translate: 50%;
    right: 50%;
}

.show-widget {
    opacity: 1;
    pointer-events: all;
    touch-action: auto;
    visibility: visible;
    z-index: 10000;
}











.widget__closeBtn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .widget__closeBtn::before,
    .widget__closeBtn::after {
        content: "";
        position: absolute;
        width: 12px;
        height: 2px;
        background-color: #000;
        display: block;
        border-radius: 2px;
    }

    .widget__closeBtn::before {
        transform: rotate(45deg);
    }

    .widget__closeBtn::after {
        transform: rotate(-45deg);
    }

.widget__header {
    background-color: var(--color-whatsApp-bg);
    color: #000;
    display: flex;
    align-items: center;
    padding: 24px 20px;
}

.userImg {
    width: 52px;
    height: 52px;
    vertical-align: middle;
    border-radius: 100%;
    object-fit: cover;
    object-position: top;
}

.userImg-Container {
    position: relative;
}

    .userImg-Container::before {
        content: "";
        position: absolute;
        bottom: 0px;
        right: 0px;
        width: 12px;
        height: 12px;
        border-radius: 100%;
        z-index: 1;
        background-color: var(--color-online);
        border: 2px solid var(--color-whatsApp-bg);
    }

.header-info {
    margin: 0 16px;
}

.header-info__name {
    font-size: 16px;
    font-weight: 700;
}

.header-info__answerTime {
    font-size: 13px;
}

.widget__body {
    padding: 20px 20px 20px 10px;   
    position: relative;
    overflow: auto;
    max-height: 382px;
    background-color: #fff;
    margin-left: 12px !important
}

    .widget__body::before {
        content: "";
        position: absolute;
        left: 0px;
        top: 0px;
        height: 100%;
        width: 100%;
        z-index: 0;
        opacity: 0.08;
    }

.chat-msgContainer {
    display: flex;
    z-index: 1;
}

.dots {
    background-color: #fff;
    width: 52px;
    height: 32px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all 0.1s ease 0s;
    z-index: 1;
    box-shadow: rgb(0 0 0 / 13%) 0px 1px 0.5px;
    margin-left: 10px !important;
}

.dots__inner {
    position: relative;
    display: flex;
}

.dot {
    height: 5px;
    width: 5px;
    border-radius: 100%;
    margin: 0px 2px;
    background-color: var(--color-dot);
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    display: inline-block !important;
}

@keyframes dotOne {
    0% {
        background-color: var(--color-dot);
    }

    15% {
        background-color: #000;
    }

    25% {
        background-color: var(--color-dot);
    }
}

@keyframes dotTwo {
    15% {
        background-color: var(--color-dot);
    }

    25% {
        background-color: #000;
    }

    35% {
        background-color: var(--color-dot);
    }
}

@keyframes dotThree {
    25% {
        background-color: var(--color-dot);
    }

    35% {
        background-color: #000;
    }

    40% {
        background-color: var(--color-dot);
    }
}

.dot--One {
    background-color: rgb(158, 157, 162);
    animation-name: dotOne;
}

.dot--Two {
    animation-name: dotTwo;
}

.dot--Three {
    animation-name: dotThree;
}

.chat-msg {
    padding: 5px 15px;
    background-color: rgb(241, 240, 240);
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top;
    z-index: 2;
    box-shadow: rgb(0 0 0 / 13%) 0px 1px 0.5px;
    margin-left: -43px;
    max-width: calc(100% - 66px);
}

    .chat-msg::before {
        position: absolute;
        /* background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC); */
        background-image: url(/image_widget/msgEdge.png);
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-size: contain;
        content: "";
        top: 0px;
        left: -12px;
        width: 12px;
        height: 19px;
    }

.chat__author {
    font-size: 13px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.4);
}

.chat__text {
    font-size: 14px;
    margin-top: 4px;
    color: rgb(17, 17, 17);
}

.chat__time {
    text-align: right;
    font-size: 12px;
    color: rgba(17, 17, 17, 0.5);
    margin: 4px -8px -4px 0;
}

.chat-btn {
    text-decoration: none;
    padding: 8px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    overflow: hidden;
    position: relative;
}

.chat-btn--whatsapp {
    background-color: var(--color-whatsApp-btn);
    color: #fff;
}

    .chat-btn--whatsapp:hover {
        color: #fff;
    }

.whatsapp__icon {
    width: 16px;
    fill: #fff;
    margin-right: 10px;
}

@media screen and (min-width: 768px) {
    .widget {
        max-width: 365px;
    }
}

.stylee {
    background-color: #b5b1b1 !important;
    text-align: justify !important;
}

.btn-co {
    position: absolute;
    right: 3%;
    top: -13px;
    height: 40px !important;
}
/*
.padd {
    display: none;
}*/

@media screen and (max-width: 540px) {
    .padd {
        padding-top: 30px;
    }

    .btn-co {
        position: absolute;
        right: 3%;
        top: 17px;
    }
}


/*code[class*="language-"],
pre[class*="language-"] {
    color: #f8f8f2;
    background: none;
    text-shadow: 0 1px rgba(0, 0, 0, 0.3);
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

/* Code blocks */
pre [class*="language-"] {
    padding: 1em;
    margin: .5em 0;
    overflow: auto;
    border-radius: 0.3em;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
    background: #272822;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
    padding: .1em;
    border-radius: .3em;
    white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: slategray;
}

.token.punctuation {
    color: #f8f8f2;
}

.namespace {
    opacity: .7;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
    color: #f92672;
}

.token.boolean,
.token.number {
    color: #ae81ff;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: #a6e22e;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
    color: #f8f8f2;
}

.token.atrule,
.token.attr-value,
.token.function {
    color: #e6db74;
}

.token.keyword {
    color: #66d9ef;
}

.token.regex,
.token.important {
    color: #fd971f;
}

.token.important,
.token.bold {
    font-weight: bold;
}

.token.italic {
    font-style: italic;
}

.token.entity {
    cursor: help;
}

.status-text {
    font-size: 14px !important;
}

.status-number {
    font-size: 20px !important;
    width: 100% !important;
}

.myaccount-content {
    background-color: #fff;
    font-size: 14px;
    border: 1px solid #eee;
    padding: 15px !important;
}



a.canvasjs-chart-credit {
    display: none;
}

p.domaintitleee {
    word-break: break-all !important;
}

.alignleft {
    float: left;
}

.alignright {
    float: right;
    text-align: center;
}

.listt {
    padding: 0.5rem 1rem !important;
    max-height: 61px;
}

.blog-3 {
    padding: 10px 0 0 !important;
    margin-bottom: 0px !important;
    border-bottom: 1px solid #b9a1a1 !important;
}

    .blog-3 .info {
        position: relative;
        padding: 0px 0 0 !important;
    }

.title {
    font-size: 15px !important;
    word-break: break-all !important;
}

.domaintitleee {
    padding-bottom: 5px;
}

.blog-3 .info .post-share {
    /* text-align:right!important;*/
    float: right;
}

.graph {
    height: 300px !important;
    width: 950px !important;
}


.iconbtn {
    /* text-decoration: none;*/
    position: relative !important;
    z-index: 9999999 !important;
    cursor: pointer !important;
    /*  min-width: 80px;
    max-width: 258px;*/
    color: #fff;
    text-align: center;
    padding: 10px;
    background: #4daddb;
    border-radius: 0% !important;
    height: 45px !important;
    width: 160px !important;
    margin: 5px !important;
}


.whatsapp__iconn {
    height: 33px;
    width: 50px;
    
}

    .whatsapp__iconn::before {
        display: none;
    }

.whatsapp__iconn_1 {
    height: 27px;
    width: 35px;
    /* content: url(/image_widget/whatsapp_logo_1.svg);*/
}

    .whatsapp__iconn_1::after {
        display: block;
    }


@media (max-width: 480px) {
    .iconbtn {
        position: relative !important;
        z-index: 9999999 !important;
        cursor: pointer !important;
        color: #fff;
        text-align: center;
        padding: 7px;
        background: #4daddb;
        border-radius: 5% !important;
        height: 40px !important;
        width: 160px !important;
        margin: 5px !important;
    }
}

@media (max-width: 768px) {
    .iconbtn {
        position: relative !important;
        z-index: 9999999 !important;
        cursor: pointer !important;
        color: #fff;
        text-align: center;
        padding: 7px;
        background: #4daddb;
        border-radius: 0% !important;
        height: 40px !important;
        width: 160px !important;
        margin: 5px !important;
    }
}

.mb-3 {
    margin-bottom: 0rem !important;
}


.widget-icon-btn {
    width: 115px !important;
    height: 32px;
}

.btn-text {
    color: black;
}

.color-info {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid #333;
    text-align: center;
    line-height: 16px;
    font-size: 11px;
    font-style: normal;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
}

.btn-Clr-pkr-style {
    background-image: linear-gradient(to right, #00dcff, #a53b67) !important;
    color: #fff;
    max-height: 40px !important;
    padding: 6px 10px !important
}

/* Img with msg New*/

.msg-img-div {
    min-height: 100%;
}

.msg-img-ele {
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
    flex-shrink: 0;
}

    .msg-img-ele::before {
        content: "";
        bottom: 0px;
        right: 0px;
        width: 12px;
        height: 12px;
        box-sizing: border-box;
        background-color: rgb(74, 213, 4);
        display: none;
        position: absolute;
        z-index: 1;
        border-radius: 50%;
        border: 2px solid rgb(250, 250, 250);
    }

.msg-img-dataa {
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

    .msg-img-dataa::after {
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.1);
        inset: 0px;
        position: absolute;
        content: "";
        overflow: hidden;
    }

.msg-img-loadd {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;   
    display: block !important;
   /* padding-right: 5px !important;*/
}
