/* 버튼, 카드 등 UI 구성요소  */
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
/* 작은 화면(sm) 숨김 */
.hidden-sm {
    @media (min-width: 576px) and (max-width: 767.98px) {
        display: none !important;
    }
}

/* 초소형 화면(xs) 숨김 (576px 미만) */
@media (max-width: 575.98px) {
    .hidden-xs {
        display: none !important;
    }
}

/* 작은 화면(sm) 숨김 (576px 이상 ~ 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hidden-sm {
        display: none !important;
    }
}

/* 중간 화면(md) 숨김 (768px 이상 ~ 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hidden-md {
        display: none !important;
    }
}

/* 큰 화면(lg) 숨김 (992px 이상 ~ 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hidden-lg {
        display: none !important;
    }
}

/* 매우 큰 화면(xl) 숨김 (1200px 이상) */
@media (min-width: 1200px) {
    .hidden-xl {
        display: none !important;
    }
}

/* 팝업 */
.overlay-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    /* transition: opacity 500ms; */
    visibility: hidden;
    opacity: 0;
    z-index: 99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overlay-popup:target {
    visibility: visible;
    opacity: 1;
}

.popup-content {
    /* margin: 70px auto; */
    background: #fff;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
    padding-bottom: 10px;

}

.popup-content h2 {
    /* background: linear-gradient(#44474e, #35383f); */
    margin-top: 0;
    color: rgb(51, 51, 51);
    text-align: center;
    font-size: 24px;
    font-family: 'Spoqa Han Sans Neo', 'Nanum Gothic', 'sans-serif';
    line-height: 52px;
    font-weight: 900;
    padding-top: 5px;
    border-bottom: 1px rgb(238, 238, 238) solid;
    padding-top: 13px;
    padding-bottom: 10px;
}

.popup-content .close {
    position: absolute;
    top: 15px;
    /*    border: 1px #fff solid;*/
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000 !important;
    opacity: 1;
    text-shadow: none;
    line-height: 0;
    padding: 12px 5px 20px;
}

.popup-content .close:hover {
    color: #06D85F;
}

.popup-content .content {
    /*  max-height: 30%;*/
    height: auto;
    padding: 25px 20px;
    font-size: 16px;
    overflow-y: auto;
    text-align: center;
}
.popup-content .content p .btn-1 {
    background: rgb(182, 13, 13);
    margin-top: 30px;
    width: 160px;
    text-align: center;
    color: #fff;

}
.popup-content .content p .btn-1::before {
    background-color: #2b2929;

}
.popup-content .content p .btn-1 span {
    color: rgb(255, 255, 255);
    border: 0;
    transition: 0.2s 0.1s;
    padding: 12px 0;
    font-size: 16px;

}

.popup-content .content p .btn-1 span:hover {
    color: rgb(255, 255, 255);
    transition: 0.2s 0.1s;
}

.popup-content .content p,
.popup-content .content span {
    /* font-size: 13px; */
}

.popup_text_point {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 12px;
}

/* 팝업 마감 */

/* 이전할것 */
#library .wrap {
    margin-bottom: 60px;
    width: 100%;
    position: relative;
}
#library .wrap .wiz_content {
    padding-top: 30px;
}
#library .lib_padding {
    padding-top: 20px;
    padding-bottom: 20px;
}
#library .lib_padding.bic {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* 버튼 */

.wiz_btn {
    border: 1px #cbcbcb solid;
    padding: 12px 36px;
    border-radius: 0.3em;
    font-weight: 600;
    font-size: 17px;
    transition: 0.3s;
}

.wiz_btn.gray {
    background: #f3f3f3;
    border: 1px #f3f3f3 solid;
}
.wiz_btn.black {
    background: #2a2b2c;
    border: 1px #2a2b2c solid;
    color: #fff;
}
.wiz_btn.nomal {
    padding: 10px 26px;
    border-radius: 0.3em;
    font-size: 15px;
}
.wiz_btn.small {
    padding: 8px 20px;
    border-radius: 0.3em;
    font-size: 13px;
}
.wiz_btn:hover {
    border: 1px #797979 solid;
}
.wiz_btn.border-r {
    border-radius: 3em;
}
/* panner */
.wiz_panel {
    border: 1px #dcdcdc solid;
    border-radius: 0.8em;
    margin-bottom: 20px;
}
.wiz_panel.gray {
    background: #f3f3f3;
    border: 1px #f3f3f3 solid;
}
.wiz_panel .title {
    padding: 18px 40px;
    font-weight: 700;
    border-bottom: 1px #dcdcdc solid;
    background-color: #f6f6f6;
    border-top-left-radius: 0.8em;
    border-top-right-radius: 0.8em;
}
.wiz_panel .title.white {
    background: #fff;
    border-bottom: 0;

}
.wiz_panel h2 {
    font-size: 20px;
}

