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

#base_wrap>div:not(.landing_container, #login_wrap) {
    padding: 16px;
}

#base_wrap>#main_wrap>div[class$="_container"] {
    margin: 0 auto;
}

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

#base_wrap>div.request_height {
    height: calc(100% - 318px);
}

.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;
}

/* main_color */
#base_wrap .main_color .orange_fill {
    background-color: #FF6B00;
}

#base_wrap .main_color .orange_font {
    color: #FF6B00;
}

#base_wrap .main_color .orange_line {
    border: 1px solid #FF6B00;
}

#base_wrap .main_color .btn_orange_fill {
    background-color: #FF6B00;
    color: #fff;
}

#base_wrap .main_color .btn_orange_border {
    border: 1px solid #FF6B00;
    color: #FF6B00;
    background-color: #fff;
}

.no_visible {
    display: none;
}

/* button */
#base_wrap .btn_default {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 700;
}

#base_wrap .btn_round {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 700;
    border-radius: 50px;
}

#base_wrap .btn_squircle {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 700;
    border-radius: 5px;
}

#base_wrap .btn_gap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0 16px;
}

#base_wrap .btn_gap i {
    font-weight: 400;
}

#base_wrap .btn_shortcut {
    position: relative;
}

#base_wrap .btn_shortcut .icon_img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
}

#base_wrap .btn_request {
    display: block;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #FF6B00;
    font-size: 20px;
    font-weight: 700;
    color: #FF6B00;
    box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.25);
    background-color: #fff;
}

#base_wrap .btn_request.active {
    background-color: #FFF0E6;
}


/* textarea */
#base_wrap textarea {
    width: 100%;
    padding: 12px 16px;
    color: #222;
    background-color: #FFFFFF;

}

#base_wrap textarea::placeholder {
    color: #9E9E9E;
}

#base_wrap textarea:disabled {
    background-color: #F8F8F8;

}

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

    #base_wrap>div.adjust_height {
        min-height: calc(100% - 379px);
    }

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

}

/* mobile */
@media screen and (max-width: 767px) {
    /* body {
        height: calc(100vh + 1px);
    } */

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

    #base_wrap>div.request_height {
        min-height: calc(100% - 250px);
        height: auto;
    }

    #base_wrap .btn_gap {
        gap: 0 8px;
    }

    #base_wrap .btn_request {
        font-size: 14px;
    }
}

#base_wrap .main_color .messege_complete {
    color: #1A9D40;
}

#base_wrap .main_color .messege_error {
    color: #F64E60;
}