html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    user-select: none;

}
p, h1, h2, h3, h4, h5, h6, span, .selectable-text {
    user-select: text;
}

:root {
    --red: #ED1C24;
    --black: #000000;
    --orange: #FC9501;
    --primary: #37AEE2;
    --success: #27AE60;
    --white: #FFFFFF;
}
.displaynone {
    display: none;
}

.required {
    color: var(--red);
}
.order-wrap {
    padding: 16px 20px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.heading {
    position: relative;
}

.order-wrap .heading h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: var(--black);
    margin-bottom: 15px;
}
.order-wrap .logo {
    width:65%;
}

.order-wrap .heading p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--black);
    margin-bottom: 5px;
}
.shop_info {
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top:1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
}

.shop_info .copy_url {
    right: 0;
    top: 18px;
    border: 0;
    outline: 0;
    background-color: transparent;
    padding: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:50%;
    border:1px solid #ccc;
    width: 80px;
    height: 80px;
}
.shop_logo > img {
    width:100%;
    height:100%;
    border-radius: 50%;
    object-fit: cover;
}

.shop_social {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.social-icon {
    display: inline-block;
}

.social-icon img {
    width: 30px;
    height: 30px;
    object-fit: cover;

}

.lang-container {
    padding-bottom:8px;
}

.lang-container .button-redirect {
    display: flex;
    justify-content: center;
    align-items: center;
    /* 인라인 블록 요소로 변경 */
    background-color: #2F80ED;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    /* 기본 높이를 사용하도록 변경 */
    color: #fff;
    height: 40px;
    /* 내용에 맞게 자동 조정 */
    text-decoration: none;
    text-align: center;
    width: 150px;
    max-width: 100%;
    /* margin: auto; */
}

.no-avatar {
    background: #ccc;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.shop_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    width: 72%;
}

.shop_content > p {
    padding: 3px;
    margin: 0;
    word-break: break-all;
}
.shop_content .shop_name {
    font-weight: bold;
}

.shop_content .shop_name a{
    color: black;
}

.shop_address {
    color: #aaa;
    font-size: 12px;
    margin-bottom: 0.5em;
}
.shop_btn > a {
    text-decoration: none;
    border-radius: 5px;
    font-size:11px;
    padding: 8px;
    border: 1px solid rgba(252, 149, 1, 1);
    color: rgba(252, 149, 1, 1);
}
.shop_btn > a:hover {
    background: rgba(252, 149, 1, 1);
    color : #ffffff;
    transition: all 0.3s ease-in;
}

.form-label-group {
    margin-bottom: 20px;
}

.label-group {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: var(--black);
    margin-bottom: 10px;
}

.input-group-verify {
    position: relative;
    display: none;
}

input.form-control {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--black);
    padding: 14px 16px;
    background: #F2F2F2;
    border: none;
    border-radius: 12px;
}

select.form-control {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--black);
    padding: 14px 16px;
    background: #F2F2F2;
    border-radius: 12px;
    position: relative;
    border: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.orderform-note {
    margin-bottom: 80px;
}

textarea#note {
    height: 110px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--black);
    padding: 16px;
    border: none;
    resize: none;
    border-radius: 12px;
    background: #F2F2F2;
}

select.form-control {
    background: url("/images/icons/select.svg") no-repeat right rgba(232, 232, 232, 0.3) !important;
    -webkit-appearance: none;
    background-position-x: calc(100% - 16px) !important;
}

input.form-control::placeholder,
textarea#note::placeholder {
    color: rgba(33, 33, 33, 0.5);
}

.btn__check-icon {
    position: absolute;
    border-radius: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    text-align: center;
    line-height: 0;
    border: none;
    border-radius: 8px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group-verify.code-verify {
    margin-top: 8px;
}

.btn__check-icon.code-verify {
    background: #37aee2;
    color: #ffffff;
    padding: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

#btn_check_verify {
    display: none;
}

.d-block {
    display: block;
}

#error-message,
#sent-message {
    display: none;
}

.btn__check-icon.not-verify {
    background: var(--primary);
}

.btn__check-icon.wait-verify {
    background: #fc9501;
    opacity: 0.5;
}