.wiz_panel .content {
    padding: 30px 40px;
}
/* wiz_title_bar */
.wiz_title_bar {
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dcdcdc;

}
.wiz_title_bar h1,
.wiz_title_bar h2,
.wiz_title_bar h3 {
    margin: 0;
    font-weight: 800;

}
.wiz_title_bar h1,
.wiz_title_bar h1 {
    font-size: 42px;
}
.wiz_title_bar h2 {
    font-size: 32px;
}
.wiz_title_bar h3 {
    font-size: 26px;
}
/* wiz_title_bar  end */
/* media */
.wiz_midia {
    display: flex;
    align-items: center;
}
.wiz_midia h2 {
    font-size: 26px;
    margin-bottom: 16px;
}

.wiz_midia img {
    width: 100%;
}
.wiz_midia.media01 {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px #dcdcdc solid;
}

.wiz_midia.media01 .image {
    width: 15%;
}
.wiz_midia.media01 .caption {
    width: 85%;
    padding-left: 65px;
}
.wiz_midia h2 {
    font-size: 26px;
    margin-bottom: 16px;
}
.wiz_midia.media02 {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px #dcdcdc solid;
}
.wiz_midia.media02 .image {
    width: 45%;
}
.wiz_midia.media02 .caption {
    width: 55%;
    padding-left: 90px;
}
.wiz_midia.media02.even {
    flex-direction: row-reverse;
}
.wiz_midia.media02.even .caption {
    padding-left: 0;
    padding-right: 90px;
}
.wiz_midia.media02 .caption h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 24px;
}

.wiz_midia.wiz_grid .caption {
    padding-top: 25px;
}
.wiz_midia.wiz_grid .caption h2 {
    font-size: 25px;
    margin-bottom: 10px;
}
.wiz_midia.wiz_grid.row3 .caption,
.wiz_midia.wiz_grid.row4 .caption,
.wiz_midia.wiz_grid.row5 .caption,
.wiz_midia.wiz_grid.row6 .caption {
    font-size: 16px;

}
.wiz_midia.wiz_grid .caption h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.wiz_midia.not-border {
    border: 0;
}
/* grid system */
.wiz_grid {
    position: relative;
    display: grid;
    gap: 40px;

}

.wiz_grid.row2 {
    grid-template-columns: repeat(2, 1fr);
}
.wiz_grid.row3 {
    grid-template-columns: repeat(3, 1fr);
}
.wiz_grid.row4 {
    grid-template-columns: repeat(4, 1fr);
}
.wiz_grid.row5 {
    grid-template-columns: repeat(5, 1fr);
}
.wiz_grid.row6 {
    grid-template-columns: repeat(6, 1fr);
}
/* grid system end */

/* 보조 페이지 UI 디자인 */
.wiz_page.title_left {
    display: flex;
}
.wiz_page.title_left .title {
    width: 35%;
}
.wiz_page.title_left .content {
    width: 65%;
    padding-left: 80px;
}
.wiz_page.title_right {
    display: flex;
    flex-direction: row-reverse;
}
.wiz_page.title_right .title {
    width: 35%;
    text-align: right;
}
.wiz_page.title_right .content {
    width: 65%;
    padding-right: 80px;
}
.wiz_page .title h2 {
    font-size: 28px;
    font-weight: 700;
}
.wiz_page.nomal .title {
    border-bottom: 1px #000 solid;
    padding-bottom: 25px;
}
.wiz_page.nomal .content {
    padding-top: 40px;
}
code {
    background: #ddd;
    position: relative;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
    font-size: 13px;
    padding: 20px;
    border-radius: 1em;
    width: 100%;
}

/* 보조 페이지 UI 디자인 마감 */
#library .wiz_grid.btn-wrap {
    display: flex;
    justify-content: space-around;
}
/* 페럴러즈 */
.parallax .parallax__layer,
.parallax [data-parallax-layer] {
    position: absolute;
    inset: -15%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translate3d(0,0,0);
    pointer-events: none;
    z-index: 0;
}

