.matchlp--popup {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.matchlp--popup.is_active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.matchlp--popup-bg {
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, .5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}
.matchlp--popup-wrap {
  margin: 0 1rem;
  z-index: 9999;
}
.matchlp--popup-inner {
  width: fit-content;
  margin: 0 auto;
  padding: 1rem;
  /* background-color: #CFCFCF; */
  z-index: 10000;
}
.matchlp--popup-btn {
  background-color: #d9ccf0;
  color: #50318f;
  border: 2px #50318f solid;
  border-radius: 5px;
  box-shadow: 4px 4px #00000069;
}
.matchlp--popup-btn:hover {
  color: #fff;
  background-color: #50318f;
}
.matchlpPopupClose {
  position: absolute;
  right: 0;
  top: -15px;
}
.matchlpPopupClose_btn {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  top: -15px;
  cursor: pointer;
}
.circle-btn {
  position: relative;
  display: flex;
  padding: 1em;
  color: white;
  z-index: 9999;
}
.circle-btn::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background-color: #ffffff69;
  border-radius: 50%;
  z-index: -1;
  cursor: pointer;
}
.matchlpPopupClose_btn span:nth-of-type(1) {
  position: absolute;
  top: 7px;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: #000;
  transform: rotate(45deg);
  z-index: 10000;
}
.matchlpPopupClose_btn span:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 7px;
  width: 1px;
  height: 15px;
  background-color: #000;
  transform: rotate(45deg);
  z-index: 10000;
}
.js_close {
  display: none !important;
}