.popup_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}
.popup_wrapper.active {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.popup_wrapper .popup {
  width: 305px;
  margin-right: 10rem;
  height: 60vh;
  /* left: 0px; */
  /* margin: 0rem auto; */
  /* background-color: #fff; */
  display: flex;

  flex-direction: column;
}
.popup_wrapper .new_design_header {
  position: static;
  position: relative;
  border: none;

  padding-top: 1.5rem;
  background-color: transparent !important;
z-index: 1000;
}
.popup_wrapper .new_design_header .close_icon {
  position: absolute;
  right: -150px;
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
padding: 10px;
}

.popup_wrapper .body {
  position: relative;
  flex: 1;
}
.popup_wrapper .body > img:first-child {
  position: absolute;
}
.popup_wrapper .body > .message_container {
  position: relative;
}
.popup_wrapper .body > .message_container > img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
}
.popup_wrapper .body > .message_container .content_area {
  position: absolute;

  width: 95%;
  top: 20px;
  left: 120px;

  font-weight: 400;

  letter-spacing: 0.02em;
  text-align: left;
  color: #fff;
  border-radius: 20px;
  border-bottom-left-radius: 0px;
  padding: 1rem;
  background: #fff;
  color: #323f4b;
  box-shadow: 0px 1px 13px 0px #0000001a;
  font-size: 12px;
}
.popup_wrapper .body > .message_container .content_area > * + * {
  margin-top: 3px;
}
.popup_wrapper .body > .message_container .content_area ul {
  padding-left: 0px;
  list-style: none;
  margin-bottom: 0px;
}
.popup_wrapper .body > .message_container .content_area a {
  color: #8e54e9;
  font-size: 12px;
}
.popup_wrapper .new_design_header {
  padding-right: 0px;
}
@media screen and (max-width: 400px) {
  .popup_wrapper .popup {
    width: 100%;
  }
  .popup_wrapper .body > .message_container {
    top: 30px;
  }
}
