@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  padding: 0px;
  margin: 0px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-style: Regular;
  line-height: 100%;
  letter-spacing: 0%;
  overflow-y: scroll;

}

body::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

body::-webkit-scrollbar-track {
  background: #D5DAE7;
}

body::-webkit-scrollbar-thumb {
  background: #56C1FF;
  border: none;
  border-radius: 0px;
}

:root {
  --theme-clr: #56C1FF;
  --white: #fff;
  --black: #000;
}

a {
  text-decoration: none !important;
  outline: none !important;
}

img {
  border: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

main {
  width: 100%;
  height: 100vh;
  background-color: #aaa;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

/* STARTCHAT-BUTTON */
.startchat-button {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 50px;
  bottom: 50px;
  background-color: transparent;
  border: none;
  outline: none;
  border-radius: 50%;
  transform: scale(1.0);
  transition: .5s;
}

.startchat-button:hover {
  transform: scale(1.1);
  transition: .5s;
}

.startchat-button img {
  width: 100%;
  height: 100%;
}

/* STARTCHAT-BUTTON */

/* CHAT-LOGIN-POPUP */



.chatlogin-flow .modal-dialog {
  max-width: 95%;
  padding: 10px 0;
  margin: 0px auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatlogin-flow .modal-dialog .modal-content {
  height: 100%;
  border: none;
  border-radius: 8px;
  background-color: #000;
}

.chatlogin-flow .modal-dialog .modal-content .modal-body {
  height: 100%;
  background-color: #000;
}

.chatlogin-flow button.btn-close {
  width: 30px;
  height: 30px;
  background-image: url(../images/login-flow/back.svg);
  background-size: contain;
  outline: none;
  opacity: 1;
  box-shadow: none;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 9;
}

.chatlogin-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatlogin-in {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    object-position: bottom;
  }

}

#chatsignup-popup .chatlogin-left,
#chatlogin-popup .chatlogin-left {
  justify-content: center;
  padding: 2rem 5rem 1rem;
}

.chatlogin-left {
  overflow: auto;
  padding: 2rem 5rem 0;

  &::-webkit-scrollbar {
    display: none;
  }

  form {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }

}

img.logo-left {
  width: 250px;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.chatlogin-in h1 {
  font-size: 20px;
  font-weight: 600;
  color: #FF968D;
  margin-bottom: 10px;
}

.chatlogin-in h2 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;

  span {
    color: #56C1FF;
  }

}

.chatlogin-in.chatlogin-left.chatlogin-in-2 p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;

  span {
    font-size: 14px;
  }

  a {
    color: #56C1FF;
  }

}

.chatlogin-in p {
  font-size: 15px;
  font-weight: 400;
  color: #E2E2E2;
  margin-bottom: 20px;
}

.chatbot-text {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  text-align: end;
  margin: 20px 0;
  color: #fff;
  align-items: center;
  flex-wrap: wrap;

  input[type="checkbox"] {
    width: 15px;
    height: 15px;
    appearance: none;
    border: 1px solid #B0B0B0;
    border-radius: 2px;
    margin-right: 5px;

    &:checked {
      appearance: auto;
      accent-color: #56C1FF;
    }

  }

  a {
    color: #fff;
  }

}

.chatbot-field {
  width: 100%;
  height: 45px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;

  &:last-child {
    margin-bottom: 0;
  }

}

.chatbot-field input[type="text"],
.chatbot-field input[type="password"] {
  width: 100%;
  height: 100%;
  border: 1px solid #B0B0B0;
  outline: none;
  background: transparent;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 0px 40px 0px 50px;

  &::placeholder {
    color: #B0B0B0;
  }

}

.password-eye {
  position: absolute;
  width: 20px;
  height: 20px;
  display: flex;
  top: auto;
  right: 15px;
  border: none;
  align-items: center;
  background: none;
  justify-content: center;
  cursor: pointer;
  transition: .5s;
}

