.fixed-positioning {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.iframeCustom {
  height: 90vh;
}

#submitChatMessage{
  margin-top: 1rem;
}

.alert--error {
  background-color: #ffebee;
  color: #d32f2f;
  border: 1px solid #d32f2f;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}

.chat-box {
  width: 350px;
  /*   border-radius: 3px; */
  box-shadow: -10px 10px 50px -10px rgba(0, 0, 0, 0.4);
  background: #fff;
  overflow: hidden;
  z-index: 999;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  color: black;
  background: var(--background-elevated);
  border: 1px solid #E8E8E8;

}

.chat-header button {
  color: black;
  background: transparent;
  padding: 3px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  text-decoration: underline;
}

.chat-content {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: 1s ease-in-out;
}

.chat-content.active {
  padding: 15px 15px;
  margin-bottom: 0.5rem;
}

@media only screen and (max-width: 600px) {
  .chat-box {
    width: 260px;
    border: 1px solid lightgray;
    border-radius: 7px;
  }

  .chat-header {
    justify-content: end;
  }
}

.chat-title,
.chat-subtitle {
  margin-bottom: 15px;
  text-align: start;
  font-size: 14px;
}

.chat-subtitle {
  color: var(--text-normal);
  display: flex;
  gap: 4px;
}


.chat-box input,
.chat-box textarea,
.chat-box label,
.chat-box button[type=submit],
#location {
  display: block;
  width: 100%
}

.chat-box input,
.chat-box textarea,
#location {
  padding: 10px 15px;
  border-radius: 3px;
  border: 1px solid #b7b5b5;
  margin-bottom: 15px;
}

.chat-box textarea {
  min-height: 50px;
}

.chat-box label {
  color: #928f8f;
  font-size: 13px;
  margin-bottom: 2px;
}

.chat-box label span {
  color: #f00;
}

.chat-box button[type=submit] {
  -webkit-appearance: none;
  border-radius: 2px;
  background-clip: padding-box;
  background-color: #007BFF !important;
  font-size: 15px;
  font-weight: bold;
  color: white;
  padding: 9px 6px 11px;
  width: 100%;
  border: 0;
  cursor: pointer;
  text-align: center;
  margin-bottom: 0.5rem;
}

.chat-subtitle a,
.chat-subtitle span {
  color: #0062E0
}

.chat-icon-livechat {
  display: flex;
  gap: 0.5rem;
}

.chat-form label {
  color: black;
  font-size: 16px;
}

.chat-capcha-err {
  color: #f00 !important;
}

.chat-security__wrong {
  border-color: #f00 !important;
}

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

.fullWidth {
  width: 100%;
  height: 100%
}

.overFlowYAuto {
  overflow-y: auto !important;
}

.borderNone {
  border: none;
}

.contentBetween {
  justify-content: space-between;
}
