.property-panel .bottom-button {
  position: relative;
  z-index: 11;
}
.property-panel .placeholder {
  position: relative;
  z-index: 10;
}
.sidebar-container .sidebar-item-container {
  margin-bottom: 112px;
}
.divider[data-v-cb4e34bd] {
  margin: 8px 0;
  height: auto;
}

#historyzone {
  overflow-y: auto;
  scrollbar-width: none;
}


/* 비율 옵션 드롭다운 스타일 */
.setting-collect-box {
  position: relative;
  display: inline-block;
  width: 100px;
  cursor: pointer;
  user-select: none;
}
.el-icon {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.el-icon.rotated {
  transform: rotate(180deg);
}
.setting-collect-box_open {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  width: 100%;
  background-color: #2d2f33;
  border-radius: 10px;
  z-index: 100000;
  color: #f9fbfcff;
  padding: 10px 0;
  font-family: inherit;
  font-size: 14px;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, .24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1);
}




.setting-collect-box_open.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.setting-collect-box_open ul li {
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.setting-collect-box_open ul li > div {
  width: 20px;
}


.setting-collect-box_open ul li:hover {
  background-color: #3d3f43;
  cursor: pointer;
}

.setting-collect-box_open ul li.active {
  color: #74ff52;
}

.setting-collect-box_open .square {
  border: 1px solid #f9fbfcff;
  height: 12px;
  display: inline-block;
  border-radius: 1px;
}

.setting-collect-box_open ul li.active .square {
  border: 1px solid #74ff52;
}
.setting-collect-box_open .square34 {
  aspect-ratio: 3 / 4;
}
.setting-collect-box_open .square43 {
  aspect-ratio: 4 / 3;
}
.setting-collect-box_open .square11 {
  aspect-ratio: 1 / 1;
}
.setting-collect-box_open .square916 {
  aspect-ratio: 9 / 16;
}


.setting-collect-box_open .chk_ico {
  display: none;
}
.setting-collect-box_open .chk_ico i {
  font-size: 12px;
  margin-left: auto;
}

.setting-collect-box_open ul li.active .chk_ico {
  display: block;
}


.filter-bar .property .svg_icon {
  margin-top: 8px;
  margin-right: 5px;
}
.filter-bar .property .svg_icon svg {
  fill: #74ff52;
}
.title .right .top-action {
  transition: background 0.3s ease;
}

.title .right .top-action:hover {
  background: #ffffff18;
}


.model-version-select .setting-collect-box_open {
  bottom: inherit;
  top: 0;
  transform: translateY(60px);
  padding: 0;
  overflow: hidden;
}

.model-version-select .setting-collect-box_open.active {
  
  transform: translateY(30px);
}

.model-version-select .setting-collect-box_open ul li {
  display: block;
  cursor: pointer;
  border-bottom: 1px solid #3d3f43;
}

.model-version-select .setting-collect-box_open ul li:last-child {
  border-bottom: none;
}
.model-version-select .setting-collect-box_open ul li > div {
  width: auto;
}
.model-version-select .setting-collect-box_open ul li > div.title {
  margin-bottom: 10px;
  padding-top: 10px;
}

.model-version-select .setting-collect-box_open ul li > div.desc {
  font-size: 13px;
  line-height: 20px;
  word-break: keep-all;
  padding-bottom: 10px;
}

.cost-detail-box {
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1);
  position: absolute;
  bottom: 70px;
  left: 15px;
  width: 160px;
  background-color: #2d2f33;
  border-radius: 10px;
  z-index: 100001;
  color: #f9fbfcff;
  padding: 0px 10px;
  
}

.cost-detail-box.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cost-detail-box::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50px;
  width: 10px;
  height: 10px;
  background-color: #2d2f33;
  transform: rotate(45deg);
}

.cost-detail-box .cost-detail-title {
  padding: 15px 0;
  border-bottom: 1px dashed #3d3f43;
  font-size: 15px;
}
.cost-detail-box .cost-detail-content_wrap {
  padding: 10px 0;
  border-bottom: 1px dashed #3d3f43;
}
.cost-detail-box .cost-detail-content {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}



.cost-detail-box .cost-detail-total {
  padding: 15px 0;
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}


/* 사이드바 */

