/* ==================================== popup ==================================== */
@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

:root {
  --Pretendard: 'Pretendard-Regular', sans-serif;
}
/* 팝업 임시 버튼 */
.open-pc-popup {
  position: fixed;
  right: 50px;
  bottom: 200px;
  width: 100px;
  height: 100px;
  background: red;
  color: #fff;
  z-index: 100;
}


body.scroll-lock {
  overflow: hidden;
  height: 100%;
}
.r-popup {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 1000000;
  font-family: var(--Pretendard);
  opacity: 0;
}
.r-popup__wrap {
  display: flex;
  flex-wrap: wrap;
}
.r-popup__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: #fff;
  font-size: 14px;
}
.r-popup__footer label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.r-popup__footer label span {
  padding-bottom: 2px;
}
.r-popup--pc .r-popup__wrap {
  padding: 10px;
  height: 100%;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.r-popup--pc .r-popup__wrap .r-popup__item {
  max-width: 30%;
  min-width: 300px;
}
.r-popup--mobile .r-popup__wrap {
  height: 100%;
  align-items: flex-end;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}
.r-popup--mobile .r-popup__item {
  position: fixed;
  bottom: 0;
  width: 100%;
} 