.password-eye .eye-close {
  background-image: url(../images/login-flow/eye-close.svg);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.password-eye .eye-open {
  background-image: url(../images/login-flow/eye-open.svg);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

img.chatbot-field-icon {
  position: absolute;
  width: auto;
  height: 80%;
  object-fit: contain;
  left: 5px;
}

img.logo-right {
  width: 250px;
  height: auto;
  position: absolute;
  right: 10px;
  bottom: 10px;
  object-fit: contain;
  padding: 10px;
  background-color: #000;
}

.chatlogin-in-btn {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}

.chatlogin-in-btn button,
.chatlogin-in-btn a {
  padding: 10px 0px;
  border-radius: 30px;
  background-color: #fff;
  border: 1px solid #56C1FF;
  font-size: 16px;
  font-weight: 500;
  color: #56C1FF;
}

.chatlogin-in-btn button.active,
.chatlogin-in-btn a.active {
  background-color: #56C1FF;
  color: #fff;
}

.chatbot-field-code {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.chatbot-field-code-in {
  display: block;
  height: 50px;
  width: 50px;
  padding: 0px;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  text-align: center;
  color: #56C1FF;
  background: transparent;
  border: 1px solid #56C1FF;
  outline: none;
  border-radius: 8px !important;
  caret-color: #56C1FF;
}

.chatbot-field-code-in.active {
  background: #F8F8F8;
}

.chatbot-field-code-in::-webkit-outer-spin-button,
.chatbot-field-code-in::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

img.password-check {
  position: absolute;
  width: auto;
  height: auto;
  object-fit: contain;
  right: 45px;
}

#chat-password-changed-popup .modal-dialog {
  max-width: 35%;
  padding: 10px 0;
  margin: 0px auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#chat-password-changed-popup .modal-dialog .modal-content {
  height: auto;
  border: none;
  border-radius: 8px;
  background-color: #000;
  border: 1px solid var(--theme-clr);
}

#chat-password-changed-popup .modal-dialog .modal-content .modal-body {
  height: 100%;
  padding: 2rem 0;

  .chatlogin-in.chatlogin-left.chatlogin-in-2 {
    text-align: center;
    padding: 0;
  }

  .chatlogin-in-btn {
    width: 35%;
    margin: auto;

    button,
    a {
      padding: 8px 0px;
    }

  }

}

img.popup-top-image {
  width: 70px;
  object-fit: contain;
  height: auto;
  margin: auto;
  margin-bottom: 20px;
}

/* CHAT-LOGIN-POPUP */

/* CHATBOT-PLAN */



#chatbot-plan-popup .modal-dialog {
  height: auto;
}

.chatbot-paln-wrap {
  width: 100%;
  height: auto;
  padding: 3.5rem 1rem 2rem 1rem;
}

.chatbot-paln-wrap .row {
  --bs-gutter-y: 24px;
}

.chatbot-paln-top {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;

  h1 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;

    span {
      color: #56C1FF;
    }

  }

  p {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
  }

}

.chatbot-paln-in {
  width: 100%;
  height: 100%;
  border: 1px solid #56C1FF;
  border-radius: 20px;
  padding: 1rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;

  img.tag {
    width: 40px;
    position: absolute;
    right: 10px;
    top: 10px;
    margin: 0;
  }

  img {
    width: 48px;
    margin-bottom: 15px;
  }

  h2 {
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
  }

  h3 {
    font-weight: 600;
    font-size: 30px;
    color: #fff;
    margin-bottom: 15px;

    span {
      font-size: 16px;
      font-weight: 400;
    }

  }

  p {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
  }

  ul {
    padding: 0;
    margin: 0;
    margin-bottom: 30px;

    li {
      list-style: none;
      display: flex;
      align-items: baseline !important;
      align-items: center;
      font-size: 16px;
      color: #fff;
      gap: 5px;
      margin-bottom: 10px;
      text-align: left;

      &:last-child {
        margin-bottom: 0;
      }

      img {
        margin: 0;
        width: 20px;
        position: relative;
        top: 4px;
      }

    }

  }

  a {
    width: 100%;
    display: block;
    color: #fff !important;
    border: 1px solid #56C1FF;
    padding: 0.8rem 0;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 400;
    margin-top: auto;
  }

}

.chatbot-paln-in.best-value {
  background-image: url(../images/plan/plan-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
}

#chat-congratulations-popup .modal-dialog {
  max-width: 30%;
  padding: 10px 0;
  margin: 0px auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#chat-congratulations-popup .modal-dialog .modal-content {
  height: auto;
  border: none;
  border-radius: 8px;
  background-color: #000;
  border: 1px solid var(--theme-clr);
}

#chat-congratulations-popup .modal-dialog .modal-content .modal-body {
  height: 100%;
  padding: 2rem 1rem;

  .chatlogin-in.chatlogin-left.chatlogin-in-2 {
    text-align: center;
    padding: 0;
  }

  .chatlogin-in-btn {
    width: 70%;
    margin: auto;

    button,
    a {
      padding: 8px 0px;
    }

  }

}

/* CHATBOT-PLAN */

/* CHATBOT-POPUP */



.chatbot-popup-panel .modal-dialog {
  max-width: 95%;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  /* display: flex; */
  justify-content: center;
  align-items: center;
}

.chatbot-popup-panel .modal-dialog .modal-content {
  height: 100%;
  padding: 1rem;
  background-color: #000;
}

.chatbot-popup-panel .modal-header {
  background-color: #000;
  position: relative;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #56C1FF;
}

.chatbot-popup-panel .logo {
  width: 200px;

  img {
    width: 100%;
    height: auto;
  }

}

.chatbot-popup-panel .modal-header button.btn-close {
  background-image: url(../images/chat-close.svg);
  background-size: contain;
  outline: none;
  opacity: 1;
  box-shadow: none;
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
}

.chatbot-popup-panel .modal-header button.chatmenu-icon {
  position: relative;
  background: none;
  border: none;
  outline: none;
  width: 25px;
  height: 25px;
  left: 250px;
  transition: .3s ease;
}

.chatbot-popup-panel .modal-header button.chatmenu-icon.active {
  left: 0;
  transition: .3s ease;
}

.chatbot-popup-panel .modal-header button.chatmenu-icon img {
  width: 100%;
  height: 100%;
}

.chatbot-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  position: relative;
  background: #000000;
}

