@font-face {
  font-family: "GTAmericaThin";
  src: url("../assets/fonts/GT-America-Standard-Thin-Trial.woff") format("woff");
}

@font-face {
  font-family: "GTAmerica";
  font-style: normal;
  font-weight: normal;
  src: url("../assets/fonts/GT-America-Standard-Regular-Trial.woff") format("woff");
}

@font-face {
  font-family: "SFPRORegular";
  src: url("../assets/fonts/SFPRODISPLAYREGULAR.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SFPROMedium";
  src: url("../assets/fonts/SFPRODISPLAYMEDIUM.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "SFPROBold";
  src: url("../assets/fonts/SFPRODISPLAYBOLD.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

* {
  font-family: "SFPRORegular";
  margin: 0;
  padding: 0;
}

.loader-wrap {
  display: inline-flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue",
    Arial;
  user-select: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  background: transparent;
}

/* Loader size */
.loader {
  position: relative;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
}

/* Rotating glowing ring */
.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(99, 102, 241, 0.18),
    0 0 36px rgba(79, 70, 229, 0.12);
  background: conic-gradient(from 0deg,
      rgba(99, 102, 241, 0.18),
      transparent 40%);
  filter: blur(0.6px);
  transform: rotate(0deg);
  animation: ring-rotate 2.6s linear infinite;
}

/* Morphing blob */
.loader-blob {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff4f4 0%, #dbf3ff 35%, #ffbc64 100%);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
  animation: blob-morph 2.2s ease-in-out infinite;
  transform-origin: center;
}

/* Small inner sheen */
.loader-blob::after {
  content: "";
  position: absolute;
  width: 36%;
  height: 36%;
  right: 10%;
  top: 10%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  filter: blur(0.6px);
  transform: rotate(-18deg);
}

/* Loader text */
.loader-text {
  color: #374151;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

/* Keyframes */
@keyframes ring-rotate {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: rotate(180deg);
    opacity: 0.9;
  }

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

@keyframes blob-morph {
  0% {
    border-radius: 42% 58% 40% 60% / 48% 45% 55% 52%;
    transform: translateY(0) rotate(0deg) scale(1);
  }

  25% {
    border-radius: 55% 45% 60% 40% / 50% 52% 48% 50%;
    transform: translateY(-6px) rotate(-6deg) scale(0.98);
  }

  50% {
    border-radius: 40% 60% 45% 55% / 60% 48% 52% 40%;
    transform: translateY(0) rotate(4deg) scale(1.02);
  }

  75% {
    border-radius: 58% 42% 50% 50% / 42% 60% 40% 58%;
    transform: translateY(6px) rotate(-4deg) scale(0.99);
  }

  100% {
    border-radius: 42% 58% 40% 60% / 48% 45% 55% 52%;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

  .loader-ring,
  .loader-blob {
    animation: none;
  }
}

.dots {
  display: inline-flex;
  gap: 4px;
  margin-left: 10px;
}

.dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffaf4b;
  opacity: 0.35;
  animation: bounce 1.2s infinite ease-in-out;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.topbar {
  /* display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fff;
  height: 50px;
  box-sizing: border-box; */
}

.topbar .brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
}

.topbar .brand img {
  height: 26px;
  width: auto;
}

/* .topbar .actions {
  display: flex;
  gap: 8px;
} */

.new-chat-btn {
  background: transparent;
  border: solid;
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 600;
  border: none;
}

.new-chat-btn img {
  /* display: none; */
  width: 20px;
}

.main-wrapper {
  /* background: linear-gradient(180deg, #BCE2F1 0%, #F4F0EC 55%, #FFC77A 100%);
    background: linear-gradient(180deg, rgba(188, 226, 241, 0.25) 0%, rgba(244, 240, 236, 0.5) 50%, rgba(255, 199, 122, 0.25) 100%); */
  background: linear-gradient(180deg,
      rgba(188, 226, 241, 0.15) 0%,
      rgba(244, 240, 236, 0.35) 50%,
      rgba(255, 199, 122, 0.15) 100%);
}

.main-wrapper>.inner-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 0;
  height: auto;
  position: relative;
}

.main-wrapper.retrieval-show>.inner-wrapper {}

.chat-coversation-wrp {
  height: -webkit-fill-available;
  height: calc(100dvh - 183px);
  height: calc(100dvh - 215px);
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 96px;
}

.main-wrapper.retrieval-show>.inner-wrapper .chat-coversation-wrp {
  height: -webkit-fill-available;
  height: calc(100dvh - 243px);
}

.chat-coversation-wrp {
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: transparent transparent;
  /* Firefox */
}

.chat-coversation-wrp::-webkit-scrollbar {
  width: 2px;
  /* Chrome, Safari */
}

.chat-coversation-wrp::-webkit-scrollbar-track {
  background: transparent;
}

.chat-coversation-wrp::-webkit-scrollbar-thumb {
  background: transparent;
}

/* width */
.user-chat-input::-webkit-scrollbar {
  width: 2px;
}

/* Track */
.user-chat-input::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.user-chat-input::-webkit-scrollbar-thumb {
  background: transparent;
}

.message-wrp {
  margin-bottom: 0;
  width: 85%;
  float: left;
  /* background: #e7e7e7; */
  padding: 10px 0;
  border-radius: 14px;
}

.waiting-reply .text {
  color: #8b8b8b;
}

.message-wrp.user-message {
  float: right;
  display: block;

  /* background: #0d68a31f; */
}

.message-wrp.user-message .content {
  color: #424242;
}

.message-wrp.user-message .top-header {
  display: inline-block;
  width: 100%;
}

.message-wrp.user-message .top-header .name {
  text-align: right;
  margin-right: 8px;
  float: left;
  width: calc(100% - 45px);
}

.message-wrp.user-message .content {
  text-align: left;
  padding-left: 0;
  padding-right: 30px;
  font-family: "SFPRORegular";
  min-width: auto;
  width: auto;
  display: inline-block;
  float: right;
}

.message-wrp .top-header {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.message-wrp .top-header .img {
  width: 22px;
}

.message-wrp .top-header .name {
  font-family: "SFPROMedium";
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.1px;
  margin-left: 13px;
}

/* .message-wrp.user-message {
    padding-left: 20%;
} */

.message-wrp .content {
  padding-left: 37px;
  font-size: 17px;
  line-height: 21px;
  letter-spacing: -0.1px;
  font-weight: 400;
  line-height: 22px;
  font-family: "SFPRORegular";
  color: #000;
}

.chat-input-wrp .text-area-wrp {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}

.chat-input-wrp .user-chat-input {
  height: 62px;
  max-height: 62px;
  min-height: 62px;
  max-width: 100%;
  width: 100%;
  min-width: 100%;
  border: 1px solid #d6d3cf;
  border-radius: 8px;
  color: #3e3e3e;
  padding: 20px 15px;
  font-size: 14px;
  box-sizing: border-box;
  resize: none;
  box-shadow: none;
  padding-right: 55px;
}

.chat-input-wrp .user-chat-input:focus {
  border-color: #dbd7d7;
}

.chat-input-wrp .user-chat-submit {
  position: absolute;
  top: 17px;
  right: 40px;
  background: #000;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 30px;
  cursor: pointer;
}

.chat-input-wrp .user-chat-submit:disabled {
  cursor: no-drop;
  opacity: 0.5;
}

.chat-input-wrp .user-chat-submit img {
  position: relative;
  top: -2px;
  left: -4px;
}

.chat-input-wrp .user-chat-submit.stop-chat img {
  top: -2px;
  left: -3px;
}

.startup-section {
  /* padding-bottom: 20px; */
  margin-left: -10px;
}

.startup-section .startup-heading {
  padding: 0 10px;
  margin-bottom: 11px;
  color: #582d43;
  font-weight: 400;
  font-size: 18px;
  font-family: "GTAmericaThin";
}

.startup-section .start-text {
  padding: 0 10px;
  margin-bottom: 11px;
  color: #582d43;
  font-weight: 400;
  font-size: 18px;
  font-family: "GTAmericaThin";
  margin-bottom: 15px;
}

.startup-section .start-text ul {
  list-style: none;
  padding-left: 10px;
}

.startup-section .start-text ul li::before {
  content: "•";
  color: #333;
  font-size: 10px;
  /* smaller bullet */
  margin-right: 8px;
  vertical-align: middle;
}

.startup-section .start-text ul li {
  font-family: "GTAmericaThin";
  margin-bottom: 6px;
}

.startup-section .start-text ul li b {
  font-family: "SFPROMedium";
  font-weight: 600;
}

span.empty-space {
  display: block;
  width: 100%;
  height: 15px;
}

.startup-section .startup-boxes {
  display: flex;
  /* align-items: center; */
  justify-content: left;
}

.startup-section .startup-boxes .box {
  width: 25%;
  float: left;
  padding: 0 10px;
}

.startup-section .startup-boxes .box .inwrp {
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
  border: 1px solid #b9b9b9;
}

.startup-section .startup-boxes .box .box-heading {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 3px;
  line-height: 21px;
  font-family: "SFPROMedium";
}

.startup-section .startup-boxes .box p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.4px;
  color: #3c3c4399;
  font-family: "SFPRORegular";
}

.rating-wrp {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-left: 30px;
}

.rating-wrp .rating-box {
  background: #b6f5b6;
  font-size: 15px;
  margin: -0 5px;
  padding: 6px 16px;
  border-radius: 20px;
  background: #fff;
  line-height: 1;
  font-weight: 600;
}

.rating-wrp .rating-box label {}

.rating-wrp .rating-box .value {
  color: #0b5;
  padding-left: 5px;
}

.rating-wrp .rating-box .value.grey {
  color: grey;
}

.rating-wrp .rating-box .value.red {
  color: #e31c3d;
}

.pills-wrp {
  padding-left: 37px;
  margin-top: 10px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

.medic-wrp {
  padding-left: 37px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 5px;
}

.pill {
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
  border: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  line-height: 21px;
  width: 245px;
  max-width: 100%;
  float: left;
  font-family: "SFPROMedium";
  margin-right: 10px;
  border: 1px solid #b9b9b9;
}

.accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion li {
  border-bottom: 1px solid #eee;
}

.accordion input[type="checkbox"] {
  display: none;
}

.accordion label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #333;
  transition: 0.3s;
}

.accordion label:hover {
  background: #f0f4ff;
}

.accordion label::after {
  content: "▸";
  font-size: 14px;
  transition: transform 0.3s;
}

.accordion input:checked+label::after {
  transform: rotate(90deg);
}

.accordion .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fafafa;
  background: #fff;
  /* border: 1px solid #cbcbcb; */
  border-top: 0;
  /* padding: 10px 15px; */
}

.accordion input:checked~.content {
  max-height: inherit;
  padding: 10px 15px;
  border: 1px solid #cbcbcb;
}

.accordion .content a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
  color: #444;
  transition: background 0.3s;
}

.accordion .content a:hover {
  background: #e8f0ff;
  color: #000;
}

.retrieval-box {
  background: #eeee;
  border-radius: 14px;
  padding: 8px 10px;
  margin-bottom: 10px;
}

.retrieval-box h3 {
  color: #e31c3d;
  font-size: 13px;
  margin-bottom: 5px;
}

.retrieval-box p {
  color: #2b2f37;
  font-size: 13px;
}

.policy-text {
  text-align: center;
  font-size: 10px;
  color: #808080;
  margin-top: 5px;
}

.chat-input-wrp {
  /* padding-left: 20px; */
  /* padding-right: 20px; */
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.switch {
  position: relative;
  display: inline-block;
  /* width: 37px; */
  /* height: 22px; */
  padding-left: 38px;
  font-weight: 800;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 20px;
  width: 37px;
  height: 22px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 5px;
  bottom: 5px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 20px;
}

input:checked+.slider {
  background-color: #ffbf70;
}

input:focus+.slider {
  box-shadow: 0 0 1px #ffbf70;
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(15px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.action-wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  padding-right: 7px;
  margin-bottom: 10px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 10vh;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal Content */
.modal .modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  width: 520px;
  max-width: calc(100% - 115px);
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  max-height: 70%;
  overflow: auto;
}

.modal .modal-content::-webkit-scrollbar {
  width: 2px;
}

/* Track */
.modal .modal-content::-webkit-scrollbar-track {
  background: #eee;
}

/* Handle */
.modal .modal-content::-webkit-scrollbar-thumb {
  background: #000;
}

/* Close Button */
.modal .close {
  color: #000;
  position: absolute;
  right: 20px;
  top: 12px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

.modal .close:hover {
  color: #000;
}

/* Form Styling */
.modal .form-group {
  margin-bottom: 20px;
  text-align: left;
  width: 50%;
  padding: 0 10px;
  box-sizing: border-box;
}

.modal .form-group.full-width {
  width: 100%;
}

.modal .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.modal .form-group input,
.modal .form-group select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.modal #submitBtn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin: 0 auto;
  display: table;
}

.modal #submitBtn:hover {
  background-color: #333;
}

.modal .form-group .error {
  color: red;
  font-size: 13px;
  margin-top: 4px;
  display: block;
}

.modal-content .modal-title {
  text-align: center;
  margin-bottom: 20px;
}

.thankyou-title {
  text-align: center;
  margin-top: 20px;
  font-size: 31px;
  font-weight: 400;
  color: #582d43;
}

.gear-dropdown {
  position: fixed;
  top: 83px;
  right: 0;
  padding-right: 15px;
  z-index: 1;
  width: 175px;
}

.gear-dropdown .gear-actions {
  width: 200px;
  background: #ffff;
  /* border-radius: 25px; */
  box-shadow: 1px 4px 8px 3px #b7b7b7;
  display: inline-block;
  width: 100%;
}

.gear-dropdown .gear-actions .btn-link {
  width: 100%;
  border: none;
  text-align: left;
  font-weight: 600;
  padding: 9px 10px;
}

.gear-dropdown .gear-btn {
  width: 30px;
  padding: 0;
  background: transparent;
  float: right;
  border: none;
}

#userForm {
  display: flex;
  flex-wrap: wrap;
}

/* Hide the spinner arrows in Chrome, Safari, and Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide the spinner arrows in Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.medic-wrp {
  position: relative;
}

.medic-wrp .medic-btn {
  background: #000;
  color: #fff;
  border-radius: 35px;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 1;
  padding: 7px 10px;
  font-size: 16px;
  font-weight: 600;
}

.medic-wrp .medic-dropdown {
  position: absolute;
  left: 77px;
  bottom: 4px;
  background: #ffff;
  border-radius: 25px;
  box-shadow: 1px 4px 8px 3px #b7b7b7;
  display: inline-block;
  padding: 20px 20px;
  display: none;
  max-width: 300px;
}

.medic-wrp .medic-dropdown .info-icon {
  border: none;
  width: 25px;
  height: 25px;
  padding: 0;
  margin-left: 7px;
}

.medic-wrp .medic-dropdown label {
  font-size: 16px;
  margin-right: 7px;
  font-weight: 700;
  min-width: 15px;
  text-align: center;
}

.medic-wrp .medic-dropdown .progress-wrp:first-child {
  /* margin-top: -7px; */
}

