body.ucn-chatbot {
    background-color: rgba(12, 43, 65, 0.7);

}

.chat-box {
    /* width: 631px; */
    width: 600px;
    padding: 0;
    border-radius: 12px;
    background-color: #fff;
    position: fixed;
    /* right: 47px;
    bottom: 48px; */
    right:12px;
    bottom:2px;
    z-index: 999;
    /* Smooth transition when toggling full-screen: only transform (and border-radius) to avoid positional stretching */
    /*transition: transform 0.35s ease, border-radius 0.35s ease;*/
    transition: all 0.3s ease, border-radius 0.35s ease, opacity 0.4s ease;
    opacity: 1;
    transform: translateY(0);
    will-change: transform, border-radius;
}

/* Closing animation */
.chat-box.closing {
  opacity: 0;
  transform: translateY(50%); /* smoothly slide down */
}

.chat-closed {
    /* width: 108px;
    height: 108px;
    background-color: #0c2b41; */
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 39px;
    /* right: 47px; */
    right: 44px;
    cursor: pointer;
}
/* .chat-closed img {
    max-height: 20px;
} */
/*=====chat-box-header Starts======*/
.chat-box-header {
    height: 42px;
    /* height: 68px; */
    margin: 0;
    /* padding: 19px 32px 19px 33.3px; */
    padding: 8px 10px;
    background-color: #0c2b41;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-box-header .company-logo img {
    /* height: 29.1px; */
    height: 20px;
}
.chat-box-header ul {
    padding: 0;
    margin: 0;
    display: inline-flex;
}

.chat-box ul li {
    list-style: none;
    display: flex;
    align-items: center;
}

.chat-box-header ul li button,
.dots button {
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: #fff;
}
.company-logo {
    margin: 0 auto;
}
.bi-three-dots {
    font-size: 32px;
}
.chat-box-header ul li:first-child {
    /* padding-right: 24.3px; */
}
.chat-box-header ul li img {
    height: 16px;
}
/*=====chat-box-header End======*/
/*=====chat-box-body Starts======*/
.toggle-wrapper {
    /* padding-top: 36px; */
   /* padding-top: 18px;*/
}
.chat-box-body {
    /* padding: 0 33px 26.5px 33px;
    max-height: 460px;*/
    /*padding: 0 18px 26.5px 18px;*/
    display: flex;
    flex-direction: column;    
    height: 600px;
    overflow-y: scroll;
}
.full-screen .chat-box-body {
    height: 100%;
}
.full-screen .chat-box-footer {
    position: absolute;
    bottom: 18.5px;
    width: 100%;
    background: #fff;
}
.chat-box-body .chat {
    display: flex;
    /* margin: 0 0 12px 0; */
    margin: 0 0 8px 0;
    gap: 16px;
}

