* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif !important;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#appDevId .subcategories {
  cursor: pointer;
}

.Chatbot-mainBox {
  /* position: fixed; */
  /* box-shadow: 0 6px 18px #00000029; */
  width: 100%;
  max-width: 400px;
  /* height: min(700px, 100% - 90px);
  max-height: 715px; */
  min-height: 80px;
  /* right: 0px; */
  /* background: linear-gradient(179.5deg, #2c78f5 24.29%, #f2f2f2 59.67%); */
  background: linear-gradient(179.5deg, #FF5733 24.29%, #FFC1C1 59.67%);
  background-repeat: no-repeat;
  z-index: 99999;
  bottom: 8px;
  border-radius: 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  font-style: normal;
  color: #626773;
  /* animation: slideIn 0.5s ease-in-out; */
}

@keyframes slideIn {
  0% {
    transform: translate(30px);
    opacity: 0;
  }

  100% {
    transform: translate(0);
    opacity: 1;
  }
}

.display-none {
  display: none !important;
}

.display-flex {
  display: flex;
}

.Chatbot-mainBox .title {
  background: #ff3d00;
  color: white;
  line-height: 2.5;
  border-radius: 5px 5px 0 0;
  text-align: center;
  font-size: 20px;
}

.Chatbot-mainBox .box {
  overflow-y: scroll;
  /* padding: 20px; */
  padding: 20px 20px 50px 20px;
  overflow-x: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  height: calc(100% - 139px);
  background: transparent;
  padding-top: 0px;
  margin-top: 26px;
}

/* .Chatbot-mainBox .box::-webkit-scrollbar {
    width: 4px;
}


.Chatbot-mainBox .box::-webkit-scrollbar-track {
    background: #ffffff79;
    border-radius: 5px;
}


.Chatbot-mainBox .box::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 10px;
}


.Chatbot-mainBox .box::-webkit-scrollbar-thumb:hover {
    background: #fff;
} */

.Chatbot-mainBox .box .item {
  display: flex;
  float: left;
  margin: 10px 0;
}

.Chatbot-mainBox .box .item .icon {
  background: #ff3d00;
  color: white;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}

.Chatbot-mainBox .box .item .msg {
  background: #ff3d00;
  color: white;
  border-radius: 10px;
  width: 150px;
  margin-left: 10px;
}

.Chatbot-mainBox .box .item .msg p {
  padding: 10px;
}

.Chatbot-mainBox .box .item.right {
  float: right;
}

.Chatbot-mainBox .box .item.right .msg {
  background: #efefef;
  color: #333;
}

.Chatbot-mainBox .typing-area {
  position: absolute;
  bottom: 0px;
  background-color: #ffffff;
  width: 100%;
  border-radius: 0px 0px 20px 20px;
  display: flex;
  padding: 0px;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  height: 72px;
  pointer-events: auto;
}

.Chatbot-mainBox .typing-area .input-field {
  width: 100%;
  position: relative;
}

.Chatbot-mainBox .typing-area .input-field input {
  width: 100%;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  outline: none;
  padding-right: 70px;
  font-family: "Montserrat", sans-serif;
  transition: 0.3s all ease;
}

.Chatbot-mainBox .typing-area .input-field input:focus {
  border-color: #ff3d00;
}

.Chatbot-mainBox .typing-area .input-field button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid #ff3d00;
  padding: 5px 10px;
  border-radius: 3px;
  color: #ff3d00;
  outline: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all ease;
}

.Chatbot-mainBox .typing-area .input-field button:hover {
  background: #ff3d00;
  color: white;
}

.Chatbot-mainBox .typing-area .input-field input:valid~button {
  opacity: 1;
  pointer-events: auto;
}

