/* bitrix24 live chat: personal data consent before chat */
.chat-consent {
  position: fixed;
  inset: 0;
  z-index: 2147483001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.chat-consent[hidden] {
  display: none !important;
}
.chat-consent__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.6);
}
.chat-consent__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: #fff;
  color: #222;
  border-radius: 12px;
  padding: 28px 24px 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  font-family: inherit;
}
.chat-consent__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #888;
  font-size: 28px;
  line-height: 36px;
  cursor: pointer;
}
.chat-consent__close:hover {
  color: #222;
}
.chat-consent__title {
  margin: 0 28px 8px 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}
.chat-consent__text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.45;
  color: #444;
}
.chat-consent .chat-consent__agreement {
  width: 100%;
  max-width: none;
  margin: 0 0 18px;
  padding: 0;
  font-size: 14px;
  color: #222;
}
.chat-consent .chat-consent__agreement .agreement__text {
  line-height: 1.45;
}
.chat-consent .chat-consent__agreement a {
  color: #c49a3c;
}
.chat-consent__start {
  appearance: none;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: #d2b363;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.chat-consent__start:disabled {
  background: #e5dcc3;
  cursor: not-allowed;
}
html.chat-consent-open,
html.chat-consent-open body {
  overflow: hidden;
}