.chatbot-history {
  width: 300px;
  height: 100%;
  background: #000000;
  border: 1px solid #56C1FF;
  padding: 12px 0;
  transition: .3s ease;
  border-radius: 15px;
  opacity: 1;
  position: absolute;
  left: 0;
}

.chatbot-history.active {
  transition: .3s ease;
  opacity: 0;
}

.chatbot-history .scrollbar {
  height: 65vh;
  overflow-y: auto;
}

.chatbot-history .scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.chatbot-history .scrollbar::-webkit-scrollbar-track {
  background: #F7F7F8;
  border-radius: 10px;
}

.chatbot-history .scrollbar::-webkit-scrollbar-thumb {
  background: #56C1FF;
  border: 1px solid #F7F7F8;
  border-radius: 10px;
}

.chatbot-history-top {
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-chat-panel-top {
  width: 100%;
  height: auto;
  padding: 12px 20px;
  border-bottom: 1px solid #56c1ff;
}

button.new-chat {
  background: #202020;
  outline: none;
  transition: .3s ease;
  display: flex;
  border: none;
  padding: 5px 10px;
  color: #56C1FF;
  gap: 5px;
  font-weight: 500;
  font-size: 13px;
  border-radius: 20px;

  img {
    width: 20px;
    height: auto;
  }

}

.chatbot-chat-panel {
  position: relative;
  width: calc(100% - 320px);
  right: 0px;
  height: 100%;
  transition: .3s ease;
  border: 1px solid #56C1FF;
  border-radius: 10px;
  background-color: #000000;
}

.chatbot-history.active~.chatbot-chat-panel {
  width: calc(100% - 0px);
  transition: .3s ease;
}

.chatbot-chat-panel-top {
  width: 100%;
  height: auto;
  padding: 12px 20px;
  border-bottom: 1px solid #56c1ff;
}

.chatbot-history-top h1 {
  font-weight: 600;
  font-size: 18px;
  color: #56C1FF;
  margin: 0;
}

button.chatmenu-icon {
  position: relative;
  background: none;
  border: none;
  outline: none;
  width: 25px;
  height: 25px;
  transition: .3s ease;
}

.image {
  /* background-image: url(../images/chat-bg.svg); * bhanu/
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}

.chatbot-chat-panel-scroll {
  width: 100%;
  /* height: 100dvh; */
  height: calc(100dvh - 280px);
  /* height: calc(100vh - 280px); */
  /* background-image: url(../images/chat-bg.svg); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  overflow-y: auto;
  margin-bottom: 10px;
  position: relative;
}

.chatbot-chat-panel-scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.chatbot-chat-panel-scroll::-webkit-scrollbar-track {
  background: #D5DAE7;
  border-radius: 10px;
}

.chatbot-chat-panel-scroll::-webkit-scrollbar-thumb {
  background: #56C1FF;
  border: none;
  border-radius: 10px;
}

.chatbot-chat-panel-welcome {
  width: 100%;
  height: auto;
  display: flex;
  gap: 30px 20px;
  text-align: center;
  margin-bottom: 0rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-top: auto;
  position: absolute;
  bottom: 30px;
}

.chatbot-chat-panel-welcome h3 {
  font-size: 26px;
  font-weight: 600;
  color: #56C1FF;
  margin: 0;
  width: 100%;
}

.chatpanel-welcome-inr {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* .chatpanel-welcome-inr >*{

    margin-bottom: 15px;

}

.chatpanel-welcome-inr >*:last-child{

    margin-bottom: 0;

} */
.chatbot-chat-panel-welcome-in {
  border: 1px solid #56C1FF;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  transition: .5s;
  max-width: 200px;

  img {
    width: 40px;
    margin-bottom: 15px;
  }

  h4 {
    font-weight: 600;
    font-size: 16px;
    color: #56C1FF;
    margin-bottom: 5px;

    a {
      color: #56C1FF;
    }

  }

  p {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    margin-bottom: 0px;
  }

}

/* .chatbot-chat-panel-bottom {
  width: 100%;
  height: auto;
  margin: auto;
  margin-bottom: 15px;
  padding: 0 15px;
  position: sticky;
  bottom: 15px;
} */

.chatbot-chat-panel-bottom {
    width: 100%;
    height: auto;
    margin: auto;
    margin-bottom: 15px;
    padding: 0 15px;
    padding-top: 15px;
    position: absolute;
    top: 57px;
    background-color: #000;
}

.chatbot-chat-panel-scroll.image {
    margin-top: 100px;
    height: calc(100dvh - 315px);
}

/* .chatbot-chat-panel-bottom form {
  width: 100%;
  display: flex;
  position: relative;
  border: 1px solid #56C1FF;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  align-items: flex-start;
  flex-direction: column;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  gap: 10px;
  top: 0px;
} */

.chatbot-chat-panel-bottom form {
    width: 100%;
    display: flex;
    position: relative;
    border: 1px solid #56C1FF;
    background-color: #000000;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    align-items: flex-start;
    flex-direction: column;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    gap: 10px;
    top: 0px;
}

.chatbot-chat-panel-bottom form label {
  width: 100%;
  display: flex;
  position: relative;
  border: none;
  align-items: center;
}

/* .chatbot-chat-panel-bottom form label textarea {
  width: 100%;
  height: 38px;
  border: none;
  outline: none;
  padding: 8px 50px 8px 160px;
  resize: none;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  border-radius: 30px;
  outline: 1px solid #56C1FF;
  background: #343535;

  &::-webkit-scrollbar {
    display: none;
  }

} */

.chatbot-chat-panel-bottom form label textarea {
    width: 100%;
    height: 38px;
    border: none;
    outline: none;
    padding: 10px 50px 8px 160px;
    resize: none;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    border-radius: 30px;
    outline: 1px solid #56C1FF;
    background: #343535;
}

.chatbot-chat-panel-bottom form label button.send {
  position: absolute;
  width: auto;
  height: 100%;
  right: 0;
  top: auto;
  border-radius: 30px;
  background: #56C1FF;
  border: none;
  outline: none;
  padding: 10px;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

}

.prompts-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px;

  button {
    background: #202020;
    outline: none;
    transition: .3s ease;
    display: flex;
    border: none;
    padding: 5px 12px;
    color: #fff;
    gap: 5px;
    font-weight: 500;
    font-size: 13px;
    border-radius: 20px;

    img {
      width: 25px;
    }

  }

}

button.prompts {
  position: absolute;
  width: auto;
  height: 85%;
  left: 5px;
  top: auto;
  border-radius: 30px;
  background: #202020;
  color: #56C1FF;
  border: none;
  outline: none;
  padding: 0px 20px 0px 10px;
  font-weight: 400;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  img {
    width: 20px;
    height: auto;
    object-fit: contain;
  }

}

.chatbot-chat-panel-in {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
}

.chatbot-popup-panel .modal-header .chatbot-chatshare {
  width: auto;
  position: relative;
  right: 10px;
  margin-left: auto;
}

.chatbot-popup-panel .modal-header .chatbot-chatshare [type=button] {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: #fff;
  padding: 5px;
}

.chatbot-popup-panel .modal-header .chatbot-chatshare [type=button] img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chatbot-chatshare-dropdown {
  position: absolute;
  right: 0;
  background: #fff;
  top: 100%;
  margin-top: 8px;
  z-index: 9;
  width: 400px;
  border: 1px solid #D5DAE7;
  border-radius: 8px;
}

.chatbot-chatshare-dropdown h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding: 10px;
  color: #56C1FF;
  border-bottom: 1px solid #D5DAE7;
}