.medic-wrp .medic-dropdown .progress-wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
  position: relative;
}

.medic-dropdown .progress-wpr {
  position: relative;
  width: 100%;
}

.medic-dropdown .progress-wpr progress {
  width: 100%;
  min-width: 200px;
  height: 16px;
  -webkit-appearance: none;
  appearance: none;
}

/* For Chrome, Safari, Edge */
progress::-webkit-progress-bar {
  background-color: #eee;
  /* background */
  border-radius: 10px;
}

.medic-dropdown .progress-wpr progress.red::-webkit-progress-value {
  background-color: #f37070;
  /* fill color */
  border-radius: 10px;
}

.medic-dropdown .progress-wpr progress.red::-moz-progress-bar {
  background-color: #f37070;
  border-radius: 10px;
}

.medic-dropdown .progress-wpr progress.orange::-webkit-progress-value {
  background-color: #ffe10b;
  /* fill color */
  border-radius: 10px;
}

.medic-dropdown .progress-wpr progress.orange::-moz-progress-bar {
  background-color: #ffe10b;
  border-radius: 10px;
}

.medic-dropdown .progress-wpr progress.green::-webkit-progress-value {
  background-color: #7ee7c0;
  /* fill color */
  border-radius: 10px;
}

.medic-dropdown .progress-wpr progress.green::-moz-progress-bar {
  background-color: #7ee7c0;
  border-radius: 10px;
}

