.jspl_chatbox_msgbox_container {
  position: absolute;
  bottom: 5px;
  left: 1100px;
  z-index: 9999999 !important;
  resize: both;
}

.chatbotFrame {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

.chatbox__support {
  display: flex;
  flex-direction: column;
  position: absolute;
  opacity: 0;
  background: transparent;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transition: all 0.5s ease-in-out;
}




.chatbox--active {
  z-index: 999999 !important;
  opacity: 1;
  transform: translateY(25%);
}

.chatbox__button {
  margin: 0px 0px 0px 0px;
  text-align: right;
}



.chatbox__support .outside-border_up {
  cursor: move;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  background-color: #CC5E00;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-radius: 10px 10px 0 0;
}

.HeaderItems {
  display: flex;
  flex-direction: row;
}

.HeaderItems .jspl_chatbox_msgbox_item-1 {
  display: flex;
  justify-content: flex-start;
  padding-right: 20px;
}

.HeaderItems .jspl_chatbox_msgbox_item-2 {
  display: flex;
  justify-content: flex-end;
}

.HeaderItems .jspl_chatbox_msgbox_item-3 {
  display: flex;
  justify-content: flex-end;
  padding-left: 20px;
}

.HeaderItems .jspl_chatbox_msgbox_item-1 img {
  width: 100%;
}

.chatbox__support .outside-border_down {
  display: flex;
  align-items: center;
  min-height: 25px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  background: white;
  border-radius: 0 0 10px 10px;
}


.chatbox__support .cross-button-header {

  align-items: center;
  display: flex;

}

/* .chatbox__support .cross-button-header i {
  color: #383636;
} */


.jspl_chatbox_container .chatbox__support .cross-button-header img {
  width: 23px;
  height: 5px;
  margin: 0px 0px 0px 0px;
  display: flex;
}

.chatbox__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  background: var(--secondaryGradient);
  box-shadow: var(--secondaryBoxShadow);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-top: 20px;
}

.jspl_chatbox_assistant_container .jspl_chatbox_button_text {
  text-align: center;
  width: 10%;
  position: fixed;
  bottom: 33px;
  right: 1%;
  background: rgb(244, 121, 32);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  z-index: 9999999 !important;
}

.jspl_chatbox_assistant_container .jspl_chatbox_button_text span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.jspl_chatbox_assistant_container .jspl_chatbox_button_text span h3 {
  margin: 5px 0px;
  color: white;
}


@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}


.chatbox__button {
  position: fixed;
  width: 10%;
  bottom: 2%;
  right: 4%;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 9999999 !important;

}

.chatbox__button img {
  width: 100px;
  border-radius: 10px;
  position: absolute;
  bottom: 10px;
  right: 30px;
  left: 100px;
  animation: wiggle 1s ease-in-out 5;
  animation-fill-mode: forwards;
}

.jai-welcome-text-box {
  background-color: white;
  border: 2px solid black;
  align-items: center;
  display: flex;
  padding: 2px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  overflow: hidden;
  position: absolute;
  border-radius: 10px 10px 0 10px;
}

#jai-welcome-text1-box {
  bottom: 152px;
  right: 30px;

}

#jai-welcome-text2-box {
  bottom: 90px;
  right: 27px;
  width: 82px;
}

.jai-typing {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 2s steps(20) 1s 1 normal both, blink .75s step-end infinite;
}

.jai-typing-infinite {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 2s steps(20) 1s infinite normal both, blink .75s step-end infinite;
}

.chatbox__button button,
.chatbox__button button:focus,
.chatbox__button button:visited {
  position: fixed;
  width: 10%;
  bottom: 10%;
  right: 1%;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 9999999 !important;
}


/* CSS for confirmation POP_UP */
.jspl_chatbox_confirmation_popup {
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}

.jspl_chatbox_confirmation_popup_content {
  background-color: white;
  margin: 35% 14%;
  padding: 20px;
  border: 1px solid #888888;
  width: 70%;
  font-weight: bolder;
  border-radius: 15px
}

