:root {
  --chat-widget-height: 500px;
  --chat-widget-iframe-height: 500px;
  --chat-widget-width: 400px;
  --chat-button-bg-color: #d62311;
  --chat-button-text-color: #ffffff;
}

.float-rightbottom {
  position: fixed;
  width: auto;
  padding: 0.25rem 1.5rem;
  background-color: var(--chat-button-bg-color);
  color: var(--chat-button-text-color);
  border-radius: 10px;
  border-color: #ffffff;
  text-align: center;
  /* box-shadow: 1px 1px 2px #999; */
  font-size: 2rem;
  cursor: pointer;
  z-index: 24;
}

/* .buttonTextStyle{
position: relative;
bottom:7px;
padding-left: 3px;
} */

.chatIcon {
  display: inline-block;
}

.drawerFix {
  z-index: 1999 !important;
}

.sfLogo {
  width: 36px;
  height: auto;
  margin-top: 3px;
  padding: 3px;
  padding-left: 5px;
  image-rendering: crisp-edges;
}

.buttonPersona {
  position: absolute;
  left: 0px;
  bottom: 1px;
  height: 50px;
}

.buttonPersonaText {
  padding-left: 20px;
}

/* .cw-unread-chat {
  animation: cw-button-blinking 1s infinite;
} */

/* @keyframes cw-button-blinking {
  0% {
    background-color: var(--chat-button-bg-color);
  }
  50% {
    background-color: var(--chat-button-bg-color);
  }
  100% {
    background-color: #d0e9c6;
  }
} */
.visible {
  height: 3em;
  width: 10em;
  cursor: move;
}
.bottomright {
  bottom: 4rem;
  right: 32px;
}

.bottomRightMobile {
  bottom: 4rem;
  right: 16px;
}

.bottomrightzoom {
  bottom: 0rem;
  right: 20px;
}

.topleft {
  top: 0px;
  right: 0px;
}
.bottomleft {
  bottom: 2rem;
  left: 2rem;
}
.hidden {
  display: none;
}

.chat-container {
  border-radius: 6px 6px 6px 6px;
  position: fixed;
  border-color: #ffffff;
  text-align: center;
  /* box-shadow: 1px 1px 2px 1px #999; */
  width: var(--chat-widget-width);
  height: var(--chat-widget-height);
  background-color: #ffffff;
  /* border-top-left-radius: 5px;
  border-top-right-radius: 5px; */
  /* border: solid 2px var(--chat-button-bg-color); */
  z-index: 99999;
}
.cw-heading {
  background-color: #d62311;
  border-color: #ffffff;
  color: #fff;
  line-height: 2.5em;
  height: 2.5em;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  /* display: inline-flex; */
  display: none;
  width: 100%;
}
.cw-heading-text {
  font-weight: 600;
  font-size: 16px;
  font-family: "MecherleSans", Arial;
  text-align: left;
  text-indent: 1rem;
  width: 100%;
}
.cw-heading-notification {
  padding-right: 1rem;
}
.cw-heading1 {
  cursor: move;
  z-index: 10;
}

/* .cw-notification-button {
  color: #3c763d;
  background-color: #b2dba1;
  animation: blinking 1s infinite;
  border: 0;
  border-radius: 25%;
  line-height: 2em;
  cursor: pointer;
}
.cw-notification-button:focus {
  outline-offset: 0px;
  outline: none;
} */
/* @keyframes blinking {
  0% {
    background-color: #b2dba1;
  }
  50% {
    background-color: #b2dba1;
  }
  100% {
    background-color: #d0e9c6;
  }
}*/
.cw-chat-hide {
  color: #ffffff;
  background-color: inherit;
  border: 0;
  border-radius: 25%;
  margin: 0;
  cursor: pointer;
  font-size: 32px;
}
/*
.cw-chat-close {
  color: #5ef82f;
  background-color: inherit;
  border: 0;
  border-radius: 25%;
  margin: 0;
  cursor: pointer;
  font-size: 1.1rem;
} */

/* .cw-chat-hide:focus {
  outline-offset: 0px;
  outline: none;
} */
.cw-iframe {
  border-radius: 6px;
  width: var(--chat-widget-width);
  height: var(--chat-widget-iframe-height);
  margin: 0;
  padding: 0;
  border: 0;
  cursor: move;
  z-index: 10;
}
.chat-count {
  position: absolute;
  height: 30px;
  width: 30px;
  background: #efe1e1;
  border-radius: 20px;
  left: 4px;
  line-height: 30px;
  color: #000;
  top: -10px;
  display: none;
  animation: zoom-in-zoom-out 0.5s;
  animation-iteration-count: 2;
  z-index: 25;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}

.abOptionBtn {
  height: 56px !important;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.svelte-sftozo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.chatIconImg {
  /* margin: auto !important;
  display: block; */
  width: 100%;
}
#chatBtn.nonAnimated {
  padding: 0 20px !important;
}

#chatBtn.desktop {
  padding: 0 16px;
  animation: expandPadding 0.75s ease 7s forwards;
}

#chatBtn.mobile {
  padding: 0 20px;
  animation: shrinkPaddingMobile 0.75s ease 7s forwards;
}
#chatBtn.desktopLongDelay {
  padding: 0 16.26px;
  animation: expandPadding 0.75s ease 7s forwards;
}

#chatBtn.mobileLongDelay {
  padding: 0 16px;
  animation: shrinkPadding 0.75s ease 7s forwards;
}

@keyframes expandPadding {
  100% {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@keyframes shrinkPaddingMobile {
  100% {
    padding-left: 16px;
    padding-right: 16px;
  }
}

#buttonIconSpan.mobile {
  animation: removeMarginRight 0.75s ease 7s forwards;
}

#buttonIconSpan.desktop {
  margin-right: 0px;
  animation: addMarginRight 0.75s ease 7s forwards;
}

#buttonIconSpan.mobileLongDelay {
  animation: removeMarginRight 0.75s ease 7s forwards;
}

#buttonIconSpan.desktopLongDelay {
  margin-right: 0px;
  animation: addMarginRight 0.75s ease 7s forwards;
}

#buttonTextSpan.mobile {
  max-width: 64px;
  animation: fadeOutText 0.75s ease 7s forwards;
}

#buttonTextSpan.desktop {
  transform: translate(8px);
  opacity: 0;
  max-width: 0;
  animation: fadeInText 0.75s ease 7s forwards;
}

#buttonTextSpan.mobileLongDelay {
  max-width: 64px;
  animation: fadeOutText 0.75s ease 7s forwards;
}

#buttonTextSpan.desktopLongDelay {
  transform: translate(8px);
  opacity: 0;
  max-width: 0;
  animation: fadeInText 0.75s ease 7s forwards;
}

@keyframes fadeOutText {
  100% {
    transform: translate(8px);
    opacity: 0;
    max-width: 0;
  }
}

@keyframes fadeInText {
  100% {
    transform: unset;
    opacity: unset;
    max-width: 64px;
  }
}

@keyframes removeMarginRight {
  100% {
    margin-right: 0px;
  }
}

@keyframes addMarginRight {
  100% {
    margin-right: 8px;
  }
}