.chat-box-body .chat .profile-icn {
    /* width: 39px;
    height: 39px; */
    width: 24px;
    height: 24px;
    float: left;
}
.chat-box-body .chat.ucn-assistant div.chat-intro p {
    padding: 0;
}
.chat-box-body .chat.ucn-assistant div {
    width: 100%;
    padding: 8px;
    border: solid 1px #979797;
    border-radius: 6px;
}
.chat-box-body .chat p {
    font-family: 'Work Sans', sans-serif;
    /* font-size: 16px; */
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: -0.2px;
    text-align: left;
    color: #000;
    margin: 0;
    padding-bottom: 12px;
    /* padding: 12px 20px 15px 19px; */
}
.chat-box-body .chat.customer {
    /* padding: 11px 17px 13px 20px;
    margin-right: 20px;
    margin-right: 14px; */
    padding: 8px 6px 10px 16px;    
    flex-direction: row-reverse;
}
.chat-box-body .chat.customer p {
    background-color: rgb(12 43 65 / 90%);
    color: #fff;
    max-width: 80%;
    border-radius: 6px;
    padding: 8px;
}
.chat-box-body .chat p span {
    font-weight: 500;
}
.chat-box-body li:nth-child(2) p span,.chat-box-body li:nth-child(3) p span {
    display: block;
    padding-top: 8px;
    font-weight: 500;
}
.chat-box-body .chat.ucn-assistant .assistant-result {
    margin: 8px 0 0;
    /* padding: 25px 17px 28px 19px; */
    padding: 18px 12px 18px 19px;
    border-radius: 6px;
    background-color: #f3f3f3;
    height: 220px;
    margin-left: 55px;
    overflow-y: scroll;
}
.chat-box-body .chat.ucn-assistant {
    align-items: center;
    width: 100%;
    display: flex;
    align-items: center;
}
.client .chat-box-body .chat.ucn-assistant:nth-child(1) p {
    width: auto;
}
.chat-box-body .chat.ucn-assistant .col-sm-2 {
    padding: 0;
}
.chat-box-body .chat.ucn-assistant>p {
    /* width: 90%; */
}
.chat-box-body .chat.ucn-assistant .assistant-result ul {
    margin: 0;
    /* padding: 0 0 0 19px; */
    padding: 0 0 0 12px;
}
.chat-box-body .chat.ucn-assistant .assistant-result ul li {
    list-style: decimal;
    display: revert;
    padding-bottom: 15px;
    font-weight: 500;
    font-size: 14px;
    
}
.assistant-report-list {
    width: 90%;
    margin-left: 50px;
}
.assistant-report-list ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap:8px;
}
.assistant-report-list ul li {
    display: block;
    text-align: center;
}
.assistant-report-list button {
    font-family: 'DM Sans',sans-serif;
    font-size: 13px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #07a6c5;
    margin: 7px 10px 0 9px;
    padding: 9px 84px 10px;
    border-radius: 3px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
    border: solid 1px #07a6c5;
    background-color: #fff;
    width: 97%;
}
.assistant-report-list button:hover {
    background-color: #07a6c5;
    color: #fff;

}
/*=====chat-box-body End======*/


/*=====Client chat-box-body Starts======*/
.client .chat-box-body .chat.customer,
.data .chat-box-body .chat.customer {
    padding: 11px 0px 13px 20px;
    margin-right: 0;
}
.client .chat-box-body .chat:nth-child(2) p span,.client .chat-box-body .chat:nth-child(3) p span,
.data .chat-box-body .chat:nth-child(2) p span,.data .chat-box-body .chat:nth-child(3) p span {
    display: block;
    padding-top: 8px;
    font-weight: 500;
}
.client .chat-box-body .chat.ucn-assistant .assistant-result ul {
    margin: 0;
    padding: 0;
}
.client .chat-box-body .chat.ucn-assistant .assistant-result ul li {
    list-style:none;
    font-family: 'Work Sans',sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.2px;
    text-align: left;
    color: #000;
    border-bottom: solid 1px #dadada;
    margin-bottom: 10px;
  
}
.client .chat-box-body .chat.ucn-assistant .assistant-result ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.client .chat-box-body .chat.ucn-assistant .assistant-result ul li span {
    display: block;
    padding: 4px 0 0px 0;
  font-family: 'Work Sans',sans-serif;
    font-size: 12px;
  font-weight: 500;
  font-stretch: normal;
    color: #07a6c5;
    text-transform: uppercase;

}
.client .chat-box-body .chat.ucn-assistant .assistant-result {
    margin-bottom: 50px;
}
/*=====Client chat-box-body End======*/