.jspl_chatbox_confirmation_popup_content button {
  display: block;
  margin: 0 auto;
}

.jspl_chatbox_confirmation_popup_content h5 {
  margin-bottom: 30px;
}

.confirmation-show-box {
  display: block;
}

.test {
  border-color: red;
}

.footer {
  text-align: center;
  height: 40px;
}

.footer span {
  padding: 7px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 10px;
  color: #CC5E00;
}

.jspl_chatbox_privacy_container {
  position: fixed;
  bottom: 240px;
  left: 1050px;
  z-index: 9999999 !important;
  resize: both;
  display: none;

}

.jspl_chatbox_privacy_container .jspl_chatbox_privacy-chatbox__support {
  width: 400px;
  margin: 0px 0px;
}

.jspl_chatbox_privacy-chatbox__support .outside-border_up {
  cursor: move;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  background-color: #CC5E00;
  border-radius: 10px 10px 0 0;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

.jspl_chatbox_privacy-chatbox__support .outside-border_down {
  display: flex;
  align-items: center;
  min-height: 25px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}


.jspl_chatbox_privacy-chatbox__support .cross-button-header {
  align-items: center;
  display: flex;
}

.jspl_chatbox_privacy-chatbox__support .cross-button-header i {
  color: #383636;
}


.jspl_chatbox_container .jspl_chatbox_privacy-chatbox__support .cross-button-header img {
  width: 23px;
  height: 5px;
  margin: 0px 0px 0px 0px;
  display: flex;
}

.jai-chatbot-privacy-navbar-header {
  background-color: #FEF1E8;
  display: flex;
  justify-content: center;
  z-index: 999;
  position: sticky;
  top: 0;
}

.jai-chatbot-privacy-navbar-container {
  width: 92%;
  height: 70px;
  border-radius: 10px;
  position: relative;
  gap: 10px;
  border-bottom: 1px solid grey;
  background-color: #ffd9b8;
  padding: 7px;
  border: 1px solid #F37A1F;
  margin: 23px 0px;
  padding: 12px 12px;
}

.jspl_chatbox_privacy_close_container {
  z-index: 9999;
}

.jspl_chatbox_privacy_confirmation_popup {
  position: absolute;
  justify-content: center;
  align-items: center;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;

  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}

.jspl_chatbox_privacy_confirmation_content {
  background-color: white;
  margin: 9% 15%;
  padding: 20px;
  border: 1px solid #888888;
  width: 70%;
  font-weight: bolder;
  border-radius: 15px
}

.jspl_chatbox_privacy_confirmation_content button {
  display: block;
  margin: 0 auto;
}

.jspl_chatbox_privacy_confirmation_content h5 {
  margin-bottom: 30px;
}


.jspl_chatbox_privacy_container .jai-chatbot-ask-jai-logo {
  width: 40px;
}

.jspl_chatbox_privacy_container .jai-chatbot-ask-jai-logo-line {
  width: 70px;
}

.jspl_chatbox_privacy_container .jai-chatbot-jindal-jai-line {
  width: 60px;
}

.jspl_chatbox_privacy_container .jai-chatbot-short-heading {
  width: 100%;
  height: 70px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cdcaca;
}

.jspl_chatbox_privacy_container .jai-chatbot-button-area {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jspl_chatbox_privacy_container .jai-chatbot-privacy-content {
  background-color: #fff;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  text-align: center;
  font-size: 13px;
  font-family: "Open Sans", sans-serif !important;
  font-weight: 400;
  line-height: 18px;
}



.jspl_chatbox_privacy_container .jai-chatbot-privacy-agree-button {
  padding: 8px 40px;
  text-align: center;
  margin: 10px 0px;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #f47920;
  border: none;
  border-radius: 5px;
  box-shadow: 7px 6px 28px 1px rgba(0, 0, 0, 0.24);
}

.jspl_chatbox_privacy_container .jai-chatbot-privacy-agree-button:active {
  box-shadow: 7px 6px 28px 1px rgba(0, 0, 0, 0.24);
  transform: translateY(4px);
}

.jspl_chatbox_privacy_container .jai-chatbot-privacy-agree-button:hover {
  background-color: #F37A1F;
  color: white;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

#chatbox_iframe_loader {
  border: 8px solid #a7a7add6;
  border-radius: 50%;
  border-top: 8px solid #d55017;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
}

.chatbox__support .center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}




/* Small devices (smallest phones) */
@media only screen and (max-width: 359px) {
  .jspl_chatbox_msgbox_container {
    position: fixed;
    bottom: 5px;
    left: 15px;
  }

  .jspl_chatbox_privacy_container {
    position: fixed;
    top: 520px;
    left: 15px;
    z-index: 9999999 !important;
    resize: both;
    display: none;

  }

  .chatbox__support {
    width: 335px;
    height: 635px;
  }

  .jspl_chatbox_privacy_container .jspl_chatbox_privacy-chatbox__support {
    width: 360px;
  }

  .jspl_chatbox_assistant_container .chatbox__button {
    text-align: center;
    width: 15%;
    position: fixed;
    bottom: 2%;
    right: 40%;
    background: rgb(244, 121, 32);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
  }

  #jai-welcome-text1-box {
    bottom: 140px;
    right: -60px;
    width: 120px;
  }

  #jai-welcome-text2-box {
    bottom: 90px;
    right: -60px;
    width: 82px;
  }

  .chatbox__button button,
  .chatbox__button button:focus,
  .chatbox__button button:visited {
    position: fixed;
    width: 30%;
    bottom: 12%;
    right: 0%;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
  }
}

