@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {}

@media (prefers-color-scheme: dark) {
  :root {}
}

@layer base {
  @font-face {
    font-family: "Montserrat";
    font-display: block;
    src: url("fonts/montserrat.woff2") format("woff2");
  }
}

mybot {
  z-index: 999999999;
  position: relative;
  font-family: "Montserrat", sans-serif !important;

}

/* General end*/

/* MyBot */

mybot .chat-bot-hidden {
  display: none;
  visibility: hidden;
}

mybot.center .chatCont,
mybot.center .profile_div {
  left: 0;
  right: 0;
  margin: 0 auto;
}

mybot.left .chatCont,
mybot.left .profile_div {
  left: 0;
}

mybot .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  outline: none;
  font-family: "Montserrat", sans-serif;
}

mybot .chatCont {
  position: fixed;
  width: 400px;
  height: 500px !important;
  max-height: 80vh;
  border: 1px solid #dcdcdc;
  bottom: 0;
  right: 0;
  background-color: #fdfcfb;
  /* background: #efe7dd url(../img/bg2.png) repeat; */
  border-top-left-radius: 3px;
  z-index: 10000;
  display: none;
}

mybot .close-chatbot {
  position: absolute;
  right: 5px;
  margin-top: -60px;
  color: #868686;
  font-size: 18px;
  cursor: pointer;
}

mybot .bot_profile {
  /* position: absolute;
  right: 0; */
  /* margin-top: -55px; */
  /* text-align: center; */
  width: 400px;
  display: none;
  z-index: 1000;
}

mybot .bot_img-wrapper {
  width: 80px;
  padding: 10px 13px;
  border-radius: 50%;
  box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 rgba(0, 0, 0, 0.12);
  background: white;
  margin: 0 auto;
}

mybot .bot_p_img {
  margin-bottom: 3px;
}

mybot .chatForm {
  /* position: absolute;
  bottom: -65px;
  right: 0; */
  padding-top: 5px;
  margin-bottom: 0;
  width: 400px;
  display: none;
}

mybot .bot-txt,
mybot .bot-txt:focus {
  box-shadow: none;
  border-radius: 0;
  height: 66px;
  border: 0;
  border-top: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
}

mybot .resultDiv .botResult {
  background: #fff;
  color: #000;
  border-radius: 3px;
  padding: 12px;
  font-size: 14px;
  font-weight: 400;
  width: 400px;
  float: left;
  box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 rgba(0, 0, 0, 0.12);
  border-top-left-radius: 0;
  margin-bottom: 10px;
  margin-top: 5px;
  width: 100%;
  position: relative;
}

mybot .resultDiv .botResult:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0px solid rgba(0, 0, 0, 0);
  border-bottom: 15px solid rgba(0, 0, 0, 0);
  border-right: 15px solid #fff;
  left: -15px;
  margin-top: -12px;
}

mybot .resultDiv .userEnteredText {
  background: #ef4830;
  float: right;
  color: #ffffff;
  border-radius: 3px;
  padding: 12px;
  font-size: 15px;
  font-weight: 400;
  width: 400px;
  box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 rgba(0, 0, 0, 0.12);
  border-top-right-radius: 0;
  position: relative;
  left: -6px;
  margin-bottom: 10px;
  margin-top: 5px;
  width: 100%;
  word-wrap: break-word;
}

mybot .resultDiv .userEnteredText:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0px solid rgba(0, 0, 0, 0);
  border-bottom: 15px solid rgba(0, 0, 0, 0);
  border-left: 15px solid #ef4830;
  position: absolute;
  right: -15px;
  margin-top: -12px;
}

mybot .profile_div {
  position: fixed;
  bottom: 10px;
  right: -40px;
  width: 154px;
  cursor: pointer;
}

mybot .profile_div .profile-row {
  display: flex;
}

mybot .img-wrapper {
  overflow: hidden;
  position: relative;
}


mybot .col-hgt {
  height: 100px;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 10px;
  text-align: center;
}


mybot .chat-label {
  width: 189px;
  padding-top: 19px;
}

/* Spinner start */
mybot .spinner {
  background: #26252a;
  width: 70px;
  height: auto;
  text-align: center;
  display: none;
  border-radius: 24px;
  position: relative;
  top: 0;
  left: 19px;
  padding: 7px 10px;
  border-top-left-radius: 0;
}

mybot .loading-gif {
  width: 100%;
}

mybot .spinner:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0px solid rgba(0, 0, 0, 0);
  border-bottom: 15px solid rgba(0, 0, 0, 0);
  border-right: 15px solid #26252a;
  left: -15px;
  margin-top: -7px;
}

mybot .spinner>div {
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  margin-right: 5px;
}

mybot .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

mybot .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* Spinner End */

/* Suggestions */
mybot .suggestion {
  background: #fff;
  color: #000;
  border-radius: 3px;
  padding: 12px;
  font-size: 14px;
  font-weight: 400;
  width: 400px;
  float: left;
  box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 rgba(0, 0, 0, 0.12);
  margin-left: 5px;
  border-top-left-radius: 0;
  margin-bottom: 20px;
  width: 100%;
  position: relative;
}