.btn__check-icon.verified {
    background: var(--success);
}

.verified .check-icon-verify, .check-icon-verified {
    display: none;
}

.verified .check-icon-verified {
    display: block;
}

.check-icon-verify {
    width: 20px;
    height: 20px;
}

.iti__selected-flag {
    padding: 0;
    background: transparent !important;
}

.iti {
    width: 100%;
}

.iti__arrow {
    display: none;
}

.iti__flag {
    display: none;
}

.iti__selected-dial-code {
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #212121;
    padding: 13px 16px;
    border-right: 1px solid #ccc;
}

.iti {
    display: flex;
    align-items: center;
    width: 100%;
}

.iti__separate-dial-code {
    margin-right: 10px;
}


.iti__selected-flag {
    position: relative;
    cursor: pointer;
}

.iti__arrow {
    display: block;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    pointer-events: none;
}
.iti__input {
    padding-left: 15px;
}

.products-category-container {
    margin: 10px 0;
}

.category-btn {
    display: inline-block;
    background-color: #f0f0f0;
    border-radius: 20px;
    padding: 5px 10px;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.category-btn.active {
    background: rgba(252, 149, 1, 1);
    color: #fff;
}
.category-btn:hover {
    background: rgba(252, 149, 1, 1)!important;
    color: #fff!important;
}

.id-product {
    width: 54px;
    height: 54px;
    border-radius: 8px;
}

.id-product img {
    cursor: pointer;
}

.content-product {
    width: calc(100% - 172px);
}

.quantity-product {
    width: 100px;
    position: absolute;
    height: 44px;
    right: 0;
}

.quantity-product input {
    width: 100%;
}

.quantity-product input:focus {
    outline: none;
}

table.table-products tr {
    height: 60px;
}

table.table-products td {
    padding: 0 !important;
}

.id-product {
    margin-right: 16px;
}

.name-product {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: var(--black);
    margin-bottom: 4px;
}

.description-product {
    color: #808083;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wrap-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-product {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: var(--red);
}
.three-column-grid .wrap-price {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: unset;
}
.retail-price-product {
    color: rgba(60, 60, 67, 0.60);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: line-through;
}

.price-product span {
    color: var(--black);
    font-weight: 400;
}

.qty-product {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: var(--black);
}

img.qty-minus {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto;
    left: 3px;
    cursor: pointer;
}

input.input-text.qty-product {
    height: 42px;
    font-size: 18px;
    border: none;
    border-radius: 20px;
    padding: 0 24px;
    text-align: center;
    background-color: rgba(252, 149, 1, 0.1);
}

img.qty-plus {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    margin: auto;
    right: 3px;
    cursor: pointer;
}

.list-product {
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px dashed rgba(97, 97, 97, 0.3);
    padding-bottom: 16px;
    gap: 16px;
}

/* start css productDetailModal */
#productDetailModal .close {
    position: absolute;
    background-color: transparent;
    border-radius: 50%;
    z-index: 99999999999999;
    cursor: pointer;
    right: 14px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    outline: none !important;
    border: none !important;
}

#productDetailModal .wrap-price {
    justify-content: center;
}

#productDetailModal .wrap-price #modal-reatil-price{
    text-decoration: line-through;
}

 /* Style radio buttons */
.payment-wrap input[type="radio"],.pay_info input[type="radio"]  {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(252, 149, 1, 1);
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.type-payment {
    display: flex;
    align-items: center;

}

/* Style checked radio button */
.payment-wrap input[type="radio"]:checked,.pay_info input[type="radio"]:checked {
    background-color: rgba(252, 149, 1, 1);
}
#modal-additional-footer-payment > input {
    display: none;
}
#modal-additional-footer-payment > div:last-child {
    width: 100% !important;
    display: block !important;
}

#modal-additional-footer-payment > div:last-child img {
    width: 100% !important;
    max-width: 100% !important;
}

#modal-additional-footer-payment > .box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px dashed rgba(97, 97, 97, 0.3);
    margin-bottom: 16px;
    padding-bottom: 10px;
}
/* Style radio button dot */
.payment-wrap input[type="radio"]:checked::before,.pay_info input[type="radio"]:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    display: block;
}