.medic-dropdown .progress-wpr .prgress-text {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 2px;
  font-size: 12px;
  text-align: center;
  color: #d1d1d1;
  text-shadow: 1px 1px #000;
}

.medic-dropdown .medic-info-dropdown {
  position: absolute;
  left: 102%;
  top: 0;
  background: #fff;
  color: #000;
  border: 1px solid #eee;
  padding: 10px;
  z-index: 2;
  font-size: 14px;
  box-shadow: 1px 4px 8px 3px #e5e1e1;
  border-radius: 20px;
  display: none;
  width: 150px;
  text-align: left;
}

.medic-dropdown .medic-info-dropdown ul {
  padding-left: 24px;
}

.medic-wrp .medic-dropdown .info-icon:hover+.medic-info-dropdown {
  display: block;
}

.medic-wrp .medic-dropdown .rationals {
  margin-top: 10px;
}

.medic-wrp .medic-dropdown .rationals ul {
  padding-left: 20px;
  color: #464646;
  margin-top: 5px;
}

.medic-wrp .medic-dropdown .rationals h3 {
  font-size: 16px;
  margin-bottom: 3px;
  color: #3f3f3f;
}

.medic-wrp .medic-dropdown .rationals p {
  font-size: 14px;
}

.pill-btn .text {
  float: left;
  min-width: 57px;
}