mybot .suggestion:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0px solid rgba(0, 0, 0, 0);
  border-bottom: 15px solid rgba(0, 0, 0, 0);
  border-right: 15px solid #fff;
  left: -15px;
  margin-top: -12px;
}

mybot .suggestion .sugg-options {
  display: block;
  background: #9c27b0;
  color: #fff;
  text-align: center;
  padding: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 300;
}

mybot .suggestion .sugg-title {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 10px;
}

mybot .suggestion span:last-child {
  margin-bottom: 0;
}

/* Suggestions end */

.resultDiv {
  padding: 35px 20px 30px 20px;
  overflow-y: auto;
  height: 85%;
}


/* MyBot end */

/* ChatBot Updated Styles */

mybot .chatBoxUpdated .bot_profile {
  /* margin-top: -78px; */
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

mybot .chatBoxUpdated .bot_profile_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7f6;
  height: 82px;
  padding: 10px 15px 5px 15px;
}

mybot .chatBoxUpdated .bot_img-wrapper {
  margin: 0;
  width: auto;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  margin: 0;
}

mybot .chatBoxUpdated .bot_img-wrapper img {
  margin: 0;
}

mybot .chatBoxUpdated .close-chatbot {
  opacity: inherit;
  position: static;
  margin: 0;
  width: 18px;
  height: 18px;
  transition: 0.3s;
  margin-bottom: 20px;
}

mybot .chatBoxUpdated .close-chatbot:hover {
  opacity: 0.7;
}

mybot .chatBoxUpdated .close-chatbot img {
  width: 100%;
  height: auto;
  display: block;
}

mybot .chatBoxUpdated .minimize-chatbot {
  position: static;
  margin: 0;
  width: 18px;
  height: 18px;
  transition: 0.3s;
  margin-bottom: 5px;
  margin-right: 5px;
  cursor: pointer;
}

mybot .chatBoxUpdated .minimize-chatbot:hover {
  opacity: 0.7;
}

mybot .chatBoxUpdated .minimize-chatbot img {
  width: 100%;
  height: auto;
  display: block;
}

mybot .chatBoxUpdated.chatCont {
  border: 0;
  background: #fff;
  box-shadow: 0 -1px 0 1px rgba(0, 0, 0, 0.05);
}

mybot .chatBoxUpdated.chatCont,
mybot .chatBoxUpdated .bot_profile,
mybot .chatBoxUpdated .chatForm {
  width: 490px;
}

mybot .chatBoxUpdated .chatForm {
  display: flex !important;
  flex-direction: column;
}

mybot .chatBoxUpdated .chat-logo {
  height: 48px;
}

mybot .chatBoxUpdated .chatForm .bot-txt {
  border: 0;
  font-size: 16px;
  color: #000;
  font-family: "Outfit", sans-serif;
  padding: 10px 18px;
  border-top: 1px solid #e5e5e5;
  height: 45px;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.05);
  width: calc(100% - 66px);
}

mybot .chatBoxUpdated .chatForm .button-send {
  position: absolute;
  right: 0;
  /* top: 50%;
  transform: translateY(-50%); */
  bottom: 0;
  width: 66px;
  border: none;
  /* height: 66px; */
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 0.5;
  transition: 0.3s;
}

mybot .chatBoxUpdated .chatForm .button-send:hover {
  opacity: 1;
}

mybot .chatBoxUpdated .resultDiv {
  background: #fff;
  padding: 20px 15px;
  flex-grow: 1;
  flex-basis: 0;
}

.chatBoxUpdatedWrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

mybot .chat_message {
  background: #f7f7f6;
  border-radius: 24px;
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  padding: 18px 24px;
  position: relative;
  margin-left: 10px;
  margin-bottom: 25px;
  overflow: hidden;
}

mybot .free-program-message {
  font-weight: bold;
}

mybot .linkText {
  color: #ee2222 !important;
  font-weight: bold;
}

mybot .chat_message:after {
  position: absolute;
  bottom: 3px;
  left: -12px;
  width: 36px;
  height: 21px;
  content: "";
  background: url("assets/img/chat-left-icon.svg") no-repeat;
}

mybot .chat_message_btn {
  padding-bottom: 15px;
  display: flex;
  gap: 10px;
}

mybot .chat_message.reply {
  color: #fff;
  background: #26252a;
  margin-left: 0;
  margin-right: 10px;
}

mybot .chat_message.reply:after {
  left: auto;
  right: -11px;
  bottom: 0;
  width: 38px;
  height: 39px;
  content: "";
  background: url("assets/img/chat-right-icon.svg") no-repeat;
}

mybot .chat-textwieget {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  padding: 12px;
  background: #fff;
}

mybot .chat-textwieget-image {
  flex-shrink: 0;
  width: 100px;
  margin: 0 10px 0 0;
}

mybot .chat-textwieget-image img {
  width: 100%;
  height: auto;
}

mybot .chat-textwieget-textbox {
  flex-grow: 1;
  min-width: 0;
}

