.chatbot__container {
  position: fixed;
  z-index: 999;
  padding-top: 64px;
  border-radius: 18px 18px 0 0;
  top: 100px;
  width: 100%;
  height: calc(100% - 100px);
  background-color: #FFF;
}

.chatbot__mobileAppMode {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .chatbot__container {
    bottom: 100px;
    top: auto;
    width: 370px;
    right: 20px;
    height: 640px;
    max-height: 80%;
    border-radius: 10px 10px 8px 8px;
    box-shadow: 0px 0px 25px 0px rgba(120, 120, 120, 1);
    background-color: rgba(255, 255, 255, 0.94);
  }
}

.chatbot__header {
  padding: 14px 10px;
  border-radius: 15px 15px 0 0;
  display: flex;
  flex-direction: row;
  background-color: #3C1C47;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
  color: #FFF;
  font-size: 14px;
  position: absolute;
  top: -26px;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .chatbot__header {
    padding: 18px 15px;
    border-radius: 8px 8px 0 0;
    align-items: center;
    justify-content: space-between;
  }
}

.chatbot__headerIcon {
  height: 23px;
  width: 23px;
  fill: #116c3a;
  cursor: pointer;
  margin: 0 3px 0 10px;
}

.chatbot__chatIcon {
  width: 40px;
  vertical-align: text-top;
  margin: 0;
  position: relative;
}

.chatbot__chatIcon:after {
  content: '';
  top: 0;
  right: 0;
  display: inline-block;
  position: fixed;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
  background-color: #52D800;
}

@media screen and (min-width: 768px) {
  .chatbot__chatIcon {
    vertical-align: middle;
    width: 43px;
  }
}

.chatbot__headerIconContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #CDFF42;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  margin-left: 5px;
}

.chatbot__headerTextColumn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.chatbot__headerCloseContainer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 10px;
  margin-right: 8px;
}

.chatbot__talkToAgent {
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  background-color: #3C1C47;
  border : 1px solid #fff;
  border-radius: 8px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 5px 0 0 0;
  width: max-content;
}

@media screen and (min-width: 768px) {
  .chatbot__talkToAgent {
    margin-top: 5px;
  }
}

.chatbot__btn-talkToAgent {
  margin: 5px 0 5px 74px;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 4px 10px;
  color: #fff;
  outline: none;
  font-size: 11px;
}

.chatbot__btn-talkToAgent:active {
  background-color: #036d3813;
}

.chatbot__inputForm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0;
  background-color: #FFF;
  padding: 10px;
  width: 100%;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 -2px 4px 0 rgba(0,0,0,0.07);
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .chatbot__inputForm {
    padding: 10px;
  }
}

.chatbot__questionInput {
  border: 0;
  font-size: 14px;
  line-height: 20px;
  width: 85%;
  margin-left: 10px;
  padding: 7px;
}

.chatbot__questionInput:focus {
  outline: none;
  background-color: rgba(0,0,0,0.05);
  border-radius: 4px;
  border: 1px solid #954FEF;
}

.chatbot__questionInput::placeholder {
  color: #AFAFAF;
}

.chatbot__submitButton {
  border: 0;
  background: none;
  padding: 10px;
  cursor: pointer;
}

.chatbot__submitButton:focus {
  outline: none;
  background-color: rgba(0,0,0,0.05);
  border-radius: 4px;
  border: 1px solid #954FEF;
}

.chatbot__submitIcon {
  width: 20px;
  vertical-align: sub;
}

.chatbot__submitIcon.open path {
  fill: #9BC42D;
}

.chatbot__conversationContainer {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 0 20px;
  box-sizing: border-box;
}

.chatbot__conversationBox {
  display: flex;
  flex-direction: column;
}

.chatbot__emptyDiv {
  padding-top: 85px;
}

.chatbot__message {
  border-radius: 11px;
  padding: 10px 15px 8px;
  font-size: 15px;
  line-height: 16px;
  max-width: 250px;
}

.chatbot__time {
  font-size: 9px;
  text-align: right;
  padding-top: 8px;
  color: #9A9A9A;
}

.chatbot__answerMessage {
  color: #46484B;
  background-color: #E6E6E6;
  margin-left: 20px;
}

.chatbot__answerMessage ul {
  list-style: inherit;
  margin: 15px 0;
  padding-left: 40px;
}

.chatbot__questionMessage {
  background-color: #9BC42D;
  color: #FFF;
  align-self: flex-end;
}

.chatbot__messageContainer {
  margin-top: 19px;
  display: flex;
  flex-direction: row;
}

.chatbot__answerContainer {
  align-items: flex-start;
}

.chatbot__answerContainer svg {
  width: 34px;
  border-radius: 50%;
  box-shadow: 0 2px 44px 0 rgba(0,0,0,0.2);
}

.chatbot__typing {
  padding: 0;
  margin-left: 20px;
  border-radius: 20px;
  box-shadow: none !important;
}

.chatbot__questionContainer {
  justify-content: flex-end;
  width: 100%;
}

.chatbot__answerOptionsContainer {
  display: block;
  padding-top: 6px;
}

.chatbot__answerOption {
  display: inline-block;
  border-radius: 10px;
  border: 1px solid #46484B;
  color: #46484B;
  cursor: pointer;
  padding: 7px 10px 5px;
  margin: 0 5px 5px 0;
  transition: all 0.2s ease-in-out;
}

.chatbot__rulesMsg .chatbot__answerOptionsContainer .chatbot__answerOption:first-child {
  background-color: #3C1C47;
  color: white;
  border-color: #3C1C47;
}

