
.gUeLyl .chat-container .title-tag {
    display: none !important;
}

.mobile-chat-container {
    /* background-color: #8D0034 !important; */
    background-color: transparent !important;
    bottom: 50px !important;
    /* z-index: 4; */
    transition: all 400ms;
    width: auto;
    padding: 0;
    inset-inline-end: 30px !important;
}
.mobile-chat-container .chat-inner {
    background-color: #8D0034 !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    /* border-radius: 34px 8px 34px 34px !important; */
    border-radius: 34px;
    border-start-end-radius: 8px;

    position: relative;
    z-index: 2;
    padding: 17px !important;
    bottom: 25px;
    /* animation: pulse 1.5s infinite; */
}
/* .chat-inner:before {
  background-color: rgb(141, 0, 52, 0.6) !important;
  display: block;
  content: '';
  position: absolute;
  inset: -5px;
  box-shadow: 0 0 0 0 rgb(141, 0, 52, 1) !important;
  border-radius: 34px 8px 34px 34px !important;
  transform: scale(1);
  animation: pulse 1.5s infinite;
  z-index: 0;
} */
/* .chat-inner:after {
  background-color: rgb(141, 0, 52, 0.1) !important;
  animation: pulse 1.3s infinite;
} */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 #8D0034  !important;
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px #8D0034  !important;
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 #8D0034  !important;
    }
}

.mobile-chat-container .text {
    font-size: 20px;
    position: relative;
}
.mobile-chat-container.animate {
    bottom: 210px !important;
    transition: all 400ms;
}
@media (max-width: 991px) {
    .mobile-chat-container.animate {
        bottom: 140px !important;
    }
    .mobile-chat-container .text {
        display: none;
    }
}
@media (max-width: 767px) {
    .mobile-chat-container.animate {
        bottom: 200px !important;
    }
    .mobile-chat-container .chat-txt {
        display: none;
    }
}
.mobile-chat-container .fa.fa-comments {
    -webkit-mask: url('../images/chat-icon-1.svg') no-repeat 0 0;
    background-color: #fff;
    width: 26px;
    height: 26px;
    display: block;
    animation: rotate-animation 5s infinite linear;
}
@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.mobile-chat-container .chat-txt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* white-space: nowrap; */
    inset-inline-end: 100%;
    color: #344C60;
    background-color: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    border-end-end-radius: 0;
    margin-inline-end: 15px;
    width: 350px;
    text-align: start;
    box-shadow: 1px 0px 15px rgba(0, 0, 0, 0.2);
    /* border: 1px solid rgb(52, 76, 96, 0.25); */
    z-index: 2;
    animation: none;
}
@media (max-width: 767px) {
    .mobile-chat-container .chat-txt {
        width: 260px;
        font-size: 14px;
    }
}
.mobile-chat-container .chat-txt h6 {
    font-size: 16px;
}
.mobile-chat-container .chat-txt:after {
    content: '';
    border: 25px solid transparent;
    width: 0;
    height: 0;
    border-bottom-color: #ffffff;
    border-block-start-width: 0;
    border-inline-start-width: 0;
    position: absolute;
    inset-inline-start: 100%;
    bottom: 0px;
    margin-inline-start: -12px;
}

#chatbot_frame {
    position: fixed;
    inset: 0;
    z-index: 99;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    /* background-color: rgb(0, 0, 0, 0.5); */
}
#chatbot_frame iframe {
    width: 100% !important;
}
.chatbot_div {
    flex: 1 0 0;
    /* background-color: #344c60; */
    background-color: #fff;
    /* background-color: #d1d5db; */
    /* background-color: transparent; */
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    pointer-events: auto;
    padding-top: 0;
    padding: 0;
    position: absolute;
    inset-inline-end: 30px;
    bottom: 30px;
    border-radius: 8px;
    box-shadow: 1px 1px 5px rgb(204, 204, 204, 0.5);
}
@media (min-width: 992px) {
    .chatbot_div {
        padding-top: 0;
        max-width: 500px;
        /* bottom: 120px; */
    }
}
/* .chatbot_div:after {
  content: '';
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: 350px;
  height: 350px;
  background-image: url('../images/pattern-1.png');
  background-size: contain;
  z-index: 1;
} */
.chatbot_div > * {
    position: relative;
    z-index: 2;
}
.chatbot_div .chathead-logo {
    display: inline-block;
    margin-bottom: 30px;
}
.chatbot_div .chathead-logo img {
    height: 60px;
}
.chatbot_div .chat-head {
    padding-bottom: 30px;
    text-align: center;
}
.chatbot_div .close {
    position: absolute;
    inset-inline-end: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    /* background: #fff; */
    opacity: 1;
    padding: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    z-index: 9;
    /* box-shadow: 0 8px 20px rgb(0, 0, 0, 0.08); */
}
@media (max-width: 991px) {
    .chatbot_div .close {
        width: 35px;
        height: 35px;
    }
}
/* .chatbot_div .close:before, */
.chatbot_div .close:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    width: 20px;
    height: 0.2rem;
    background: #fff;
}
.chatbot_div .close:before {
    /* -webkit-transform: rotate(45deg); */
    transform: rotate(45deg);
}
.chatbot_div .close:after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.section-chetbot .chatbot_div {
    max-width: 100%;
    padding: 0;
    position: relative;
    inset: auto;
}
@media (min-width: 992px) {
    .section-chetbot .chatbot_div {
        bottom: auto;
    }
}
.section-chetbot iframe {
    width: 100%;
}
.section-chetbot .chatbot_div {
    background-color: #fff;
}
.chat-user {
    height: 40px;
    width: 40px;
    overflow: hidden;
    /* border: 1px solid #ccc; */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.chat-header {
    background-color: #344c60;
    border-radius: 8px 8px 0 0;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    font-size: 24px;
}
@media (max-width: 767px) {
    .chat-header {
        font-size: 14px;
    }
}