.payment-wrap .list-group-item .qr-payment img {
    max-width: 100px;
    border-radius: 5px;
}

.payment-wrap  .error-form {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 5px;
}

#productDetailModal .close i {
    font-size: 2rem;
    color: #dee2e6;
}

#productDetailModal .modal-content {
    /*border: 1px solid #FC9501;*/
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

#productDetailModal .modal-body::-webkit-scrollbar {
    width: 7px;
}

#productDetailModal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    /* Adjust the border-radius as needed */
}

#productDetailModal .modal-body::-webkit-scrollbar-thumb {
    background: #FD7513;
    border-radius: 10px;
    /* Adjust the border-radius as needed */
}

#productDetailModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #FD7513;
}

#productDetailModal .modal-body {
    padding: 33px !important;
    text-align: center;
}

#productDetailModal #modal-avatar {
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    width: 300px;
    max-height: 300px;
    border: 1px solid #efefef;
}

#productDetailModal #modal-name {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

#productDetailModal #modal-price {
    color: #C83434;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#productDetailModal #modal-description {
    color: #848484;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

#productDetailModal #modal-price>span {
    color: #000 !important;
}

/* end css productDetailModal */

.btn-sorting {
    float: right;
}

.btn-sorting button {
    overflow: hidden;
    position: relative;
    float: left;
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    font-size: 1px;
    line-height: 0;
    color: transparent;
    padding: 0;
    border: 0;
    outline: 0;
    cursor: pointer;
    background: transparent;
}

.btn-sorting #twoColumnGrid,.btn-sorting #threeColumnGrid {
    margin-left:6px;
}

.btn-sorting button:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.btn-sorting #oneColumnGrid:before {
    background-image: url('/images/icons/list-icon.svg');
}

.btn-sorting #oneColumnGrid.selected:before {
    background-image: url('/images/icons/list-icon-active.svg');
}

.btn-sorting #twoColumnGrid:before {
    background-image: url('/images/icons/grid-icon-01.svg');
}
.btn-sorting #twoColumnGrid.selected:before {
    background-image: url('/images/icons/grid-icon-01-active.svg');
}
.btn-sorting #threeColumnGrid:before {
    background-image: url('/images/icons/grid-icon-02.svg');
}
.btn-sorting #threeColumnGrid.selected:before {
    background-image: url('/images/icons/grid-icon-02-active.svg');
}


.two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.list-product.two-column-grid .item-product {
    flex-direction: column;
    margin: 0 auto;
    justify-content: unset;
    float: left;
    vertical-align: top;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    width: 100%;
    box-sizing: border-box;
    align-items: unset;
    max-width: 355px;
}

.list-product.two-column-grid .item-product .id-product {
    width: 100%;
    height: auto;
}

.list-product.two-column-grid .item-product .id-product img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 355px;
    object-fit: cover;
}

.list-product.two-column-grid .item-product .content-product {
    width:100%;
    padding-left: 3px;
    margin: 8px 0;
}

.list-product.three-column-grid .item-product {
    flex-direction: column;
    margin: 0 auto;
    justify-content: unset;
    float: left;
    vertical-align: top;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    width: 100%;
    box-sizing: border-box;
    align-items: unset;
    max-width: 232px;
}

.list-product.three-column-grid .item-product .id-product {
    width: 100%;
    height: auto;
}

.list-product.three-column-grid .item-product .id-product img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.list-product.two-column-grid .item-product .quantity-product, .list-product.three-column-grid .item-product .quantity-product{
    position: relative;
    margin: 0 auto;
    width: 70%;
    height: 48px;
    margin-top: 5px;
}
.list-product.two-column-grid .item-product .quantity-product img.qty-minus{
    width: 30px;
    left: 15px;
}

.list-product.two-column-grid .item-product .quantity-product img.qty-plus {
    width: 30px;
    right: 15px;
}

.list-product.three-column-grid .item-product .quantity-product img.qty-minus{
    left: 15px;
}

.list-product.three-column-grid .item-product .quantity-product img.qty-plus {
    right: 15px;
}

.list-product.three-column-grid .item-product .content-product {
    width:100%;
    margin: 4px 0 8px 0;
}