.chatbot-chatshare-dropdown p {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  padding: 10px;
  color: #4E4E4E;
}

.chatbot-chatshare-dropdown form {
  width: 100%;
  height: auto;
  padding: 10px;
}

.chatbot-chatshare-dropdown form label {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  background: #EAF1F8;
  position: relative;
  border-radius: 8px;
}

.chatbot-chatshare-dropdown form label input[type="text"] {
  background: none;
  border: none;
  outline: none;
  padding-left: 12px;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  color: #4E4E4E;
}

.chatbot-chatshare-dropdown form label button {
  position: absolute;
  right: 5px;
  background-color: #56C1FF;
  border: none;
  padding: 5px 8px;
  font-size: 14px;
  color: #fff;
  border-radius: 6px;
}

/* CHAT-RIGHT-SECTION */
.chatbot-chat-panel-in-right {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.chatbot-chat-panel-in-right button.chat-edit {
  width: 30px;
  height: 30px;
  background: rgb(234 241 248 / 50%);
  border: none;
  outline: none;
  border-radius: 50%;
  padding: 8px;
}

.chatbot-chat-panel-in-right button.chat-edit:hover {
  background: rgb(234 241 248 / 100%);
}

.chatbot-chat-panel-in-right button.chat-edit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chatbot-chat-panel-in-right p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  background: #EAF1F8;
  padding: 10px;
  border-radius: 6px;
  width: fit-content;
  max-width: 70%;
  word-wrap: break-word;
}

.chatbot-chat-panel-in-right form {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  background: #EAF1F8;
  border-radius: 6px;
  padding: 10px;
  gap: 10px;
}

.chatbot-chat-panel-in-right form textarea {
  width: 100%;
  height: auto;
  resize: none;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  background: none;
  border-radius: 8px;
}

.chatbot-chat-panel-in-right form button {
  background: #fff;
  color: #4E4E4E;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 5px;
  border: none;
}

.chatbot-chat-panel-in-right form button.active {
  background: #56C1FF;
  color: #fff;
}

/* CHAT-RIGHT-SECTION */

/* CHAT-LEFT-SECTION */



.chatbot-chat-panel-in-left {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px 10px;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

.chatbot-chat-panel-in-left .csm-logo {
  width: 38px;
  height: 38px;
  background: #f5f5f5;
  border-radius: 50%;
  padding: 5px;
}

.chatbot-chat-panel-in-left .csm-logo img {
  width: 100%;
  height: 100%;
}

.chatbot-chat-panel-in-left p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  background: #EAF1F8;
  padding: 10px;
  border-radius: 6px;
  width: fit-content;
  max-width: 70%;
  word-wrap: break-word;
}