.Chatbot-mainBox.chatbotheader {
  display: flex;
  background: linear-gradient(180deg, #da0e29 -29.15%, #531251 149.44%);
  color: #fff;
  height: 56px;
  padding: 0 !important;
  border-top-left-radius: 20px;
  background: transparent;
  height: 144px;
}

.Chatbot-mainBox .welcome-message {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  padding: 38px 16px 0 20px;
}

.Chatbot-mainBox .welcome-message-header {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
  z-index: 999;
}

.Chatbot-mainBox .headericon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.Chatbot-mainBox .welcome-message-body {
  display: flex;
  gap: 13px;
  margin: 0;
  height: 35px;
  align-items: center;
  margin-top: -27px;
}

.Chatbot-mainBox .chat-avtar {
  width: 43px;
  height: 43px;
  border-radius: 50%;
}

.Chatbot-mainBox .chat-username {
  display: flex;
  flex-direction: column;
  max-width: fit-content;
}

.Chatbot-mainBox .chat-username {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.38px;
  text-align: left;
  color: #fff;
}

.Chatbot-mainBox .chatInnerContainer {
  width: 100%;
  margin: 0;
  align-items: end;
}

.Chatbot-mainBox .bot-parent {
  /* padding: 8px; */
  padding-bottom: 8px;
  word-break: break-word;
}

.Chatbot-mainBox .bot-chat-container {
  width: 100%;
}

.Chatbot-mainBox .bot-chat-content {
  display: flex;
  width: 100%;
  margin-bottom: 12px;
}

.Chatbot-mainBox .chatbot-avatar {
  width: 30px;
  height: 30px;
  margin-right: 8px;
}

.Chatbot-mainBox .chat-content {
  /* width: fit-content; */
  /* max-width: calc(100% - 32px); */
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 2px #1e293b0d, 0 1px 3px #1e293b1a;
  padding: 12px;
  margin: 0;
  color: #383c42;
  font-weight: 500;
  scroll-margin-top: 30px;
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  /* margin-top: 8px; */
}

.message-content {
  white-space: pre-wrap;
  /* Wraps text within the element */
  word-wrap: break-word;
  /* Allows breaking within words if they are too long */
  overflow-wrap: break-word;
  /* Similar to word-wrap but for modern browsers */
  max-width: 100%;
  /* Ensures it does not exceed the container width */
  overflow-x: auto;
  /* Enables horizontal scrolling if needed */
}

/* input:-webkit-autofill {
  
    background-color: #fff !important;

    color: #383c42 !important;

    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    font-family: "Montserrat", sans-serif;


    box-shadow: 0 1px 2px #1e293b0d, 0 1px 3px #1e293b1a !important;

    border-radius: 16px !important;

    background-image: none !important;
} */

.Chatbot-mainBox .chatbot-skill-spotlight-card {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 2px #1e293b0d, 0 1px 3px #1e293b1a;
}

.Chatbot-mainBox .card-header-section {
  padding: 12px;
  /* margin-bottom: 8px; */
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.Chatbot-mainBox .card-title-section {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}

.Chatbot-mainBox .card-header-text {
  color: #383c42;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #fa2500;
}

.Chatbot-mainBox .description-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #000000;
  max-width: 284px;
  margin-right: 20px;
}

.Chatbot-mainBox .skill-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
  border-top: 1px solid #d3d6db;
  cursor: pointer;
}

.Chatbot-mainBox .chatblueContent {
  background: #cc2608 !important;
  border-radius: 100px;
  color: #fff !important;
  width: fit-content;
  text-align: right;
  display: inline-block;
  /* max-width: 70%; */
  padding: 10px 15px;
  margin: 16px 0 0px;
  border-radius: 15px 15px 0 15px;
  color: white;
  font-size: 14px;
  border-radius: 100px !important;
}

