body.no-scroll {
  overflow: hidden;
}
.email-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(34, 34, 34, 0.8);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.email-modal.hideit {
  display: none;
}
.email-modal .email-modal-content {
  position: absolute;
  display: flex;
  width: 500px;
  padding: 40px 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #FFF;
}
.email-modal .email-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
.email-modal .email-modal-close svg:not(:root) {
  height: 48px;
  overflow: hidden;
}
.email-modal .email-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}
.email-modal .email-icon img {
  width: 60px;
}
.email-modal .email-modal-title {
  font-size: 24px;
  color: #000;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 28.8px;
  align-self: stretch;
}
.email-modal .email-modal-message {
  color: #000;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 16.8px;
  font-size: 14px;
  align-self: stretch;
  margin-top: 5px;
}
.email-modal .email-modal-cta {
  border-radius: 24px;
  border: 1px solid #eeb111;
  background: #eeb111;
  display: flex;
  min-height: 48px;
  transform: rotate(0.036deg);
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.25px;
  text-transform: capitalize;
}
.email-modal .email-modal-cta.hideit {
  display: none;
}
.email-modal .support_section {
  color: #5B5B5B;
}
.email-modal .support_section .contact_support_msg {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.5px;
  letter-spacing: 0.25px;
  color: #5B5B5B;
}
.email-modal .support_section .contact_support_msg a.contact_link {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
  color: #5B5B5B;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.5px;
  letter-spacing: 0.25px;
}
