

section.base .title_wrapper{
    width: 100%;
}
section.base .title{
    font-weight: 700;
    text-align: center;
    line-height: 1.21;
    font-size: 48px;
}

section.base .filter_wrapper{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: fit-content;
    margin-top: 60px;
}


section.base .filter_list{
    display: flex;
    flex-direction: column;
    height: auto;
}

section.base .filter_list.depth--1{
    width: 230px;
}

section.base .filter_list.depth--2{
    width: 230px;
}
section.base .filter_list.depth--3{
    flex: 1;
}



section.base .filter_title{
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: #333;
    color: #fff;
    width: 100%;
    border: solid 1px #fff;

    font-family: SamsungSharpSans;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
    line-height: 1.38;

    height: 86px;
    padding-inline:20px;
    font-size: 22px;
}


section.base .filter_list_inner{
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #DFDFDF;
    overflow: auto;
    min-height: 368px;
    max-height: 368px;
}
section.base .filter_list_inner {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}
section.base .filter_list_inner::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}
section.base .filter_list_inner .filter_button{
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: #DFDFDF;
    color: #000;
    width: 100%;
    border: solid 1px #fff;
    flex: 1;
    font-family: SamsungOne;
    line-height: 1.38;
    text-align: left;
    
    padding: 15px 20px;
    font-size: 18px;
}
section.base .filter_list_inner .filter_button.active{
    background-color: #f1f1f1;
}
section.base .filter_button_grid_wrapper{
    background-color: #f1f1f1;
    flex: 1;
    width: 100%;
    overflow-y: auto;
    min-height: 368px;
    max-height: 368px;
}

section.base .filter_button_grid_wrapper {
    overflow-y: auto;
    max-height: 300px;
}

section.base .filter_button_grid_wrapper::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

section.base .filter_button_grid_wrapper::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 3px;
}

section.base .filter_button_grid_wrapper::-webkit-scrollbar-track {
    background: transparent;
}


section.base .filter_button_grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 10px;
    padding: 30px 20px;
    box-sizing: border-box;
}

section.base .filter_button_grid .filter_button{
    /* background-color: black; */
    display: flex;
    flex-direction: column;
    justify-content: start;
    min-width: 0; 
    /* height: 46px; */
}

section.base .filter_button_grid .filter_button .custom-checkbox{
    height: fit-content;
    font-family: SamsungOne;
    color: #000;
    line-height: 1.25;
    font-weight: 400;
    font-size: 14px;
}
section.base .filter_button_grid .filter_button .custom-checkbox input[type="checkbox"] + label::before{

    /* transform: scale(80%); */
    /* top: 10px; */
}




section.base .result_table_wrapper{
    width: 100%;
    overflow: auto;
    position: relative;
    /* scrollbar-width: none; */
    line-height: 1.4;
    border-bottom: solid 1px #000;
    margin-top: 20px;
}
section.base .result_table_wrapper::-webkit-scrollbar {
    /* display: none; */
}

.result_table_wrapper table{
    font-family: SamsungOne;
    font-weight: 400;
    width: 1392px;
    font-size: 18px;
}

.result_table_wrapper[data-search-by="TRANSDUCER"]  table{
    width: calc( 1392px * 1.5 );
}

.result_table_wrapper .table_data{
    max-height: 540px;
}
.result_table_wrapper .table_selection{
    position: sticky;
    top: 0;
}
.result_table_wrapper .table_selection table{
    border-top: solid 4px #000;
    border-bottom: solid 2px #000;
    background-color: #fff;
}
.result_table_wrapper .table_selection td{
    background-color: #fefefe;
}

.result_table_wrapper tr{
    border-top: solid 1px #888;
}

.result_table_wrapper tr>*:first-child{
    border-left: none;
}
.result_table_wrapper tr>*:last-child{
    border-right: none;
}
.result_table_wrapper tr:first-child{
    border-top: none;
}
.result_table_wrapper tr:last-child{
}
.result_table_wrapper th,.result_table_wrapper td{
    border-right: solid 1px #eee;
    border-left: solid 1px #eee;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
}
.result_table_wrapper .table_selection th{
    background-color: #fafafa;
}
.result_table_wrapper .table_data th{
    background-color: #fefefe;
}

.check_duplication_area{
    margin-top: 15px;
}
.check_duplication_area .custom-checkbox{
    margin-top: 15px;
    font-size: 18px;
    padding-inline: 22px;
}

.desc_list_box{
    background-color: #F1F1F1;
    font-size: 18px;
    padding: 40px;
    border-radius: 20px;
}

.search_area{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
    padding-inline: 22px;
}
.search_area .search__container{
    width: fit-content;
    padding: 0;
    position: relative;
}
.small_title_area{
    margin-top: 60px;
}
.small_title_area .small__title__box{
    padding-bottom: 0;
}