/*=====Data chat-box-body Starts======*/
.data .chat-box-body .chat p span.assit-query {
    padding-top: 8px;
    display: block;
}
.data-listing ul {
    padding: 0 0 0 58px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.data-listing li button {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.2px;
    text-align: left;
    color: #000;
    margin: 0 12px 0 0;
    padding: 12px 24px 14px 22px;
    border-radius: 23px;
    border: solid 1px #979797;
    color: #000;
    background-color: #fff;
    margin-bottom: 16px;
}
.data-listing li button:hover {
    border: solid 1px #07a6c5;
    background-color: #07a6c5;
    color: #fff;
}
/*=====Data Set chat-box-body Starts======*/
.data-set .chat-box-body .chat p span.assit-query {
    padding-top: 0;
    display: block;
    padding-bottom: 12px;
}
.data-set-list {
    padding: 25px 17px 0px 19px;
    border-radius: 6px;
    background-color: #f3f3f3;
    margin-left: 55px;
    width: 100%;
}
.data-set-list Ul {    
    padding: 0 15px 0 0;
    overflow-y: scroll;
    max-height: 360px;
} 
.data-set-list Ul li {
    border-bottom: 1px solid #dadada;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.data-set-list Ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.data-set-list li a {
    margin: 0 5px 3px 0;
    font-family: 'Work Sans',sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.2px;
    text-align: left;
    color: #000;
    text-decoration: none;
}
.data-set-list li .date {
    margin: 3px 12px 20px 0;
    font-family: 'Work Sans',sans-serif;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #07a6c5;
    display: block;
    text-transform: uppercase;
}
.data-set-list .float-start {
    max-width: 240px;
    margin-right: 80px;
}
.data-set-list .float-end {
    border-radius: 3px;
    border: solid 0.5px #dedede;
    background-color: #fff;
    padding: 11px 6.9px 11px 7px;
    max-width: 130px;
}
.data-set-list .float-end img {
    max-height: 43px;
}
/*=====Data Set chat-box-body Ends======*/

/*=====Data chat-box-body with Carousel Starts======*/
.data-carousel .carousel-dataset {
    padding: 30px 30px 60px 90px;
}
.data-carousel .carousel-dataset .items {
    border-radius: 3px;
    border: solid 1px #d8d8d8;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.data-carousel .inner-wrapper {
    padding: 23px 23px 20px 25px;
}
.data-carousel .carousel-dataset h4 {
    margin: 0 0 6px;
    font-family: 'Work Sans',sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.2px;
    text-align: left;
    color: #000;
}
.data-carousel .carousel-dataset .date {
    font-family: 'Work Sans',sans-serif;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #07a6c5;
    margin-top: 6px;
    border: none;
    padding: 0;
}
.data-carousel .diff-time ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.data-carousel .diff-time li {
    list-style: none;
    font-family: 'DM Sans',sans-serif;
  font-size: 6.2px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000;
}
.data-carousel .diff-time .diff {
    padding: 0.9px 2.3px 1.1px 2.4px;
    border-radius: 13.2px;
    background-color: #8e24aa;
    font-family: 'DM Sans',sans-serif;
    font-size: 7px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.09px;
    text-align: center;
    color: #fff;
}
.data-carousel .diff-time .week {
    color: rgb(0 0 0 / 50%);
}
.data-carousel .prices span {
    font-family: 'DM Sans',sans-serif;
    font-size: 19.8px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.54px;
    text-align: right;
    color: #000;
}
.data-carousel .prices sup {
    font-family: 'DM Sans',sans-serif;
    font-size: 5.3px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}
.data-carousel .chat-box-body {
    overflow-x: hidden;
}
.carousel-dataset {
    padding-left: 92px;
    padding-bottom: 60px;
}
.data-carousel .carousel-dataset button {
    padding: 0;
}
.data-carousel .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: 15px;
}
.data-carousel .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: 15px;
}
.data-carousel .carousel-dataset .owl-nav  button  {
    border-radius: 100%;
    width: 49px;
    height: 49px;
    border: 1px solid #B6B6B6 !important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.data-carousel .carousel-dataset .owl-nav  button span {
    font-size: 32px;
    line-height: 24px;
    color: #07a6c5;
}
.data-carousel  .carousel-dataset button.view-page {
    font-family: 'DM Sans',sans-serif;
  font-size: 13px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #07a6c5;  
    height: 36px;
    margin: 18px 0 0;
    border-radius: 3px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border: solid 1px #07a6c5;
}



/*=====Data chat-box-body with Carousel Ends======*/