.chatbot-chat-panel-in-left p b {
  font-weight: 600;
  font-size: 14px;
}

.chatbot-chat-panel-in-left-buttons {
  width: 100%;
  display: flex;
  gap: 10px;
}

.chatbot-chat-panel-in-left-buttons button {
  width: 30px;
  height: 30px;
  background: rgb(234 241 248 / 50%);
  border: none;
  outline: none;
  border-radius: 50%;
  padding: 8px;
}

.chatbot-chat-panel-in-left-buttons button:hover {
  background: rgb(234 241 248 / 100%);
}

.chatbot-chat-panel-in-left-buttons button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

button.dots-menu-btn {
  background: none;
  border: none;
}

/* CHAT-LEFT-SECTION */

/* CHATBOT-POPUP */

/* CHATBOT-CHAT-HISTORY */



.chatbot-chat-history {
  width: 100%;
  height: auto;
}

.chatbot-chat-history .chatbot-chat-panel {
  width: 100%;
}

.chatbot-chat-history .chatbot-chat-panel-scroll {
  height: 70vh;
  background-size: 25rem;
  margin: 0;
}

/* CHATBOT-CHAT-HISTORY */
.ctbt-day-content-cd {
  background: #202020;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}

.chat-day-content-inr {
  display: flex;
  max-width: calc(100% - 13px);
  width: 100%;
  padding-right: 20px;
  align-items: baseline;
}

.ctbtd-cntnt-cd-icon {
  width: 13px;
  margin-right: 12px;
  flex-shrink: 0;
}

.ctbtd-cntnt-cd-icon img {
  width: 100%;
  object-fit: contain;
}

.ctbtd-cntnt-cd-text p {
  color: #fff;
  font-size: 12px;
  margin: 0;
}

.ctbtd-cntnt-cd-control {
  background: transparent;
  border: 0;
  padding: 5px 0;
  margin: 0;
  width: 13px;
  outline: 0;
  box-shadow: none;
  position: relative;
}

.ctbtd-cntnt-cd-control>img {
  width: 100%;
  height: 10px;
}

.chatbot-daybyday {
  padding: 0 10px;
  margin-bottom: 10px;
}

.chatbot-daybyday:last-child,
.ctbt-day-content-cd:last-child {
  margin-bottom: 0;
}

.chatbot-day-head {
  margin-bottom: 10px;
}

.chatbot-day-head h2 {
  padding: 10px 0;
  border-bottom: 1px solid var(--theme-clr);
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-clr);
}

.chatdays-main-wrp {
  overflow: hidden;
  padding: 10px 0 32px;
  height: 100%;
}

.scroller-wrp {
  overflow-y: auto;
  height: 100%;
}

.scroller-wrp::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 20px;
}

.scroller-wrp::-webkit-scrollbar-track {
  background: #202020;
  border-radius: 20px;
}

.scroller-wrp::-webkit-scrollbar-thumb {
  background: var(--theme-clr);
  border: none;
  border-radius: 20px;
}

.chatbot-history.active~.chatbot-chat-panel button.chatmenu-icon {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.chatbot-chat-panel button.chatmenu-icon {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cmn-smenu {
  background: #323232;
  border-radius: 10px;
  width: 80px;
  position: absolute;
  /* right: 0; */
  top: 18px;
  padding: 10px;
  display: none;
  z-index: 9;
  left: -45px;
}

.cmn-smenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100px;
}

.cmn-smenu ul li.delete-btn button {
  color: #EC1C24;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.cmn-smenu ul li {
  margin-bottom: 10px;
}

.cmn-smenu ul li:last-child {
  margin-bottom: 0;
}

.cmn-smenu ul li a,
.cmn-smenu ul li button {
  color: var(--white);
  text-align: left;
  font-size: 14px;
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
}

.cmn-smenu ul li a img,
.cmn-smenu ul li button img {
  width: 12px;
  margin-right: 5px;
  flex-shrink: 0;
}

.show {
  display: block;
}

/* Chatbot Chat Panel Begin */
#chatbot-chatpanel-popup .chatbot-chat-panel-scroll {
  width: 100%;
  height: calc(100vh - 280px);
  background: transparent;
  overflow-y: auto;
  margin-bottom: 10px;
  position: relative;
}

.chatbot-chat-card {
  display: flex;
  flex-wrap: wrap;
  max-width: 60%;
  width: 100%;
  margin-bottom: 25px;
  gap: 10px;
  flex-direction: column-reverse;
}

.chatbot-chat-card.chat-card-self {
  flex-direction: unset;
}

.chatbot-chat-card:last-child {
  margin-bottom: 0;
}

.chat-card-self {
  width: 257px;
  max-width: 40%;
  width: 100%;
  margin-left: auto;
  gap: 10px;
}

.chat-card-self .chatcard-content {
  max-width: calc(100% - 30px);
  margin-left: auto;
}

.chatcard-content {
  background: #202020;
  padding: 10px;
  border-radius: 5px;
}

.chatcard-content p {
  color: var(--white);
}

.chatcard-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 4px;
  position: relative;
  background: #202020;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.chatcard-icon img {
  width: 100%;
}