.name-product, .description-product, .price-product {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.item-product {
    display: flex;
    position: relative;
    flex-direction: row;
    /*justify-content: space-between;*/
    padding: 0px;
    margin: 8px 0px;
    align-items: center;
    width: 100%;
    min-height: 48px;
}
.item-product.disable {
    /*opacity: 0.2;*/
    cursor: not-allowed;
}

.item-product.disable .id-product img {
    opacity: 0.2;
}
.item-product.disable .quantity-product {
    opacity: 0.2;
}

.item-product.disable .content-product {
    opacity: 0.2;
}

.order-summary-container {
    color: var(--black);
    position: relative;
    margin-top: 18px;
}

.order-summary {
    border-bottom: 1px dashed rgba(97, 97, 97, 0.3);
    padding-bottom: 16px
}

.order-summary-title {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: var(--black)
}

.modal-order-summary-title {
    font-size: 20px;
}

.order-summary-item {
    display: flex;
    margin-top: 23px;
    align-items: center;

}

.order-summary-item .product-quantity {
    color: rgba(252, 149, 1, 1);
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 40px;
}

.order-summary-item .product-title {
    margin-left: 12px;
    width: calc(100% - 172px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}

.order-summary-item .product-line-price {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    /*color:var(--red);*/
    position: absolute;
    right: 0;
}

.order-summary-item .product-line-price .price-symbol {
    color: var(--black);
    font-weight: 400;
}

.payment-box {
    background: #F2F2F2;
    padding: 10px;
    border: none;
    border-radius: 12px;
    margin-top: 10px;
}

/*.payment-box .sub-total-box, .payment-box .shipping-total-box,.payment-box .tax-fee-box,.payment-box .total-box {*/
/*    padding: 10px 0;*/
/*}*/



#orderForm .sub-total-box,.tax-fee-box {
    border-bottom: 1px dashed rgba(97, 97, 97, 0.3);
    /*padding-bottom: 16px;*/
}
.free-shipping-remaining-box {
    text-align: right;
    border-bottom: 1px dashed rgba(97, 97, 97, 0.3);
    font-size: 14px;
}
.total-box {
    margin-top: 10px;
}

.sub-total-box,
.tax-fee-box,
.total-box,
.amount-box,.shipping-fee-box,
.default-shipping-fee-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sub-total-box .sub, .total-box .total, .order-summary-label,.default-shipping-fee-box .sub, .tax-fee-box .sub {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: var(--black);
}

.order-summary-box {
    margin: 0;
}

.default-shipping-fee-box, .tax-fee-box {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: right;
}

/*.total-box .total {*/
/*    color: var(--black);*/
/*    margin-bottom: 8px;*/
/*}*/

.sub-total-box .total, .default-shipping-fee-box, .shipping-fee-box .total, .tax-fee-box {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    padding : 10px 0;

    /*color: var(--red)*/
}

.sub-total-box .total span, .order-summary-box .total span{
    color: var(--black);
    font-weight: 400;
}

.amount-box .amount {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: var(--red);
}

/*.amount-box .amount span,.default-shipping-fee-box .total span, .tax-fee-box .total span, .payment-box .total span {*/
/*    color: var(--black);*/
/*    font-weight: 400;*/
/*}*/

.form-label-group.address-box {
    padding-top: 16px;
}

.cbx-type-buy {
    width: 16px;
    height: 16px;
    left: 0;
    top: 2px;
}

.label-type-buy {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #212121;
}

.radio-item {
    display: inline-block;
    position: relative;
    padding: 0 0px;
    margin: 8px 0 0;
}

.radio-item input[type="radio"] {
    display: none;
}

.radio-item label {
    color: #666;
    font-weight: normal;
}

.radio-item label:before {
    content: " ";
    display: inline-block;
    position: relative;
    top: 5px;
    margin: 0 10px 0 0;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid #616161;
    background-color: transparent;
}

.radio-item input[type="radio"]:checked+label:after {
    background-image: url("/images/icons/checkmark.svg");
    position: absolute;
    top: 5px;
    left: 0;
    content: " ";
    display: block;
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
}

.btn_main {
    width: 100%;
    border-radius: 6px;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    background: rgba(252, 149, 1, 1);
    color: #fff;
    border: none;
    padding: 17px 0;
    height: 56px;
}

.btn_main:disabled,
.btn__check-icon:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.note {
    font-size: 14px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.4);
}

