table {
    width: 600px;
    margin: auto;
}
.content-wrapper {
    font-family: 'Poppins';
    line-height: normal;
}
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}
#wrapper {
  flex: 1;
  width: 100%;
  max-width: 640px;
}
.hr-thin {
    height: 2px;
    background-color: #efefef;
    margin-left: -10px;
    margin-right: -10px;
}
.step {
  display: none;
  padding: 30px 30px 60px;
}
.step.active {
  display: block;
}
.step-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
  /* sticky button 을 위한 스타일 */
  position: sticky;
  left: 0;
  bottom: 0;
  padding: 10px 0;
  backdrop-filter: blur(10px);
  /* sticky button 을 위한 스타일 */
}
.step-buttons button {
  flex: 1;
}
.step-title-icon {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 10px;
}
.step-title {
  font-weight: bold;
  font-size: 15px;
}
.step-icon {
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
}
.step-subtitle {
  font-weight: 600;
}
.step-content {
}

.component-title {
    font-size: 13px;
    margin-bottom: 5px;
}

.btn {
    background-color: #4C1F8D;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
}
.book-button {
    width: 235px;
    height: 62px;
    border-radius: 8px;
    background-color: #512772;
    font-size: 24px;
    letter-spacing: -1.92px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

#priceContainer,
#priceContainer2 {
    background-color: #F8F8F8;
    padding: 10px;
}
#priceContainer .price-template-wrapper,
#priceContainer2 .price-template-wrapper {
    margin-bottom: 10px;
}
#priceContainer .price-template-wrapper .price-template-estimated-cost,
#priceContainer2 .price-template-wrapper .price-template-estimated-cost {
    display: none !important;
}
#priceContainer .price-template-wrapper .weight-numeric,
#priceContainer .price-template-wrapper .volume-numeric,
#priceContainer .price-template-wrapper .price-numeric,
#priceContainer2 .price-template-wrapper .weight-numeric,
#priceContainer2 .price-template-wrapper .volume-numeric,
#priceContainer2 .price-template-wrapper .price-numeric {
    font-size: 13pt;
}
#priceContainer .box-volume,
#priceContainer2 .box-volume {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}
#priceContainer .box-volume .volume-numeric,
#priceContainer2 .box-volume .volume-numeric {
    width: 27%;
}
#priceContainer .box-volume .volume-multiplier,
#priceContainer2 .box-volume .volume-multiplier {
    width: 10px;
    line-height: 32px;
    text-align: center;
}
#priceContainer .box-volume input,
#priceContainer2 .box-volume input {
    width: 70px;
}
#step1 .btn-next-step {
}
#step1 .step-buttons {
    width: 100%;
    padding: 10px;
    position: fixed;
    bottom: 0;
    right:0;
    backdrop-filter: blur(10px);
}
#step1 .step-buttons .btn-next-step {
    width: 100%;
}

#senderContainer .phone {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 5px;
}
#senderContainer .phone .phone-dash {
    width: 10px;
    line-height: 32px;
    text-align: center;
}
#senderContainer .phone input {
    width: 75px;
}

#senderContainer .email input {
    width: 50%;
    float: left;
}

#receiverContainer .phone {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 5px;
}
#receiverContainer .phone .phone-dash {
    width: 10px;
    line-height: 32px;
    text-align: center;
}
#receiverContainer .phone input {
    width: 75px;
}
#receiverContainer .email input {
    width: 50%;
    float: left;
}