.Chatbot-mainBox .chatbot-shortcut-menu {
  display: none;
  width: 56px;
  height: 56px;
  margin: 0;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Chatbot-mainBox .chatbot-menu-icon {
  width: 24px;
  height: 21px;
  position: relative;
  filter: brightness(0) saturate(100%) sepia(1) hue-rotate(-15deg) contrast(1.2);
}

.Chatbot-mainBox .chatbox-input-container {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  border-radius: 0;
  margin: 0;
  max-width: calc(100% - 56px);
  height: 56px;
}

.Chatbot-mainBox .chatbot-input-container {
  width: calc(100% - 56px);
  padding-left: 0;
  padding-right: 0;
  display: flex;
  align-items: center;
}

.Chatbot-mainBox .text-area-container {
  width: 100%;
  display: flex;
  align-items: center;
}



.Chatbot-mainBox .text-area-container .input-chat {
  overflow-y: auto;
  outline: none;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 22px;
  color: #000;
  height: 48px;
  width: 100%;
  padding: 12px 0 12px 4px;
  border: 0;
  resize: none;
  font-weight: 500;
  background: #fff;
}

.Chatbot-mainBox .send-icon {
  width: 25px;
  height: 25px;
  cursor: pointer;
  filter: brightness(0) saturate(100%) sepia(1) hue-rotate(-15deg) contrast(1.2);
}

.Chatbot-mainBox .btn-grp {
  /* margin-left: 36px; */
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.Chatbot-mainBox .response-button {
  display: flex;
  gap: 6px;
  align-items: center;
  border: 1px solid rgb(231, 231, 231);
  height: 37px;
  padding: 8px 16px;
  border-radius: 900px;
  color: #000000;
  background: rgb(255, 255, 255);
  font-weight: 500;
  line-height: 18px;
  cursor: pointer;
  color: #383c42;
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
}

.mobiTextName {
  /* position: absolute; */
  right: 0;
  bottom: 41px;
  background: #fa2500;
  color: #fff;
  padding: 7px 16px;
  font-weight: 700;
  /* border-radius: 30px; */
  border-radius: 0px 10px 10px 0;
  margin-right: 12px;
  font-size: 14px;
}

.profile-animationBox {
  transition: transform 0.25s;
}

.profile-animationBox:hover {
  transform: translateY(-10px);
}

/* 
.mobiTextName:hover {
    transform: translateY(-10px);
} */

.Chatbot-mainBox .img {
  width: 17px;
  height: 17px;
}

.Chatbot-mainBox .award-winning-card {
  margin-left: 36px;
  margin-bottom: 8px;
  position: relative;
  margin-top: 50px;
}

.Chatbot-mainBox .chat-body-container {
  margin-bottom: 8px;
  position: relative;
  margin-top: 67px;
}

.Chatbot-mainBox .award-sectioncontainer {
  border-radius: 16px;
  background: #fa2500;
}

.Chatbot-mainBox .chat-body-containerImage {
  left: 42% !important;
  transform: translate(-50%, -65%);
  position: absolute;
  display: flex;
}

.Chatbot-mainBox .awardInnerImage {
  background: #fff;
  border-radius: 130px;
  box-shadow: 0 1px 2px #1e293b0d, 0 1px 3px #1e293b1a;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 66px;
    height: 66px; */
}

.Chatbot-mainBox .awardText {
  padding: 40px 17px 17px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.chatbot-menu-options {
  position: absolute;
  bottom: 72px;
  overflow-y: scroll;
  left: 0;
  width: 100%;
  z-index: 2;
  box-shadow: 0 1px 2px #1e293b0d, 0 1px 3px #1e293b1a;
  display: flex;
  flex-direction: column;
  padding: 16px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 20px 20px 0 0;
  background: #fff;
  /* height: min(543px, 100vh - 239px); */
  height: min(543px, 100vh - 147px);
  animation: slideUp 0.5s ease-in-out;
}

@keyframes slideUp {
  0% {
    bottom: -560px;
    opacity: 0;
  }

  25% {
    bottom: 17px;
    opacity: 0;
  }

  30% {
    bottom: 20px;
    opacity: 0.1;
  }

  50% {
    bottom: 36px;
    opacity: 0.5;
  }

  75% {
    bottom: 54px;
    opacity: 0.75;
  }

  100% {
    bottom: 72px;
    opacity: 1;
  }
}

.subcategories {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subcategories-cardbox {
  border-radius: 12px;
  background: #f7f8f8;
  padding: 10px;
  flex: 0 0 calc(33.33% - 7px);
  min-height: 78px;
}

.subcategories-cardbox p {
  color: #000000;
  word-wrap: break-word;
  font-weight: 500;
  font-size: 12px;
  max-width: 98px;
}

#appDevId {
  display: none;
}

/* #closeBtn {
  display: none;
} */

.subcateriesBoxCrad {
  background: #f9f9f9;
  border: 1px solid #e7e7e7;
  padding: 10px;
  min-height: 80px;
  border-radius: 10px;
  flex: 0 0 calc(33.33% - 7px);
}

.subdescriptiob {
  color: #000000;
  word-wrap: break-word;
  font-weight: 500;
  font-size: 12px;
  max-width: 98px;
}

.headingapp-Text {
  color: #000000;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
}

* {
  scrollbar-width: 2px;
  scrollbar-width: 2px;
}

::-webkit-scrollbar {
  width: 5px;
  /* background: #f54242; */
  border-radius: 20px;
}

::-moz-scrollbar {
  width: 5px;
  background: #f54242;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 20px;
}

.profilemain-button {
  /* position: fixed; */
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  width: 80px;
  height: 80px;
  background: #cc2608 !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: transform 0.25s;
  margin-right: -5px;
}

.chat-avtar-profile {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.profileimagedescription {
  width: 50px;
  height: 50px;
}

.logobluefull {
  width: 130px;
}

@media (max-width: 1024px) {
  /* .Chatbot-mainBox {
        height: min(523px, 100% - 90px);
    } */

  /* .chatbot-menu-options {
        height: min(359px, -239px + 100vh);
    } */
}



.chat-content {
  padding: 10px;
  border-radius: 5px;
  margin: 5px;
}

.chatblueContent {
  background-color: #ff3d00;
  color: white;
}

.chat-window {
  display: flex;
  flex-direction: column;
  /* min-height: 85px; */
}

.chat-window .chat-content {
  max-width: 100%;
  width: 100%;
  margin-top: 10px;
}

.chat-window .chatblueContent {
  text-align: left;
}

.chat-window .chatblueContent.right {
  text-align: right;
}

.Chatbot-mainBox .chat-content1 {
  box-shadow: 0 1px 2px #1e293b0d, 0 1px 3px #1e293b1a;
  font-weight: 500;
  scroll-margin-top: 30px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  background: #cc2508 !important;
  color: #fff !important;
  width: fit-content;
  text-align: left;
  display: inline-block;
  padding: 10px 15px;
  margin: 10px 0 0px;
  font-size: 14px;
  border-radius: 20px !important;
}

.loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #db3a34;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
  display: none;
}

#loadingSpinner1 {
  display: none;
  margin: 1px auto;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #fa2500;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
}

#contact {
  padding: 25px;
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
  padding: 0px;
}

#contact h3 {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 28px;
  color: #fa2500;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
  position: relative;
}