.payment-wrap {
    width: 100%;
    /* margin-bottom: 32px; */
}

.title-payment {
    text-align: left;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    color: #212121;
    margin-bottom: 8px;
}

.payment-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px dashed rgba(97, 97, 97, 0.3);
    margin-bottom: 10px;
    padding-bottom: 10px;
    align-items: center;
}

.payment-item input {
    flex-shrink: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #F3F3F3;
    border-radius: 8px;
    margin-right: 13px;
}

.payment-item input[type="checkbox"]:checked::before {
    content: "\2713";
    color: #fff;
    background-color: rgba(41, 45, 50, 1);
    border-radius: 8px;
    width: 24px;
    height: 24px;
    font-size: 0.8em;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-item .box {
    flex: 1;
    display: flex;
    align-items: center;
}

.type-payment {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #212121;
    width:100%;
    text-align: left;
    margin-top: 8px;
}

.info-payment {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0px;
    gap: 8px;
    width: 100%;
}

.icon-copy-temp {
    width: 28px;
    height: 28px;
    margin-right: 16px;
}

.error-form {
    margin-top: 7px;
    display: inline-block;
    color: #dc3545;
}

.info-payment .acc-payment,
.info-payment .name-payment {
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #616161;
}

.icon-success-order {
    width: max(142px, 50%);
    max-width: 142px;
    margin-bottom: 32px;
    transform: rotate(-10.61deg) translateX(-50%);
    position: relative;
    left: 50%;
}

.body {
    text-align: left;
}

.thank-order {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #616161;
    text-align: left;
    margin-top: 36px;
}

#verify_otp .modal-dialog {
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#verify_otp .modal-title {
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    color: #000000;
}

#verify_otp p,
#verify_otp input {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #000000;
}

#verify_otp input {
    background: #FFFFFF;
    border: 0.5px solid rgba(60, 60, 67, 0.29);
    border-radius: 5px;
    width: 100%;
    height: 25px;
    padding: 0 10px;
}

#verify_otp p {
    margin-bottom: 12px;
}

#verify_otp .modal-content {
    background: rgba(242, 242, 242, 0.8);
    backdrop-filter: blur(11px);
    border-radius: 14px;
    max-width: 270px;
}

#verify_otp :is(.modal-header, .modal-body, .modal-footer) {
    border: none;
    padding: 0;
}

#verify_otp .modal-header {
    padding: 12px 16px 4px;
}

#verify_otp .modal-body {
    padding: 0px 16px 12px;
}

#verify_otp .btn-secondary,
#verify_otp .btn-primary {
    background: none;
    color: #007AFF;
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    border: none;
    margin: 0;
    padding: 11px 41px;
    border-radius: unset;
}

#verify_otp .btn-primary {
    font-weight: 600;
    border-left: 0.5px solid rgba(60, 60, 67, 0.36);
}

#verify_otp .modal-footer {
    border-top: 0.5px solid rgba(60, 60, 67, 0.36);
}

.id-product img {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    object-fit: cover;
}


/* New custom order */
.order-type-content .order-type-content-item {
    display: none;
}

.order-type-content .order-type-content-item.active {
    display: block;
}

.order-type {
    display: flex;
    margin: 0 -4px;
    margin-bottom: 15px;
}

.order-type button svg {
    margin-bottom: 5px;
}

.order-type button {
    flex: 1;
    margin: 0 4px;
    padding: 12px 14px;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: rgba(252, 149, 1, 0.1);
    border-radius: 12px;
}

.order-type button span {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #212121;
    opacity: 0.3;
}

.order-type button.active {
    background-color: rgba(252, 149, 1, 1);
}

.order-type button.active span {
    opacity: 1;
    color: #FFFFFF;
}

.order-type button.active svg path {
    fill: #FFFFFF;
}

.order-type button.active svg g {
    opacity: 1;
}

.order-type-content label {
    /*font-weight: 400;*/
    /*font-size: 16px;*/
    /*line-height: 21px;*/
    /*color: var(--black);*/
}

