.m_modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 0;
}
.m_modal .p_window {
  position: relative;
  border-top: 2px solid var(--green);
  background-color: #fff;
  box-shadow: 0 10px 35px rgba(68, 75, 82, 0.3);
  width: 95%;
  max-width: 720px;
}
.m_modal .p_window.s_wide {
  max-width: 1030px;
}
.m_modal .p_closeBtn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5000;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.m_modal .p_closeBtn:hover {
  opacity: 0.5;
}
.m_modal .p_closeBtn::before,
.m_modal .p_closeBtn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 0;
  margin: auto;
  border-top: 2px solid var(--green);
  transform: rotate(45deg);
}
.m_modal .p_closeBtn::after {
  transform: rotate(-45deg);
}
.m_modal .p_scrollArea {
  padding: 50px 60px 55px;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.m_modal .p_scrollArea > *:first-child {
  margin-right: 30px;
}
.m_modal .p_scrollArea > video-js:first-child {
  margin-right: 0;
}
.m_modal .p_title {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 1.63;
}
.c-button[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .m_modal .p_scrollArea {
    padding: 30px 20px;
  }
  .m_modal .p_closeBtn {
    width: 40px;
    height: 40px;
  }
  .m_modal .p_closeBtn + .p_scrollArea {
    padding-top: 40px;
  }
  .m_modal .p_title {
    font-size: 1.8px;
  }
}
body {
  overflow: hidden;
}
body.campaign-body_u{
  overflow: auto;
}