#contentContainer #addedHscodeList {
    width: 100%;
    margin-bottom: 10px;
}
#contentContainer #addedHscodeList .addedHscode {
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}
#contentContainer #addedHscodeList .addedHscode:nth-child(even) {
    background-color: #F1F1F1;
}
#contentContainer #addedHscodeList .addedHscode .addedHscodeRow {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    padding: 5px 0;
}
#contentContainer #addedHscodeList .addedHscode .addedHscodeRow.borderBottom {
    border-bottom: 1px solid #dfdfdf;
}
#contentContainer #addedHscodeList .addedHscode .addedHscodeRow .addedHscodeTitle {
    width: 160px;
    color: #64633A;
}
#contentContainer #addedHscodeList .addedHscode .addedHscodeRow .addedHscodeTitle .addedHscodeIndex {
    background-color: #512772;
    line-height: 24px;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 5px;
    color: white;
    margin-bottom: 5px;
}
#contentContainer #addedHscodeList .addedHscode .addedHscodeRow .addedHscodeContent {
    width: calc(100% - 160px);
    text-align: left;
}
#contentContainer #addedHscodeList .addedHscode .addedHscodeRow .addedHscodeContent.right {
    text-align: right;
}
#contentContainer #addedHscodeList .addedHscode .addedHscodeRow .addedHscodeContent .addedHscodeDeleteBtn img {
    height: 24px;
    width: 24px;
}
#contentContainer .searchHscodeForm {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}
#contentContainer .searchHscodeForm div {
    width: 10px;
}
#contentContainer .searchHscodeForm #btnSearchHscode {
    width: 80px;
}
#contentContainer .currencyForm {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}
#contentContainer .currencyForm select {
    width: 80px;
}
#contentContainer .currencyForm div {
    width: 10px;
}
#step4 .btn-next-step {
    display: none;
}

.step1-content .title-image {
    background: url(https://emc-resources.s3.ap-northeast-2.amazonaws.com/iss/iss_step1_image1.png) no-repeat;
    background-size: cover;
    width: 100%;
    aspect-ratio: 960/600;
    position: relative;
    border-radius: 10px;
    margin-bottom: 10px;
}
.step1-content .title-image .img-title {
    color: white;
    font-weight: 600;
    position: absolute;
    bottom: 60px;
    left: 30px;
    font-size: 22pt;
}
.step1-content .title-image .img-title2 {
    color: white;
    font-weight: 600;
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 22pt;
}
.step1-content .title {
    margin: 10px 0 10px 0;
    font-weight: bold;
    font-size: 14pt;

}
.step1-content .sub-title {
    margin: 20px 0 10px 0;
    font-weight: bold;
    font-size: 13pt;

}
.step1-content .content-body {
    margin-bottom: 10px;
}
.step1-content .content-body-bold {
    font-weight: bold;
    margin-bottom: 10px;
}
.step1-content .content-image1 {
    background: url(https://emc-resources.s3.ap-northeast-2.amazonaws.com/iss/iss_step1_image2.png) no-repeat;
    background-size: cover;
    width: 100%;
    aspect-ratio: 960/570;
    position: relative;
    border-radius: 10px;
    margin-bottom: 10px;
}
.step1-content .btn-list-available-countries {
    height: 32px;
    font-size: 11px;
    line-height: 32px;
    padding: 0 20px !important;
}
.step1-content .divider {
    width: 100%;
    height: 1px;
    background-color: #DADADA;
}
.step1-content .arrow-bullet {
    margin-top: 20px;
    display: inline-block;
    font-weight: normal;
    color: #ffffff;
    background-color: #C7C34D;
    border-radius: 2px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}
.step1-content .content-body button {
    font-weight: normal;
    padding: 10px 20px;
}
.step1-content .content-body-flex {
    display: flex;
    margin-bottom: 30px;
}
.step1-content .content-body-flex .bullet-image {
    width: 40px;
    height: 40px;
}
.step1-content .content-body-flex .bullet-image img {
    height: 40px;
    width: 40px;
}
.step1-content .content-body-flex .sub-contents {
    padding-left: 20px;
}
.step1-content .content-body-flex .sub-contents .sub-contents-title {
    color: #5B3890;
    font-size: 10pt;
}
.step1-content .content-body-flex .sub-contents .sub-contents-sub-title {
    font-weight: bold;
}
.step1-content .content-body-flex .sub-contents .sub-contents-title2 {
    font-weight: bold;
}
.step1-content .shaded-wrapper {
    background-color: #F8F8F8;
    padding: 10px;
}

#bookingSummaryContainer {
    background-color: #F3F3F3;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}
#bookingSummaryContainer .bookingSummaryTitle {
    background-color: #4B296D;
    color: white;
    font-size: 10pt;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px 0;
    text-align: center;
}
#bookingSummaryContainer .summary-table {
    table-layout: fixed;
}
#bookingSummaryContainer table th {
    color: #7F7F7F;
}
#bookingSummaryContainer table th.summaryRowSubtitle {
    color: #4B296D;
    height: 40px;
}
#bookingSummaryContainer .summaryHscodeContent {
    border: 1px solid #D9D9D9;
    background-color: white;
    border-radius: 10px;
}
#bookingSummaryContainer .summaryHscodeContent tr {
    border-bottom: 0px !important
}