.order-type-content .content-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.order-type-content .number_people input {
    height: 100%;
    border: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: var(--black);
}

#contact, #delivery {
    margin-top: 20px;
}

.address_finder_container {
    margin-top: -17px;
    text-align: right;
}

#KRaddressSearchButton {
    display: inline-block;
    padding: 0.5em 1em;
    margin: 0.4em 0.15em;
    border: 1px solid #ccc;
    border-color: #dbdbdb #d2d2d2 #b2b2b2 #d2d2d3;
    cursor: pointer;
    color: #464646;
    border-radius: 0.2em;
    vertical-align: middle;
    font-size: 1em;
    line-height: 1.25em;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#f2f2f2));
}

#KRAddressLayer {
    position: fixed; /* 고정 위치 */
    top: 50%;       /* 상단에서 50% 위치 */
    left: 50%;      /* 좌측에서 50% 위치 */
    transform: translate(-50%, -50%); /* 정 중앙 정렬 */
    width: 80%;     /* 너비 설정, 필요에 따라 조정 */
    height: 80%;    /* 높이 설정, 필요에 따라 조정 */
    border: 1px solid #ccc; /* 테두리 스타일링 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* 그림자 효과 */
    z-index: 1000;  /* 다른 요소 위에 표시 */
    max-width:500px;
}



.order_time {
    display: flex;
}

.order_time select:focus,
.order-type-content .number_people input:focus {
    outline: none;
}

.order_time select {
    /* width: 53px !important; */
    height: 48px;
    background: #F2F2F2;
    border-radius: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.5);
    border: none;
    -webkit-appearance: none;
    text-align: left;
    padding-left: 5px;
}

.reserve_time {
    width: 90px;
}

.btn_phone {
    border: none;
    background: var(--orange);
    border-radius: 8px;
    padding: 14px 8px;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    width: 100%;
}


/* Custom message box */
.message {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.message.success {
    color: #27AE60;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid #27AE60;
}

.message svg {
    margin-right: 10px;
}

.message.error {
    color: rgba(237, 28, 36, 1);
    border: 1px solid rgba(237, 28, 36, 1);
    background: rgba(237, 28, 36, 0.1);
}

.order-type-content {
    padding-bottom: 24px;
}
#pickup select.form-control{
    max-width: 167px;
    padding-right: 35px;
}
#pickup .form-label-group {
    margin-bottom: 0;
}
.address_pickup  {
    margin-bottom: 10px;
}
.address_pickup p {
    margin-bottom: 5px;
}
.address_pickup .place {
    font-weight: bold;
}
.pickup_group {
    margin-top: 18px;
}

.payment-point-item input {
    flex-shrink: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    background: #F3F3F3;
    border-radius: 8px;
    margin-right: 13px;
}

.payment-point-item input[type="checkbox"]:checked::before {
    content: "\2713";
    color: #fff;
    background-color: rgba(41, 45, 50, 1);
    border-radius: 8px;
    width: 24px;
    height: 24px;
    font-size: 0.8em;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-info-noti{
    color:var(--red);
    font-size: 12px;
}

.nav-link {
    color: black;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: white;
    background-color: #fc9501;
}
.nav-tabs .nav-link {
    background-color: #F2F2F2;
    border-bottom: var(--bs-nav-tabs-border-width) solid #fc9501;

}

.nav-tabs{
    border-bottom: var(--bs-nav-tabs-border-width) solid #fc9501;
}

.nav{
    --bs-nav-link-hover-color: #fc9501;
}

.lang-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: fit-content;
    z-index:99;
    right: 0;
}

.lang-text {
    text-transform: uppercase;
}

.navbar-nav li.lang{
    margin: 10px;
}
.navbar-nav li>a.lang-inner{
    padding: 0px;
}
.navbar-nav .dropdown-menu{
    text-align: center;
    transform: translate(0%, 3%) !important;
    top: unset !important;
    left: unset !important;
    position : fixed;
}

.mobile_menu .navbar-nav .dropdown-menu.show{
    display: flex;
    min-width: inherit;
    display: inline-block;
}

