.push_notif_modal_container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: Inter;
  z-index: 1000000001;
  display: none;
}

.push_notif_modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000e5;
}

.push_notif_modal {
  position: absolute;
  right: 0;
  z-index: 101;
  background: #fff;
  top: unset;
  left: 0;
  bottom: -50%;
  /* height: 425px; */
  width: 100%;
  border-radius: 16px 16px 0 0;
  box-sizing: border-box;
  animation: pnModalAnimation 0.3s ease-in-out 0.1s 1 forwards;
}

@keyframes pnModalAnimation {
  from {
    bottom: -50%;
  }
  to {
    bottom: 0;
  }
}

.push_notif_close_btn {
  position: absolute;
  z-index: 102;
  cursor: pointer;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
}

.push_notif_close_btn > img {
  object-fit: contain;
}

.push_notif_modal_content {
  position: relative;
  /* display: none; */
}

.push_notif_modal_top {
  position: relative;
  overflow: hidden;
  height: 422px;
  padding: 36px 16px 0;
}

.push_notif_title {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.04em;
  color: #2f446b;
}

.pn_title_sec_2 {
  display: none;
}

.pn_title_1 {
  font-size: 14px;
}

.push_notif_title_mid {
  color: #45a081;
  position: relative;
  margin-bottom: 8px;
}

.push_notif_title_mid > span {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  width: 77%;
}

.push_notif_title_mid > img {
  position: absolute;
  bottom: -5px;
}

.pn_line_1 {
  width: 208px;
}

.pn_line_2 {
  width: 74px;
}

.push_notif_mid_sec_container {
  position: absolute;
  top: 170px;
  z-index: 3;
}

.push_notif_mid_sec {
  box-shadow: 0px 2px 5px 0px #0000001a;
  border: 1px solid #f6e4ab;
  background: #fff8e3cc;
  padding: 8px 16px;
  border-radius: 12px;
  width: 166px;
  color: #776133;
  position: relative;
  opacity: 0;
  animation: animateMidSec 0.4s linear 0.8s forwards;
}

@keyframes animateMidSec {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.push_notif_mid_star {
  position: absolute;
  top: -10px;
}

.push_notif_mid_main_text {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.push_notif_mid_sub_text {
  font-size: 11px;
  line-height: 16px;
}

.push_notif_notif_dr {
  position: absolute;
  right: 0;
  top: 56px;
  z-index: 7;
}

.push_notif_green_bg {
  /* display: none; */
  position: absolute;
  z-index: -1;
  left: 19%;
  top: 0px;
  min-width: 600px;
  width: 100%;
  height: 433px;
  /* background: radial-gradient(
        circle at 53% 74%,
        rgba(98, 191, 159, 1),
        rgba(255, 255, 255, 0) 80%
    ); */
  background: radial-gradient(
    circle at 50% 64%,
    rgb(169, 198, 248),
    rgba(59, 122, 239, 0.2) 43%,
    rgba(255, 255, 255, 0) 73%
  );
}

.push_notif_modal_footer {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
  border-radius: 12px 12px 0 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 144px;
  background: #fff;
}

.push_notif_btn {
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.push_notif_confirm_cta {
  padding: 12px 16px 12px 16px;
  border-radius: 8px;
  background: #30363c;
  color: #fff;
}

.push_notif_confirm_cta > div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.push_notif_confirm_btn_text {
  margin: 0;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
}

.push_notif_info_text {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #6e787e;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
}

.push_notif_cancel_btn {
  padding: 9px 16px;
  border-radius: 8px;
  margin-top: auto;
}

.push_notif_cancel_text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #6e787e;
}

.push_notif_mobile {
  display: none;
  /* display: flex; */
  flex-direction: column;
  position: absolute;
  padding: 24px 16px;
  bottom: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
}

.pn_mobile_title {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #30363c;
  margin-bottom: 16px;
}

.pn_mobile_field_container {
  margin-bottom: 16px;
}

.pn_mobile_input_container {
  border: 1px solid #10847e;
  padding: 11px 15px;
  color: #545456;
  font-size: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pn_mobile_seperator {
  color: #10847e;
}

.pn_input_box {
  flex: 1;
  font-size: 16px;
  color: #545456;
  caret-color: #10847e;
  border: none;
  font-family: Inter;
}

.pn_input_box:focus-within {
  outline: none;
}

.pn_mobile_error,
.pn_otp_error {
  font-size: 12px;
  color: #f47779;
  font-weight: 500;
  margin: 4px 6px 0;
  display: none;
}

.pn_otp_container {
  display: none;
}

.pn_otp_top {
  height: 160px;
  padding: 36px 16px 0;
  position: relative;
  overflow: hidden;
}

.pn_otp_title {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #30363c;
}

.pn_otp_subtitle {
  font-size: 12px;
  line-height: 22px;
  color: #6e787e;
}

.pn_otp_hand_img {
  position: absolute;
  right: 0px;
  bottom: -10px;
}

.pn_otp_footer {
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.pn_otp_footer_title {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #30363c;
  margin-bottom: 16px;
}

.pn_otp_box_container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pn_otp_input_box {
  border: none;
  padding: 4px;
  color: #30363c;
  line-height: 16px;
  letter-spacing: 0.02em;
  width: 45px;
  text-align: center;
  border-bottom: 1px solid #10847e;
}

.pn_otp_input_box:focus-within {
  outline: none;
}

.pn_otp_resend_container {
  margin-bottom: 32px;
  font-size: 10px;
  line-height: 22px;
  color: #6e787e;
}

.pn_otp_resend {
  display: none;
  color: unset;
}

.pn_success {
  display: none;
  height: 426px;
}

.pn_success_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px 48px;
  height: 100%;
  overflow: hidden;
}

.pn_success_img_container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 73%;
}

.pn_success_img_container > img {
  position: absolute;
}
.pe_success_confetti_icon {
  width: 305px;
}

.pe_success_icon {
  width: 108px;
  z-index: 1;
}

.pn_success_text {
  text-align: center;
  position: relative;
}

.pn_success_text > span {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
  color: #3e415b;
}

.pn_success_text > p {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: #6e787e;
}

.pn_success_wa {
  color: #30363c;
  font-weight: 600;
  font-size: 14px;
}

.pn_success_wa_icon {
  vertical-align: top;
}
