.liveAgentMessageContainer button {
  display: none;
}

.green-text {
  color: green;
}

.red-text {
  color: red;
}

.padding-left-small {
  padding-left: 10px;
}

.padding-left-top-small {
  padding-left: 10px;
  padding-top: 10px;
}

#overlay * {
  box-sizing: border-box;
}

.next_button,
.back_button,
.chat_online,
#overlay .chat_offline {
  width: auto;
  padding: 12px;
  border-radius: 4px;
  font-family: "CircularStdMedium", "CircularStdBook", "Noto Sans", sans-serif;
  font-size: 14px;
  color: #ffffff;
  border-color: #56d4af;
  background-color: #56d4af;
  text-align: center;
  border-color: #56d4af;
  margin: 10px 10px 10px auto;
  padding: 10px 30px;
  min-width: 120px;
  transition: all 300ms;
}

.next_button:hover,
.back_button:hover,
.chat_online:hover,
.chat_offline:hover {
  background-color: #05947b;
  border-color: #05947b;
  transition: all 300ms ease;
}

.chat_offline {
  width: 200px;
}

.openchat_button {
  position: fixed;
  bottom: 15px;
  right: 15px;
  padding: 10px 18px;
  font-family: "CircularStdBook", "Noto Sans", sans-serif;
  border-radius: 6px;
  color: #000;
  background-color: #000;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  height: auto;
  width: auto;
  overflow: hidden;
  transition: all 300ms ease;
  border: 2px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.openchat_button:hover {
  text-decoration: none;
  cursor: pointer;
  background-color: #00d4af;
  border-color: #000;
  transition: all 300ms ease;
}

.openchat_button:hover svg path {
  fill: #000;
}

@media (min-width: 992px) {
  .openchat_button {
    bottom: 13px;
    right: 5.5rem;
    padding: 10px 18px;
  }
}

.openchat_button svg {
  width: 120px;
  height: 40px;
}


.openchat_button svg path{
  fill: #fff;
}

.prechat_heading {
  width: 100%;
  background-color: #44d4af;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-family: "CircularStdMedium", "CircularStdBook", "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  border-top-left-radius: 6px;
  border: 2px solid #000;
  border-top-right-radius: 6px;
  box-sizing: border-box;
}

.prechat_body {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  padding: 15px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-color: #000;
  border-top-color: transparent;
  border-width: 2px;
  border-style: solid;
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 14px;
  max-height: 70vh;
  box-sizing: border-box;
}

#overlay {
  z-index: 100000;
  position: fixed;
  bottom: 100px;
  width: 400px;
  max-width: 90%;
  height: auto;
  min-height: 0px;
  min-width: 0px;
  border: 0px;
  overflow: hidden;
  right: 20px;
  transition: none 0s ease 0s !important;
}

#overlay :required:invalid {
  background: rgb(200 0 0 / 50%);
  border: 1px solid rgb(200 0 0 / 80%);
}

#overlay input:required:invalid:focus {
  border: 1px solid red;
  outline: none;
}

#overlay input:required:invalid:hover {
  opacity: 1;
}

#overlay input:disabled {
  background: #dddddd;
}

#overlay input.chat_offline {
  margin-right: 10px;
  padding: 10px;
  width: auto;
  background: #56d4af;
  border: 2px solid #56d4af;
  transition: all 300ms ease;
}

#overlay input.chat_offline:hover {
  background-color: #05947b;
  border-color: #05947b;
  transition: all 300ms ease;
}

#overlay input:disabled {
  background: #dddddd;
}

.welcome_message {
  font-size: 14px;
  padding: 0;
  margin-bottom: 20px;
}

#iframeContainer,
#connectingMessage {
  z-index: 2147483639;
  position: fixed;
  bottom: 100px;
  height: auto;
  width: 400px;
  background-color: white;
  border: 2px solid #000;
  border-radius: 5px;
  /* right: 460px; */
  right: 20px;
  max-width: 90%;
}

.live-chat-popup-container table {
  width: 100%;
}

.live-chat-popup-container td {
  padding: 5px 0;
}

.live-chat-popup-container select,
.live-chat-popup-container input {
  width: 100%;
  display: block;
  background-color: #efefef;
  padding: 3px 6px;
  border-radius: 3px;
  border-color: #efefef;
  max-width: 100%;
  border-style: solid;
}

.input_label {
  font-weight: normal;
  font-family: "CircularStdMedium";
  padding-right: 10px;
  width: 140px;
}

.busSalesOnlineBtn {
  margin-right: 10px;
}

#chatWindow {
  width: 100%;
}

#chatHeading {
  text-align: center;
  background-color: #44d4af;
  color: #fff;
  padding: 10px;
  border-bottom: 2px solid #000;
}

.minimize-button {
  position: absolute;
  right: 30px;
  padding: 0 5px;
  border-bottom: 2px solid #fff;
  width: 15px;
  height: 15px;
}

.minimize-button:hover {
  cursor: pointer;
  border-color: #000;
  color: #000;
}

.close-button {
  position: absolute;
  right: 10px;
  padding: 0 5px;
  border-bottom: 0;
  width: 15px;
  height: 15px;
}

.close-button:hover {
  cursor: pointer;
  border-color: #000;
  color: #000;
}

.close-line {
  width: 30px;
  border-top: 2px solid #fff;
  display: block;
  position: absolute;
  top: 15px;
}

.close-line-1 {
  transform: rotate(45deg);
}

.close-line-2 {
  transform: rotate(-45deg);
}

.prechat_heading .close-button {
  position: absolute;
  right: 10px;
  width: 30px;
  height: 30px;
  padding: 0;
  top: 10px;
  border-bottom: 0;
}

.close-button:hover .close-line {
  border-color: #000;
}