.navbar-nav li {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin: 0 21px;
}

.navbar-nav li>a {
    color: var(--text-color);
    font-weight: 400;
    display: block;
    font-size: 14px;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-transform: capitalize;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#order-button-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10;
    padding: 10px;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    left: 50%;
    max-width: 730px;
    transform: translateX(-50%);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
#order-description-button {
    width: 100%;
    border-radius: 12px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    color: #000000;
    border: none;
    padding: 17px 0;
    height: 56px;
    text-align: center;
    cursor: pointer;
}

#order-button-container .btn {
    margin: 10px;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

#description-total-amount {
    font-weight: bold;
}

#toggle-arrow {
    transform: rotate(-90deg);
}

#toggle-arrow.rotate {
    transform: rotate(90deg);
}

.order-description-modal {
    background: #fff;
    width: 100%;
    height: 60%; /* 모달 높이를 줄여서 order-button-container 가리지 않게 */
    margin: 0;
    padding: 0;
    transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
    top: 100%;
    position: fixed;
    left: 0;
    text-align: left;
    border-top: 1px solid #ddd;
    z-index: 5;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 730px;
    left: 50%;
    transform: translateX(-50%);
}



.order-description-modal {
    padding: 16px;
}

.order-description-modal.show {
    top: 50%;
}

.order-description-modal .header {
    font-family: 'DM Sans', 'sans-serif';
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 19px;
}

.order-description-modal .body {
    font-family: 'DM Sans', 'sans-serif';
}

.order-desc-modal-contents {
    display: flex;
    justify-content: space-between;
}

.order-desc-modal-contents #modal-total-product-amount,
.order-desc-modal-contents #modal-total-shipping-fee,
.order-desc-modal-contents #modal-total-tax,
.order-desc-modal-contents #modal-total-items {
    font-weight: bold;
}

.order-desc-modal-contents:nth-child(3) {
    border-bottom: 1px dashed rgba(97, 97, 97, 0.3);
    padding-bottom: 16px;
}

.item-count-highlight {
    color: var(--red);
}

#modal-total-amount {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 31px;
    color: var(--red);
}

#toggle-arrow {
    font-size: 18px;
    display: inline-block;
    transition: transform 0.3s ease;
    transform: rotate(-90deg);
}

#toggle-arrow.rotate {
    transform: rotate(90deg);
}

.container.modal-open .order-description-modal {
    top: 40%;
}
#modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.js-close-modal {
    display: inline-block;
    color: #000;
    transition: all .4s ease;
    cursor: pointer;
    padding: 10px 0;
    min-width: 50px;
    margin-right: -10px;
}

.btn:hover {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

#order-confirm-button {
    background: rgba(252, 149, 1, 1);
    font-size: 16px;
}

#order-confirm-button.disable {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

.btn_order-confirm.disable {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

#orderModal .quantity-product {
    width: 80px;
    position: absolute;
    height: 44px;
    left: 0;
    line-height: 44px;
}


#orderModal .order-summary-item .product-title {
    margin-left: 70px;
    width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#orderModal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#orderModal .order-summary-title {
    flex-grow: 1 !important; /* 타이틀이 남은 공간을 모두 차지하도록 설정합니다. */
    text-align: center !important; /* 타이틀을 가운데 정렬합니다. */
}

#orderModal .close {
    cursor: pointer;
    font-size: 2rem;
}

#orderModal .order-summary-item {
    position: relative; /* 부모 요소에 대해 상대적 위치 설정 */
    padding-left: 20px; /* 좌측 여백 추가 */
    padding-right: 20px; /* 우측 여백 추가 */
}

#orderModal .pay_info, #orderModal .payment {
    width: 100%;
}



.list-product .item-product .id-product {
    position: relative;
}

.sold-out-text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: red;
}
.sold-out-text-wrapper .sold-out-text {
    font-size: 22px;
    text-align: center;
}




@media screen and (min-width: 768px) {
    .order-wrap .logo {
        width: 50%;
    }
    .navbar-nav .dropdown-menu{
        text-align: center;
        transform: translate(-35%, 5%) !important;
        top: unset !important;
        left: unset !important;
        position : fixed;
    }
}


