.brojlist {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.brojlist-top .brojlist-information{
    color: white;
    font-size: 13pt;
    font-weight: 400;
    margin-left: 10px;
}

.brojlist ::-webkit-scrollbar {
    width: 13px;
    height: 13px;
}

.brojlist ::-webkit-scrollbar-thumb {
    background: rgba(203, 203, 203, 0.62);
    border-radius: 15px;
}

.brojlist .brojlist-container {
    width: 100%;
    overflow: scroll;
    background: #363636;
}
/*scroll 없애는 css*/
#brojlist-container-overflow-hidden{
    overflow: hidden;
}

.brojlist .brojlist-container .brojlist-table {
    width: 100%;
    cursor:pointer;
    font-size:10pt;
    margin-bottom:10px;
    text-align: center;
    border-collapse:collapse;
    background: #363636;
    border: 1px solid #4e4e4e;
}
.brojlist .brojlist-container .brojlist-table a {
    background: none;
}
.brojlist .brojlist-container .brojlist-table tr {
    height: 35px;
    width: 100%;
    display: table;
    position: relative;
}

.brojlist .brojlist-container .brojlist-table tr > td > .tr-cancel-line {
    position: absolute;
    top: calc(50% - 1px);
    height: 2px;
    left: 0;
    background: brown;
    width: 100%;
}

.brojlist .brojlist-container .brojlist-child-mini-popup{
    position: absolute;
    width: max-content;
    height: max-content;
    border-radius: 3px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5), 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    background-color: #4a4a4a;
    z-index: 1;
}