.section {
    padding: 80px;
    margin: 10px 0 20px 0;
}
.section .section-title {
    font-size: 35px;
    letter-spacing: -1.92px;
    color: #050505;
}

.section .section-subtitle {
    font-weight: bold;
    color: #4C1F8D;
    font-size: 20px;
    letter-spacing: -1.28px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.concept-service-description {
    font-size: 16px;
    letter-spacing: -1.28px;
    padding-top: 16px;
}

.concept-button-wrapper {
    margin-top: 32px;
    width: 100%;
    display: flex;
}

.book-button-outline {
    width: 301px;
    height: 62px;
    border-radius: 8px;
    border: solid 2px #512772;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: -1.92px;
    color: #512772;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-button-outline:focus, .book-button-outline:hover {
    color: #512772;
}

.section.notice {
    letter-spacing: normal;
}

.section-container {
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.delivery table td {
    padding: 10px;
}

.delivery-description {
    text-align: left;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    line-height: 23px;
    font-size: 14px;
    color: #777777;
}

.tracking {
    background-color: #f2f2f2;
}

.tracking .section-subtitle {
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 18px;
}

.how-to-upload {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.camera-icon {
    width: 30px;
    margin-right: 5px;
}

.how-to-upload-list {
    margin-top: 20px;
}

.bullet-number {
    width: 18px;
    margin-right: 5px;
}

.how-to-upload-item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 30px;
}

.tracking-image-box {
    border-radius: 20px;
    border: 2px solid #512772;
    display: inline-block;
    padding: 0 50px;
    margin-top: 20px;
}

.luggage-image {
    width: 200px;
    margin-right: 50px;
}

.luggage-tag-image {
    width: 130px;
}

.notice-container-list {
    width: 832px;
}

.red {
    color: #d71111;
}

.bold {
    font-weight: bold;
}

.semi-bold {
    font-weight: 500;
}

.strikethrough-icon {
    width: 84px;
    height: 6px;
}

.notice-container {
    text-align: left;
}

.notice-container:not(:first-child) {
    margin-top: 80px;
}

.notice-title {
    font-size: 24px;
    font-weight: bold;
    color: #050505;
    margin-bottom: 16px;
}

.notice-title-icon {
    width: 18px;
    margin-right: 5px;
}

.notice-list {
    margin-top: 16px;
}

.notice-block-title {
    font-size: 15px;
    margin-bottom: 16px;
    margin-top: 20px;
}

.notice-block-content {
    display: flex;
    flex-direction: row;
    margin-bottom: 5px;
}

.notice-block-bullet-number {
    width: 15px;
    height: 15px;
    margin-top: 3px;
    margin-right: 5px;
}

.notice-block-text {
    font-size: 14px;
    color: #777777;
}

.notice-list-item {
    border-bottom: 1px solid #bebebe;
    padding: 24px 0;
    font-size: 18px;
    color: #050505;
    cursor: pointer;
    position: relative;
}

.notice-list-item:after {
    position: absolute;
    width: 48px;
    height: 48px;
    right: 32px;
    top: 50%;
    content: "";
    transform: translate(0, -50%);
    background: url("/images/icd/ic_arrow_down-37b683e3ace0f9b9e30ff217788d00da.svg") no-repeat;
    background-size: 48px 48px;
}

.notice-list-item.active:after {
    position: absolute;
    width: 48px;
    height: 48px;
    right: 32px;
    top: 50%;
    content: "";
    transform: translate(0, -50%);
    background: url("/images/icd/ic_arrow_up-25bdc94908dea9d1ccd990cbd920dddc.svg") no-repeat;
    background-size: 48px 48px;
}

.notice-list-item-content {
    background-color: #fbfbfb;
    padding: 32px 24px 30px 16px;
    display: none;
}

.notice-list-item-content.active {
    display: block;
}

.notice-list-item-content-title {
    font-size: 14px;
    font-weight: bold;
    color: #050505;
}

.notice-list-item-content-title:not(:first-child) {
    margin-top: 40px;
}

.notice-list-item-content-list {
    margin-top: 12px;
}

.notice-list-item-content-list-item {
    margin-top: 6px;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: #6d6d6d;
}

.notice-list-item-content-list-item:before {
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 10px;
    content: "";
    transform: translate(0, -50%);
    background: url("/images/icd/icon-checklist-29f495faddcde66f21939094443cc7c9.svg") no-repeat;
    background-size: 16px 16px;
}

.notice-list-item-content-body {
    font-size: 13px;
    color: #6d6d6d;
    margin-top: 8px;
}

.notice-others {
    width: 832px;
    padding: 32px 46px 38px 32px;
    background-color: #f6f4f8;
}

.notice-others-body {
    display: flex;
}

.notice-others-body-icon {
    align-items: center;
    display: flex;
}

.notice-others-body-text {
    margin-left: 32px;
}

.notice-others-body-title {
    font-size: 14px;
    font-weight: bold;
    color: #512772;
}

.notice-others-body-content {
    font-size: 14px;
    color: #6d6d6d;
    margin-top: 8px;
}

.notice-button-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
}

.restriction-items {
    padding: 30px 14px; border: 0.5px solid #ae9abd; border-radius: 10px; margin-top: 40px; position: relative; color: black;
}

.restriction-items-title {
    color: white;
    background-color: #512772;
    display: inline-block;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 10px;
}

.restriction-items-body {
    text-align: center;
}

.restriction-items-body-notice {
    font-size: 12px;
}

.restriction-items-body-notice-description {
    margin-top: 20px; font-size: 10px; margin-bottom: 30px;
}

.restriction-item {
    display: flex; flex-direction: row; align-items: center; margin: 14px 11px 0;
}

.restriction-item-icon-background {
    background-color: white;
    width: 55px;
    height: 55px;
    border-radius: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.restriction-item-icon-image {
    width: 50px;
}

.restriction-item-content {
    text-align: left; margin-left: 24px; width: 100%;
}

.restriction-item-name {
    font-size: 12px; color: #050505;;
}

.restriction-item-description {
    font-size: 11px; color: #0f0d0e; word-break: keep-all;
}

.booking_container {
    min-width: 1040px;
    overflow: hidden;
}

.target {
    border: 2px solid #512772;
    border-radius: 15px;
    position: relative;
    margin-top: 30px;
    padding: 30px 20px 20px;
    text-align: left;
}

.target-title {
    border: 2px solid #512772;
    border-radius: 20px;
    display: inline-block;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 5px 10px;
    color: #512772;
}

.target-item {
    font-size: 15px;
}

.highlighter {
    background: linear-gradient(to top, #fdd8d8 30%, transparent 30%);
}

.mobile {
    display: none;
}

.pc {
    display: block;
}

.center-button-wrapper {
    margin-top: 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-button-wrapper .btn-terminal-instruction {
    margin: 10px;
    padding: 10px 20px;
    font-size: 18px;
}

@media (max-width:1039px) {
    .mobile {
        display: block;
    }

    .pc {
        display: none;
    }

    table {
        width: 100%;
    }

    .booking_container {
        min-width: 360px;
    }

    .tab {
        font-size: 18px;
        width: 83px;
        padding-top: 12px;
        line-height: 16px;
    }

    .section-title {
        font-size: 24px;
        letter-spacing: -1.44px;
        font-weight: bold;
    }

    .section-subtitle {
        font-size: 20px;
        letter-spacing: -1.12px;
        margin-bottom: 0;
        margin-top: 0;
    }

    .concept-service-description {
        font-size: 20px;
        letter-spacing: -1.12px;
        margin-top: 30px;
    }

    .book-button {
        width: 100%;
        height: 50px;
        font-size: 16px;
        letter-spacing: -1.28px;
        font-weight: normal;
        margin: auto;
    }

    .concept-button-wrapper {
        margin: 30px auto 0;
        width: 80%;
        justify-content: center;
    }

    .concept-image {
        max-width: 372px;
        margin: 30px auto 0;
        flex: none;
        padding: unset;
    }

    .concept-image img {
        width: 100%;
    }

    .section {
        padding: 20px 20px;
    }

    .process-list {
        padding-top: 30px;
        flex-direction: column;
    }

    .process-list-item {
        flex-direction: row;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        border: 0.5px solid #ae9abd;
        padding: 10px 45px 10px 10px;
    }

    .process-list-item-text-wrapper {
        margin-top: 0;
        margin-left: 10px;
        text-align: left;
    }

    .process-list-item-text {
        font-size: 16px;
        letter-spacing: -1.28px;
    }

    .process-list-item-text2 {
        font-size: 16px;
        letter-spacing: -1.28px;
    }

    .process-list-item img {
        height: 80px;
        margin: 10px;
    }

    .process-list-arrow {
        flex: 1;
        margin-top: 0;
    }

    .process-list-arrow img {
        width: 11px;
    }

    .operation-image {
        margin-top: 24px;
    }

    .operation-image img {
        width: 100%;
    }

    .operation-description {
        width: unset;
        padding: 16px 16px 26px;
    }

    .operation-description-content {
        display: flex;
    }

    .operation-description-content:not(:first-child) {
        margin-left: unset;
        margin-top: 18px;
    }

    .operation-description-content-icon {
        margin-right: 8px;
    }

    .operation-description-content-icon img {
        width: 14px;
        vertical-align: baseline;
    }

    .operation-description-content-title {
        font-size: 14px;
        letter-spacing: -1.12px;
        font-weight: bold;
    }

    .operation-description-content-body {
        font-size: 12px;
        letter-spacing: -0.96px;
    }

    .book-button-outline {
        font-size: 18px;
        letter-spacing: -1.44px;
        height: 50px;
        width: 100%;
    }

    .price .section-container {
        z-index: 1;
    }

    .price-info {
        margin-top: 22px;
    }

    .price-info-table {
        font-size: 13px;
    }

    .strikethrough-icon {
        width: 60px;
        margin-bottom: 0;
    }

    .after-price-text {
        font-size: 15px;
    }

    .column-head-text {
        font-size: 13px;
    }

    .column-head-text-wrapper {
        padding: 4px 8px;
        border-radius: 0 3px 3px 0;
    }

    .small-bag-icon {
        width: 20px;
    }

    .big-bag-icon {
        width: 20px;
    }

    .discount-info-text {
        font-size: 17px;
    }

    .discount-description {
        font-size: 14px;
        text-align: left;
    }

    .tracking .section-subtitle {
        font-size: 17px;
        word-break: keep-all;
    }

    .how-to-upload-item {
        font-size: 17px;
        justify-content: unset;
    }

    .tracking-image-box {
        padding: 0 30px 0 20px;
    }

    .luggage-image {
        width: 160px;
        margin-right: 15px;
    }

    .luggage-tag-image {
        width: 100px;
    }

    .notice-container-list {
        width: 100%;
    }

    .notice-title {
        font-size: 18px;
        display: flex;
        align-items: center;
    }

    .notice-list-item {
        font-size: 14px;
        padding: 16px 0;
    }

    .notice-list-item:after {
        width: 32px;
        height: 32px;
        right: 0;
        background-size: 32px 32px;
    }

    .notice-list-item.active:after {
        width: 32px;
        height: 32px;
        right: 0;
        background-size: 32px 32px;
    }

    .notice-list-item-content {
        margin: 0 -16px;
        padding: 24px 16px;
    }

    .notice-list-item-content-title:not(:first-child) {
        margin-top: 30px;
    }

    .notice-others {
        width: 100%;
        padding: 16px;
    }

    .notice-others-body-icon {
        margin-top: 6px;
        align-items: flex-start;
    }

    .notice-others-body-icon img {
        width: 32px;
    }

    .notice-others-body-text {
        margin-left: 16px;
    }

    .notice-others-body-content {
        font-size: 12px;
        margin-top: 12px;
    }

    .notice-button-wrapper {
        margin: 32px 14px 0;
    }

    .target-item {
        font-size: 17px;
    }
}

@media screen and (max-width: 575px) {
    .how-to-upload-item {
        align-items: flex-start;
        text-align: left;
    }

    .disabled-person .bullet-number {
        margin-top: 6px;
    }
    .step1-content .title-image .title {
        width: 150px;
    }
}