@media screen and (min-width: 480px) {
    .shop_logo {
        height:120px;
        width:120px;
    }
    .shop_logo > img {
    }

    .shop_content {
        flex-wrap: wrap;
        flex-direction: row;
        font-size: 16px;
        justify-content: start;
        width: 80%;
    }

    .shop_content > p {
        width: 50%;
        padding: 7px;
        margin: 0;
        word-break: break-all;
    }
    .shop_content > .shop_description {
        width: 100%;
    }

    .shop_btn > a {
        font-size:16px;
    }

    .shop_address, .pay-info-noti{
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    #productDetailModal #modal-name {
        text-align: left;
        font-size: 14px;
    }
    .shop_info .copy_url{
        top: 12px;
    }
    #productDetailModal #modal-price,#productDetailModal #modal-reatil-price,#productDetailModal #modal-description{
        text-align: left;
        font-size: 14px;
    }
    #productDetailModal .wrap-price {
        align-items: flex-start;
        flex-direction: column;
        gap: unset;
    }
    #productDetailModal .wrap-price p {
        margin-bottom: 0 !important;
    }
    .list-product.two-column-grid .item-product .id-product img {
        height: 162px;
    }

    .list-product.three-column-grid .item-product .id-product img {
        height: 185px;
    }

    .list-product.two-column-grid .item-product .quantity-product, .list-product.three-column-grid .item-product .quantity-product {
        width: 100%;
    }

    .list-product.three-column-grid .item-product .quantity-product img.qty-minus {
        left: 5px;
    }

    .list-product.three-column-grid .item-product .quantity-product img.qty-plus {
        right: 5px;
    }

    #description-total-amount {
        font-size: 16px;
    }
    #orderModal .order-summary-item .product-title {
        width: 50%;
    }

    .order-summary-box {
        margin: 0;
    }
}

@media screen and (max-width: 479px) {

    .list-product {
        gap: 8px;
    }

    .list-product.two-column-grid .item-product {
        max-width: 168px;
    }

    .list-product.three-column-grid .item-product {
        max-width: 100px;
    }

    .list-product.three-column-grid .item-product .id-product img {
        height: 100px;
    }

    .products-category-container {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .products-category-container::-webkit-scrollbar {
        display: none;
    }

    .category-btn {
        flex: 0 0 auto;
    }

    .sold-out-text-wrapper .sold-out-text {
        font-size: 18px;
    }

}


.order-modal-body {
    background: #f4f4f4;
}

.modal-summary-container {
}

.modal-product-detail-container, .modal-shipping-detail-container, .modal-payment-detail-container {
    border-radius: 10px;
    background-color: #fff;
    padding: 18px 20px 10px 20px;
}
.modal-product-detail-container .section-title, .modal-shipping-detail-container .section-title, .modal-payment-detail-container .section-title {
    font-weight: 500;
    font-size: 20px;
    color: #000;
    border-bottom: 3px solid #f4f4f4;
    padding-bottom: 12px;
    text-align: left;
}

.modal-shipping-detail-container, .modal-payment-detail-container {
    margin-top: 10px;
}

.modal-shipping-detail-container > div, .modal-payment-detail-container > div {
    margin-top: 15px;
}

.order-modal-noti {
    margin-bottom: 0;
}
.order-modal-noti > p {
    margin-bottom: 0;
}

.modal-footer .order-summary-box.total-box {
    width: 100%;
    min-height: 45px;
}

.order-summary-box.tax-fee-box {
    border: none;
    margin-bottom: 0;
}

.remove-product {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    line-height: 1;
    margin-right: 10px;
    transition: all 0.3s ease;
    border-radius: 50%;
    padding: 1px;
    overflow: visible;
}

.remove-product:hover {
    background-color: rgba(252, 149, 1, 1);
}
.remove-product:hover .remove-icon line {
    stroke: #fff;
}

.slick-slide > img {
    margin: 0 auto;
}

.modal-slider {
    width: 100%;
    max-width: 600px;
    min-height: 500px; /* 최소 높이 설정 */
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 10px;
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
}

.modal-slider .slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: 500px;
}

.modal-slider .slick-slide img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.modal-slider #modal-slider {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
