@charset "utf-8";

/*
상단 신청 단계표기
*/
.topStepInfo {
    display: flex;
    justify-content: center;
}

.topStepInfo ul {
    display: flex;
    align-items: center;
}

.topStepInfo ul > li {
    padding: 0;
    margin: 0;
}

.topStepInfo ul li {
    display: flex;
    align-items: center;
}

.topStepInfo .title {
    font-weight: 900;
    font-size: 22px;
    margin-right: 20px;
}

/*
배송단계 화살표 표시
*/
.steps {
    display: flex;
    list-style-type: none;
    padding: 0;
}

.steps li {
    margin-bottom: 3px;
    text-align: center;
}

.steps li a,
.steps li p {
    width: 160px;
    background: #e5f4fd;
    padding: 10px;
    margin: 0;
    color: #0366e7;
    display: block;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    text-indent: 12px;
}

.steps li a:hover,
.steps li p:hover {
    text-decoration: none;
}

.steps li a:before,
.steps li p:before {
    border-bottom: 17px solid transparent;
    border-left: 10px solid #fff;
    border-top: 17px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    margin-top: -17px;
}

.steps li a:after,
.steps li p:after {
    border-bottom: 17px solid transparent;
    border-left: 10px solid #fff;
    border-top: 17px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    /*right: -12px;*/
    left: 100%;
    top: 50%;
    width: 0;
    margin-top: -17px;
    z-index: 1;
}

/*
활성화 좌우 삼각형 배경/색상
*/
.steps li.active a,
.steps li.active p {
    background: #0366e7;
    color: #fff;
}

/*
활성화 좌우 삼각형 모양 넓이
*/
.steps li.active a:after,
.steps li.active p:after {
    border-left: 10px solid #0366e7;
}

/*
비활성화 좌우 삼각형 배경/색상
*/
.steps li.undone a,
.steps li.undone p {
    background: #eee;
    color: #333;
}

/*
비활성화 좌우 삼각형 모양 넓이
*/
.steps li.undone a:after,
.steps li.undone p:after {
    border-left: 10px solid #eee;
}

/* 비활성화 폰트 색상*/
.steps li.undone p {
    color: #aaa;
}

/*
단계별 타이틀 
*/
.step_title {
    font-family: "Noto Sans KR";
    background-color: #212020;
    padding: 10px;
    color: #fff;
    font-size: 15px;
    border-bottom: 1px solid #212020;
}
.step_title > span {
    font-weight: 900;
}

.step_title > span > span {
    font-size: 24px;
    color: #e6cba8;
    margin-right: 10px;
}

/*
단계별 영역
*/
.step_content {
    border: 1px solid #f3f3f3;
    padding: 10px;
}

.step_content h1 {
    font-size: 22px;
    font-family: "Noto Sans KR";
    padding: 10px 0;
}

.content_overflow {
    height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ccc;
    padding: 5px;
}

.step_content label {
    padding: 5px 0 0 0;
}
.step_content label > span {
    color: #ff0000;
}

.small_info {
    font-size: 12px;
}

/*
센터 선택
*/
.centerWrap {
    display: flex;
}

.centerWrap li {
    justify-content: space-between;
    width: calc(100% / 4);
    padding: 2px;
}

.centerWrap label {
    position: relative;
    display: block;
    border: 1px solid #4e5257;
    padding: 10px 30px;
    text-align: center;
    cursor: pointer;
}

.centerWrap label.titles {
    font-size: 1.7rem;
}

.centerWrap label > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.centerWrap label > span {
    display: block;
    font-size: 1rem;
}
.centerWrap label img {
    height: 25px;
}

.centerWrap input[type="radio"] {
    position: absolute;
    top: 0px;
    left: 0;
    visibility: hidden;
}

.centerWrap input[type="radio"]:hover + label {
    background: #4e5257;
    border: 1px solid #4e5257;
    color: #fff;
}