.chatcard-icon .tooltip {
  position: absolute;
  left: -22px;
  top: calc(100% + 5px);
  background: var(--theme-clr);
  border-radius: 30px;
  color: var(--white);
  padding: 3px 10px;
  font-size: 14px;
  border-top: 5px solid transparent;
  border-left: 5px solid var(--theme-clr);
  border-right: 5px solid var(--theme-clr);
  border-bottom: 5px solid transparent;
  opacity: 0;
  visibility: hidden;
  line-height: 1;
  min-width: 120px;
  text-align: center;
}

.chatcard-icon:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.chatbot-chat-card-panel {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 25px;
}

.chatcard-icons-wrp {
  display: flex;
  align-items: center;
  margin-top: 8px;
  gap: 10px;
}

.chatbot-chat-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.btn-wrp {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: auto;
  justify-content: flex-end;
}

.btn-wrp button {
  padding: 8px 15px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #202020;
  border-radius: 30px;
  color: var(--theme-clr);
  border: 0;
  gap: 10px;
}

.user-control {
  position: relative;
  cursor: pointer;
}

.user-control:hover .userctrl-menu {

  /* display: block; */

  visibility: visible;
}

.user-ctrl-inr {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mdl-hdr-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 30px;
}

.user-ctrl-inr .user-img {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
}

.user-ctrl-inr .user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-ctrl-inr p {
  color: var(--white);
  margin: 0;
}

.user-ctrl-inr p i {
  color: var(--theme-clr);
  margin-left: 5px;
}

.cmn-smenu-parent {
  position: relative;
}

.cmn-smenu-parent:hover .cmn-smenu {
  display: block;
}

.share-drpdn {
  min-width: 300px;
  padding: 10px 0;
  border: 1px solid var(--theme-clr);
  border-radius: 8px;
  background: var(--black);
  margin-left: -105px;
}

.share-drpdn h4 {
  padding: 0 15px 10px;
  border-bottom: 1px solid rgba(86, 193, 255, .4);
  margin-bottom: 10px;
  font-size: 18px;
  text-align: left;
  font-weight: 600;
}

.share-drpdn p {
  padding: 0 15px;
  color: var(--white);
  font-size: 14px;
  text-align: left;
}

.copy-shr-link {
  position: relative;
  padding: 0 15px;
  padding-right: 0px;
}

.copy-shr-link input {
  height: 40px;
  width: 100%;
  border-radius: 30px;
  padding: 5px 15px;
  padding-right: 90px;
  background: #202020;
  border: 0;
  color: var(--white);
}

.copy-shr-link .copy-btn {
  padding: 3px 12px;
  background: var(--theme-clr);
  height: calc(100% - 6px);
  position: absolute;
  right: 3px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
}

/* End Of Chatbot Chat Panel */

/* Profile Begin */



.chatbot-popup-panel.profile-flow .modal-header {
  border: 0;
  border-bottom: 1px solid rgba(86, 193, 255, .4);
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0;
}

.chatbot-popup-panel.profile-flow .modal-dialog .modal-content {
  padding: 0;
  border-radius: 0;
}

.profile-flow .mdl-hdr-right {
  justify-content: space-between;
  width: 100%;
}

.profile-flow .mdl-hdr-right h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--theme-clr);
  margin: 0;
}

.pr-ctrl-btn-wrp {
  display: flex;
  flex-direction: column;
}

