.modal_init {
  position: fixed;
  z-index: 2147483001;
  bottom: 32px;
  left: calc(50% - 250px);
  right: 0;
  max-width: 490px;
}
.modal_popup {
  position: relative;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0px 12px 40px 0px #33333829;
}
.modal_body {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1.25rem;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #555;
}
.modal_body a {
  text-decoration: underline;
}
.modal_popup_wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.modal_buttons {
  padding: 1rem 1rem 1rem 0;
}
.modal_button_close {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.modal_button_close:hover {
  cursor: pointer;
}
.modal_button_close:hover svg path {
  fill: #333;
}
@media screen and (max-width: 578px) {
  .modal_body {
    padding: 0.75rem 1rem 0.75rem 0.75rem;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
  }
  .modal_popup_wrapper {
    align-items: start;
  }
  .modal_buttons {
    padding: 0.75rem 0.75rem 0.75rem 0;
  }

  .modal_buttons a,
  .modal_buttons button {
    padding: 0.375rem 0.75rem !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    line-height: 20px !important;
    height: 100% !important;
  }

  .modal_init {
    left: calc(50% - 175px);
    max-width: 343px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