/* Small Smart Phones like (iphone SE) */

@media only screen and (min-width: 360px) and (max-width: 389px) {
  .jspl_chatbox_msgbox_container {
    position: fixed;
    bottom: 700px;
    left: 4px;
  }

  .jspl_chatbox_privacy_container {
    position: fixed;
    bottom: 40px;
    left: 18px;
    z-index: 9999999 !important;
    resize: both;
    display: none;

  }

  .chatbox__support {
    width: 350px;
    height: 535px;
  }

  .jspl_chatbox_privacy_container .jspl_chatbox_privacy-chatbox__support {
    width: 340px;
  }

  .jspl_chatbox_assistant_container .chatbox__button {
    text-align: center;
    width: 15%;
    position: fixed;
    bottom: 2%;
    right: 39%;
    background: rgb(244, 121, 32);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
  }

  #jai-welcome-text1-box {
    bottom: 140px;
    right: -60px;
    width: 120px;
  }

  #jai-welcome-text2-box {
    bottom: 90px;
    right: -60px;
    width: 82px;
  }

  .chatbox__button button,
  .chatbox__button button:focus,
  .chatbox__button button:visited {
    position: fixed;
    width: 30%;
    bottom: 12%;
    right: 0%;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
  }
}

/* Small Smart Phones like (iphone 12 pro) */

@media only screen and (min-width: 390px) and (max-width: 411px) {
  .jspl_chatbox_msgbox_container {
    position: fixed;
    bottom: 835px;
    left: 18px;
  }

  .jspl_chatbox_privacy_container {
    position: fixed;
    bottom: 50px;
    left: 15px;
    z-index: 9999999 !important;
    resize: both;
    display: none;

  }

  .chatbox__support {
    width: 355px;
    height: 635px;
  }

  .jspl_chatbox_privacy_container .jspl_chatbox_privacy-chatbox__support {
    width: 360px;
  }

  .jspl_chatbox_assistant_container .chatbox__button {
    text-align: center;
    width: 15%;
    position: fixed;
    bottom: 2%;
    right: 37%;
    background: rgb(244, 121, 32);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
  }

  #jai-welcome-text1-box {
    bottom: 140px;
    right: -60px;
    width: 120px;
  }

  #jai-welcome-text2-box {
    bottom: 90px;
    right: -60px;
    width: 82px;
  }

  .chatbox__button button,
  .chatbox__button button:focus,
  .chatbox__button button:visited {
    position: fixed;
    width: 30%;
    bottom: 12%;
    right: 0%;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
  }
}