.pill-btn .pill-switch {
  background: #b5b5b5;
  width: 30px;
  height: 15px;
  display: inline-block;
  float: left;
  margin-left: 5px;
  border-radius: 20px;
}

.pill-btn.pills .pill-switch {
  background: #ffa737;
}

.pill-btn .pill-switch::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  top: 2px;
  left: 3px;
  transition: 0.5s;
}

.pill-btn.pills .pill-switch::after {
  left: 16px;
}

.left-top-logo {
  padding-left: 15px;
  position: fixed;
  top: 83px;
  left: 0;
  width: 60px;
}

@media (min-width: 1440px) {
  .main-wrapper.retrieval-show>.inner-wrapper .chat-coversation-wrp {
    height: -webkit-fill-available;
    height: calc(100dvh - 274px);
  }

  .chat-input-wrp {
    bottom: 40px;
  }

  .chat-coversation-wrp {
    height: -webkit-fill-available;
    height: calc(100dvh - 218px);
    height: calc(100dvh - 245px);
    margin-bottom: 126px;
  }

  .startup-section .start-text {
    margin-bottom: 40px;
  }

  .policy-text {
    margin-top: 10px;
  }
}

@media (max-width: 991px) {
  .chat-coversation-wrp {
    height: -webkit-fill-available;
    height: calc(100dvh - 152px);
    margin-bottom: 50px;
  }

  .main-wrapper.retrieval-show>.inner-wrapper .chat-coversation-wrp {
    height: -webkit-fill-available;
    height: calc(100dvh - 179px);
  }

  .startup-section .startup-boxes {
    overflow: auto;
  }

  .startup-section .startup-boxes .box {
    min-width: 250px;
  }

  .chat-input-wrp .user-chat-input {
    height: 38px;
    max-height: 38px;
    min-height: 38px;
    max-width: calc(100% - 40px);
    width: calc(100% - 40px);
    min-width: calc(100% - 40px);
    padding: 9px 15px;
    border-radius: 32px;
  }

  .chat-input-wrp .user-chat-submit {
    top: 5px;
    right: 20px;
  }

  .pills-wrp {
    display: flex;
    overflow: auto;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .pills-wrp .pill {
    max-width: inherit;
    min-width: 210px;
  }

  .policy-text {
    display: none;
  }

  /* .new-chat-btn {
    background: transparent;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding-right: 10px;
    padding-left: 10px;
    z-index: 1;
  } */

  .new-chat-btn span {
    display: none;
  }

  .new-chat-btn img {
    /* display: block; */
  }

  .topbar {
    display: inline-block;
    width: 100%;
  }

  .topbar .brand {
    margin: 0 auto;
    display: table;
  }

  .main-wrapper>.inner-wrapper {}
  .left-top-logo {
    top: 55px;
    width: 50px;
  }
  .gear-dropdown .gear-btn {
    width: 15px;
  }
  .gear-dropdown {
    top: 56px;
  }
}

@media (max-width: 768px) {
  .modal .form-group {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .loader {
    width: 72px;
    height: 72px;
  }

  .loader-blob {
    width: 44px;
    height: 44px;
  }

  .loader-text {
    font-size: 0.85rem;
  }
}