.popup_wrapper
{
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .2);
  z-index: 99999;
  transition: all .7s;
}

.popup_container
{
  max-width: 800px;
  width: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  top: -100%;
  transform: translateX(-50%);
  transition: all .7s;
}

.popup_container.active
{
  top: 100px;
}

.popup_header
{
  height: auto;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ececec;
}

.popup_close_button
{
  width: 50px;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  margin-left: auto;
  cursor: pointer;
}

.popup_close_button i
{
  font-size: 24px;
  color: #000;
}

.popup_title
{
  width: calc(100% - 50px);
}

.popup_title h2
{
  font-weight: 700;
  font-size: 24px;
  color: var(--black-color);
  line-height: 28px;
}

.popup_description
{
  max-height: 500px;
  overflow-y: scroll;
  padding: 10px 0;
  margin-top: 10px;
}

.popup_description p
{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--color-15);
  line-height: 28px;
  margin: 0;
}

.popup_description p img
{
  max-width: 100%;
  height: auto;
}