/* Mid Screen Smart Phones like (Iphone XR) */

@media only screen and (min-width: 412px) and (max-width: 429px) {
  .jspl_chatbox_msgbox_container {
    position: fixed;
    bottom: 860px;
    left: 30px;
  }

  .jspl_chatbox_privacy_container {
    position: fixed;
    bottom: 50px;
    left: 28px;
    z-index: 9999999 !important;
    resize: both;
    display: none;

  }

  .chatbox__support {
    width: 355px;
    height: 635px;
  }

  .jspl_chatbox_privacy_container .jspl_chatbox_privacy-chatbox__support {
    width: 360px;
  }

  .jspl_chatbox_assistant_container .chatbox__button {
    text-align: center;
    width: 15%;
    position: fixed;
    bottom: 4%;
    right: 35%;
    background: rgb(244, 121, 32);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
  }

  #jai-welcome-text1-box {
    bottom: 140px;
    right: -60px;
    width: 120px;
  }

  #jai-welcome-text2-box {
    bottom: 90px;
    right: -60px;
    width: 82px;
  }

  .chatbox__button button,
  .chatbox__button button:focus,
  .chatbox__button button:visited {
    position: fixed;
    width: 30%;
    bottom: 12%;
    right: 0%;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
  }
}

/* Large Screen Smart Phones like (iphone 14 pro max) */

@media only screen and (min-width: 430px) and (max-width: 599px) {
  .jspl_chatbox_msgbox_container {
    position: fixed;
    bottom: 880px;
    left: 38px;
  }

  .jspl_chatbox_privacy_container {
    position: fixed;
    bottom: 75px;
    left: 35px;
    z-index: 9999999 !important;
    resize: both;
    display: none;

  }

  .chatbox__support {
    width: 355px;
    height: 635px;
  }

  .jspl_chatbox_privacy_container .jspl_chatbox_privacy-chatbox__support {
    width: 360px;
  }

  .jspl_chatbox_assistant_container .chatbox__button {
    text-align: center;
    width: 15%;
    position: fixed;
    bottom: 8%;
    right: 35%;
    background: rgb(244, 121, 32);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
  }

  #jai-welcome-text1-box {
    bottom: 140px;
    right: -60px;
    width: 120px;
  }

  #jai-welcome-text2-box {
    bottom: 90px;
    right: -60px;
    width: 82px;
  }

  .chatbox__button button,
  .chatbox__button button:focus,
  .chatbox__button button:visited {
    position: fixed;
    width: 30%;
    bottom: 12%;
    right: 0%;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
  }
}

/* Small devices (portrait tablets) */
@media only screen and (min-width: 600px) and (max-width: 991px) {

  .jspl_chatbox_assistant_container .chatbox__button {
    text-align: center;
    width: 15%;
    position: fixed;
    bottom: 23px;
    right: 94px;
    background: rgb(244, 121, 32);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
  }

  #jai-welcome-text1-box {
    bottom: 140px;
    right: 2px;
    width: 120px;
  }

  #jai-welcome-text2-box {
    bottom: 90px;
    right: 2px;
    width: 82px;
  }

  .jspl_chatbox_msgbox_container {
    position: fixed;
    top: 35px;
    left: 190px;
  }


  .jspl_chatbox_privacy_container {
    position: fixed;
    top: 450px;
    left: 190px;
    z-index: 9999999 !important;
    resize: both;
    display: none;

  }

  .chatbox__support {
    width: 400px;
    height: 655px;
    margin: 0px 16px;
  }


}