.chatbot__rulesMsg .chatbot__answerOptionsContainer .chatbot__answerOption:first-child:hover {
  background-color: #4d2359;
  border-color: #4d2359;
  color: white;
}

.chatbot__answerOption:hover {
  border-color: #116c3a;
  color: #116c3a;
  transition: all 0.2s ease-in-out;
}

.chatbot__chatToggleContainer {
  position: fixed;
  z-index: 1000;
  bottom: -85px;
  right: 20px;
  transition: 0.5s ease-in-out;
  transition-property: bottom;
  display: flex;
  flex-direction: column;
  align-items: flex-end;

}

.chatbot__visible {
  bottom: 85px;
}

@media screen and (min-width: 768px) {
  .chatbot__visible {
    bottom: 35px;
  }
}

.chatbot__containerOpen {
  bottom: auto;
  top: 30px;
  right: 36px;
  z-index: 1000;
}

@media screen and (min-width: 768px) {
  .chatbot__containerOpen {
    top: auto;
    bottom: 35px;
    right: 20px;
  }
}

.chatbot__tooltip {
  display: none;
  color: white;
  position: relative;
  font-size: 13px;
  line-height: 16px;
  background-color: #954FEF;
  box-shadow: 0 2px 30px 0 rgba(0,0,0,0.2);
  border-radius: 11px;
  padding: 11px 23px 12px 16px;
  margin-bottom: 14px;
}

@media screen and (min-width: 768px) {
  .chatbot__tooltip {
    display: block;
  }
  .chatbot__tooltip:after {
    display: block;
    content: ' ';
    width: 10px;
    height: 10px;
    background-color: #954FEF;
    position: absolute;
    right: 25px;
    bottom: -4px;
    transform: rotate(45deg);
  }
}

.chatbot__tooltipCloseButton {
  background-color: transparent;
  outline: none;
  border: none;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 8px;
  right: 7px;
}

.chatbot__tooltipClose {
  width: 8px;
  fill: white;
  cursor: pointer;
  position: relative;
  top: -4px;
  right: 4px;
}

.chatbot__tooltipShortcut {
  display: none;
  color: #444;
  position: fixed;
  font-size: 12px;
  line-height: 14px;
  background-color: #C4CBCD;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 3px;
  bottom: 10px;
  right: -126px;
  z-index: 100;
  transition: 0.8s cubic-bezier(0.47, 0.45, 1, 1.51);
  transition-property: all;
}

.chatbot__tooltipShortcut__visible {
  right: 8px;
}

@media screen and (min-width: 768px) {
  .chatbot__tooltipShortcut {
    display: block;
  }
}

.chatbot__chatToggle {
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: none;
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #CDFF42;
  color: #3C1C47;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.chatbot__chatToggle:hover {
  filter: brightness(0.8);
}

.chatbot__chatToggle svg {
  width: 50px;
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  fill: white;
}

.chatbot__toggleOpen svg {
  fill: #3C1C47;
  width: 16px;
  height: 16px;
  top: 0;
}

.chatbot__rater {
  margin: 8px 0 0;
}

.chatbot__rater svg {
  border-radius: 0;
  box-shadow: none;
}

.chatbot__rater g {
  fill: transparent;
}

.chatbot__rater .rater-like {
  padding-bottom: 3px;
}

.chatbot__rater .rater-dislike {
  padding-top: 3px;
}

.chatbot__rater.rater-active .rater-like:hover g,
.chatbot__rater.rater-active .rater-dislike:hover g {
  fill: #fff;
  cursor: pointer;
}

.chatbot__rater .rater-selected g {
  fill: #fff;
}

/* Add these styles to styles.css */

/* Common focus style for all chatbot focusable elements */
.chatbot__talkToAgent:focus,
.chatbot__answerOption:focus,
.chatbot__closeButton:focus,
.chatbot__answerMessage a:focus,
.chatbot__chatToggle:focus {
  outline: 2px solid #954FEF;
  outline-offset: 2px;
  transition: outline-offset 0.2s ease;
}


/* Specific focus style for each element type */
.chatbot__talkToAgent:focus {
  color: #d1ff6b;
  text-decoration: none;
}

.chatbot__answerOption:focus,
.chatbot__closeButton:focus {
  background-color: rgba(130, 50, 238, 0.3);
}

.chatbot__submitButton:focus {
  border-radius: 4px;
}

.chatbot__closeButton {
  border: none;
  border-radius: 50%;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: transparent;
  padding: 0;
  cursor: pointer;

  svg {
    height: 16px;
    width: 16px;
    fill: white;
  }

  @media screen and (min-width: 768px) {
    height: 28px;
    width: 28px;
  }
}

.header__text {
  margin: 0;
  font-weight: 700;
  font-size: 19px;
}

@media screen and (max-width: 330px) {
  .header__text {
    display: none;
  }
}

.chatbot__outsideArea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 998;
  cursor: pointer;
}

.chatbot__tooltip:focus {
  outline: 2px solid #954FEF;
  outline-offset: 2px;
  background-color: #f3eaff;
  box-shadow: 0 0 0 4px #e3d6fa;
}

.chatbot__tooltipCloseButton:focus {
  outline: 2px solid #954FEF;
  outline-offset: 2px;
  background-color: #fbe9e7;
  box-shadow: 0 0 0 4px #f3c6c0;
  border-radius: 50%;

  svg {
    fill: #954FEF;
  }
}


/*# sourceMappingURL=vendor.8b02e2449d4be38c95c9.css.map*/
/*# sourceMappingURL=vendor.8b02e2449d4be38c95c9.css.map*/