.js_mail_register_popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.js_mail_register_popup.is_active {
  pointer-events: all;
  opacity: 1;
}

.js_mail_register_popup_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 50%);
  cursor: pointer;
}

.js_mail_register_popup_content {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: calc(100% - 48px);
  max-width: 480px;
  max-height: calc(100% - 48px);
  padding: 24px;
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  transform: translate(-50%, -50%);
}

.js_mail_register_popup_icon {
  width: 72px;
  margin: 0;
}

.js_mail_register_popup_icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.js_mail_register_popup_title {
  margin: -8px 0 -13px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #fe4d1f;
}

.js_mail_register_popup_detail {
  width: 100%;
  max-width: 360px;
  padding: 24px;
  background: #f0f0f0;
  border-radius: 12px;
  text-align: left;
}

.js_mail_register_popup_detail .js_mail_register_message {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.71;
}

.js_mail_register_popup_buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 360px;
}

.js_mail_register_popup_btn {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 15px 10px 14px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #fe4d1f;
  border: 1px solid #fe4d1f;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.js_mail_register_popup_btn:hover {
  color: #fe4d1f;
  background: transparent;
}