.sidebar-item {
  position: relative;
  width: 100%;
}
.sidebar-item .sidebar-item-hover {
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  width: auto;
  height: 32px;
  background-color: #252629;
  border-radius: 3px;
  z-index: 1000;
  transform: translateY(-50%);

  padding: 0px 15px 0px 15px;
  white-space: nowrap; 
  width: max-content;  
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1);
}
.sidebar-item .sidebar-item-hover.active {
  opacity: 1;
  pointer-events: auto;
}
.sidebar-item .sidebar-item-hover::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: -6px;
  width: 8px;
  height: 8px;
  background-color: #252629;
  transform: rotate(45deg) translateY(-50%);
}
.sidebar-item .sidebar-item-hover .sidebar-item-hover-content {
  display: flex;
  align-items: center;
  height: 100%;
  color: #f9fbfcff !important;
}
.sidebar-item a svg {
  position: relative;
  top: 3px;
}

.icon-refresh svg.rotating {
  animation: icon-rotate-360 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
}


@keyframes icon-rotate-360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.making_loading_box_wrap {
  position: relative;
  aspect-ratio: 1 / 1;
}

.making_loading_box_wrap43 {
  aspect-ratio: 4 / 3;
}
.making_loading_box_wrap34 {
  aspect-ratio: 3 / 4;
}


.making_loading_box_wrap .making_loading_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.making_loading_box_wrap .making_loading_bg img {
  width :100%;
  height: auto;
  display: block;
}

.making_loading_box {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  position: absolute;
  z-index: 10;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px); /* for Safari */
  /* 핵심 속성들 */
  transform: translateZ(0);   /* 강제로 GPU 레이어 생성 */
  will-change: transform;    /* 성능 힌트 */
  isolation: isolate;
}
.making_loading_box .progress-bar {
  font-size: 22px;
}
.making_loading_arrow {
  display: flex;
}

.making_loading_box2 {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;

  position: absolute;
  z-index: 10;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 25px;
}

.making_loading_box2 .making_loading_text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.making_loading_box2 .making_loading_text p {
  width: 175px;
}

.making_loading_box2 .making_loading_text .making_loading_arrow_wrap span{
  display: flex;
}

.making_loading_box_wrap .making_loading_bg2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 4s infinite;
}
.making_loading_box_wrap .making_loading_bg2 img {
  width: 100%;
  height: auto;
  display: block;
}

/* 스켈레톤 로딩 애니메이션 */
@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}



@keyframes arrow-stroke-animate {
  0% {
    stroke: #fff;
  }
  100% {
    stroke: #74ff52;
  }
}

/* 애니메이션 컨테이너 */
.animation_container {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.animation_container img {
  width: 100px;
  height: 100px;
  opacity: 0.8;
}

.add_ico {
  width: 35px !important;
}
/* 중앙 로고 */
.main_logo {
  position: absolute;
  height: 60px;
  z-index: 10;
}
.ripple {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid #74ff52;
  border-radius: 50%;
  animation: rippleEffect 1.5s linear infinite;
  opacity: 1;
  z-index: 1;
}
.ripple:nth-child(1) {
  animation-delay: -1.5s;
}
.ripple:nth-child(2) {
  animation-delay: -1s;
}
.ripple:nth-child(3) {
  animation-delay: 0s;
}

/* 물결 애니메이션 */
@keyframes rippleEffect {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.info-bottom {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.info-bottom .info-bottom-menu-title {
  width: 90px;
  font-size: 13px;
  margin-top: 2px;
}

.info-bottom .info-bottom-btn-wrap {
  display: flex;
  width: calc(100% - 90px);
  flex-wrap: wrap;
  gap: 10px;
}
.info-bottom .info-bottom-btn {
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  color: #f9fbfcff;
  font-size: 13px;
  cursor: pointer;

  width: calc(50% - 5px);
  height: 32px;
  border-radius: 8px;
  background-color: #2d2f33;
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
}
.info-bottom .info-bottom-btn:hover {
  background-color: #3d3f43;
}


.tooltip-edit, .tooltip-same {
  position: relative;
}

.tooltip-edit::after, .tooltip-same::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px; /* 툴팁 박스 아래에 붙도록 */
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #2d2f33; /* 툴팁 배경색과 맞춤 */
}

.button-auto-ellipsis-item {
  line-height: 18px;
}


/* 메인페이지 */

.main-logo-add {
  margin: 8px;
  margin-left: 10px;
}

.main-svg-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-right: 12px;
}

.auto-play-video {
  width: 100%;
  height: 100%;
}

.version-info {
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b4b8ff;
  padding: 10px 0 0;
  border-top: 1px solid #3d3f43;
}


.header-menu {
  margin-top: 98px;
}

.login-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px !important;
}