.centerWrap input:checked + label,
.centerWrap input[type="radio"]:checked:hover + label {
    background: #4e5257;
    border: 1px solid #4e5257;
    color: #fff;
}

.centerWrap input + label::after {
    position: absolute;
    left: 5%;
    top: 50%;
    border: 1px solid;
    width: 17px;
    height: 17px;
    transform: translateX(15px) translateY(-50%);
    content: "";
    font-family: "Font Awesome\ 5 Free";
    font-size: 1.2rem;
}

.centerWrap input:checked + label::before {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateX(15px) translateY(-50%);
    content: "\f00c";
    font-family: "Font Awesome\ 5 Free";
    font-size: 1.2rem;
    font-weight: 900; /* Fix version 5.0.9 */
}

/*
상품정보 관련
*/
.item_wrap {
    margin-bottom: 10px;
}
.item_wrap .item-title {
    background-color: #4e5257;
    color: #fff;
    text-align: center;
    width: 100px;
    padding: 5px 10px;
    margin: 0;
    font-size: 16px;
    border: 1px solid #4e5257;
    border-width: 1px 1px 0 1px;
    border-radius: 5px 5px 0 0;
}
.itemBox {
    display: table;
    width: 100%;
    border: 1px solid #4e5257;
    border-top: 2px solid #4e5257;
    padding: 10px;
}
.itemBox > * {
    display: table-cell;
    padding: 5px;
    vertical-align: top;
}

.itemBox > :first-child {
    width: 200px;
    text-align: center;
    border: 1px solid #ccc;
}
.itemBox > :last-child {
    padding: 0 5px !important;
}
.img_infos li {
    padding: 2px 0;
}

/*
폼테이블
*/
.tbl_wrap {
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px !important;
}

.tbl_wrap table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0 5px;
    background: #fff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.tbl_wrap caption {
    padding: 10px 0;
    font-weight: bold;
    text-align: left;
}

.tbl_frm02 table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.tbl_frm02 table .input_box,
.tbl_frm02 table .select_box {
    padding: 3px;
    font-size: 12px;
}

.tbl_frm02 th {
    position: relative;
    width: 130px;
    border: 1px solid #e9e9e9;
    border-left: 0;
    background: #f3f3f3;
    text-align: left;
    padding: 0 15px;
    vertical-align: middle;
}

.tbl_frm02 th > span {
    display: block;
    background: transparent;
    height: 100%;
    color: rgb(87, 28, 28);
}

.tbl_frm02 td {
    padding: 8px 10px;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    background: transparent;
    vertical-align: middle;
}

.dot_red {
    position: relative;
    float: right;
    color: red !important;
    right: 5px;
    font-size: 14px;
}

.pic_add_btn,
.pic_add_btn_layer {
    padding: 5px 10px !important;
    font-size: 12px;
    font-weight: normal;
    background-color: coral !important;
    color: #fff;
}

.box_plus_btn {
    padding: 2px 5px !important;
    background-color: coral !important;
    color: #fff;
    border-radius: 5px;
}

.item_plus_btn {
    padding: 10px 30px !important;
    background-color: #4e5257 !important;
    color: #fff;
    border-radius: 5px;
}

.del_item {
    background-color: coral;
    color: #fff;
    padding: 2px 10px;
    border: 0;
}

/*
상품 사진 테이블
*/
.pic_table table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.pic_table th {
    padding: 10px;
    background-color: #f3f3f3;
    color: #4e5257;
    border-top: 2px solid #4e5257;
    border-bottom: 1px solid #4e5257;
    text-align: center;
}

.pic_table td {
    font-size: 12px;
    padding: 10px;
    border: 1px solid #ccc;
    border-width: 1px 0;
}

.pic_table td:first-child {
    width: 200px;
    border-width: 1px 1px 1px 0;
    background-color: #f3f3f3;
}

