@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@font-face {
    font-family: 'SEBANG_Gothic_Bold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2104@1.0/SEBANG_Gothic_Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
}
img{
    width: 100%;
}
ol,ul,li{
    list-style: none;
}
a{
    color: #000;
}

.underline{
    text-decoration: underline;
}
.bbll{
    color: #569cd6 !important;
    white-space:nowrap;

    margin-right: 8px;
}
.padding_left{
    padding-left: 15px;
}
.hidden{
    visibility: hidden;
    opacity: 0;
}
.margin_bottom{
    margin-bottom: 8px;
}
.red{
    color: red !important;
}

body.no-scroll {
    overflow: hidden;
}
    /* <span class="hidden">11</span> */


/* 상단으로 이동하는 탑버튼 css */
/* .top_arrow_button {
    width: 72px;
    height: 72px;
    background-color: #000;
    border-radius: 50%;
    position: fixed;
    bottom: 60px;
    right: 120px;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
    z-index: 9999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top_arrow_button img{
    width: unset;
}
.top_arrow_button.active{
    visibility: visible;
    opacity: 1;
}
.top_arrow_button img{
    width: 21px;
    height:21px;
} */


/* 팝업 스타일 */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.popup_content{
    width: 40%;
    height: 90%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.popup_close{
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding-right: 12px;
    cursor: pointer;
}
.popup_imgbox{
    width: 100%;
    overflow-y: auto;
    padding: 20px;
    background-color: #ffffff;
}
.popup_imgbox img{
    width: 100%;
}

.popup.active {
    display: flex;
}


@media (max-width:900px){
    .popup_content{
        width: 80%;
        height: 90%;
    }
}

@media (max-width:500px){
    .popup_content{
        width: 90%;
        height: 90%;
    }
}w