.bot__buttons-container {
  position: fixed;
  bottom: 90px;
  right: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  z-index: 100;
}

.bot__avatar {
  position: relative;
}

.bot__avatar-left-hand {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(50%, -50%);
  z-index: 5;
}

.bot__avatar-right-hand {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, 50%);
  z-index: 5;
}

.bot__avatar-body {
  position: absolute;
  top: 14px;
  left: 15px;
  z-index: 3;
}

.bot__button-open{
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot__circle {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  background-color: #e56228;
}

.bot__modal {
  position: fixed;
  bottom: 100px;
  right: 0;
  display: flex;
  gap: 11px;
  align-items: flex-end;
  z-index: 100;
}

.bot__modal-wrapper {
  width: 100%;
  max-width: 346px;
  height: 100%;
  max-height: 628px;
  background-color: white;
  border-radius: 45px;

  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  overflow: hidden;
}

.bot__modal-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border: solid 1px transparent;
  border-bottom-color: #f4f4fe;
}

.bot__modal-header--left {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.bot__modal-avatar-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}

.bot__modal-avatar-info h3 {
  font-family: Geologica;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #090a1a;
}

.bot__modal-avatar-info span {
  font-family: Geologica;
  font-weight: 400;
  font-style: Regular;
  font-size: 13px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #e56228;
}

.bot__modal-chat-container {
  width: 100%;
  height: 441px;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bot__modal-chat-item--bot {
  width: 100%;
}

.bot__modal-chat-item--user {
  max-width: calc(80%);
}

.bot__modal-chat-item-wrapper {
  width: 100%;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 20px;
}

.bot__modal-chat-item-text {
  font-family: Geologica;
  font-weight: 300;
  font-style: Light;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  width: 100%;
  color: #090a1a;
}

.bot__modal-chat-item-wrapper--bot {
  background-color: #f9faff;
}

.bot__modal-chat-item--user {
  background-color: #090a1a;
}

.bot__modal-chat-item-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bot__modal-chat-item-header h3 {
  font-family: Geologica;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #B9BAD5;
}

.bot__modal-chat-item-time {
  font-family: Geologica;
  font-weight: 400;
  font-style: Regular;
  font-size: 10px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #c5c9db;
}


.bot__modal-chat-interact{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 5px 4px 5px;
}

.bot__modal-chat-interact-input-container{
    padding: 5px;
}

.bot__modal-chat-interact-btns{
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: none;
}



.bot__buttons-container {
  display: none;
}

.bot__modal {
  display: none;
}
