.enquiry-message {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

.enquiry-message.open {
  z-index: 1101;
  visibility: visible;
}

.enquiry-message,
.enquiry-message * {
  box-sizing: border-box;
}

.enquiry-message__overlay {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
  cursor: default;
}

.enquiry-message__window {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 362px;
  min-height: 115px;
  max-height: 90%;
  margin: auto;
  border-radius: 10px;
  background-color: var(--color-white);
  overflow: hidden;
}

.enquiry-message__window.xlarge {
  width: 100%;
  min-width: 362px;
  max-width: 550px;
}

.enquiry-message__window__header {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  height: 52px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--color-brand-blue-500);
}

.enquiry-message__window__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 20px;
  border-top: 1px solid var(--color-gray-300);
  overflow: auto;
}

.enquiry-message__window__body__message,
.enquiry-message__window__body__content {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.enquiry-message__window__body__message p {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 20px;
  margin: 0;
  padding: 0;
  letter-spacing: 0.2px;
  color: var(--color-gray-900);
}

.enquiry-message__window__header:empty {
  display: none;
}

.enquiry-message__window__body:empty {
  display: none;
}

