.html-hide-overflow {
  overflow: hidden !important;
}

.chat-window-parent-div {
  position: fixed;
  bottom: 0;
  right: 0;
  height: fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
  padding: 5px;
}

.minimized-window-div {
  display: none;
  align-items: center;
  justify-content: center;
   /* TODO: Uncomment the following line for desktop view */
  /* width: 350px;
  height: 65px; */
   /* TODO: Remove the following lines for desktop view */
  width: 80px;
  height: 80px;
   /* TODO: Remove the above lines for desktop view */
  padding: 10px;
  box-shadow: 0px 0px 7px 0px #888888;
  border-radius: 18px 18px 18px 18px;
  color: white;
  background-color: black;
  overflow: hidden;
  border: none;
}

.small-screen-minimized-window-view,
.big-screen-minimized-window-view {
  /* TODO: Uncomment the following line for desktop view */
  /* display: none; */
  align-items: center;
  justify-content: center;
}

/* TODO: Remove the following lines for desktop view */
.big-screen-minimized-window-view {
  display: none;
}

.small-screen-minimized-window-view {
  display: flex;
}
/* TODO: Remove the above lines for desktop view */

.mobile-minimized-helpdesk-icon {
  display: block;
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.bot_icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.minimized-window-text {
  background: transparent;
  font-size: 17px;
  font-weight: 600;
  border-radius: 16px 16px 0px 0px;
  margin: 0px;
  padding-top: 5px;
}

.minimized-window-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100px;
  max-height: 60px;
  margin-right: 8px;
  object-fit: contain;
  flex: 0 1 auto;
}

.chat-window-div {
  display: none;
  overflow: hidden;
  width: min(350px, 100vw);
  background: #FFFFFF;
  border-radius: 18px 18px 18px 18px;
  box-shadow: 0px 0px 7px 0px #888888;
}

.chat-window-header, .form-window-header {
  height: 65px;
  background: black;
  display: flex;
  align-items: center;
}

.logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 40%;
  max-height: 50px;
  margin-left: 10px;
  margin-right: 10px;
  object-fit: contain;
  flex: 0 0 auto;
}

.bot-name {
  margin-top: 3.5px;
  margin-left: 7px;
  color: white;
  font-weight: 600;
  font-size: 105%;
  background: transparent;
}

#botname:hover {
  color: white;
}

.broadcast-close-button-wrapper,
.icon-button-wrapper,
.minimize-button-wrapper,
.close-button-wrapper {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button:focus-visible,
a:focus-visible,
textarea:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #1f5fbf;
  outline-offset: 2px;
}

.icon-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.minimize-button-wrapper {
  margin-right: 10px;
}

#minimize:hover path {
  fill: #E4E4E4;
}

#close:hover path {
  fill: #E4E4E4;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  background: #000;
  color: #fff;
  z-index: 100;
  text-decoration: none;
}

.skip-link:focus,
.skip-link:focus-visible {
  width: auto;
  height: auto;
  margin: 0;
  padding: 8px;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
}

#output {
  position: absolute;
}
