#orderModal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
}

#orderModal[aria-hidden="true"] {
  display: none;
}

#orderModalBox {
  position: relative;
  width: 100%;
  max-width: 430px;
  padding: 28px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

#orderModalBox h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

#orderProductTitle {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.45;
  color: #555;
}

#orderModalClose {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

#orderForm input,
#orderForm textarea {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 13px 14px;
  box-sizing: border-box;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
}

#orderForm textarea {
  min-height: 90px;
  resize: vertical;
}
/*
#orderSubmit {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border: 0;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
*/
#orderSubmit:disabled {
  opacity: 0.65;
  cursor: default;
}

#orderMessage {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.45;
}

#orderWebsite {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

body.order-modal-open {
  overflow: hidden;
}
#orderSuccessMessage {
  display: none;
  margin: 24px 0 8px;
  padding: 20px 18px;
  background: #fff;
  border: 1px solid #d8c2a4;
  border-radius: 12px;
  color: #b08a5a;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
  text-align: center;
}

#orderModalBox.order-success #orderForm {
  display: none;
}

#orderModalBox.order-success #orderProductTitle {
  display: none;
}

#orderModalBox.order-success #orderSuccessMessage {
  display: block;
}
.faq__success {
	padding: 20px;
	background: #fff;
	border: 1px solid #d8c2a4;
	border-radius: 12px;
	color: #b08a5a;
	font-size: 18px;
	line-height: 1.45;
	font-weight: 600;
	text-align: center;
}

.faq__form-message {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.4;
	color: #b08a5a;
}

#faqWebsite {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}