/* 로더를 감싸는 래퍼 스타일 */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* 어두운 반투명 배경 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-wrapper.hide {
    display: none;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 70px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #25b09b;
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}



/* share */
.share-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* 어두운 반투명 배경 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.share-wrapper.hide{
    display: none;
}

.share-modal-content {
    position: relative;
    background-color: #fff;
    padding: 50px 36px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.share-modal-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background: url(../images/close.svg) no-repeat center;
    background-size: 100%;
    font-size: 0; /* Ensure no text content is accidentally displayed */
}

.share-modal-header {
    font-size: 24px;
    font-weight: bold;
}

.share-modal-body {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.share-modal-body img {
    width: 50px;
    cursor: pointer;
}

.modal-close-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 40px;
    /* padding: 10px 20px; */
    background: #c74634;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

/* info modal */
.info-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* 어두운 반투명 배경 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.info-wrapper.hide{
    display: none;
}

.info-modal-content {
    position: relative;
    background-color: #fff;
    padding: 50px 36px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
}

.info-modal-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background: url(../images/close.svg) no-repeat center;
    background-size: 100%;
    font-size: 0; /* Ensure no text content is accidentally displayed */
}

.info-modal-body {
    line-height: 1.6;
}