/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1249px) {
  .jspl_chatbox_msgbox_container {
    position: fixed;
    bottom: 5px;
    left: 600px;
  }

  .jspl_chatbox_privacy_container {
    position: fixed;
    top: 549px;
    left: 535px;
    z-index: 9999999 !important;
    resize: both;
    display: none;

  }

  .chatbox__support {
    width: 400px;
    height: 655px;
    margin: 0px 0px;
  }
}

/* Extra large devices (large laptops and desktops, 1100px and up) */
@media only screen and (min-width: 1249px) and (max-width: 1399px) {
  .jspl_chatbox_msgbox_container {
    position: fixed;
    bottom: 680px;
    left: 895px;
  }

  .jspl_chatbox_privacy_container {
    position: fixed;
    bottom: 45px;
    left: 850px;
    z-index: 9999999 !important;
    resize: both;
    display: none;

  }

  .chatbox__support {
    width: 355px;
    height: 530px;
    margin: 0px 0px;
  }

  .jspl_chatbox_assistant_container .chatbox__button {
    text-align: center;
    width: 15%;
    position: fixed;
    bottom: 25px;
    right: 90px;
    background: rgb(244, 121, 32);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
  }

  .chatbox__button img {
    width: 100px;
    border-radius: 10px;
    position: absolute;
    bottom: 10px;
    left: 179px;
    animation: wiggle 1s ease-in-out 5;
    animation-fill-mode: forwards;
  }

  #jai-welcome-text1-box {
    bottom: 127px;
    right: 8px;
    width: 105px;
  }

  #jai-welcome-text2-box {
    bottom: 90px;
    right: 8px;
    width: 82px;
  }
}

/* Extra large devices (large laptops and desktops) */
@media only screen and (min-width: 1400px) and (max-width: 1951px) {
  .jspl_chatbox_msgbox_container {
    position: fixed;
    bottom: 785px;
    left: 1100px;
  }

  .jspl_chatbox_privacy_container {
    position: fixed;
    bottom: 45px;
    left: 1100px;
    z-index: 9999999 !important;
    resize: both;
    display: none;

  }

  .chatbox__support {
    width: 400px;
    height: 610px;
    margin: 0px 0px;
  }

  .jspl_chatbox_assistant_container .chatbox__button {
    text-align: center;
    width: 15%;
    position: fixed;
    bottom: 9px;
    right: 65px;
    background: rgb(244, 121, 32);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
  }

  .chatbox__button img {
    width: 100px;
    border-radius: 10px;
    position: absolute;
    bottom: 10px;
    left: 179px;
    animation: wiggle 1s ease-in-out 5;
    animation-fill-mode: forwards;
  }

  #jai-welcome-text1-box {
    bottom: 127px;
    right: 37px;
    width: 105px;
  }

  #jai-welcome-text2-box {
    bottom: 90px;
    right: 35px;
    width: 82px;
  }
}

/* Target screens with a resolution of 2560 */
@media only screen and (min-width: 1951px) and (max-width: 2600px) {
  .jspl_chatbox_msgbox_container {
    position: fixed;
    bottom: 865px;
    left: 2100px;
  }

  .jspl_chatbox_privacy_container {
    position: fixed;
    bottom: 70px;
    left: 2111px;
    z-index: 9999999 !important;
    resize: both;
    display: none;

  }

  .chatbox__support {
    width: 400px;
    height: 655px;
    margin: 0px 0px;
  }

  .jspl_chatbox_assistant_container .chatbox__button {
    text-align: center;
    width: 15%;
    position: fixed;
    bottom: 35px;
    right: 65px;
    background: rgb(244, 121, 32);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
  }

  .chatbox__button img {
    width: 100px;
    border-radius: 10px;
    position: absolute;
    bottom: 10px;
    left: 325px;
    animation: wiggle 1s ease-in-out 5;
    animation-fill-mode: forwards;
  }

  #jai-welcome-text1-box {
    bottom: 140px;
    right: 35px;
    width: 120px;
  }

  #jai-welcome-text2-box {
    bottom: 90px;
    right: 35px;
    width: 82px;
  }
}