.brojlist .brojlist-container .brojlist-child-mini-popup > div{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: NotoSansKR,sans-serif;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
    padding: 0px 12px 0px 10px;
    height: 42px;
    cursor: pointer;
}
.brojlist .brojlist-container .brojlist-child-mini-popup > div:hover{
    background: #5c5c5c;
}
.brojlist .brojlist-container .brojlist-table .brojlist-table-thead {
    border-radius: 5px 5px 0px 0px;
    position: relative;
    top: 0px;
    z-index: 2;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.brojlist .brojlist-container .brojlist-table .brojlist-table-thead, .brojlist-table-tbody {
    display: block;
    box-sizing: border-box;
}
.brojlist .brojlist-container .brojlist-table .brojlist-table-thead .sort-btn {
    width: 16px;
    height: 16px;
    margin-left: 5px;
    margin-bottom: -2px;
    border: none;
    min-width: auto;
}
.sort-btn-normal {
    content: url("images/sort.png");
}
.sort-btn-desc {
    content: url("images/desc.png");
}
.sort-btn-asc {
    content: url("images/asc.png");
}
.brojlist .brojlist-container .brojlist-table .brojlist-table-thead th {
    color:#fff;
    border: 1px solid #4e4e4e;
    box-sizing: border-box;
    text-align: center;
}

.brojlist .brojlist-container .brojlist-table .brojlist-table-thead .brojlist-thead{
    min-width: 100px;
    text-align: center;
}

.brojlist .brojlist-container .brojlist-table .brojlist-table-tbody {
    /*height: 100%;*/
    /*min-height: max-content;*/
    overflow-y: auto;
    overflow-x: hidden;
}
.brojlist .brojlist-container .brojlist-table .brojlist-table-tbody tr:hover {
    /*color: rgb(250, 100, 0) !important;*/
    background-color: #414141;
}

.brojlist .brojlist-search {
    min-width: 130px;
    position: absolute;
    background: #000000;
    font-size: 10pt;
    color: white;
    padding: 9px;
    border-radius: 5px;
    width: 220px;
    z-index: 2;
}

.brojlist .brojlist-search:hover {
    /*opacity: 0.6;*/
}

.brojlist .brojlist-search input {
    padding-left: 5px;
    font-size: 10pt;
    height: 30px;
    width: 96%;
    border: none;
    outline: none;
    margin: 0px !important;
    border-radius: 5px;
    float: left;
}

.brojlist .brojlist-search select {
    width: 40%;
    margin-left: 3%;
    cursor: pointer;
    outline: none;
    font-size: 10pt;
    color: black;
    height: 29px;
    background: white;
    border-radius: 0px;
    border: none;
}

.brojlist .brojlist-search .drag-img {
    float: left;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    margin-top: 4px;
    cursor: grab;
}

.brojlist .brojlist-search .advance-img {
    height: 18px;
    width: 18px;
    position: absolute;
    right: 0px;
    top: 13px;
    cursor: pointer;
    content: url(/submodules/common/jlib/JList/images/more_icon_w.png);
}

.brojlist .brojlist-search .advance-img:hover {
    content : url('/submodules/common/jlib/JList/images/more_icon_f.png');
}

.brojlist .brojlist-search .advanced-search {
    content : url('/submodules/common/jlib/JList/images/more_icon_f.png');
}

.brojlist-top {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: auto;
    position: relative;
}

.brojlist-top .brojlist-search-area {
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.brojlist-top .brojlist-category-area {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.brojlist-top .brojlist-category-area .active {
    pointer-events: none;
    font-size: 14pt;
    color: #ffffff;
    border: none;
    padding: 0px;
    min-width: 100px;
    width: auto;
    border-bottom: 2px solid #ff6200;
}

.brojlist-top .brojlist-category-area .active b {
    font-size: 18pt;
    font-weight: 400;
}

.brojlist-top .brojlist-category-area h3 {
    text-align: center;
    width: 100px;
    height: 35px;
    font-family: NotoSansKR, sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -1.08px;
    color: #797979;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 108px;
    cursor: pointer;
    box-sizing: border-box;
}

.brojlist-top .brojlist-category-area h3 b {
    font-size: 12pt;
    font-weight: 400;
    margin-right: 5px;
}

.brojlist-top .brojlist-category-area h3:hover {
    color: #dedede;
}

.brojlist-top .brojlist-search-area .custom-btn, .brojlist-top .brojlist-multiple-area .custom-btn{
    height: 36px;
    width: auto;
    background: #2E2E2E;
    border-radius: 4px;
    border: 1px solid #222222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

.brojlist-top .brojlist-search-area .custom-btn a,.brojlist-top .brojlist-multiple-area .custom-btn a {
    color: #89898b;
    font-size: 12px;
    font-weight: 400;
}

.brojlist-top .brojlist-search-area .custom-btn img,.brojlist-top .brojlist-multiple-area .custom-btn img {
    height: 17px;
    width: 14px;
}

.brojlist-top .brojlist-search-area .custom-btn input,.brojlist-top .brojlist-multiple-area .custom-btn input {
    width: 80% !important;
    outline: none;
    border: none;
    background: #2E2E2E;
    height: 24px;
    color: white;
    margin-left: 10px;
}

.brojlist-top .brojlist-category-area .advanced-search {
    background: #000000;
}

.brojlist-loader {
    float: left;
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #1b1b1b;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#brojlist-export-table {
    display: none;
}

#brojlist-export-table tr td {
    color: black !important;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.brojlist-td-data,.brojlist-export-not{
    text-overflow: ellipsis;
    overflow: hidden;
    /*text-indent:5px;*/
    border-bottom:1px solid #4e4e4e;
    border-left:1px solid #4e4e4e;
    box-sizing: border-box;
}

.brojlist-export-not{
    min-width: 40px;
}
.brojlist-export-not.table-check-box-wrap {
    width: 40px !important;
}

.brojlist-td-data{
    min-width: 100px;
    padding: 0px 6px;
    box-sizing: border-box;
    position: relative;
    /*white-space: nowrap;*/
}

.brojlist-td-data .td-inner-container{
    width: 95%;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.brojlist-td-data .td-inner-select{
    width: max-content;
    border: none;
    outline: none;
    display: inline-block;
    height: 100%;
    background: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    text-align-last: center;
}
.brojlist-td-data .td-inner-btn{
    width: max-content;
    height: max-content;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 6px 12px;
    border: none;
    outline: none;
}
.brojlist-td-data .td-inner-underline-label{
    /*width: max-content;*/
    width: 100%;
    height: 34px;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 6px 0px;
    border: none;
    outline: none;
    text-decoration: underline;
    color: #3B99F5;
}
.brojlist-td-data .td-inner-input{
    width: 100%;
    border: none;
    outline: none;
    display: inline-block;
    height: 100%;
    background: none;
    color: white;
    text-align: right;
}

.brojlist-td-data .td-inner-click-string:hover {
    text-decoration: underline;
}

.td-inner-btn .mini-popup:before {
    content: "";
    border: none;
}

.td-inner-btn .mini-popup:after {
    content: "";
    border: none;
}

.td-inner-btn .mini-popup {
    /*right: -30px;*/
    /*top: -21px;*/
    flex-direction: column;
    /*width: inherit;*/
    top: calc(100% - 53px);
    width: 100%;
    align-items: baseline;
}

.td-inner-btn .mini-popup .mini-popup-row {
    font-size: 13px;
    width: 100%;
    text-align: center;
}

.td-inner-btn .mini-popup .mini-popup-row:hover {
    color: #ff6200;
    background-color: black;
}

.brojlist-table{
    table-layout: fixed;
}

.sort-list-area{
    position: absolute;
    display: flex;
    width: auto;
    height: auto;
    border: 1px #737373 solid;
    background: #2E2E2E;
    color: white;
    border-radius: 5px;
    flex-direction: column;
}

.sort-list-area .filter-list-item, #filter-list-reset-item{
    display: flex;
    width: 90px;
    height: 25px;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    background: rgb(46, 46, 46);
    padding: 3px 0;
    cursor: pointer;
}

.sort-list-area .filter-list-item:hover,#filter-list-reset-item:hover{
    background: rgb(92, 92, 92);
}

#brojlist-background-area{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.brojlist-checkbox{
    position: relative;
    left: -2px;
}

.brojlist .nav-var-area {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 40px;
    justify-content: flex-start;
    line-height: 40px;
}

.brojlist-top .right-btn {
    float: right;
    height: 36px;
    width: auto;
    background: #2E2E2E;
    padding: 0px 15px 0px 15px;
    border-radius: 4px;
    margin-left: 5px;
    border: 1px solid #222222;
}

.brojlist-top .right-btn.search-area{
    position: absolute;
    right: 0px;
    width: 200px;
    box-sizing: border-box;
    background: #4a4a4a;
}

.brojlist-top .right-btn img {
    height: 20px;
    float: left;
    width: 18px;
}

.brojlist-top .right-btn input {
    width: 80% !important;
    outline: none;
    border: none;
    background: #4a4a4a;
    border-bottom: 1px solid #cccccc;
    height: 24px;
    color: white;
    margin-left: 10px;
}

.brojlist-top .brojlist-search-area .product-select {
    margin-right: 10px;
    margin-bottom: 3px;
    padding: 3px;
    border-radius: 3px;
    background-color: #4a4a4a;
    color: white;
    border: none;
    min-height: 26px;
}


.open-btn {
    position: absolute;
    z-index: 3;
    font-weight: 800;
    width: 66px;
    height: 26px;
    border-radius: 5px;
    background: url(./images/open_btn.png);
    background-size: 100% 100%;
}

.open-btn:active{
    background: url("./images/open-active.png");
    background-size: 100% 100%;
}

.broj-package-board{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.broj-package-board .flex-box{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.broj-package-board .broj-package-top{
    display: flex;
    width: 100%;
    height: 45px;
    justify-content: space-between;
    align-items: flex-start;
}

.broj-package-board .broj-package-top .broj-package-main-btn{
    /*width: 110px;*/
    width: 120px;
    height: 45px;
    border-radius: 3px 3px 0px 0px;
    font-family: NotoSansKR,sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    outline: none;
    border: none;
    background: none;
    color: white;
}
.broj-package-board .broj-package-top .broj-package-main-btn.active{
    /*color: #8cbcfa;*/
    background-color: #222;
}
.broj-package-board .broj-package-top .broj-package-side-btn + .broj-package-side-btn{
    margin-left: 6px;
}
.broj-package-board .broj-package-top .broj-package-side-btn.gray{
    background: #4a4a4a;
    color: #fff;
}
.broj-package-board .broj-package-top .broj-package-side-btn.white{
    background: #fff;
    color: #3b99f5;
}

.broj-package-board .broj-package-body{
    width: 100%;
    height: calc(100% - 45px);
    padding: 10px 15px;
    border-radius: 0px 3px 3px 3px;
    background-color: #222;
}
.brojlist-top > .brojlist-multiple-area{
    height: 34px;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin-bottom: 12px;
}

.brojlist-top > .brojlist-multiple-area > .multiple-left-area{
    width: max-content;
    height: max-content;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.brojlist-top > .brojlist-multiple-area > .multiple-right-area{
    width: max-content;
    height: max-content;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.brojlist-top > .brojlist-multiple-area .input-container{
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    height: 36px;
    width: max-content;
    background: #4A4A4A;
    padding: 0px 12px;
    border-radius: 3px;
    border: none;
    color: white;
}

.brojlist-top > .brojlist-multiple-area .input-container > input{
    width: calc(100% - 25px);
    outline: none;
    border: none;
    background: none;
    height: 24px;
    color: white;
    margin-left: 10px;
}

.brojlist .history-product-category-button{
    padding: 0px;
    background: inherit;
    color: white;
    overflow: auto !important;
}