.parallax > .container {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .parallax [data-parallax-layer] {
        transform: none !important;
    }
}
/* 페럴러즈 end */
/* 유튜브 */
.lightbox {
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: fixed;
    display: none;
    z-index: 999999999999999;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}
.lightbox-container {
    position: relative;
    max-width: 960px;
    margin: 7% auto;
    display: block;
    padding: 0 3%;
    height: auto;
    z-index: 9999999999999999;
}
@media screen and (max-width: 768px) {
    .lightbox-container {
        margin-top: 10%;
    }
}
@media screen and (max-width: 414px) {
    .lightbox-container {
        margin-top: 13%;
    }
}
.lightbox-content {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}
.lightbox-close {
    text-transform: uppercase;
    background: transparent;
    position: absolute;
    font-weight: 300;
    font-size: 12px;
    display: block;
    border: none;
    color: white;
    top: -22px;
    right: 3%;
}
.video-container {
    padding-bottom: 56.25%;
    position: relative;
    padding-top: 30px;
    overflow: hidden;
    height: 0;
}
.video-container embed,
.video-container iframe,
.video-container object {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}
/* IGNORE FORM THIS POINT ON */

#playme {
    background: #007fed;
    text-transform: uppercase;
    font-weight: 300;
    border: none;
    color: white;
    padding: 10px 15px;
    display: inline-block;
    font-size: 14px;
    margin: 0;
}
/* 유튜브 마감 */

