.chatbot-unit {
  margin: 0;
  padding: 0;
  font-family: "Montserrat";
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: url(../img/bear-bg.png) no-repeat bottom right;
  background-size: contain;
  box-sizing: border-box;
  height: 200px;
  padding: 1em;
  position: fixed;
  bottom: 0;
  right: 0;
  width: auto;
  z-index: 999;
}

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

.chatbot-unit_footer {
  display: flex;
	flex-direction: column;
	gap: .7em;
  align-items: center;
}

.chatbot-unit_footer .text {
	display:none;
    font-size: 15px;
    text-shadow: -1px 0px #fff, 0px -1px #fff, 1px 0px #fff, 0px 1px #fff, -1px -1px #fff, 1px 1px #fff, -1px 1px #fff, 1px -1px #fff;
  font-weight: 600;
  max-width: 110px;
  text-align: right;
}

.smart-search_btn {
  min-height: 44px;
  border-radius: 6px;
  background: #000;
  color: #fff;
font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: .2em 1.1em .3em;
  width: fit-content;
  text-decoration: none;
  transition: background .3s;
}

.smart-search_btn:hover, .smart-search_btn:active, .smart-search_btn:focus {
  background: #333333;
  color: #fff;
  text-decoration:none;
}


@media only screen and (max-width: 991px) {
	.chatbot-unit {bottom: 120px; padding:.5em .5em 0 .5em;}
}

@media only screen and (max-width: 767px) {
  .chatbot-unit_footer {
    align-items: flex-end;
  }
  .chatbot-unit_footer .text {
    font-size: 11px;
  }
  .smart-search_btn {
    font-size: 12px;
    min-height: 30px;
    width: auto;
  }
  .chatbot-unit {
    height: 100px;
  }
}
