/* pc */
#base_wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
}

/* 화면 100% 맞춰서 높이 조절 */
#base_wrap>div.adjust_height {
    min-height: calc(100% - 82px);
}

.scroll-lock {
    overflow-y: hidden;
}

.scroll-no {
    /* 인터넷 익스플로러 스크롤바 삭제 */
    -ms-overflow-style: none;
    /* 파이어폭스 스크롤바 삭제 */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

/* ( 크롬, 사파리, 오페라, 엣지 ) 스크롤바 삭제 */
.scroll-no::-webkit-scrollbar {
    /* 가로 스크롤바 숨기기 */
    width: 0;
    /* 세로 스크롤바 숨기기 */
    height: 0;
    display: none;
}

/* 텍스트 ... 처리 */
.text_reduce {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* tablet */
@media screen and (max-width: 1023px) {

    /* 화면 100% 맞춰서 높이 조절 */
    #base_wrap>div.adjust_height {
        min-height: calc(100% - 82px);
    }
}

/* mobile */
@media screen and (max-width: 767px) {

    /* 화면 100% 맞춰서 높이 조절 */
    #base_wrap>div.adjust_height {
        min-height: calc(100% - 82px);
    }
}