.profile-img {
  width: 110px;
  height: 110px;
  overflow: hidden;
  border-radius: 10px;
  margin-right: 12px;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info-head {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}

.profile-info-head-left {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}

.pr-ctrl-btn-wrp .cmn-btn {
  padding: 8px 15px;
  border-radius: 30px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  background: #202020;
  font-weight: 500;
  transition: all ease-in-out .3s;
  margin-bottom: 12px;
}

.pr-ctrl-btn-wrp .cmn-btn:last-child {
  margin-bottom: 0;
}

.pr-ctrl-btn-wrp .cmn-btn img {
  transition: all ease-in-out .3s;
  filter: brightness(0) invert(1);
}

.pr-ctrl-btn-wrp .cmn-btn:hover,
.pr-ctrl-btn-wrp .cmn-btn.brdr-btn:hover {
  background: var(--theme-clr);
  color: var(--black);
}

.pr-ctrl-btn-wrp .cmn-btn.brdr-btn:hover img,
.pr-ctrl-btn-wrp .cmn-btn:hover img {
  filter: brightness(0);
}

.pr-ctrl-btn-wrp .cmn-btn.brdr-btn {
  border: 1px solid var(--theme-clr);
  background: transparent;
}

.pr-ctrl-btn-wrp .cmn-btn.brdr-btn img {
  filter: none;
}

.blue-btn {
  padding: 8px 15px;
  border-radius: 30px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  background: var(--theme-clr);
  font-weight: 500;
  border: 1px solid var(--theme-clr);
  transition: all ease-in-out .3s;
}

.blue-btn img {
  width: 20px;
  filter: brightness(0) invert(1);
}

.blue-btn:hover {
  background: var(--black);
}

.prinfo-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.prinfo-form>* {
  max-width: 360px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.prinfo-form .input-grp input {
  width: 293px;
  background: #202020;
  border-radius: 30px;
  height: 40px;
  color: var(--white);
  padding: 5px 12px;
  border: 0;
}

.prinfo-form .input-grp label {
  color: var(--theme-clr);
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px 0 0;
}

.prinfo-cd-btn-wrp {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.prinfo-cd {
  margin-bottom: 20px;
}

.prinfo-cd:last-child {
  margin-bottom: 0;
}

.prinfo-heading {
  width: 100%;
  padding: 12px 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, #56C1FF 0%, #347499 100%);
  margin-bottom: 20px;
}

.prinfo-heading>* {
  color: var(--white);
}

.prinfo-heading h2 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.prinfo-heading h2:last-child {
  margin-bottom: 0;
}

.prinfo-heading p {
  margin: 0;
}

.profile-info-bdy {
  border: 1px solid rgba(86, 193, 255, .4);
  padding: 15px;
  border-radius: 8px;
}

.prinfocd-plan-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.plan-dtls p strong {
  color: var(--theme-clr);
}

.plan-dtls p {
  font-size: 16px;
  margin: 0;
  color: var(--white);
}

.cmn-smenuuu {
  background: #323232;
  border-radius: 10px;
  width: max-content;
  position: absolute;
  right: 0;
  top: 30px;
  padding: 10px;
  z-index: 9;
  margin-top: 5px;
  width: max-content;
  visibility: hidden;
}

.cmn-smenuuu ul li.delete-btn button {
  color: #EC1C24;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.cmn-smenuuu ul li {
  margin-bottom: 10px;
}

.cmn-smenuuu ul li:last-child {
  margin-bottom: 0;
}

.cmn-smenuuu ul li a,
.cmn-smenuuu ul li button {
  color: var(--white);
  text-align: left;
  font-size: 14px;
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
}

.cmn-smenuuu ul li a img,
.cmn-smenuuu ul li button img {
  width: 12px;
  margin-right: 5px;
  flex-shrink: 0;
}

/* End Of Profile */

/* Delete Popup Screen Begin */



.delete-pop-content p {
  color: var(--white);
}

.delete-pop-content p strong {
  display: block;
  color: var(--theme-clr);
}

#deleteAccount .modal-dialog {
  max-width: 450px;
}

#deleteAccount .modal-content {
  background: var(--black);
  border-radius: 10px;
}

.delete-wrp-btn button {
  width: 100%;
}

.delete-wrp-btn button.delete-btn {
  background: #EC1C24;
  border-color: #EC1C24;
  margin-bottom: 12px;
}

/* End Of Delete Popup Screen */
.dfplan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.chat-card-self #editContainer {
  width: calc(100% - 24px);
  margin-left: auto;
}

#editContainer {
  width: 100%;
  margin-left: 0;
}

.edit-area {
  width: 100%;
  background: #202020;
  border-radius: 5px;
  padding: 6px 8px;
  color: var(--white);
  border: 0;
  height: 80px;
  font-size: 16px;
}

#editContainer .controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 10px;
}

#editContainer .controls button {
  border: 0;
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--white);
  background: var(--theme-clr);
}

#deleteAccount.show {
  display: flex !important;
  align-items: center;
}

.chatbot-plan-card-btm {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* DK-CSS */

.ctbtd-cntnt-cd-control .cmn-smenu {
  left: inherit;
  right: 0;
  border-radius: 5px;
}

.chatbot-chat-panel-bottom div#chat-output {
  display: none;
}

#confirm-email-change .modal-dialog {
  max-width: 450px;
}

#confirm-cancel-plan .modal-dialog {
  max-width: 550px;
  margin-top: 4rem;
}

#confirm-cancel-plan .modal-dialog {
  margin-top: 4rem;
}

#confirm-email-change .modal-dialog .modal-body p {
  color: #ffffff;
}

#updated-success .modal-dialog .modal-content,
#deleteAccount .modal-dialog .modal-content,
#confirm-cancel-plan .modal-dialog .modal-content,
#confirm-email-change .modal-dialog .modal-content {
  border-color: #56C1FF;
}

button.blue-btn.cancel-subscription-btn {
  background-color: transparent;
}

/* DK-CSS */

@media only screen and (max-width:991px) {
  .chat-card-self {
    max-width: 95%;
  }

  .chatbot-chat-card {
    max-width: 90%;
  }

  .chatbot-chat-panel-welcome-in {
    width: 45%;
  }

}

@media only screen and (max-width:767px) {
  .chatbot-chat-panel-welcome-in {
    padding: 10px;
    width: 48%;
  }

  .chatbot-history {
    width: 300px;
    height: 100%;
    background: var(--black);
    z-index: 9;
    border-radius: 12px;
    visibility: visible;
  }

  .chatbot-history.active {
    width: 0 !important;
    padding: 0 !important;
    visibility: hidden;
  }

  .chatbot-chat-panel-scroll {
    height: 100%;
    min-height: 100vh;
  }

  .chat-card-self {
    max-width: 90%;
  }

  .chatbot-chat-card {
    max-width: 85%;
  }

  #chatsignup-popup .chatlogin-left,
  #chatlogin-popup .chatlogin-left {
    padding: 2rem 2rem 1rem;
  }

  #editContainer .controls button {
    padding: 5px 15px;
  }

}

