/* Add your custom CSS styles here */
/* body{
  background-color: rgb(52, 53, 65) !important;
  color:rgb(236, 236, 241) !important;
} */
.page-title {
  color: #9d9999;
}

.chat-title {
  color: white;
}

.chat-box {
  /* border: 1px solid #ccc; */
  padding: 10px;
  border-radius: 5px;
  min-height: 400px;
  max-height: 600px;
  overflow-y: auto;

  background-color: #fdc70140;
  backdrop-filter: blur(10px);
  border: 1px solid #fdc701;
  /* border: 3px solid #f1f1f1; */
}

.message-input {
  resize: none;
}

.send-btn {
  margin-top: 10px;
}

.message-box {
  display: flex;
}

.message-box p {
  margin: 7px 0;
}

.align-right {
  flex-direction: row-reverse;
}

.user-message {
  background-color: #ffffff;
  color: #000000;
  border-radius: 15px 1px 15px 15px !important;
  padding: 10px;
  text-align: right;
  width: 90%;
  /* box-shadow: inset 1px 1px 0px 2px #dedede; */
  box-shadow: 0.5px 0.5px 10px 0px #6c68df75;
  /* border: 1px solid #061f6869; */
}

.bot-message {
  background-color: #ffffff;
  color: #000000;
  border-radius: 1px 15px 15px 15px !important;
  padding: 10px;
  width: 90%;
  /* box-shadow: inset 1px 1px 0px 2px #dedede; */
  box-shadow: 0.5px 0.5px 7px 0px #2b2a2963;
  /* border: 1px solid #e2001a75; */
}

.title-container {
  display: flex;
  align-items: center;
}

.title-container .icon-container {
  border-radius: 50%;
  border: 1px solid #dedede;
}

.reverse {
  flex-direction: row-reverse;
}

.title-container h6 {
  font-size: 14px;
  color: #444444;
  font-weight: bold;
  margin: 0 10px;
}

.bot-icon,
.user-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 10px;
}

.text-center {
  text-align: center;
}

.image-container {
  /* width: 100px;
  height: 100px;
  border-radius: 50%; */
  margin-right: 20px;
  height: 50px;
  overflow: hidden;
}

.image-container img {
  /* width: 100%;
  height: 100%; */
  max-height: 100%;
}

.positive-relative {
  position: relative;
}

.form-group .btn {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 77%;
}

.loader-container {
  text-align: center;
  height: 86px;
  position: absolute;
  background: #ffffff;
  z-index: 999999;
  width: 100%;
  /* background-color: rgb(87 50 50 / 30%); */
  backdrop-filter: blur(10px);
  border-radius: 5px;
  border: 1px solid #fdc701;
}
.form-control{
  border: 1px solid #fdc701 !important;
}

.hide {
  display: none !important;
}

.btn-transparent {
  background-color: transparent;
}

.btn-transparent span {
  font-size: 40px;
  /* color: #71727a; */
  color: #ffc104;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 40px;
}

.lds-ellipsis div {
  position: absolute;
  top: 18px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fdc701;
  /* background: #fff; */
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/* custom scrollbar */
::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #fdc70199;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #fdc701;
}



.order-img {
  max-width: 100px;
}

.order-img img {
  width: 100%;
}