@media screen and (max-width: 1440px) {


    section.base .title_wrapper{
    }
    section.base .title{
        font-size: 3.33vw;
    }
    
    section.base .filter_wrapper{
        margin-top: 4.16vw;
    }
    
    section.base .filter_list.depth--1{
        width: 15.97vw;
    }
    
    section.base .filter_list.depth--2{
        width: 15.97vw;
    }
    
    section.base .filter_title{
        height: 5.97vw;
        padding-inline:1.39vw;
        font-size: 1.53vw;
    }
    
    section.base .filter_list_inner{
        min-height: 25.56vw;
        max-height: 25.56vw;
    }

    section.base .filter_list_inner::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }
    section.base .filter_list_inner .filter_button{
        padding: 1.04vw 1.39vw;
        font-size: 1.25vw;
    }
    section.base .filter_button_grid_wrapper{
        min-height: 25.56vw;
        max-height: 25.56vw;
    }
    section.base .filter_button_grid{
        gap: 1.39vw 0.69vw;
        padding: 2.08vw 1.39vw;
        box-sizing: border-box;
    }
    
    section.base .filter_button_grid .filter_button .custom-checkbox{
        font-size: 0.97vw;
    }
    section.base .filter_button_grid .filter_button .custom-checkbox input[type="checkbox"] + label::before{
        /* top: 0.69vw; */
    }
    
    section.base .result_table_wrapper{
        margin-top: 1.39vw;
    }
    .result_table_wrapper table{
        width: 96.67vw;
        font-size: 1.25vw;
    }
    .result_table_wrapper[data-search-by="TRANSDUCER"]  table{
        width: calc( 96.67vw * 1.5 );
    }
    
    .result_table_wrapper .table_data{
        max-height: 37.50vw;
    }
    .result_table_wrapper th,.result_table_wrapper td{
        padding: 0.69vw;
    }
    .check_duplication_area{
        margin-top: 1.04vw;
    }
    .check_duplication_area .custom-checkbox{
        margin-top: 1.04vw;
        font-size: 1.25vw;
        padding-inline: 1.53vw;
    }
    
    .desc_list_box{
        font-size: 1.25vw;
        padding: 2.78vw;
        border-radius: 1.39vw;
    }
    
    .search_area{
        margin-top: 1.39vw;
        padding-inline: 1.53vw;
    }
    .small_title_area{
        margin-top: 4.17vw;
    }
    .small_title_area .small__title__box{
        padding-bottom: 0;
    }
}

@media screen and (max-width: 768px) {

    
    section.base .result_table_wrapper{
        width: 100%;
        overflow: auto;
        position: relative;
        scrollbar-width: none;
        line-height: 1.4;
        border-bottom: solid 1px #000;
        margin-top: 20px;
    }
    section.base .result_table_wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .result_table_wrapper table{
        font-family: SamsungOne;
        font-weight: 400;
        width: 1392px;
        font-size: 18px;
    }
    .result_table_wrapper[data-search-by="TRANSDUCER"]  table{
        width: calc( 1392px * 1.5 );
    }
    
    .result_table_wrapper .table_data{
        max-height: 360px;
    }
    .result_table_wrapper .table_selection{
        position: sticky;
        top: 0;
    }
    .result_table_wrapper .table_selection table{
        border-top: solid 4px #000;
        border-bottom: solid 2px #000;
        background-color: #fff;
    }
    .result_table_wrapper .table_selection td{
        background-color: #fefefe;
    }
    
    .result_table_wrapper tr{
        border-top: solid 1px #888;
    }
    
    .result_table_wrapper tr>*:first-child{
        border-left: none;
    }
    .result_table_wrapper tr>*:last-child{
        border-right: none;
    }
    .result_table_wrapper tr:first-child{
        border-top: none;
    }
    .result_table_wrapper tr:last-child{
    }
    .result_table_wrapper th,.result_table_wrapper td{
        border-right: solid 1px #eee;
        border-left: solid 1px #eee;
        font-weight: 700;
        text-align: center;
        vertical-align: middle;
        padding: 10px;
    }
    .result_table_wrapper .table_selection th{
        background-color: #fafafa;
    }
    .result_table_wrapper .table_data th{
        background-color: #fefefe;
    }
    

    section.base .title_wrapper {
        padding-inline: 0;
    }
    section.base .title {
        font-size: 6.52vw;
    }


    section.base .filter_wrapper{
        flex-direction: column;
        width: 100%;
        height: fit-content;
        margin-top: 10.87vw;
        gap: 5.43vw;
    }
    section.base .filter_list.depth--1{
        width: 100%;
    }
    section.base .filter_list.depth--2{
        width: 100%;
    }
    section.base .filter_list.depth--3{
        width: 100%;
    }
    section.base .filter_title{
        height: fit-content;
        border-left: 0;
        border-right: 0;
        padding: 5.43vw;
        font-size: 4.35vw;
    }
    section.base .filter_list_inner{
        height: fit-content;
        min-height: unset;
        max-height: unset;
    }
    section.base .filter_list_inner .filter_button{

        height: fit-content;
        border-left: 0;
        border-right: 0;
        padding: 3.80vw 5.43vw;
        font-size: 4.08vw;
    }
    section.base .filter_button_grid_wrapper{
        overflow-y: auto;
        height: fit-content;
        min-height: unset;
        max-height: unset;
    }
    section.base .filter_list.depth--3 .filter_button_grid_wrapper{
        overflow-y: auto;
        height: 121.74vw;
        min-height: 121.74vw;
        max-height: 121.74vw;
    }
    section.base .filter_button_grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.72vw;
        padding: 5.43vw;
        box-sizing: border-box; /* 패딩을 포함한 크기 계산 */
        overflow: hidden; /* 가로 스크롤을 숨김 */
    }
    section.base .filter_button_grid .filter_button{
    
        font-size: 3.80vw;
    }
    section.base .filter_button_grid .filter_button .custom-checkbox{
        font-size: 3.80vw;
    }
    .search_area{
        flex-direction: column;
        gap: 5.43vw;
        align-items: center;
        padding-inline: 0;
    }

    section.base .filter_button_grid .filter_button .custom-checkbox input[type="checkbox"] + label::before {
        /* top: 2.72vw; */
    }
    .check_duplication_area{
        margin-top: 4.08vw;
    }
    .check_duplication_area .custom-checkbox{
        font-size: 3.80vw;
        padding-inline: 0;
    }
    .check_duplication_area .custom-checkbox input[type="checkbox"] + label::before {
        
        top: 2.72vw;
    }
    .desc_list_box {
        font-size: 4.08vw;
        padding: 5.43vw;
        border-radius: 5.43vw;
    }
}