@media only screen and (max-width:575px) {
  .chatbot-popup-panel .logo {
    width: 150px;
  }

  .mdl-hdr-right {
    gap: 12px;
  }

  .user-ctrl-inr {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .user-ctrl-inr p i {
    margin-left: 0px;
  }

  .chatbot-chat-card {
    width: 96%;
  }

  .chat-card-self .chatcard-content {
    max-width: calc(100% - 24px);
    padding: 8px 6px;
  }

  .chatcard-content p {
    font-size: 14px;
    margin: 0;
  }

  .btn-wrp button {
    padding: 8px 12px;
    gap: 6px;
    font-size: 14px;
  }

  .chatbot-chat-panel-top {
    width: 100%;
    height: auto;
    padding: 12px;
    border-bottom: 1px solid #56c1ff;
  }

  /* .user-ctrl-inr p {
    display: none;
  } */

  .cmn-smenu {
    min-width: 150px;
  }

  .share-drpdn {
    min-width: 260px;
  }

  .chatbot-chat-panel-welcome {
    gap: 12px;
    padding: 0 12px;
  }

  .chatbot-chat-panel-welcome-in {
    width: calc((100% / 2) - 6px);
  }

  #chatsignup-popup .chatlogin-left,
  #chatlogin-popup .chatlogin-left {
    padding: 2rem 12px 1rem;
  }

  #chat-congratulations-popup .modal-dialog {
    max-width: 70%;
  }

  .chatcard-icon .tooltip {
    left: 0;
  }

  .chatbot-chat-panel-bottom form label textarea {
    padding: 8px 40px 8px 130px;
  }

  button.prompts {
    padding: 6px 10px;
    font-size: 10px;
  }

  button.prompts img {
    width: auto;
  }

}

@media only screen and (max-width:479px) {
  .chatbot-popup-panel .logo {
    width: 120px;
  }

  .btn-wrp {
    gap: 6px;
  }

  .chatbot-chat-panel-top {
    padding: 12px 8px;
    gap: 5px;
  }

  .chatbot-chat-card-panel {
    padding: 12px;
  }

  .chatbot-chat-panel-bottom {
    margin-bottom: 12px;
    padding: 0 12px;
  }

  .prompts-wrap button {
    align-items: center;
    border-radius: 50px;
  }

  .modal-content {
    padding: 8px !important;
  }

  .chatbot-chat-panel-welcome-in {
    width: 100%;
    max-width: 100%;
  }

  button.prompts {
    padding: 2px 10px;
  }

  .pr-ctrl-btn-wrp .cmn-btn {
    padding: 8px 12px;
    gap: 6px;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .profile-img {
    width: 100px;
  }

  div#profile .modal-body,
  .profile-info-bdy {
    padding: 12px;
  }

  .prinfo-cd-btn-wrp {
    justify-content: flex-start;
  }

  .prinfo-heading h2 {
    margin-bottom: 6px;
    font-size: 22px;
  }

  .prinfo-form .input-grp input {
    width: 100%;
  }

  .prinfo-form .input-grp {
    gap: 6px;
  }

  #deleteAccount .modal-dialog {
    padding: 6px;
  }

  #deleteAccount .modal-body {
    padding: 6px;
  }

  #deleteAccount.chatbot-popup-panel.profile-flow .modal-header {
    padding: 0 0 12px;
  }

  .profile-flow .mdl-hdr-right h2 {
    font-size: 18px;
  }

  .chatbot-chat-panel button.chatmenu-icon {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .chatbot-history.active {
    width: 100% !important;
    height: 100% !important;
    background: var(--black) !important;
    opacity: 1;
    z-index: 9 !important;
    border-radius: 12px !important;
    visibility: visible !important;
  }

  .chatbot-chat-panel-welcome {
    height: 100%;
    overflow-y: auto;
    padding-top: 50px;
  }

  .chatbot-history-top {
    padding: 12px;
  }

  #chatsignup-popup .chatlogin-left,
  #chatlogin-popup .chatlogin-left {
    padding: 2rem 0 1rem;
  }

  .chatbot-paln-wrap {
    padding: 2.5rem 0 2rem 0;
  }

  #chat-congratulations-popup .modal-dialog {
    max-width: 100%;
    padding: 12px;
  }

}

/* DK-RESPONSIVE */

@media only screen and (min-width:768px) and (max-width:999px) {

  #chatsignup-popup .chatlogin-left,
  #chatlogin-popup .chatlogin-left {
    justify-content: center;
    padding: 1rem;
  }

  #navbarSupportedContent .btn-wrp {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }

  #deleteAccount .modal-dialog {
    max-width: 450px;
    margin-top: -15rem;
  }

  #updated-success {
    left: 0 !important;
    right: 0;
    margin: auto;
    top: -700px !important;
  }

}

.chatbot-popup-panel.profile-flow .modal-header {
  border-radius: 10px 10px 0px 0px;
}

.profile-img i {
  left: 0 !important;
}

#chatsignup-popup .chatlogin-in {
  justify-content: flex-start;
}





/* DK-RESPONSIVE */