.login-svg {
  width: 18px;
  height: 18px;
}

header .content .membership[data-v-220697d4] {
  margin: 0;
}

.direct-menu-wrap {
  padding: 10px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.direct-menu-wrap .direct-menu {
  width: 30px;
  height: 30px;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fbfc !important;

  background-color: #2d2f33;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.direct-menu-wrap .direct-menu svg {
  color: #f9fbfc !important;
}

.direct-menu-wrap .direct-menu:hover {
  background-color: #3d3f43;
}


/* 메인 갤러리 */
.gallery-container {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  padding: 0px;
  margin-bottom: 100px;
}

/* 수동 메이슨리용 컬럼 컨테이너 */
.m-col {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
}

.gallery-item {
  /* Flex 컬럼 내에서 간격 유지 */
  margin-bottom: 5px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);

  position: relative;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.gallery-item .gallery-item-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: block; /* a는 기본 inline이라 height 적용 안 됨 → 블록화 */
}

.gallery-item .gallery-item-content {
  position: absolute;
  width: 100%;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: linear-gradient(to top, var(--gallery-link-bg, #000) 0%,  transparent 100%);
}
.gallery-item .plus_box {
  width: 100%;
  min-height: 0;
  background: var(--gallery-link-bg, #000);
  overflow: hidden;
  position: relative;
  z-index: 2;

  display: none;
}

.gallery-item .plus_box .plus_box_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  justify-content: start;
  box-sizing: border-box;
  padding: 10px 10px 20px;
}


.gallery-item .gallery-item-content h3 {
  color: #fff;
  font-weight: normal;
  font-size: 13px;
  width: calc(100% - 50px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

}

.gallery-item .gallery-item-img {
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-item-img {
  transform: scale(1.02);
}


.gallery-item .gallery-item-content button {
  border-radius: 5px;
  width: 17px;
  height: 17px;
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
  text-decoration: none;
  display: inline-block;
  padding: 0;
}
.gallery-item .gallery-item-content button img {
  width: 100%;
  display: block;
  height: auto;
}



.gallery-item .plus_box-generate_btn {
  background-color: #ffffff33;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.gallery-item .plus_box-generate_btn a {
  width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.gallery-item .plus_box-generate_btn a:hover {
  background-color: #ffffff35;
}


.gallery-item .plus_box-prompt {
  width: 100%;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  line-height: 1.4em;
  max-height: calc(1.4em * 3);
  margin-top: 5px;

  font-size: 13px;
}



.gallery-item.skeleton {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background-color: #2d2f33;
}

.skeleton-image {
  width: 100%;
  height: calc(100% - 40px);
  background-color: #2d2f33;
  border-radius: 6px;
}

.skeleton-text {
  width: 100%;
  height: 20px;
  margin: 10px  0;
  background-color: #2d2f33;
  border-radius: 4px;
}

/* 반짝이는 shimmer 효과 */
.shimmer {
  background: linear-gradient(90deg, #2d2f33 25%, #3d3f43 50%, #2d2f33 75%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}






@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}


/* 화살표 순차 애니메이션 - JavaScript로 src 변경 방식 사용 */

/* 모달 팝업 */
#modal.modal001 {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 1000000 !important;
  backdrop-filter: blur(15px);
}
#modal.modal001 .modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
#modal.modal001 .modal_inner_cont {
  /* max-width: 1200px; */
  max-width: 1300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 90%;
  width: 100%;

  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.c6ab9234 {
  justify-content: unset !important;
}
.modal_cont001 {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: #0e0f0f;
}
.modal_close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.modal_close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.modal_body {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.modal001_close {
  position: absolute;
  right: 3%;
  top: 3%;
}
#modal .account_tit {
  padding-bottom: 30px;
}


/*구독 플랜*/
.plan_area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  justify-content: center;
  padding-bottom: 40px;
}
.plan_box {
  width: 285px;
  width: 100%;
  padding: 30px 37px;
  border-radius: 16px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}
.p_button:hover {
  background: #4d6bfe;
  color: #fff;
}
/*.plan_area > .plan_box:first-child .line_gray {
  margin-top: 97px !important;
}*/
.line_gray {
  border-top: 1px solid #ccc;
  margin-top: 40px;
  padding-top: 40px;
  width: 100%;
  display: block;
}
.p_btn_back {
  background: #4d6bfe !important;
  color: #fff !important;
}
.p_btn_back:hover {
  color: #4d6bfe !important;
  border: 1px solid #4d6bfe !important;
  background: #fff !important;
}
.plan_box .p_tit {
  color: #000000;
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 500;
}
.add_border {
  border: 2px solid #4d6bfe;
}
.price_area {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}
.price_area h1 {
  font-size: 38px;
  font-weight: 600;
  color: #000;
  line-height: 38px;
  border-bottom: 0;
}
.price_area span {
  font-size: 13px;
  color: #777777;
  line-height: 24px;
}
.p_button {
  width: 100%;
  height: 40px;
  font-size: 14px;
  color: #4d6bfe;
  border: 1px solid #4d6bfe;
  border-radius: 5px;
}
.chk_txt {
  color: #777777;
  font-size: 13px;
  line-height: 13px;
  vertical-align: middle;
  display: flex;
  margin-top: 10px;
}
.chk_txt::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/ico/blue_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 12px;
  vertical-align: middle;
}
.suggestion {
  background: #4d6bfe;
  border-radius: 8px;
  width: 45px;
  top: 10px;
  right: 10px;
}
.suggestion span {
  font-size: 13px;
  color: #ffffff;
  line-height: 24px;
}
.add_color {
  background: #4d6bfe;
  color: #ffffff;
}
.cent_txt {
  color: #777;
  font-size: 12px;
  line-height: 12px;
  vertical-align: middle;
  margin-top: 8px;
  text-align: left;
}
.chk_txt strong {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
.cent_txt strong {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
.blue_bold {
  font-weight: 600;
  color: #4d6bfe !important;
}

/*25.02.10 팝업*/
/* 기본 팝업 스타일 */
.basic_pop {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.basic_pop_content {
  background: white;
  width: 400px; /*margin: 15% auto;*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.basic_pop_title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.basic_pop_footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.basic_pop_btn {
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}
.basic_pop_btn_cancel {
  background: #e0e0e0;
}
.basic_pop_btn_delete {
  background: #ff4d4d;
  color: white;
  margin-left: 10px;
}
.basic_pop_btn:hover {
  opacity: 0.8;
}


/*텍스트 상자 추가*/
.text_box_area {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0 100px;
}
.text_box_area .txt_box {
  border: 1px solid #dee1ee;
  border-radius: 12px;
  padding: 16px 12px;
  background-color: transparent;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  width: 23%;
  height: 97.5px;
  font-family: ui-sans-serif, -apple-system, system-ui, "SF Pro", "Segoe UI",
    "Helvetica", "Arial", "Noto Sans", "Roboto", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol" !important;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.text_box_area .txt_box:hover {
  background-color: #f3f4f6;
}
.text_box_area .txt_box div {
  line-height: 1.5em;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 15px;
  color: #676767;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/*구독 플랜*/
.plan_area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  justify-content: center;
  padding-bottom: 40px;
}
.plan_box {
  width: 285px;
  width: 100%;
  padding: 30px 37px;
  border-radius: 16px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}
.p_button:hover {
  background: #4d6bfe;
  color: #fff;
}
/*.plan_area > .plan_box:first-child .line_gray {
  margin-top: 97px !important;
}*/
.line_gray {
  border-top: 1px solid #ccc;
  margin-top: 40px;
  padding-top: 40px;
  width: 100%;
  display: block;
}
.p_btn_back {
  background: #4d6bfe !important;
  color: #fff !important;
}
.p_btn_back:hover {
  color: #4d6bfe !important;
  border: 1px solid #4d6bfe !important;
  background: #fff !important;
}
.plan_box .p_tit {
  color: #000000;
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 500;
}
.add_border {
  border: 2px solid #4d6bfe;
}
.price_area {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}
.price_area h1 {
  font-size: 38px;
  font-weight: 600;
  color: #000;
  line-height: 38px;
  border-bottom: 0;
}
.price_area span {
  font-size: 13px;
  color: #777777;
  line-height: 24px;
}
.p_button {
  width: 100%;
  height: 40px;
  font-size: 14px;
  color: #4d6bfe;
  border: 1px solid #4d6bfe;
  border-radius: 5px;
}
.chk_txt {
  color: #777777;
  font-size: 13px;
  line-height: 13px;
  vertical-align: middle;
  display: flex;
  margin-top: 10px;
}
.chk_txt::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/ico/blue_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 12px;
  vertical-align: middle;
}
.suggestion {
  background: #4d6bfe;
  border-radius: 8px;
  width: 45px;
  top: 10px;
  right: 10px;
}
.suggestion span {
  font-size: 13px;
  color: #ffffff;
  line-height: 24px;
}
.add_color {
  background: #4d6bfe;
  color: #ffffff;
}
.cent_txt {
  color: #777;
  font-size: 12px;
  line-height: 12px;
  vertical-align: middle;
  margin-top: 8px;
  text-align: left;
}
.chk_txt strong {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
.cent_txt strong {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
.blue_bold {
  font-weight: 600;
  color: #4d6bfe !important;
}














    /* 프로필 메뉴 팝업 스타일 */
    .profile-menu-popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      display: none;
    }
    
    .profile-menu-content {
      position: absolute;
      bottom: 60px;
      left: 12px;
      background: #2d2f33;
      border-radius: 10px;
      padding: 6px;
      max-width: 175px;
      width: 100%;
      box-shadow: 0 8px 24px rgba(0,0,0,.12);
    }
    

    
    .profile-menu-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    
    .profile-menu-list li {
      width: 100%;
      margin: 0;
      height: 41px;
    }
    
    .profile-menu-list li a {
      display: flex;
      width: 100%;
      padding: 8px 14px 8px 12px;
      border-radius: 5px;
      align-items: center;
      font-size: 14px;
      height: 100%;
      text-decoration: none;
      color: #fff;
    }
    .profile-menu-list li a svg {
      color: #fff;
    }
    
    .profile-menu-list li a:hover {
      background-color: #0000000A;
    }
    
    .profile-menu-list li a span {
      margin: 0 10px;
      color: #fff;
    }

    .logout_btn a, .login_btn2 a {
      width: 100%;
      background-color: #2d2f33;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 32px;
      padding: 3px 10px 0;
      border-radius: 8px;
      font-family: PingFang SC, arial, tahoma, Hiragino Sans GB, Microsoft YaHei, sans-serif;
      font-weight: bold;
      gap: 5px;
      font-size: 13px;
    }

    .prompt_guide_wrap {
      /* border: 1px solid red; */
      padding: 10px 0px;
      overflow: hidden;
      height: auto;
      max-height: 240px;
    }
    .prompt_guide_title {
      margin-bottom: 18px;
      font-weight: 600;
    }

    .prompt_guide_box {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .prompt_guide_box button {
      padding: 0px 16px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #2d2f33;
      border-radius: 8px;
    }

    .tooptip_ico {
      width: 17px;
    }

    .group-box .button-auto-ellipsis-item[data-v-7b7579e8]:not(:first-child):before {
      display: none;
      left: -8px;
    }


    .group-box[data-v-7b7579e8] {
      gap: 16px;
    }

    .no-message-wrap {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 100px;
    }
    #listzone .no-message-wrap {
      margin-bottom: 0;
      height: calc(100vh - 100px);
      padding: 24px 32px 10px;
      margin-left: 50px;
    }
    .no-message {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      width: 250px;
    }
    #listzone .no-message {
      padding-bottom: 110px;
    }

    .no-message-wrap p {
      color: #6c6e70;
    }

    .tabs-box .bar[data-v-875e1f2b] {
      width: 138px;
    }

    .resource .main .title.en span[data-v-f575f313] {
      font-family: PingFang SC, arial, tahoma, Hiragino Sans GB, Microsoft YaHei, sans-serif;
      font-style: normal;
}


.prompt-operation {
  position: relative;
}

.prompt-operation .deleteRefreshBtn {
  position: absolute;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.prompt-operation .deleteRefreshBtn.show {
  opacity: 1;
  visibility: visible;
}



.creation-stream-item .content[data-v-f0458f08]  {
  max-height: 100vh;
}




/* 반응형 */
@media (max-width: 1440px) {
  .gallery-container {
    /* Flex 기반: 열 수는 JS가 결정. gap만 유지 */
  }
}


@media (max-width: 1300px) {
  #modal.modal001 .modal_inner_cont {
    width: 95%;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .gallery-container {
    /* Flex 기반: 열 수는 JS가 결정 */
  }
}
@media (max-width: 768px) {
  .gallery-container {
    /* Flex 기반: 열 수는 JS가 결정 */
  }
  #modal.modal001 .modal_inner_cont {
    height: 70vh;
  }
}
@media (max-width: 480px) {
  .gallery-container {
    /* Flex 기반: 열 수는 JS가 결정 */
  }
}

/* img_title 말줄임표 처리 */
#img_title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}