@media(max-width:991px) {
    #library .wrap {
        margin-bottom: 30px;
        width: 100%;
        position: relative;
    }
    #library .wrap .wiz_content {
        padding-top: 20px;
    }
    #library .lib_padding {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #library .lib_padding.bic {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    /* panner */
    .wiz_panel {
        border: 1px #dcdcdc solid;
        border-radius: 0.8em;
        margin-bottom: 20px;
    }
    .wiz_panel.gray {
        background: #f3f3f3;
        border: 1px #f3f3f3 solid;
    }
    .wiz_panel .title {
        padding: 15px 20px;
        font-weight: 700;
        border-bottom: 1px #dcdcdc solid;
        background-color: #f6f6f6;
        border-top-left-radius: 0.8em;
        border-top-right-radius: 0.8em;
    }
    .wiz_panel .title.white {
        background: #fff;
        border-bottom: 0;

    }
    .wiz_panel h2 {
        font-size: 17px;
    }

    .wiz_panel .content {
        padding: 16px 20px;
    }
    /* wiz_title_bar */
    .wiz_title_bar {
        margin: 40px 0 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #dcdcdc;

    }
    .wiz_title_bar h1,
    .wiz_title_bar h2,
    .wiz_title_bar h3 {
        margin: 0;
        font-weight: 800;

    }
    .wiz_title_bar h1,
    .wiz_title_bar h1 {
        font-size: 42px;
    }
    .wiz_title_bar h2 {
        font-size: 19px;
    }
    .wiz_title_bar h3 {
        font-size: 26px;
    }
    /* wiz_title_bar  end */
    /* media */
    .wiz_midia {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .wiz_midia h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .wiz_midia img {
        width: 100%;
    }
    .wiz_midia.media01 {
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px #dcdcdc solid;
    }

    .wiz_midia.media01 .image {
        width: 100%;
    }
    .wiz_midia.media01 .caption {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    .wiz_midia h2 {
        font-size: 17px;
        margin-bottom: 16px;
    }
    .wiz_midia.media02 {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 0 #dcdcdc solid;
    }
    .wiz_midia.media02 .image {
        width: 100%;
    }
    .wiz_midia.media02 .caption {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    .wiz_midia.media02.even {
        flex-direction: column;
    }
    .wiz_midia.media02.even .caption {
        padding-left: 0;
        padding-right: 0;
    }
    .wiz_midia.media02 .caption h2 {
        font-size: 21px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .wiz_midia.wiz_grid .caption {
        padding-top: 25px;
    }
    .wiz_midia.wiz_grid .caption h2 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .wiz_midia.wiz_grid.row3 .caption,
    .wiz_midia.wiz_grid.row4 .caption,
    .wiz_midia.wiz_grid.row5 .caption,
    .wiz_midia.wiz_grid.row6 .caption {
        font-size: 15px;

    }
    .wiz_midia.wiz_grid .caption h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .wiz_midia.not-border {
        border: 0;
    }
    /* grid system */
    .wiz_grid {
        position: relative;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;

    }
    .wiz_grid.sm-row1 {
        grid-template-columns: repeat(1, 1fr);
    }
    .wiz_grid.sm-row2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .wiz_grid.sm-row3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .wiz_grid.sm-row4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .wiz_grid.sm-row5 {
        grid-template-columns: repeat(5, 1fr);
    }
    .wiz_grid.sm-row6 {
        grid-template-columns: repeat(6, 1fr);
    }

    /* grid system end */

    /* 보조 페이지 UI 디자인 */
    .wiz_page.title_left {
        display: flex;
        flex-direction: column;
    }
    .wiz_page.title_left .title {
        width: 100%;
    }
    .wiz_page.title_left .content {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    .wiz_page.title_right {
        display: flex;
        flex-direction: column;
    }
    .wiz_page.title_right .title {
        width: 100%;
        text-align: left;
    }
    .wiz_page.title_right .content {
        width: 100%;
        padding-right: 0;
        padding-top: 20px;
    }
    .wiz_page .title h2 {
        font-size: 21px;
        font-weight: 700;
    }
    .wiz_page.nomal .title {
        border-bottom: 1px #000 solid;
        padding-bottom: 16px;
    }
    .wiz_page.nomal .content {
        padding-top: 20px;
    }
    code {
        background: #ddd;
        position: relative;
        font-family: 'Roboto', 'Noto Sans KR', sans-serif;
        font-size: 13px;
        padding: 20px;
        border-radius: 1em;
        width: 100%;
    }

    /* 보조 페이지 UI 디자인 마감 */
    #library .btn__wrap {
        overflow-x: auto;
        height: auto;
        padding-bottom: 30px;

    }
    #library .wiz_grid.btn-wrap {
        display: flex;
        justify-content: flex-end;
        flex-wrap: nowrap;
        width: max-content;
        min-width: 100%;
        /* 버튼 개수에 따라 적당히 조정 */

    }
    #library .wiz_grid.btn-wrap .box {
        flex: 0 0 auto;
    }
    /* media end */
    /* 팝업 */
    .overlay-popup {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.7);
        /* transition: opacity 500ms; */
        visibility: hidden;
        opacity: 0;
        z-index: 99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .overlay-popup:target {
        visibility: visible;
        opacity: 1;
    }

    .popup-content {
        /* margin: 70px auto; */
        background: #fff;
        width: 95%;
        position: relative;
        transition: all 5s ease-in-out;
        padding-bottom: 10px;

    }

    .popup-content h2 {
        /* background: linear-gradient(#44474e, #35383f); */
        margin-top: 0;
        color: rgb(51, 51, 51);
        text-align: center;
        font-size: 19px;
        font-family: 'Spoqa Han Sans Neo', 'Nanum Gothic', 'sans-serif';
        line-height: 52px;
        font-weight: 900;
        padding-top: 5px;
        border-bottom: 1px rgb(238, 238, 238) solid;
        padding-top: 13px;
        padding-bottom: 10px;
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
    }

    .popup-content .close {
        position: absolute;
        top: 25px;
        /*    border: 1px #fff solid;*/
        right: 15px;
        transition: all 200ms;
        font-size: 24px;
        font-weight: bold;
        text-decoration: none;
        color: #000 !important;
        opacity: 1;
        text-shadow: none;
        line-height: 0;
        padding: 12px 5px 20px;
    }

    .popup-content .close:hover {
        color: #06D85F;
    }

    .popup-content .content {
        /*  max-height: 30%;*/
        height: auto;
        padding: 25px 20px;
        font-size: 15px;
        overflow-y: auto;
        text-align: center;
    }
    .popup-content .content p .btn-1 {
        background: rgb(182, 13, 13);
        margin-top: 30px;
        width: 160px;
        text-align: center;
        color: #fff;

    }
    .popup-content .content p .btn-1::before {
        background-color: #2b2929;

    }
    .popup-content .content p .btn-1 span {
        color: rgb(255, 255, 255);
        border: 0;
        transition: 0.2s 0.1s;
        padding: 12px 0;
        font-size: 16px;

    }

    .popup-content .content p .btn-1 span:hover {
        color: rgb(255, 255, 255);
        transition: 0.2s 0.1s;
    }

    .popup-content .content p,
    .popup-content .content span {
        /* font-size: 13px; */
    }

    .popup_text_point {
        font-size: 16px;
        font-weight: 600;
        font-weight: 600;
        padding-bottom: 12px;
    }
    /* 팝업 마감 */

}