.drop_file_zone {
    margin-top: 5px;
    width: 100%;
    height: 50px;
    background-color: #f3f3f3;
    padding: 5px;
}

.drop_file_zone.drop-ative {
    outline: 3px solid coral;
}

/*
hs_code 레이어
*/
.hs_table table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.hs_table th {
    padding: 10px;
    background-color: #f3f3f3;
    color: #4e5257;
    border-top: 2px solid #4e5257;
    border-bottom: 1px solid #4e5257;
    text-align: center;
}

.hs_table td {
    width: 50%;
    height: 200px;

    font-size: 12px;
    padding: 10px;
    border: 1px solid #ccc;
    border-width: 1px 0;
    vertical-align: top;
}

.hs_table td:first-child {
    border-right: 1px solid #f3f3f3;
}

.hs_table td > div {
    width: 100%;
    height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

.tong_list ul {
    marign: 0;
    padding: 0;
}

.tong_list li {
    padding: 10px 10px 10px 0;
    border-bottom: 1px dotted #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tong_list li span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 70%;
}

.notice_info {
    font-size: 12px;
    color: blueviolet;
    margin: 0;
    padding: 0;
}

.hs_code_title {
    display: block;
    height: 30px;
    border: 1px solid #ccc;
    padding: 5px !important;
    width: 100%;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*
가격 합계 노출 부분
*/
.price_info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.price_info li {
    display: flex;
    margin-left: 20px;
    font-size: 12px;
}
.price_info li .input_box {
    padding: 3px !important;
}
.price_info li .price_info_title {
    font-weight: 900;
}
.price_info li .price_info_input {
    padding-left: 10px;
}
.total_price {
    display: block;
    font-weight: 900;
    font-size: 12px;
}
.total_price span {
    padding-left: 20px;
    font-size: 20px;
    color: coral;
    line-height: 20px;
}

/*
물류센터 클릭시 주소 표시 부분
*/
.addrss_info {
    /*border: 1px solid #4e5257;*/
    padding: 5px;
}

.addrss_info table {
    margin-top: 10px;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.addrss_info th {
    width: 120px;
    padding: 5px;
    background-color: #f3f3f3;
    border: 1px solid #e9e9e9;
    border-width: 1px 1px 1px 0px;
    text-align: center;
}

.addrss_info td {
    position: relative;
    font-size: 12px;
    padding: 5px 0 5px 10px;
    border: 1px solid #e9e9e9;
    border-width: 1px 0;
    vertical-align: top;
}

/*
hs_code 레이어 -> 선택버튼
*/
.hscode_add_btn {
    border-radius: 5px;
    padding: 5px 8px !important;
    background-color: orange !important;
    color: #fff !important;
}

/*
이젅 진행 버튼
*/
.prev_step_btn {
    color: #fff;
    padding: 10px 20px !important;
    border: 0;
    border-radius: 5px;
}

/*
다음 진행 버튼
*/
.next_step_btn {
    background-color: coral !important;
    color: #fff;
    padding: 10px 20px !important;
    border: 0;
    border-radius: 5px;
}

/*
숨기기
*/
.hidden-block {
    display: none;
    opacity: 0;
}

.hidden-block-block {
    animation: fade-in 0.5s;
    animation-fill-mode: forwards;
    display: block;
}

.hidden-block-none {
    animation: fade-out 0.2s;
    animation-fill-mode: forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.notice_ol {
    padding-left: 20px;
}
.notice_ol li {
    list-style: none;
    margin-left: 0;
    padding-bottom: 15px;
    padding-left: 10px;
    font-size: 0.8rem;
}

.notice_ol li {
    counter-increment: li;
}

.notice_ol li::before {
    content: counter(li);
    color: #0366e7;
    display: inline-block;
    width: 1.2em;
    font-size: 1rem;
    margin-left: -1.5em;
    margin-right: 0.5em;
    text-align: right;
    direction: rtl;
}