/*=====chat-box-footer Starts======*/
.chat-box-footer {
    /* padding: 0px 21px 26.5px 21px; */
    padding: 0px 21px 18.5px 21px;
    display: flex;
}
.chat-box-footer input {
    /* padding: 18px 20px; */
    padding: 8px;
  border-radius: 5px;
  background-color: #e1e1e1;
  border: none;
  /*width: 89%;*/
  width: 100%;
  margin: 0 8px 0 0;
  float: left;
  font-size: 13px;
}
.chat-box-footer button {
    /* padding: 15px 15px 15px 19px; */
    /*padding: 8px;*/
  border-radius: 5px;
  background-color: #07a6c5;
  border: none;
  /* width: 42px;
    width: 38px;*/
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    height: 35.5px;
    width: 35.5px;
}
.chat-box-footer button.new-chat-btn {
    margin-left: 6px;
}
.chat-box-footer button img {
    height: 14px;
}
.toggle-wrapper {
    display: none;
}

.hide-me {
    display:none;
}

.source-btn {
    background-color: rgb(7 166 197 / 10%) !important;
    color: #07a6c5;
    background: #fff;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 12px 4px 4px;
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.source-list ol {
    padding: 0;
}
.source-list ol li {
    list-style:none;
}
.source-first-row {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.source-first-row a {
    font-size: 16px !important;
    padding-left: 4px;
    font-weight: 500;
}
.source-list .list-number {
        border: 1px solid #d3d0d0;
    height: 18px;
    width: 18px;
    justify-content: center;
    text-align: center;
    display: flex;
    align-items: center;
    margin-right: 8px;
    font-size: 13px;
}
.source-second-row {
    align-items: center;
    display: flex;
    margin-left: 30px;
    font-size: 14px;
    margin-top: 6px;
    align-items: baseline;
}
.source-second-row img {
    margin-right: 4px;
    height: 10px;
    margin-top: 4px;
    display: flex;
}

/* Chatbox resize css start */


/* header */
/*.chat-box-header {
  gap: 10px;
  position: relative;
}*/
/*.chat-box-header ul { display: inline-flex; gap: 6px; margin: 0; padding: 0; }*/
.chat-box-header ul li { list-style: none; }
.chat-box-header button { background: transparent; border: 0; color: inherit; cursor: pointer; }
.close-box { position: absolute; right: 10px; top: 8px; font-size: 22px; line-height: 1; }

/* layout that lets inner content grow */
.toggle-wrapper { flex: 1 1 auto; display: flex; height: 100%; }
.chat-box-body { flex: 1 1 auto; display: flex; flex-direction: column; /*padding: 18px;*/ min-height: 0; }
.q-business-chat-container { flex: 1 1 auto; min-height: 0; border: 1px solid #ccc; }
.q-business-chat-container iframe { width: 100%; height: 100%; }

/* full screen state */
.chat-box.full-screen {
    /*top: 30px !important;
    left: 0 !important; */
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 93% !important;
    border-radius: 0;
    transform: translateX(0);
    top: 33px;
}

/* Initial offset for right-to-left slide when entering full-screen */
.chat-box.full-screen.slide-in-from-right {
  transform: translateX(100%);
}

/* show/hide the two size buttons depending on state */
#contractBtn { display: none; }
.chat-box.full-screen #contractBtn { display: inline-flex; }
.chat-box.full-screen #expandBtn { display: none; }

/* Chatbox css for UCN UI tpl file */

.toggle-wrapper-ucn { flex: 1 1 auto; display: block; height: 100%; }
/* New UI Style Changes  */
.footer-section {
    padding: 0 18px;
    display: none;
}
/* Chatbox resize css end */
 @media (max-width: 480px)  {
    .chat-box-body .chat.ucn-assistant>p {
        width: 87%;
    }
    .chat-box-footer input {
        width: 86%;
    }
 }
@media (max-width: 768px) {
    .chat-box {
        width: 96%;
        right: 12px;
    }
}
/*=====chat-box-footer End======*/