.error-message {
  color: red;
  font-size: 0.85em;
  text-align: left;
  display: block;
  /* margin-top: 4px; */
}

.contact-Icon {
  position: absolute;
  top: 14px;
  left: 10px;
  font-size: 16px;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact input[type="date"],
#contact input[type="time"],
#contact select,
#contact textarea {
  width: 100%;
  border: 1px solid #e6e6e6;
  background: #fff;
  margin: 0 0 5px;
  padding: 10px 10px 10px 30px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact input[type="date"]:hover,
#contact input[type="time"]:hover,
#contact select:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 80px;
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  cursor: pointer;
  border: none;
  background: #fa2500;
  color: #fff;
  padding: 9px 35px;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  border-radius: 10px;
  /* width: calc(100% - 100px); */
}

.copyright {
  text-align: center;
}

#contact input:focus,
#contact select:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}

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

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

.bottomText {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  width: fit-content;
  padding: 12px;
  margin: 0;
  color: #383c42;
  font-weight: 500;
  scroll-margin-top: 30px;
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 767px) {
  .Chatbot-mainBox {
    width: 100%;
  }

  /* .chatbot-container {
    width: min(350px, 100%);
  } */

  .profileimagedescription {
    /* width: 40px;
    height: 40px; */
  }

  .logobluefull {
    width: 120px;
  }

  /* .Chatbot-mainBox .chat-body-containerImage {
    left: 46% !important;
  } */
}

.iti {
  position: relative;
  display: inline-block;
  width: 100%;
}

.iti__flag-container {
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iti__selected-flag {
  width: 100%;
}

.iti__country .iti__country-name {
  display: none !important;
}

.iti__input {
  flex: 0 0 70%;
  width: 100%;
  padding-left: 10px;
}

input.iti__input {
  padding-left: 50px;
}

.iti__separator {
  display: none;
}