.contents-body {
    margin: 0;
    padding-bottom: 0;
    /* padding-bottom: 20px; */
    overflow-y: auto; /* 세로 스크롤 가능 */
    overflow-x: hidden; /* 가로 스크롤 숨기기 */
    scroll-behavior:smooth;
    touch-action: auto; /* 기본 설정 */
    scrollbar-width: none;
}
.contents-horizon-bar {
    width : calc(100% - 40px);
    height : 1px;
    margin-top: 20px;
    margin-left: 20px;
    background: var(--Gray-Scale-Gray-4, #E1E2E4);
}
.contents-all-horizon-bar{
    /* margin-top: 20px; */
    margin-top: 0;
    width: 100%;
    height: 8px;
    flex-shrink: 0;
    border-top: 0.5px solid var(--Gray-Scale-Gray-2, #F4F4F5);
    border-bottom: 0.5px solid var(--Gray-Scale-Gray-2, #F4F4F5);
    background: var(--Gray-Scale-Gray-1, #F7F7F8);
}
.contents-all {
}
.contents-back-icon {
    width: 20px;
    height: 40px;
    flex-shrink: 0;
    align-self: stretch;
}


/* 콘텐츠 header */
.contents-header-container {
    display: flex;
    width: 100%;
    height: 52px;
    padding: 7px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
}
.contents-title{
    display: flex;
    align-items: center;
    gap: 5px;
}
.contents-sub-header-container {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    padding: 6px 4px;
    width: 100%; 
}
.contents-sub-header-title {
    position: absolute;
    width: 86%;
    left: 50%;
    transform: translateX(-50%); 
    color: var(--Common-Black, #010101);
    text-align: center;
    /* Header 1/Large */
    font-family: SUIT;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 23.8px */
    letter-spacing: -0.34px;
}
/* 콘텐츠 header */


/* 카테고리 메뉴 start */
.contents-category-menu-container {
    /* margin-left: 10px; */
    position: sticky;
    top: 0;
    overflow-x: scroll; 
    white-space: nowrap; 
    /* border-bottom: 1px solid #ddd; */
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;   
    scrollbar-width: none; 
    width: 100%;
    height: 54px;
    flex-shrink: 0;
    padding-top: 12px;
    background: white;
    z-index: 11;
    touch-action: pan-x;
}
.contents-category-menu-container::-webkit-scrollbar {
    display: none;
}
.contents-category-menu {
    list-style: none;
    display: inline-block; /* Display items in a row */
}
.contents-category-menu-item {
    height: 42px;
    padding: 11px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    display: inline-block;
    color: var(--Gray-Scale-Gray-15, #2E2F33);
    /* Body 2/Large */
    font-family: SUIT;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.32px;
}
.contents-category-menu-item.active {
    border-bottom: 2px solid var(--Common-Primary, #1D82F8);
    color: #1D82F8;
}
/* 카테고리 메뉴 end */


/* 카테고리 start */
.contents-category-body{
    display: block;
}
.contents-category-sticky {
    top: 0;
    position: sticky;
    /* background-color: blue; */
    /* color: white; */
    /* padding: 10px 0; */
    /* text-align: center; */
    width:100%;
    z-index: 100;
    border-bottom:none;
    touch-action: auto;
}
.contents-category-fixed-container {
    position: fixed;
    margin-right: 16px;
    top: -10%;
    right: 0;
    width: 52px;
    height: 52px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 30px;
    border: 1px solid var(--Gray-2, #F3F4F6);
    background: var(--White, #FFF);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.20);
    z-index: 100;
}
.contents-category-fixed-icon{
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    fill: var(--White, #FFF);
}
.contents-category-container {
    padding: 0;
    height: auto;
}
/* 카테고리 end */


/* 광고 배너 start */
.contents-banner-slider {
    position: relative;
    width: 100%;
    /* min-width: calc(100% + 1px); /* */
    /* padding: 10px; */
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}
.contents-banner-slides {
    /* position: relative; /* */
    /* max-height: calc(22svh); /* FIXME */
    display: flex;
    transition: transform 0.5s ease;
}
.contents-banner-slide {
    min-width: 100%;
    box-sizing: border-box;
}
.contents-banner-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.contents-banner-slide img[src=""] {
    background-color: #f0f0f0; 
    width: 100%;
    height: 100%;
    display: block;
}
.contents-banner-page-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    width: 45px;
    height: 24px;
    padding: 3px 13px 1px 13px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    border-radius: 20px;
    /* Caption 2/Large */
    font-family: SUIT;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 14.4px */
    letter-spacing: -0.24px;
    color: var(--Common-White, #FFF);
    background: var(--Opacity-2, rgba(1, 1, 1, 0.40));
}
.contents-banner-button {
    position: absolute;
    left: 12px;
    bottom: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}
/* 광고 배너 end*/
/* swiper banner pagination */
:root {
    --swiper-pagination-bullet-horizontal-gap: 3px;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-inactive-color: var(--color-4);
    --swiper-pagination-color: var(--color-2);
    --swiper-pagination-bullet-width: 6px;
    --swiper-pagination-bullet-height: 6px;
}

.banner-container .swiper-pagination {
    bottom: 16px !important;
    left: 50% !important;
    text-align: right;
    padding-left: 20px;
    padding-right: 20px;
    transform: translateX(-50%);
    box-sizing: border-box;
}

.banner-container .swiper-pagination-bullet-active {
    width: 18px;
    border-radius: 4px;
}
/* swiper banner end */

/* 콘텐츠 전체 페이지 섹션 start */
.contents-section {
    padding: 20px 0 0 0;
    display: flex;
    flex-direction: column; 
    overflow: auto; 
    touch-action: auto; 
    /* height: 100%; */
}

.contents-all-body .contents-section {
    padding: 20px 0 20px 0;
}

.contents-category-container .contents-section:last-child {
    padding: 20px 0 20px 0;
}
.contents-category-container .contents-section:last-child .contents-horizon-bar {
    display: none;
}

.contents-section-title-container{
    display: flex;
    justify-content: space-between; /* 좌우 끝에 요소를 배치 */
    align-items: center; 
    width: 100%; /* 부모 컨테이너의 너비를 채우도록 설정 */
    padding-right: 20px;
}
.contents-section-title {
    text-align: left; 
    padding-bottom: 14px;
    padding-left: 20px;
    -webkit-overflow-scrolling: touch; /* iOS에서 부드러운 스크롤 지원 */
    touch-action: auto; 
    /* Header 1/Large */
    font-family: SUIT;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 20.4px */
    letter-spacing: -0.02em;
    color: var(--Common-Black, #010101);
}

.contents-all-body .contents-section-title {
    font-size: 18px;
    font-weight: 700;
}

.contents-section-all{
    text-align: right;
    display: flex;
    align-self: stretch;
    /* Label 1/Medium */
    font-family: SUIT;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px; /* 18.2px */
    letter-spacing: -0.26px;
    color: var(--Gray-Scale-Gray-15, #2E2F33);
}
.contents-section-all .arrow{
    width: 22px;
    height: 22px;
    margin-top: -1px;
    margin-right: -5px;
}
.contents-section-subtitle {
    text-align: left; 
    touch-action: auto; 
    -webkit-overflow-scrolling: touch; /* iOS에서 부드러운 스크롤 지원 */
    /* margin-bottom: 18px; */
    color: var(--Common-Black, #010101);
    /* Header 2/Large */
    font-family: SUIT;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */
    letter-spacing: -0.02em;
}
.contents-section-subtitle-container {
    display: flex;
    justify-content: space-between; /* 좌우 끝에 요소를 배치 */
    align-items: center; 
    width: 100%; 
    margin-bottom: 20px;
    padding-left: 20px;
    /* padding-right: 20px; */
}
/* .contents-section-subtag-container {
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap; 
    touch-action: auto; 
    overflow: auto; 
    -webkit-overflow-scrolling: touch; 
}
.contents-section-subtag-container::-webkit-scrollbar {
    display: none; 
} */
.contents-section-subtags {
    display: flex;
    gap: 8px; 
    flex-shrink: 0; /* 태그가 줄어들지 않도록 설정 */    
}
.contents-section-subtag {
    display: flex;
    padding: 9px 13px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid var(--Gray-Scale-Gray-4, #E1E2E4);
    background: var(--Common-White, #FFF);
    white-space: nowrap; /* 태그 텍스트가 한 줄에 표시되도록 설정 */
    flex-shrink: 0; /* 태그가 줄어들지 않도록 설정 */
    color: var(--Gray-Scale-Gray-15, #2E2F33);
    /* Label 1/Medium */
    font-family: SUIT;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 18.2px */
    letter-spacing: -0.26px;
}
.contents-section-subtag:last-child{
    margin-right: 20px;
}
.contents-section-slides {
    display: flex;
    flex-direction: row;
    overflow-x: auto; 
    overflow-y: hidden; 
    padding-left: 20px;
    /* white-space: nowrap;  가로로 나열 */
    scrollbar-width: none; /* Firefox에서 스크롤바 숨기기 */
    touch-action: auto; /* 수직 스크롤만 활성화 */
    -webkit-overflow-scrolling: touch;
}
.contents-section-slides::-webkit-scrollbar {
    display: none; /* 스크롤바 숨기기 */
}
.contents-section-slide { 
    display: inline-block; 
    width: 162px;
    height: auto; 
    margin-right: 8px;  /* 이미지 간격 */
    position: relative;
    text-align: left; 
    touch-action: auto;
}

.contents-section-slide div {
    touch-action: auto;
}

.contents-section-slide:last-child img {
    margin-right: 12px;
}
.contents-section-slide img {
    width: 162px; 
    height: 162px; 
    object-fit: cover; 
    border-radius: 8px;
    margin-bottom: 10px;
    touch-action: auto;
}
.contents-section-tag-container {
    display: flex; 
    flex-wrap: wrap; 
    gap: 8px; 
    /* flex-direction: column; */
    text-align: left;
    align-items: flex-start;
    /* display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; */
}
.contents-section-tag {
    padding: 5px 9px;
    border-radius: 16px; 
    background: var(--Gray-Scale-Gray-1, #F7F7F8); 
    display:block; 
    text-align: left;
    /* Caption 2/Large */
    font-family: SUIT;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 16.8px */
    letter-spacing: -0.24px;
    color: var(--Gray-Scale-Gray-9, #878A93);
}
/* 콘텐츠 전체 페이지 섹션 end */


/* 카테고리 정렬 start */
.contents-category-sort-section{
    display: flex;
    height: 48px;
    padding: 0px 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid var(--Gray-Scale-Gray-4, #E1E2E4);
    background: var(--Common-White, #FFF);
}
.contents-category-sort-container{
    display: flex;
    align-items: center;
    gap: 6px;
}

.contents-category-sort-name {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.contents-category-sort-title{
    color: var(--Common-Black, #010101);
    /* Body 1/Medium */
    font-family: SUIT;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 22.5px */
    letter-spacing: -0.3px;
}
.contents-category-sort-divider{
    width: 2px;
    height: 12px;
    stroke-width: 1px;
    stroke: var(--Gray-Scale-Gray-4, #E1E2E4);
}
.contents-category-sort-counter{
    color: var(--Gray-Scale-Gray-15, #2E2F33);
    /* Body 1/Medium */
    font-family: SUIT;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 22.5px */
    letter-spacing: -0.02em;
}
.contents-category-sort-dropdown-container{
    position: relative;
    display: flex;
    z-index: 500;
    /* width: 100%; */
}
.contents-category-sort-dropdown-toggle{
    border: none;
    cursor: pointer;
    padding: 4px 9px;
    height: 32px;
    text-align: left;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Label 2/Medium */
    font-family: SUIT;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: -0.28px;
    background-color: white;
    color: var(--Common-Black, #010101);
}
.contents-category-sort-dropdown-toggle.active {
    background: var(--Gray-Scale-Gray-1, #F7F7F8);
}
.contents-category-sort-dropdown-toggle .arrow {
    /* transition: transform 0.3s ease; */
    margin-left: 2px;
    width: 14px;
    height: 14px;
}
.contents-category-sort-dropdown-menu{
    display: none; /* 기본적으로 감춤 */
    position: absolute;
    top: 100%; /* 버튼 바로 아래에 배치 */
    left: 0;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    list-style: none;
    /* padding: 8px 0; */
    margin: 0;
    width: 64px;
    z-index: 600;
}
.contents-category-sort-dropdown-item{
    padding: 5px 9px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    /* Body 1 - M */
    font-family: SUIT;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 16.8px */
    letter-spacing: -0.28px;
    color: var(--Gray-Scale-Gray-12, #46474C);
    text-align: center;    
}
.contents-category-sort-dropdown-item:hover {
    background-color: #f1f1f1;
}
/* 선택된 아이템 비활성화 스타일 */
.contents-category-sort-dropdown-item.selected {
    /* Body 1 - M */
    font-family: SUIT;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 16.8px */
    letter-spacing: -0.28px;
    color: var(--Gray-4, #D2D5DA);
    text-align: center;
}
/* 드롭다운 메뉴 활성화 시 스타일 */
.contents-category-sort-dropdown-item.show {
    display: block;
}
/* 드롭다운이 열릴 때 화살표 방향 변경 */
.contents-category-sort-dropdown-toggle.active .arrow {
    transform: rotate(180deg);
}
/* 카테고리 정렬 end */


/* 카테고리 필터 start */
.contents-category-filter-container {
    display: flex;
    align-items: center;
    /* padding-left: 20px; */
    white-space: nowrap;
    width: 100%;
    padding: 12px 0px 12px 20px;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.1);
    touch-action: pan-x;
}
.contents-category-filter-buttons {
    position: relative;
}

.contents-category-filter-button + .contents-category-filter-counter {
    display: none;
}

.contents-category-filter-button.selected + .contents-category-filter-counter {
    display: block;
}

.contents-category-filter-counter {
    position: absolute;
    top: -5px;
    left: 67px;
    font-size: 12px;
    background: var(--Common-Primary, #1D82F8);
    color: white;
    font-weight: 600;
    padding: 2px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 17px;
    text-align: center;
    letter-spacing: -0.02em;
}

.contents-category-filter-button {
    cursor: pointer;
    display: flex;
    height: 34px;
    padding: 3px 16px 3px 16px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    background: var(--Gray-Scale-Gray-1, #F7F7F8);      
    color: var(--Common-Black, #010101);
    /* Label 1/Medium */
    font-family: SUIT;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 18.2px */
    letter-spacing: -0.26px;
    box-shadow: 0px 0px 1px 2px rgba(0, 0, 0, 0.05);
}
.contents-category-filter-button.selected{
    background: var(--Common-Primary, #1D82F8);
    color: var(--Common-White, #FFF);
    /* Label 1/Medium */
    font-family: SUIT;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 18.2px */
    letter-spacing: -0.26px;
}
.contents-category-filter-button .icon{
    width: 24px;
    height: 24px;
}
.contents-category-filter-vertical-bar { 
    margin-left: 9px;
    margin-right: 9px;
    width: 2px;
    height: 20px;
    stroke-width: 1px;
    stroke: var(--Gray-Scale-Gray-4, #E1E2E4);
}
.contents-category-filter-tag-container {
    display: flex;
    align-items: center;
    white-space: nowrap; 
    overflow: auto; 
    -webkit-overflow-scrolling: touch; /* iOS에서 부드러운 스크롤 지원 */
    touch-action: auto;
}
.contents-category-filter-tag-container::-webkit-scrollbar {
    display: none;
}
.contents-category-filter-tags {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap; /* 줄 바꿈을 방지 */
    flex-shrink: 0; /* 줄어들지 않게 설정 */
    height: 34px;
    touch-action: auto;
}
.contents-category-filter-tag {
    display: flex;
    padding: 3px 10px 3px 10px;
    white-space: nowrap; 
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 1px solid var(--Gray-Scale-Gray-4, #E1E2E4);
    background: var(--Common-White, #FFF);
    color: var(--Gray-Scale-Gray-12, #46474C);
    /* Label 1/Medium */
    font-family: SUIT;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 18.2px */
    letter-spacing: -0.26px;
    touch-action: auto;
}

.contents-category-filter-tag.selected {
    background: var(--Gray-Scale-Gray-1, #F7F7F8);
}

.contents-category-filter-tag.more {
    border: none;
    background: var(--Gray-Scale-Gray-1, #F7F7F8);
}

.contents-category-filter-tag .icon {
    width: 24px;
    height: 24px;
    width: 16px;
    height: 16px;
    position: relative;
    left: -3px;
    touch-action: auto;
}
.contents-category-filter-tag:last-child {
    margin-right: 20px;
}
/* 카테고리 필터 end */


/* 모달 start */
.contents-category-modal-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: flex-end;  /* 모달 창이 하단에 위치하도록 설정 */
    z-index: 999;
}

.contents-category-modal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contents-category-modal {
    background: white;
    width: 100%;
    height: 507px;
    padding: 30px 20px 25px 20px;
    border-radius: 26px 26px 0px 0px;
    background: #FFF;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out; 
    z-index: 1000;
}
.contents-category-modal-header {
    text-align: left; 
    margin-bottom: 20px; 
}
.contents-category-modal-header .title {
    color: var(--Common-Black, #010101);
    /* Header 2/Large */
    font-family: SUIT;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */
    letter-spacing: -0.36px;
}
.contents-category-modal-header .subtitle {
    color: #A0A1A3;
    /* Body 1 - M */
    font-family: SUIT;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 16.8px */
    letter-spacing: -0.28px;
    margin-bottom: 28px;
}
.contents-category-modal-header .series {
    color: var(--Common-Black, #010101);
    /* Body 2/Large */
    font-family: SUIT;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.32px;
}
.contents-category-modal-footer {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}
.contents-category-modal-footer button {
    width: 315px;
    height: 54px;
    padding: 15px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: var(--Gray-Scale-Gray-1, #F7F7F8);
    color: var(--Gray-Scale-Gray-6, #C2C4C8);
    /* Header 1/Large */
    font-family: SUIT;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 23.8px */
    letter-spacing: -0.34px;
}
.contents-category-modal-footer button.selected {
    color: var(--Common-White, #FFF);
    /* Header 1/Large */
    font-family: SUIT;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 23.8px */
    letter-spacing: -0.34px;
    background: var(--Common-Primary, #1D82F8);
}
.contents-category-modal-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-height: 271px;
    /* height: 271px; */
    justify-content: left;
    overflow-y: auto;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch; /* iOS에서 부드러운 스크롤 지원 */
}
.contents-category-modal-tags {
    display: inline-flex;
    flex-wrap: wrap;
    border: none;
    cursor: pointer;
    gap: 7px;
    justify-content: left;
}
.contents-category-modal-tags .tag {
    /* text-align: left; */
    /* margin-top: 8px; */
    display: flex;
    height: 34px;
    padding: 3px 10px 3px 10px;
    justify-content: center;
    align-items: center;
    color: var(--Gray-Scale-Gray-12, #46474C);
    /* Caption 2 - M */
    font-family: SUIT;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 15.6px */
    letter-spacing: -0.26px;
    border-radius: 20px;
    border: 1px solid var(--Gray-Scale-Gray-4, #E1E2E4);
    background: var(--Common-White, #FFF);
}
.contents-category-modal-tags .tag.selected {
    font-family: SUIT;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 15.6px */
    letter-spacing: -0.26px;
    border: 1px solid var(--Gray-Scale-Gray-4, #E1E2E4);
    background: var(--Common-Primary, #1D82F8);
    color: var(--White, #FFF);
}
#ModalOverlay.show {
    display: flex;
}
/* 모달 end */