mybot .chat-textwieget-textbox .chat-textwieget-title {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  margin: -2px 0 6px;
  font-size: 12px;
  line-height: 1.35;
  color: #000;
}

mybot .chat-textwieget-textbox p {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.35;
  color: #000;
}

mybot .chat-textwieget-textbox .text-link {
  font-size: 10px;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  color: #e22;
}

mybot .chat_message_buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 0 0 2px;
}

mybot .buttons-primary,
mybot .buttons-secondary {
  min-width: 68px;
  height: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: 0.3s;
  padding: 8px 22px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

mybot .buttons-primary {
  background: #e22;
  cursor: pointer;
  box-shadow: none;
  border: none;
}

mybot .buttons-primary:hover {
  background: rgb(202, 24, 24);
}

mybot .buttons-secondary {
  background: #000;
  border-color: #000;
  cursor: pointer;
  box-shadow: none;
  border: none;
}

mybot .buttons-secondary:hover,
mybot .buttons-secondary:focus {
  background: #333;
  border-color: #333;
}

mybot .buttons-secondary:focus {
  box-shadow: 0 0 0 4px white, 0 0 0 5px #333;
}

mybot .chat_subscribe_Form {
  overflow: hidden;
  margin: 15px 0 0;
}

mybot .chat_subscribe_Form .field_group {
  overflow: hidden;
  margin: 0 0 20px;
}

mybot .chat_subscribe_Form label {
  display: block;
  margin: 0 0 7px;
}

mybot .chat_subscribe_Form em {
  font-style: normal;
  color: #e22;
  margin: 0 5px 0 0;
}

mybot .chat_subscribe_Form .input_field {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  padding: 5px 15px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

mybot .chat_subscribe_Form textarea.input_field {
  height: 90px;
  resize: none;
  padding: 10px 15px;
}

mybot .chat_subscribe_Form .input_field:focus {
  outline: none;
}

mybot .chat_subscribe_Form .check_option {
  display: flex;
  align-items: center;
  margin: 0;
}

mybot .chat_subscribe_Form .check_option input {
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
}

mybot .chat_subscribe_Form .check_option .label_text {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-weight: 16px;
  line-height: 22px;
}

mybot .chat_terms {
  color: #8e8d94;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  line-height: 15px;
  padding: 10px 15px;
}

mybot .chat_disclaimer {
  color: #e2231a;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  line-height: 15px;
  margin-top: 5px;
  padding: 0px;
}

mybot .chat_terms a {
  color: #e22;
}

mybot .chat_terms a:hover {
  text-decoration: underline;
}

mybot .chat-inner-box {
  cursor: pointer;
  background: #fff;
  padding: 12px;
  display: flex;
  flex-direction: row;
  gap: 6px;
  margin-top: 12px;
}

mybot .chat-inner-box .image-holder {
  width: 50px;
  min-width: 50px;
  height: 50px;
}

mybot .chat-inner-box .image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

mybot .chat-inner-box .text-holder {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  line-height: 15px;
  color: #000;
  padding-left: 5px;
  align-self: center;
}

mybot .chat-inner-box .title {
  display: block;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

mybot .chat-inner-box .inner-link {
  font-weight: bold;
}

mybot .chat-inner-box p {
  margin: 0;
}

mybot .chat-inner-box a {
  color: #ee2222;
  font-size: 10px;
  line-height: 12px;
  font-weight: 400;
}

mybot .field_required {
  color: #f00;
}

/* login page styles */
mybot .login-box {
  min-height: 100vh;
  display: flex;
  font-family: "Outfit", sans-serif;
}

mybot .login-area {
  width: 56.5%;
  padding: 36px 30px;
}


@media screen and (max-width: 500px) {

  mybot .resultDiv .userEnteredText,
  mybot .resultDiv .botResult,
  mybot .suggestion {
    width: 90%;
    margin-bottom: 20px;
  }

  mybot .chatCont,
  mybot .chatForm {
    width: 100%;
  }

  mybot .chatCont {
    height: 70% !important;
    width: 100% !important;
  }

  mybot .chatBoxUpdated .close-chatbot {
    position: absolute !important;
    right: 10px;
    top: 30px;
  }

  mybot .chatBoxUpdated .close-chatbot img {
    width: 75%;
  }

  mybot .chatBoxUpdated .minimize-chatbot {
    position: absolute !important;
    right: 35px;
    top: 35px;
    width: 17px
  }

  mybot .chatBoxUpdated .chatForm .button-send {
    bottom: 10px;
    width: 35px;
    height: 20px;
  }

  mybot .profile_div {
    width: 110px;
    bottom: 0px;
  }

  mybot .widget-logo {
    width: 68px;
    height: 68px;
  }

}

@media screen and (max-width: 768px) {
  mybot img {
    max-width: 100%;
    width: auto;
  }
}

@media screen and (max-width: 489px) {

  mybot .chatBoxUpdated.chatCont,
  mybot .chatBoxUpdated .bot_profile,
  mybot .chatBoxUpdated .chatForm {
    width: 100% !important;
  }

  mybot .chatBoxUpdated .bot_profile_flex {
    height: auto!important;
  }
}