@charset "utf-8";

#preview-image-ZoomContainer {z-index:2000 !important;}

.products-order .options {
    width: 100%;
    display: inline-block;
    padding-top: 20px;
    border-top: 1px solid #E4E4E4;
    margin: 10px 0;
}

.products-order .options > ul {
    display: flex;
}

.products-order .options > ul .option-title {
    width: 100px;
    padding-top: 7px;
}

.products-order .options > ul .option-title p {
    color: #111;
    font-size: 15px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
    word-break: break-all;
}

.products-order .options > ul > li:nth-child(2) {
    position: relative;
    width: calc(100% - 100px);
}

.products-order .options > ul:nth-child(n+2) {
    margin-top: 8px;
}

.products-order .selectbox {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #E6E6E6;
    background-color: #F4F4F4;
    cursor: pointer;
}

.products-order .selectbox.on {
    background-color: #fff;
}

.products-order .selectbox:after {
    content:'';
    position:absolute;
    left:-1px;
    top:-1px;
    width:calc(100% + 2px);
    height:calc(100% + 2px);
    display:block;
    z-index:10;
    cursor:default;
}

.products-order .selectbox.on:after {
    display: none;
}

.products-order .selectbox .select {
    position: relative;
    width: calc(100% - 42px);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 6px 0 6px 6px;
}

.products-order .selectbox.on .select {
    opacity: 1;
}

.products-order .options .selectbox .select > p {
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 6px;
}

.products-order .selectbox .arrow {
    width: 36px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-order .options .selectbox.focus {
    border: 1px solid #666;
    border-radius: unset;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.products-order .selectbox.focus .arrow svg {
    transform: rotate(180deg);
}

.products-order .selectbox.focus .arrow svg path {
    fill: #111;
}

.products-order .selectbox .select .thumb {
    width: fit-content;
}

.products-order .selectbox .select .thumb img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 6px;
}

.products-order .selectbox .select .thumb svg {
    width: 36px;
    height: 36px;
    border-radius: 6px;
}

.products-order .selectbox .select .table {
    width: calc(100% - 36px);
    display: flex;
    justify-content: space-between;
}

.products-order .selectbox .select .table.no-thumb {
    width: 100%;
}

.products-order .selectbox .select .table p {
    padding-left: 6px;
    color: #666;
    font-size: 14px;
    font-style: normal;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.products-order .selectbox.value .select .table p {
    color: #111;
}

.products-order .selectbox .select .ty-title {
    width: calc(100% - 72px);
}

.products-order .selectbox .select .ty-price {
    max-width: 72px;
    display: flex;
    align-items: center;
}

.products-order .selectbox .select .ty-price p {
    color: #111;
    font-family: Arial;
    font-size: 13px;
    font-weight: 700;
    line-height: 140%;
}

.products-order .selectbox .option {
    position: absolute;
    left: -1px;
    width: calc(100% + 2px);
    z-index: 20;
    cursor: pointer;
    display: none;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.products-order .selectbox.focus .option {
    display: block;
}

.products-order .selectbox .option ul {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 300px;
    background-color: #fff;
    border: 1px solid #666;
}

.products-order .selectbox .option ul li {
    display: flex;
    align-items: center;
    padding: 6px 10px;
}

.products-order .selectbox .option ul li.soldout {
    background: #f4f4f4;
    cursor: default;
}

.products-order .selectbox .option ul li[data-soldout='1'] {
    background: #f4f4f4;
    cursor: default;
}

.products-order .selectbox .option ul li:first-child {
    display: none;
}

.products-order .selectbox .option ul li:hover {
    background: #F4F4F4;
}

.products-order .selectbox .option ul li.focus {
    background: #FAFAFA;
}

.products-order .selectbox .option ul li p {
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    word-break: break-all;
}

.products-order .selectbox .option ul li .red {
    color: #EF4F4E;
    margin-right: 5px;
    white-space: nowrap;
}

.products-order .option-thumb .selectbox .option ul li .thumb {
    position: relative;
    width: 36px;
    height: 36px;
    margin-right: 2px;
}

.products-order .option-thumb .selectbox .option ul li .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.products-order .option-thumb .selectbox .option ul li .table {
    position: relative;
    width: calc(100% - 38px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.products-order .option-thumb .selectbox .option ul li .table.no-thumb {
    width: 100%;
}

.products-order .option-thumb .selectbox .option ul li .ty-price {
    display: flex;
    align-items: center;
}

.products-order .option-thumb .selectbox .option ul li .ty-price > p {
    color: #111;
    font-family: Arial;
    font-size: 13px;
    font-weight: 700;
    line-height: 140%;
}

.products-order .option-thumb .selectbox .option ul li .ty-title {
    flex: 1;
    display: flex;
    margin-right: 2px;
}

.products-order .option-thumb .selectbox .option ul li .ty-price.soldout > span {
    height: 21px;
    display: flex;
    align-items: center;
    padding: 0 4px;
    border-radius: 4px;
    background: #888;
    margin: 0 8px 0 2px;
    cursor: pointer;
}

.products-order .option-thumb .selectbox .option ul li .ty-price.soldout > span p {
    color: #FFF;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    padding-left: 0px;
}

.products-order .option-thumb .selectbox .option ul li .ty-price.soldout > p {
    text-decoration: line-through;
}

.products-order .addoption {
    width: 100%;
    display: inline-block;
    padding-top: 20px;
    margin: 10px 0;
    border-top: 1px solid #E4E4E4;
}

.products-order .addoption > ul {
    display: flex;
    /*align-items: center;*/
}

.products-order .addoption > ul:nth-child(n+2) {
    margin-top: 8px;
}

.products-order .addoption > ul .addoption-title {
    width: 100px;
    padding-top: 7px;
}

.products-order .addoption > ul .addoption-title p {
    color: #111;
    font-size: 15px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
}

.products-order .addoption > ul > li:nth-child(2) {
    position: relative;
    width: calc(100% - 100px);
}

.products-order .addoption .selectbox .addoption-req {
    position: absolute;
    top: -22px;
    left: 0;
    height: 22px;
    align-items: center;
    background-color: #000;
    border-radius: 4px;
    padding: 0 4px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
    display: none;
    cursor: pointer;
}

.products-order .addoption .selectbox .addoption-req.active {
    display: flex;
}

.products-order .addoption .selectbox .addoption-req p {
    color: #FFF;
    font-size: 12px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.products-order .addoption .selectbox .addoption-req span {
    position: absolute;
    bottom: -5px;
    left: 15px;
}

.products-order .addoption .selectbox .select {
    display: flex;
    justify-content: space-between;
}

.products-order .addoption .selectbox .select p {
    padding-left: 6px;
    color: #666;
    font-size: 14px;
    font-style: normal;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.products-order .addoption .selectbox.value .select p {
    color: #111;
}

.products-order .addoption .selectbox.value .select p:nth-child(1) {
    width: calc(100% - 80px);
}

.products-order .addoption .selectbox.value .select p:nth-child(2) {
    max-width: 80px;
    color: #111;
    font-family: Arial;
    font-size: 13px;
    font-weight: 700;
    line-height: 140%;
}

.products-order .addoption .option > ul > li {
    display: flex;
    justify-content: space-between;
}

.products-order .addoption .option > ul > li > p:nth-child(2) {
    color: #111;
    font-family: Arial;
    font-size: 13px;
    font-weight: 700;
    line-height: 140%;
    white-space: nowrap;
}

.products-order .choice {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
    border-top: 2px solid #111;
}

.products-order .choice .block {
    position: relative;
    /*padding: 18px 0;*/
    /*border-bottom: 1px solid #E4E4E4;*/
    background: #FFF;
}

.products-order .choice .block {
    border-top: 1px solid #E4E4E4;
}

.products-order .choice .block .title {
    padding-top: 18px;
}

.products-order .choice .block .title p {
    color: #111;
    font-size: 16px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.products-order .choice .block .quantity-price {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-bottom: 18px;
}

.products-order .choice .block .quantity-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-order .choice .block .quantity-count p {
    color: #999;
    font-size: 13px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.products-order .choice .block .price-wrap {
    display: flex;
    align-items: center;
    gap: 8PX;
}

.products-order .choice .block .del {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #E6E6E6;
    cursor: pointer;
    background: #fff;
}

.products-order .choice .block .quantity {
    position: relative;
    width: 118px;
    height: 34px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #E6E6E6;
    background: #FFF;
}

.products-order .choice .block .quantity .minus {
    width: 34px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #E6E6E6;
    cursor: pointer;
}

.products-order .choice .block .quantity .minus.disabled svg path {
    stroke: #ccc;
}

.products-order .choice .block .quantity .plus {
    width: 34px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #E6E6E6;
    cursor: pointer;
}

.products-order .choice .block .quantity .plus.disabled svg path {
    stroke: #ccc;
}

.products-order .choice .block .quantity .input {
    width: calc(100% - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-order .choice .block .quantity .input input {
    width: 100%;
    text-align: center;
    border: 0;
    color: #111;
    font-family: Arial;
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
}

.products-order .choice .addoption-title-div {
    padding: 18px 0;
    border-top: 1px solid #E4E4E4;
}

.products-order .choice .addoption-title-div p {
    color: #111;
    font-size: 15px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
}

.products-order .choice .block[data-optiontype='1'] {
    padding: 10px;
    border-radius: 6px;
    background: #F8F8F8;
    border: 0;
    margin-bottom: 8px;
}

.products-order .choice .block[data-optiontype='1'] .quantity-price {
    margin-top: 12px;
}

.products-order .choice .block .price {
    display: flex;
    align-items: center;
}

.products-order .choice .block .price .currency-price {
    color: #111;
    font-family: Arial;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    margin-right: 3px;
}

.products-order .choice .block .price .currency-text {
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    padding-top: 1px;
}

.products-order .request-group {
    padding: 16px 0;
    border-top: 1px dashed #E4E4E4;
}

.products-order .request-wrap {
    padding: 16px 0;
    border-top: 1px dashed #E4E4E4;
}

.products-order .request-title {
    color: #111;
    font-size: 16px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.products-order .request-form {
    width: calc(100% - 2px);
    height: 70px;
    margin-top: 12px;
    border: 1px solid #E6E6E6;
    background-color: #fff
}

.products-order .request-form textarea {
    resize: none;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 10px 0 0 10px;
    border: 0;
    color: #000;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.products-order .request-form.focus {
    border-color: #111;
}

.products-order .request-form.focus textarea {
    color: #000;
}

.products-order .request-form.value:not(.focus) {
    border-color: #E6E6E6;
}

.products-order .buy {
    padding-top: 36px;
}

.products-order .buy ul {
    display: flex;
}

.products-order .buy .products-wish {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    cursor: pointer;
    margin-right: 10px;
}

.products-order .buy .products-wish:hover svg path {
    stroke: #111;
}

.products-order .buy .products-wish.active svg path {
    stroke: var(--color2);
    fill: var(--color2);
}

.lc-header .products-order .buy .products-cart {
    height: 60px;
}

.products-order .buy .products-cart {
    flex: 1;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px 0px 0px 8px;
    background: #111;
    color: #FFF;
    font-size: 18px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
    cursor: pointer;
}

.lc-header .products-order .buy .products-order {
    height: 60px;
}

.products-order .buy .products-order {
    flex: 1;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 8px 8px 0px;
    background: var(--color2);
    color: #FFF;
    font-size: 18px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
    cursor: pointer;
}

.products-order .buy-no {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #111;
    background: #FFF;
    margin-top: 36px;
}

.products-order .buy-no p {
    color: #111;
    font-size: 18px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
}

.lc-products-share .reward-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    flex-direction: column;
    -ms-flex-direction: column;

    border-top: 1px solid #f2f2f2;
    margin-top: 20px;
    padding-top: 12px;
}

.lc-products-share .reward-fee {
    word-wrap: break-word;
    word-break: break-all;
    font-family: var(--family-bold);
    font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 14px;
    color: #333;
}

.lc-products-share .reward-fee svg {
    position: relative;
    top: 3px;
    margin-left: 7px;
    width: 17px;
    height: 17px;
}

.lc-products-share .reward-guide {
    margin-top: 6px;
    word-wrap: break-word;
    word-break: break-all;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 12px;
    color: #333;
}

.lc-products-share .reward-btn {
    margin-top: 12px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #006ff2;
    background-color: #f2f8fe;
    text-align: center;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 33px;
    font-size: 14px;
    color: #006ff2;
    cursor: pointer;
}

/* lc-products-card */

.lc-products-card {transition:opacity .3s ease; opacity:0 !important; margin-top:15px !important; background: #FFF; box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);}
.lc-products-card.active {opacity:1 !important;}
.lc-products-card:before {z-index:-1; display:block; content:''; position:absolute; left:0; top:0; width:100%; height:100%; box-shadow:2px 2px 2px 0px #000000; background-color:transparent; opacity:0.25; border-radius:0;}

.lc-products-card .header {
    position: relative;
    width: 100%;
    height: 36px;
}

.lc-products-card .header .close-btn {
    position: absolute;
    right: 0;
    width: 28px;
    height: 28px;
    padding: 4px;
    display: flex;
    align-items: end;
    cursor: pointer;
}

.lc-products-card .header .close-btn svg {
    pointer-events: none;
}

.lc-products-card .body {
    position: relative;
    max-height: 300px;
    padding: 0 36px;
}

.lc-products-card .body .card-icon {
    height: 40px;
    display: flex;
    align-items: center;
}

.lc-products-card .body .card-title {
    margin: 10px 0 20px 0;
}

.lc-products-card .body .card-title p {
    color: #111;
    font-size: 20px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lc-products-card .body .item {
    padding: 16px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E6E6E6;
}

.lc-products-card .body .item-icon {
    width: 120px;
}

.lc-products-card .body .item-content {
    display: flex;
    gap: 4px;
}

.lc-products-card .body .item-month {
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-card .body .item-price {
    color: #999;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-card .body .contents-bold p {
    color: #000;
    font-size: 15px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
}

.lc-products-card .body .contents-1 {
    padding: 24px 0;
    border-bottom: 1px solid #E6E6E6;
}

.lc-products-card .body .contents-1 p {
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-card .body .contents-1 .btn-div {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.lc-products-card .body .contents-1 .btn-div > span {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
    border: 1px solid #111;
    color: #111;
    font-size: 14px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
    cursor: pointer;
}

.lc-products-card .body .contents-1 .btn-div > span > a {
    color: #111;
    font-size: 14px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
}

.lc-products-card .body .contents-2 {
    padding: 10px 0;
    border-bottom: 1px solid #E6E6E6;
}

.lc-products-card .body .contents-2 p {
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-card .body .contents-table-1 {
    padding-bottom: 1px;
}

.lc-products-card .body .contents-table-1 > div {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #E6E6E6;
}

.lc-products-card .body .contents-table-1 > div .title {
    width: 80px;
    color: #333;
    font-size: 14px;
    font-family: var(--family-light);
    font-weight: var(--weight-light);
    line-height: 140%;
}

.lc-products-card .body .contents-table-1 > div .content {
    width: calc(100% - 80px);
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-card .body .contents-table-1 > div .content .type-2 {
    color: #999;
}

.lc-products-card .body .contents-table-1 > div .content .type-3 {
    color: #346AFF;
}

.lc-products-card .body .contents-table-2 > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
    border-bottom: 1px solid #E6E6E6;
}

.lc-products-card .body .contents-table-2 > div .title {
    color: #333;
    font-size: 14px;
    font-family: var(--family-light);
    font-weight: var(--weight-light);
    line-height: 140%;
}

.lc-products-card .body .contents-table-2 > div .content {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-card .footer {
    padding: 24px 36px;
}

.lc-products-card .footer .confirm-btn {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
    color: #FFF;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    cursor: pointer;
}

.lc-products-card .scroll-wrapper > .scroll-element .scroll-bar {
    background-color: #CCCCCC;
}

.lc-products-card .countrys {
    width: 140px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lc-products-card .countrys p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jconfirm.star-confirm .jconfirm-box {
    padding: 36px;
}

.jconfirm.star-confirm .jconfirm-box div.jconfirm-title-c {
    color: #111;
    text-align: center;
    font-size: 16px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: normal;
    margin-bottom: 36px;
}

.jconfirm.star-confirm .jconfirm-box div.jconfirm-content-pane {
    display: none;
}

.jconfirm.star-confirm .jconfirm-box .jconfirm-buttons {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 0;
}

.jconfirm.star-confirm .jconfirm-box .jconfirm-buttons .btn {
    width: 120px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    box-sizing: border-box;
    border-radius: 0;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.jconfirm.star-confirm .jconfirm-box .jconfirm-buttons .btn-confirm {
    background: #111;
    color: #FFF;
}

.jconfirm.star-confirm .jconfirm-box .jconfirm-buttons .btn-cancel {
    border: 1px solid #111;
    background: #FFF;
    color: #111;
}

/* lc-products-coupon */

.lc-products-coupon {
    transition: opacity .3s ease;
    opacity: 0 !important;
}

.lc-products-coupon.active {
    opacity: 1 !important;
}

.lc-products-coupon .body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.lc-products-coupon .ty-hidden {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.lc-products-coupon .msg p:nth-child(1) {
    margin: 20px 0 10px 0;
    color: #111;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    text-align: center;
}

.lc-products-coupon .msg p:nth-child(2) {
    color: #111;
    font-size: 16px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: normal;
    text-align: center;
}

.lc-products-coupon .close-btn {
    width: 120px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
    color: #FFF;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    cursor: pointer;
    margin-top: 36px;
}

/* lc-products-detail */

.lc-products-detail .Layer-container {
    position: relative;
    width: var(--main-width);
    height: calc(100% - 160px);
}

.lc-products-detail .Layer-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.lc-products-detail .body {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 16px;
}

.lc-products-detail .body .wrap {
    position: relative;
    width: calc(100% - 328px);
    height: 100%;
}

.lc-products-detail .wrap .header {
    width: calc(100% - 16px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 16px;
    background: #333;
}

.lc-products-detail .wrap .header p {
    color: #FFF;
    font-size: 15px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
}

.lc-products-detail .wrap .header .btn-close {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lc-products-detail .wrap .choices {
    position: relative;
    width: calc(100% - 80px);
    height: 124px;
    display: flex;
    align-items: center;
    padding: 16px 40px;
    background: #FFF;
}

.lc-products-detail .wrap .choices .swiper-container {
    width: 100%;
}

.lc-products-detail .wrap .choices .swiper-slide {
    max-width: 120px;
}

.lc-products-detail .wrap .choices .swiper-slide.column-6 {
    width: calc(100% / 6);
}

.lc-products-detail .wrap .choices .swiper-slide.column-7 {
    width: calc(100% / 7);
}

.lc-products-detail .wrap .choices .swiper-slide.column-8 {
    width: calc(100% / 8);
}

.lc-products-detail .wrap .choices .swiper-slide.column-9 {
    width: calc(100% / 9);
}

.lc-products-detail .wrap .choices .swiper-slide.column-10 {
    width: calc(100% / 10);
}

.lc-products-detail .wrap .choices .option-item-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.lc-products-detail .wrap .choices .option-item-wrap .image {
    position: relative;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-radius: 4px;
    overflow: hidden;
    background: #E6E6E6;
}

.lc-products-detail .wrap .choices .swiper-slide.active .image {
    border: 1px solid #111;
}

.lc-products-detail .wrap .choices .option-item-wrap .image:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.lc-products-detail .wrap .choices .option-item-wrap .image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lc-products-detail .wrap .choices .option-item-wrap .image .soldout {
    position: absolute;
}

.lc-products-detail .wrap .choices .option-item-wrap .number {
    width: 21px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #999;
    margin-top: 4px;
}

.lc-products-detail .wrap .choices .swiper-slide.active .number {
    background: #111;
}

.lc-products-detail .wrap .choices .option-item-wrap .number p {
    color: #FFF;
    font-size: 11px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
}

.lc-products-detail .wrap .choices .option-item-wrap .price {
    margin-top: 4px;
}

.lc-products-detail .wrap .choices .option-item-wrap .price p {
    color: #666;
    font-family: Arial;
    font-size: 13px;
    font-weight: 700;
    line-height: 140%;
}

.lc-products-detail .wrap .choices .swiper-slide.active .price p {
    color: #111;
}

.lc-products-detail .wrap .choices .swiper-btn-prev {
    position: absolute;
    left: 8px;
    width: 22px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #CCC;
    background: #FFF;
    cursor: pointer;
}

.lc-products-detail .wrap .choices .swiper-btn-prev.swiper-button-disabled {
    border: 1px solid #E6E6E6;
    background: rgba(255, 255, 255, 0.50);
}

.lc-products-detail .wrap .choices .swiper-btn-prev.swiper-button-disabled svg path {
    fill: #CCC;
}

.lc-products-detail .wrap .choices .swiper-btn-prev svg path {
    fill: #666;
}

.lc-products-detail .wrap .choices .swiper-btn-next {
    position: absolute;
    right: 8px;
    width: 22px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #CCC;
    background: #FFF;
    cursor: pointer;
}

.lc-products-detail .wrap .choices .swiper-btn-next svg path {
    fill: #666;
}

.lc-products-detail .wrap .choices .swiper-btn-next.swiper-button-disabled {
    border: 1px solid #E6E6E6;
    background: rgba(255, 255, 255, 0.50);
}

.lc-products-detail .wrap .choices .swiper-btn-next.swiper-button-disabled svg path {
    fill: #CCC;
}


.lc-products-detail .wrap .option-header {
    width: calc(100% - 32px);
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    background: #333;
}

.lc-products-detail .wrap .option-header .title {
    flex: 1;
    display: flex;
    gap: 6px;
}

.lc-products-detail .wrap .option-header .title .icon {
    height: 20px;
    display: flex;
    align-items: center;
    padding: 0 4px;
    border-radius: 4px;
    background: #111;
    color: #FFF;
    font-size: 11px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
}

.lc-products-detail .wrap .option-header .title p {
    flex: 1;
    color: #FFF;
    font-size: 15px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.lc-products-detail .wrap .option-header .price .currency-price {
    color: #FFF;
    font-family: Arial;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
}

.lc-products-detail .wrap .option-header .price .currency-text {
    color: #FFF;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-detail .wrap .scroll-wrap {
    position: relative;
    height: calc(100% - 240px);
}

.lc-products-detail .wrap .scroll-wrapper {
    height: 100%;
}

.lc-products-detail .wrap .scroll-wrap .inner {
    position: relative;
    height: 100%;
}

.lc-products-detail .wrap .info {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #F4F4F4;
}

.lc-products-detail .wrap .info-content-wrap {
    position: relative;
    display: flex;
    align-items: start;
    gap: 40px;
    padding: 23px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    margin: 4px;
}

.lc-products-detail .wrap .info-content-wrap .image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E6E6E6;
}

.lc-products-detail .wrap .info-content-wrap.type-a .image-wrap {
    position: relative;
    width: 240px;
    height: 240px;
}

.lc-products-detail .wrap .info-content-wrap.type-a .content-wrap {
    width: calc(100% - 280px);
}

.lc-products-detail .wrap .info-content-wrap.type-b .image-wrap {
    position: relative;
    width: 360px;
    height: 360px;
}

.lc-products-detail .wrap .info-content-wrap.type-b .content-wrap {
    width: calc(100% - 400px);
}

.lc-products-detail .wrap .info-content-wrap.type-c .image-wrap {
    position: relative;
    width: 480px;
    height: 480px;
}

.lc-products-detail .wrap .info-content-wrap.type-c .content-wrap {
    width: calc(100% - 520px);
}

.lc-products-detail .wrap .info-content-wrap .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .icon {
    display: flex;
    margin-bottom: 4px;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .icon > span {
    height: 20px;
    display: flex;
    align-items: center;
    padding: 0 4px;
    border-radius: 4px;
    background: #111;
    color: #FFF;
    font-size: 11px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .title {
    display: inline-block;
    margin-bottom: 16px;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .title p {
    color: #111;
    font-size: 18px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .before-price .currency-price {
    color: #999;
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    text-decoration: line-through;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .before-price > span {
    display: flex;
    align-items: center;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .before-price .currency-text {
    color: #999;
    font-size: 13px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    margin-left: 2px;
    padding-bottom: 2px;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .price-wrap {
    display: flex;
    gap: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 20px;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .price-wrap .discount.hidden {
    display: none;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .price-wrap .discount p {
    color: var(--color2);
    font-family: Arial;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .price-wrap .sale-price > span {
    display: flex;
    align-items: center;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .price-wrap .sale-price .currency-price {
    color: #111;
    font-family: Arial;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .price-wrap .sale-price .currency-text {
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    margin-left: 2px;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .option-title {
    height: 30px;
    display: flex;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .option-title p {
    color: #111;
    font-size: 15px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .option {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .option > span {
    display: flex;
    padding: 4px 6px 5px 6px;
    gap: 4px;
    border-radius: 4px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    color: #666;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    cursor: pointer;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .option > span:hover {
    border: 1px solid #111;
    color: #111;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .option > span.active {
    border: 1px solid #111;
    background: #111;
    color: #FFF;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .option > span.soldout {
    border: 1px solid #E6E6E6;
    color: #CCC;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .button-wrap {
    padding-top: 20px;
    display: flex;
    gap: 4px;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .button-wrap .option-choice {
    display: flex;
    width: 132px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border: 1px solid #111;
    background: #FFF;
    cursor: pointer;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .button-wrap .option-choice p {
    color: #111;
    font-size: 15px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
    padding-bottom: 2px;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .button-wrap .soldout {
    display: flex;
    width: 132px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border: 1px solid #E6E6E6;
    background: #FFF;
}

.lc-products-detail .wrap .info-content-wrap .content-wrap .button-wrap .soldout p {
    color: #CCC;
    font-size: 15px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
}

.lc-products-detail .wrap .info-content-wrap .detail-choice-prev {
    position: absolute;
    top: 50%;
    left: -4px;
    transform: translate(0, -50%);
    width: 24px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 6px 6px 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.20);
    border-right: 1px solid rgba(0, 0, 0, 0.20);
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.20);
    z-index: 4;
    cursor: pointer;
}

.lc-products-detail .wrap .info-content-wrap .detail-choice-prev svg path {
    fill: #CCC;
}

.lc-products-detail .wrap .info-content-wrap .detail-choice-prev.active svg path {
    fill: #333;
}

.lc-products-detail .wrap .info-content-wrap .detail-choice-next {
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translate(0, -50%);
    width: 24px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px 0px 0px 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.20);
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    border-left: 1px solid rgba(0, 0, 0, 0.20);
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.20);
    z-index: 4;
    cursor: pointer;
}

.lc-products-detail .wrap .info-content-wrap .detail-choice-next svg path {
    fill: #CCC;
}

.lc-products-detail .wrap .info-content-wrap .detail-choice-next.active svg path {
    fill: #333;
}

.lc-products-detail .wrap .info-image-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 28px;
    text-align: center;
    background: #FFFFFF;
}

.lc-products-detail .wrap .info-image-wrap img {
    max-width: 100%;
}

.lc-products-detail .wrap .info-image-wrap .no-detail-image-msg {
    padding: 40px 0;
}

.lc-products-detail .wrap .info-image-wrap .no-detail-image-msg p {
    color: #111;
    text-align: center;
    font-size: 14px;
    font-family: var(--family-light);
    font-weight: var(--weight-light);
    line-height: 140%;
}

.lc-products-detail .products-order {
    width: 312px;
    background: #FFF;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
}

.lc-products-detail .products-order .options-wrap {
    padding: 0 12px;
    border-bottom: 1px solid #E4E4E4;
    background: #FAFAFA;
}

.lc-products-detail .products-order .options {
    width: 100%;
    padding: 0;
    margin: 10px 0;
    border-top: 0;
}

.lc-products-detail .products-order .options > ul {
    flex-direction: column;
    margin-top: 7px;
}

.lc-products-detail .products-order .options > ul:nth-child(n+2) {
    margin-top: 15px;
}

.lc-products-detail .products-order .options > ul .option-title {
    width: 100%;
}

.lc-products-detail .products-order .options > ul > li:nth-child(2) {
    width: 100%;
    margin-top: 4px;
}

.lc-products-detail .products-order .addoption {
    width: 100%;
    padding: 10px 0;
    margin: 0 0;
    border-top: 1px solid #E6E6E6;
}

.lc-products-detail .products-order .addoption .tit {
    display: none;
}

.lc-products-detail .products-order .addoption > ul {
    flex-direction: column;
    margin-top: 7px;
}

.lc-products-detail .products-order .addoption > ul:nth-child(n+3) {
    margin-top: 15px;
}

.lc-products-detail .products-order .addoption > ul .addoption-title {
    width: 100%;
}

.lc-products-detail .products-order .addoption > ul > li:nth-child(2) {
    width: 100%;
    margin-top: 4px;
}

.lc-products-detail .products-order .scroll-wrap {
    position: relative;
}

.lc-products-detail .products-order .scroll-wrap .scroll-wrapper {
    height: 100%;
}

.lc-products-detail .products-order .scroll-wrap .scroll-wrapper div[data-scroll] {
    padding: 0 16px;
}

.lc-products-detail .products-order .choice {
    margin: 0;
    border: 0;
}

.lc-products-detail .products-order .choice .block .title p {
    font-size: 14px;
    line-height: 130%;
}

.lc-products-detail .products-order .choice .block .quantity-count {
    display: none;
}

.lc-products-detail .products-order .choice .addoption-title-div {
    display: none;
}

.lc-products-detail .products-order .choice .block.ty-addopt .title {
    padding: 0;
}

.lc-products-detail .products-order .choice .block.ty-addopt .quantity-price {
    padding: 0;
}

.lc-products-detail .products-order .footer {
    padding: 4px 8px 8px 8px;
}

.lc-products-detail .products-order .buy {
    padding: 0;
}

.countrys .flags {width:25px; height:25px; display: flex; background:url('../img/flags.png') no-repeat; background-size:500px 400px;}
.countrys .flags.ty-KR {background-position:-225px -250px;}
.countrys .flags.ty-AD {background-position:-75px 0px;}
.countrys .flags.ty-AE {background-position:-375px -225px;}
.countrys .flags.ty-AF {background-position:0px 0px;}
.countrys .flags.ty-AG {background-position:-150px 0px;}
.countrys .flags.ty-AI {background-position:-125px 0px;}
.countrys .flags.ty-AL {background-position:-25px 0px;}
.countrys .flags.ty-AM {background-position:-225px 0px;}
.countrys .flags.ty-AO {background-position:-100px 0px;}
.countrys .flags.ty-AR {background-position:-200px 0px;}
.countrys .flags.ty-AS {background-position:-100px -200px;}
.countrys .flags.ty-AT {background-position:-300px 0px;}
.countrys .flags.ty-AU {background-position:-275px 0px;}
.countrys .flags.ty-AW {background-position:-250px 0px;}
.countrys .flags.ty-AZ {background-position:-325px 0px;}
.countrys .flags.ty-BA {background-position:-125px -25px;}
.countrys .flags.ty-BB {background-position:-425px 0px;}
.countrys .flags.ty-BD {background-position:-400px 0px;}
.countrys .flags.ty-BE {background-position:-475px 0px;}
.countrys .flags.ty-BF {background-position:-250px -25px;}
.countrys .flags.ty-BG {background-position:-225px -25px;}
.countrys .flags.ty-BH {background-position:-375px 0px;}
.countrys .flags.ty-BI {background-position:-275px -25px;}
.countrys .flags.ty-BJ {background-position:-25px -25px;}
.countrys .flags.ty-BM {background-position:-50px -25px;}
.countrys .flags.ty-BN {background-position:-200px -25px;}
.countrys .flags.ty-BO {background-position:-100px -25px;}
.countrys .flags.ty-BR {background-position:-175px -25px;}
.countrys .flags.ty-BS {background-position:-350px 0px;}
.countrys .flags.ty-BT {background-position:-75px -25px;}
.countrys .flags.ty-BW {background-position:-150px -25px;}
.countrys .flags.ty-BY {background-position:-450px 0px;}
.countrys .flags.ty-BZ {background-position:0px -25px;}
.countrys .flags.ty-CA {background-position:-350px -25px;}
.countrys .flags.ty-CD {background-position:-250px -50px;}
.countrys .flags.ty-CF {background-position:-450px -25px;}
.countrys .flags.ty-CG {background-position:-75px -50px;}
.countrys .flags.ty-CH {background-position:0px -225px;}
.countrys .flags.ty-CI {background-position:-150px -50px;}
.countrys .flags.ty-CK {background-position:-100px -50px;}
.countrys .flags.ty-CL {background-position:0px -50px;}
.countrys .flags.ty-CM {background-position:-325px -25px;}
.countrys .flags.ty-CN {background-position:-25px -50px;}
.countrys .flags.ty-CO {background-position:-50px -50px;}
.countrys .flags.ty-CR {background-position:-125px -50px;}
.countrys .flags.ty-CV {background-position:-400px -25px;}
.countrys .flags.ty-CW {background-position:-175px 0px;}
.countrys .flags.ty-CY {background-position:-200px -50px;}
.countrys .flags.ty-CZ {background-position:-225px -50px;}
.countrys .flags.ty-DE {background-position:-250px -75px;}
.countrys .flags.ty-DJ {background-position:-300px -50px;}
.countrys .flags.ty-DK {background-position:-275px -50px;}
.countrys .flags.ty-DM {background-position:-325px -50px;}
.countrys .flags.ty-DO {background-position:-350px -50px;}
.countrys .flags.ty-DZ {background-position:-50px 0px;}
.countrys .flags.ty-EC {background-position:-400px -50px;}
.countrys .flags.ty-EE {background-position:0px -75px;}
.countrys .flags.ty-EG {background-position:-425px -50px;}
.countrys .flags.ty-ER {background-position:-475px -50px;}
.countrys .flags.ty-ES {background-position:-375px -200px;}
.countrys .flags.ty-ET {background-position:-25px -75px;}
.countrys .flags.ty-FI {background-position:-100px -75px;}
.countrys .flags.ty-FJ {background-position:-75px -75px;}
.countrys .flags.ty-FM {background-position:-150px -150px;}
.countrys .flags.ty-FO {background-position:-50px -75px;}
.countrys .flags.ty-FR {background-position:-125px -75px;}
.countrys .flags.ty-GA {background-position:-175px -75px;}
.countrys .flags.ty-GB {background-position:-400px -225px;}
.countrys .flags.ty-GD {background-position:-375px -75px;}
.countrys .flags.ty-GE {background-position:-225px -75px;}
.countrys .flags.ty-GF {background-position:-475px -75px;}
.countrys .flags.ty-GH {background-position:-275px -75px;}
.countrys .flags.ty-GI {background-position:-300px -75px;}
.countrys .flags.ty-GL {background-position:-350px -75px;}
.countrys .flags.ty-GM {background-position:-200px -75px;}
.countrys .flags.ty-GN {background-position:0px -100px;}
.countrys .flags.ty-GP {background-position:-400px -75px;}
.countrys .flags.ty-GR {background-position:-325px -75px;}
.countrys .flags.ty-GT {background-position:-450px -75px;}
.countrys .flags.ty-GU {background-position:-425px -75px;}
.countrys .flags.ty-GW {background-position:-25px -100px;}
.countrys .flags.ty-GY {background-position:-50px -100px;}
.countrys .flags.ty-HK {background-position:-125px -100px;}
.countrys .flags.ty-HN {background-position:-100px -100px;}
.countrys .flags.ty-HR {background-position:-175px -50px;}
.countrys .flags.ty-HT {background-position:-75px -100px;}
.countrys .flags.ty-HU {background-position:-150px -100px;}
.countrys .flags.ty-ID {background-position:-225px -100px;}
.countrys .flags.ty-IE {background-position:-275px -100px;}
.countrys .flags.ty-IL {background-position:-300px -100px;}
.countrys .flags.ty-IN {background-position:-200px -100px;}
.countrys .flags.ty-IQ {background-position:-250px -100px;}
.countrys .flags.ty-IS {background-position:-175px -100px;}
.countrys .flags.ty-IT {background-position:-325px -100px;}
.countrys .flags.ty-JM {background-position:-350px -100px;}
.countrys .flags.ty-JO {background-position:-400px -100px;}
.countrys .flags.ty-JP {background-position:-375px -100px;}
.countrys .flags.ty-KE {background-position:-450px -100px;}
.countrys .flags.ty-KG {background-position:-25px -125px;}
.countrys .flags.ty-KH {background-position:-300px -25px;}
.countrys .flags.ty-KI {background-position:-475px -100px;}
.countrys .flags.ty-KN {background-position:-25px -200px;}
.countrys .flags.ty-KW {background-position:0px -125px;}
.countrys .flags.ty-KY {background-position:-425px -25px;}
.countrys .flags.ty-KZ {background-position:-425px -100px;}
.countrys .flags.ty-LA {background-position:-50px -125px;}
.countrys .flags.ty-LB {background-position:-100px -125px;}
.countrys .flags.ty-LC {background-position:-50px -200px;}
.countrys .flags.ty-LI {background-position:-200px -125px;}
.countrys .flags.ty-LK {background-position:-400px -200px;}
.countrys .flags.ty-LR {background-position:-150px -125px;}
.countrys .flags.ty-LS {background-position:-125px -125px;}
.countrys .flags.ty-LT {background-position:-225px -125px;}
.countrys .flags.ty-LU {background-position:-250px -125px;}
.countrys .flags.ty-LV {background-position:-75px -125px;}
.countrys .flags.ty-LY {background-position:-175px -125px;}
.countrys .flags.ty-MA {background-position:-275px -150px;}
.countrys .flags.ty-MC {background-position:-200px -150px;}
.countrys .flags.ty-MD {background-position:-175px -150px;}
.countrys .flags.ty-ME {background-position:-400px -175px;}
.countrys .flags.ty-MG {background-position:-325px -125px;}
.countrys .flags.ty-MH {background-position:0px -150px;}
.countrys .flags.ty-MK {background-position:-300px -125px;}
.countrys .flags.ty-ML {background-position:-425px -125px;}
.countrys .flags.ty-MN {background-position:-225px -150px;}
.countrys .flags.ty-MO {background-position:-275px -125px;}
.countrys .flags.ty-MP {background-position:-475px -125px;}
.countrys .flags.ty-MQ {background-position:-25px -150px;}
.countrys .flags.ty-MR {background-position:-50px -150px;}
.countrys .flags.ty-MS {background-position:-250px -150px;}
.countrys .flags.ty-MT {background-position:-450px -125px;}
.countrys .flags.ty-MU {background-position:-75px -150px;}
.countrys .flags.ty-MV {background-position:-400px -125px;}
.countrys .flags.ty-MW {background-position:-350px -125px;}
.countrys .flags.ty-MX {background-position:-125px -150px;}
.countrys .flags.ty-MY {background-position:-375px -125px;}
.countrys .flags.ty-MZ {background-position:-300px -150px;}
.countrys .flags.ty-NA {background-position:-325px -150px;}
.countrys .flags.ty-NC {background-position:-400px -150px;}
.countrys .flags.ty-NE {background-position:-475px -150px;}
.countrys .flags.ty-NF {background-position:-25px -175px;}
.countrys .flags.ty-NG {background-position:0px -175px;}
.countrys .flags.ty-NI {background-position:-450px -150px;}
.countrys .flags.ty-NL {background-position:-375px -150px;}
.countrys .flags.ty-NO {background-position:-50px -175px;}
.countrys .flags.ty-NP {background-position:-350px -150px;}
.countrys .flags.ty-NZ {background-position:-425px -150px;}
.countrys .flags.ty-OM {background-position:-75px -175px;}
.countrys .flags.ty-PA {background-position:-150px -175px;}
.countrys .flags.ty-PE {background-position:-225px -175px;}
.countrys .flags.ty-PF {background-position:-150px -75px;}
.countrys .flags.ty-PG {background-position:-175px -175px;}
.countrys .flags.ty-PH {background-position:-250px -175px;}
.countrys .flags.ty-PK {background-position:-100px -175px;}
.countrys .flags.ty-PL {background-position:-275px -175px;}
.countrys .flags.ty-PR {background-position:-325px -175px;}
.countrys .flags.ty-PT {background-position:-300px -175px;}
.countrys .flags.ty-PW {background-position:-125px -175px;}
.countrys .flags.ty-PY {background-position:-200px -175px;}
.countrys .flags.ty-QA {background-position:-350px -175px;}
.countrys .flags.ty-RE {background-position:-425px -175px;}
.countrys .flags.ty-RO {background-position:-450px -175px;}
.countrys .flags.ty-RS {background-position:-200px -200px;}
.countrys .flags.ty-RU {background-position:-475px -175px;}
.countrys .flags.ty-RW {background-position:0px -200px;}
.countrys .flags.ty-SA {background-position:-150px -200px;}
.countrys .flags.ty-SB {background-position:-350px -200px;}
.countrys .flags.ty-SC {background-position:-225px -200px;}
.countrys .flags.ty-SE {background-position:-475px -200px;}
.countrys .flags.ty-SG {background-position:-275px -200px;}
.countrys .flags.ty-SI {background-position:-325px -200px;}
.countrys .flags.ty-SK {background-position:-300px -200px;}
.countrys .flags.ty-SL {background-position:-250px -200px;}
.countrys .flags.ty-SM {background-position:-125px -200px;}
.countrys .flags.ty-SN {background-position:-175px -200px;}
.countrys .flags.ty-SR {background-position:-425px -200px;}
.countrys .flags.ty-SV {background-position:-450px -50px;}
.countrys .flags.ty-SZ {background-position:-450px -200px;}
.countrys .flags.ty-TC {background-position:-250px -225px;}
.countrys .flags.ty-TD {background-position:-475px -25px;}
.countrys .flags.ty-TG {background-position:-125px -225px;}
.countrys .flags.ty-TH {background-position:-100px -225px;}
.countrys .flags.ty-TJ {background-position:-50px -225px;}
.countrys .flags.ty-TL {background-position:-375px -50px;}
.countrys .flags.ty-TN {background-position:-200px -225px;}
.countrys .flags.ty-TO {background-position:-150px -225px;}
.countrys .flags.ty-TR {background-position:-225px -225px;}
.countrys .flags.ty-TT {background-position:-175px -225px;}
.countrys .flags.ty-TV {background-position:-275px -225px;}
.countrys .flags.ty-TW {background-position:-25px -225px;}
.countrys .flags.ty-TZ {background-position:-75px -225px;}
.countrys .flags.ty-UA {background-position:-350px -225px;}
.countrys .flags.ty-UG {background-position:-325px -225px;}
.countrys .flags.ty-US {background-position:-300px -225px;}
.countrys .flags.ty-UY {background-position:-425px -225px;}
.countrys .flags.ty-UZ {background-position:-450px -225px;}
.countrys .flags.ty-VC {background-position:-75px -200px;}
.countrys .flags.ty-VE {background-position:0px -250px;}
.countrys .flags.ty-VG {background-position:-75px -250px;}
.countrys .flags.ty-VI {background-position:-50px -250px;}
.countrys .flags.ty-VN {background-position:-25px -250px;}
.countrys .flags.ty-VU {background-position:-475px -225px;}
.countrys .flags.ty-WC {background-position:-375px -25px;}
.countrys .flags.ty-WF {background-position:-100px -250px;}
.countrys .flags.ty-WS {background-position:-125px -250px;}
.countrys .flags.ty-YE {background-position:-150px -250px;}
.countrys .flags.ty-YT {background-position:-100px -150px;}
.countrys .flags.ty-ZA {background-position:-375px -175px;}
.countrys .flags.ty-ZM {background-position:-175px -250px;}
.countrys .flags.ty-ZW {background-position:-200px -250px;}


/* lc-products-map */

.lc-products-map {transition:opacity .3s ease; opacity:0 !important;}
.lc-products-map.active {opacity:1 !important;}
.lc-products-map:before {z-index:-1; display:block; content:''; position:absolute; left:0; top:0; width:100%; height:100%; box-shadow:2px 2px 2px 0px #000000; background-color:transparent; opacity:0.25; border-radius:0;}
.lc-products-map .body {position:relative; background-color:#ffffff; border:1px solid #656565;}
.lc-products-map .header {position:relative; padding:0 67px 0 25px; height:57px; background-color:#333;}
.lc-products-map .header .title {font-family: var(--family-medium);font-weight: var(--weight-medium); line-height:57px; font-size:18px; color:#fff;}
.lc-products-map .header .btn {z-index:1; display:block; position:absolute; right:0; top:0; width:57px; height:100%; cursor:pointer;}
.lc-products-map .header .btn:before {transition:opacity .3s ease; display:block; z-index:-1; content:''; position:absolute; left:0; top:0; width:100%; height:100%; background-color:#000; opacity:0.5;}
.lc-products-map .header .btn:after {transition:opacity .3s ease; display:block; z-index:-1; content:''; position:absolute; left:calc(50% - 12px); top:calc(50% - 12px); width:25px; height:25px; background:var(--p-btn) no-repeat; background-position:-350px -100px; opacity:0.3;}
.lc-products-map .header .btn:hover:before,
.lc-products-map .header .btn:hover:after {opacity:1;}
.lc-products-map .map {width:800px; height:500px;}

/* lc-products-write */

.lc-products-write {transition:opacity .3s ease; opacity:0 !important;}
.lc-products-write.active {opacity:1 !important;}
.lc-products-write:before {z-index:-1; display:block; content:''; position:absolute; left:0; top:0; width:100%; height:100%; box-shadow:2px 2px 2px 0px #000000; background-color:transparent; opacity:0.25; border-radius:0;}
.lc-products-write .body {padding:30px 0; position:relative; background-color:#ffffff; border:1px solid #656565;}
.lc-products-write .header {margin:0 40px 15px 40px; position:relative; height:37px; border-bottom:1px solid #656565;}
.lc-products-write .header .title,
.lc-products-write .header .adm {position:relative; display:inline-block; vertical-align:top;}
.lc-products-write .header .title {top:-2px;}
.lc-products-write .header .title {font-family: var(--family-medium);font-weight: var(--weight-medium); line-height:25px; font-size:20px; color:#000;}
.lc-products-write .header .adm {transition:all .3s ease; margin-left:15px; height:24px; padding:1px 10px 0 10px; background-color:#a1b6cf; border-radius:3px;}
.lc-products-write .header .adm {font-family:'gulim'; line-height:24px; font-size:12px; color:#fff;}
.lc-products-write .header .adm:hover {background-color:#143154;}
.lc-products-write .header .btn {display:block; position:absolute; right:0; top:-2px; cursor:pointer;}
.lc-products-write .header .btn {font-family: var(--family-medium);font-weight: var(--weight-medium); line-height:24px; font-size:13px; color:#ccc;}
.lc-products-write .header .btn:hover {color:#000;}

.lc-products-write .scroll-wrapper {max-height:400px;}
.lc-products-write .inner {padding:0 40px;}
.lc-products-write .inner .table {display:table; width:100%;}
.lc-products-write .inner .table:nth-child(n+2) {margin-top:15px;}
.lc-products-write .inner .table > ul {display:table-row;}
.lc-products-write .inner .table > ul > li {display:table-cell; vertical-align:middle; padding:12px 15px; border-top:1px solid #f0f0f0;}
.lc-products-write .inner .table > ul > li:nth-child(1) {width:140px; background-color:#f8f9fa;}
.lc-products-write .inner .table > ul > li:nth-child(1) p {margin:-3px 0 -3px 0;}
.lc-products-write .inner .table > ul > li:nth-child(1) p {font-family: var(--family-light);font-weight: var(--weight-light); line-height:1.4; font-size:13px; color:#666;}
.lc-products-write .inner .table > ul:last-child > li {border-bottom:1px solid #f0f0f0;}
.lc-products-write .inner .tx1 {position:relative; top:4px; margin:-3px 0 -3px 15px; word-wrap:break-word; word-break:break-all;}
.lc-products-write .inner .tx1 {font-family:'gulim'; line-height:1.4; font-size:12px; color:#8ba0b9;}
.lc-products-write .inner .tx1.active {color:#000;}
.lc-products-write .product {position:relative;}
.lc-products-write .product .thumb {display:block; position:absolute; width:50px; height:50px;}
.lc-products-write .product .thumb img {width:50px; height:50px;}
.lc-products-write .product .ty-no {background-color:#ececec;}
.lc-products-write .product .ty-no svg {display:inline-block; margin:auto; position:absolute; left:0; right:0; top:0; bottom:0; width:30px; height:30px; fill:#000; opacity:0.1;}
.lc-products-write .product .title {
    margin-left:64px;
    min-height:50px;
    display:-webkit-box;
    display:-moz-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-align-items:center;
    -ms-flex-align:center;
    -webkit-justify-content:start;
    align-items:center;
    justify-content:start;
}
.lc-products-write .product .title p {font-family: var(--family-light);font-weight: var(--weight-light); line-height:1.4; font-size:13px; color:#333;}

.lc-products-write .input {background-color:#fff; border:1px solid #e6e6e6;}
.lc-products-write .input input {width:138px; height:28px;}
.lc-products-write .input input {font-family: var(--family-light);font-weight: var(--weight-light); line-height:28px; font-size:13px; color:#333;}
.lc-products-write .input .name {font-family: var(--family-light);font-weight: var(--weight-light); line-height:28px; font-size:13px; color:#ccc;}
.lc-products-write .input.value {background-color:#fff;}
.lc-products-write .input.value input {color:#666;}
.lc-products-write .input.focus {background-color:#fff; border-color:var(--color1);}
.lc-products-write .input.focus input {color:#000;}
.lc-products-write .input.w100 input {width:calc(100% - 20px);}

.lc-products-write .checkbox {position:relative; display:inline-block; width:auto; height:14px;}
.lc-products-write .checkbox:nth-child(n+2) {margin-left:50px;}
.lc-products-write .checkbox input {z-index:-1; position:absolute; left:0; top:0; opacity:0;}
.lc-products-write .checkbox label {overflow:hidden; padding:0 0 0 21px; width:calc(100% - 21px); height:14px; position:relative; display:block; cursor:pointer;}
.lc-products-write .checkbox label p {position:relative; top:-2px; height:14px; white-space:nowrap; overflow:visible; text-overflow:ellipsis; word-break:break-all;}
.lc-products-write .checkbox label p {font-family: var(--family-regular);font-weight: var(--weight-regular); line-height:1.4; font-size:13px; color:#999;}
.lc-products-write .checkbox label:before {z-index:1; display:block; content:''; position:absolute; left:0; top:calc(50% - 7px); width:14px; height:14px; background:var(--p-btn) no-repeat; background-position:-150px -200px; opacity:1;}
.lc-products-write .checkbox label.focus:before {background-position:-200px -200px; opacity:1;}

.lc-products-write .textarea {background-color:#fff; border:1px solid #e6e6e6;}
.lc-products-write .textarea textarea {height:100px;}
.lc-products-write .textarea textarea {font-family: var(--family-light);font-weight: var(--weight-light); line-height:1.4; font-size:13px; color:#ccc;}
.lc-products-write .textarea.focus {background-color:#fff; border-color:var(--color1);}
.lc-products-write .textarea.focus textarea {color:#333;}
.lc-products-write .textarea.value textarea {color:#333;}

.lc-products-write .selectbox {transition:border 0.2s, background 0.2s; text-align:left; display:inline-block; vertical-align:middle; position:relative; background-color:#fff; border:1px solid #e6e6e6; width:200px; cursor:pointer;}
.lc-products-write .selectbox .select {position:relative; display:block; height:28px; padding:0 10px 0 10px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
.lc-products-write .selectbox .select {font-family: var(--family-light);font-weight: var(--weight-light); line-height:28px; font-size:13px; color:#999999;}
.lc-products-write .selectbox .select:after {z-index:2; display:block; content:''; position:absolute; right:10px; top:calc(50% - 3px); width:7px; height:7px; background:var(--p-btn) no-repeat; background-position:-150px -300px; opacity:0.3;}
.lc-products-write .selectbox .option {display:none; position:absolute; left:-1px; top:28px; width:calc(100% + 2px);}
.lc-products-write .selectbox .option ul {position:relative; overflow-x:hidden; overflow-y:auto; max-height:300px; background-color:#fff; border:1px solid var(--color2);}
.lc-products-write .selectbox .option ul li {transition:border 0.2s, background 0.2s, color 0.2s; padding:0 10px; display:block; height:28px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
.lc-products-write .selectbox .option ul li {font-family: var(--family-light);font-weight: var(--weight-light); line-height:28px; font-size:13px; color:#666;}
.lc-products-write .selectbox .option ul li.focus {background-color:#fff; color:#1c6bca;}
.lc-products-write .selectbox .option ul li:hover {background-color:#ebf3fe; color:#333;}
.lc-products-write .selectbox.focus {border-color:var(--color2);}
.lc-products-write .selectbox.focus .select {color:#333;}
.lc-products-write .selectbox.focus .select:after {background-position:-150px -250px; opacity:1;}
.lc-products-write .selectbox.focus .option {display:block;}
.lc-products-write .selectbox.value .select {color:#333;}
.lc-products-write .selectbox.w100 {display:block; width:calc(100% - 2px);}

.lc-products-write .file-multiple {display:inline-block; vertical-align:top; margin-top:-15px; position:relative;}
.lc-products-write .file-multiple .multiple-wrap {margin-left:-5px;}
.lc-products-write .file-multiple ul {display:inline; vertical-align:top;}
.lc-products-write .file-multiple ul li {margin:15px 0 0 5px; position:relative; display:inline-block; vertical-align:top;}
.lc-products-write .file-multiple .block {overflow-y:hidden; width:52px; height:52px; border:1px solid #dbdde2; background-color:#ffffff; text-align:center;}
.lc-products-write .file-multiple .block:hover .multiple-btn {bottom:0;}
.lc-products-write .file-multiple .block .multiple-table {display:table; width:100%; height:100%; text-align:center;}
.lc-products-write .file-multiple .block .multiple-cell {display:table-cell; vertical-align:middle; width:100%; height:100%; text-align:center;}
.lc-products-write .file-multiple .block img {max-width:100%; max-height:100%; border:0;}
.lc-products-write .file-multiple .block .multiple-num {text-align:center; z-index:1; display:none; position:absolute; left:2px; top:1px; width:20px; height:20px;}
.lc-products-write .file-multiple .block .multiple-num {font-family: var(--family-bold);font-weight: var(--weight-bold); line-height:20px; font-size:14px; color:#ffffff;}
.lc-products-write .file-multiple .block .multiple-num:before {z-index:-1; display:block; content:''; position:absolute; left:0; top:0; width:100%; height:100%; background-color:#000000; opacity:0.8; border-radius:100%;}
.lc-products-write .file-multiple .block .multiple-btn {transition:bottom 0.2s; display:block; position:absolute; left:0; bottom:-52px; width:100%;}
.lc-products-write .file-multiple .block .multiple-btn:before {z-index:1; display:block; content:''; position:absolute; left:0; top:0; width:100%; height:100%; background-color:#000000; opacity:0.8;}
.lc-products-write .file-multiple .block .multiple-btn > span {z-index:2; position:relative; display:inline-block; vertical-align:top; width:100%; height:52px; cursor:pointer; text-align:center;}
.lc-products-write .file-multiple .block .multiple-btn > span a {text-decoration:none; display:block; width:100%; height:100%;}
.lc-products-write .file-multiple .block .multiple-btn > span,
.lc-products-write .file-multiple .block .multiple-btn > span a {transition:background 0.2s, color 0.2s; font-family: var(--family-light);font-weight: var(--weight-light); line-height:52px; font-size:13px; color:#969a9c;}
.lc-products-write .file-multiple .block .multiple-btn > span:hover {background-color:var(--color2);}
.lc-products-write .file-multiple .block .multiple-btn > span:hover,
.lc-products-write .file-multiple .block .multiple-btn > span:hover a {color:#ffffff;}
.lc-products-write .file-multiple .upload {width:50px; height:50px; border:2px dashed #dbdde2; background-color:#ffffff;}
.lc-products-write .file-multiple .upload input {opacity:0; z-index:1; position:absolute; left:0; top:0; width:100%; height:100%; cursor:pointer;}
.lc-products-write .file-multiple .upload input.off {z-index:-1;}
.lc-products-write .file-multiple .upload .icon-add {display:block; position:absolute; left:50%; top:50%; width:0; height:0;}
.lc-products-write .file-multiple .upload .icon-add:before {display:block; content:''; position:absolute; left:-13px; top:-2px; width:26px; height:4px; background-color:#dbdde2;}
.lc-products-write .file-multiple .upload .icon-add:after {display:block; content:''; position:absolute; left:-2px; top:-13px; width:4px; height:26px; background-color:#dbdde2;}
.lc-products-write .file-multiple .upload:hover {transition:border 0.2s; border:2px dashed var(--color2);}
.lc-products-write .file-multiple .upload:hover .icon-add:before,
.lc-products-write .file-multiple .upload:hover .icon-add:after {transition:background 0.2s; background-color:var(--color2);}
.lc-products-write .file-multiple .placeholder {border:2px dashed var(--color2);}

.lc-products-write .notice {padding:28px 20px 24px 20px;}
.lc-products-write .notice p {}
.lc-products-write .notice p {font-weight:bold; font-family:'dotum'; line-height:1.4; font-size:12px; color:#333;}
.lc-products-write .notice ul {margin-top:3px;}
.lc-products-write .notice li {display:block;}
.lc-products-write .notice li {font-family:'dotum'; line-height:1.9; font-size:11px; color:#999;}

.lc-products-write .footer {margin:0 40px; padding-top:30px; display:block; text-align:center; border-top:1px solid #f0f0f0;}
.lc-products-write .footer li {display:inline-block;}
.lc-products-write .footer li:nth-child(n+2) {margin-left:6px;}
.lc-products-write .footer .ty-1,
.lc-products-write .footer .ty-2 {display:block; width:120px; height:42px; text-align:center; border-radius:4px; cursor:pointer; font-family: var(--family-regular);font-weight: var(--weight-regular); line-height:42px; font-size:15px; color:#fff;}
.lc-products-write .footer .ty-1 {background-color:#555;}
.lc-products-write .footer .ty-1:hover {background-color:#000;}
.lc-products-write .footer .ty-2 {background-color:#ccc;}
.lc-products-write .footer .ty-2:hover {background-color:#999;}

/* lc-products-inquiry-upw */

.lc-products-inquiry-upw .body {padding:50px 60px; position:relative; background-color:#ffffff; border-radius:4px;}
.lc-products-inquiry-upw .header {text-align:center;}
.lc-products-inquiry-upw .header p {margin:-5px 0 -5px 0; letter-spacing:-0.05em;}
.lc-products-inquiry-upw .header p {font-family: var(--family-medium);font-weight: var(--weight-medium); line-height:1.4; font-size:24px; color:#000;}
.lc-products-inquiry-upw .input {margin:30px auto 0 auto; display:block; width:262px; background-color:#fafafa; border:1px solid #e1e1e1;}
.lc-products-inquiry-upw .input input {width:calc(100% - 20px); height:38px;}
.lc-products-inquiry-upw .input input {font-family: var(--family-regular);font-weight: var(--weight-regular); line-height:38px; font-size:14px; color:#999;}
.lc-products-inquiry-upw .input .name {font-family: var(--family-regular);font-weight: var(--weight-regular); line-height:38px; font-size:14px; color:#999;}
.lc-products-inquiry-upw .input.focus {background-color:#fff; border-color:var(--color1);}
.lc-products-inquiry-upw .input.focus input {color:#000;}
.lc-products-inquiry-upw .input.value {background-color:#fff;}
.lc-products-inquiry-upw .input.value input {color:#666;}
.lc-products-inquiry-upw .result {margin:12px 0 -3px 0; text-align:center;}
.lc-products-inquiry-upw .result {font-family: var(--family-light);font-weight: var(--weight-light); line-height:1.4; font-size:14px; color:#666;}
.lc-products-inquiry-upw .result.ty-red {color:#ed1c24;}
.lc-products-inquiry-upw .footer {padding-top:30px; display:block; text-align:center;}
.lc-products-inquiry-upw .footer li {display:inline-block;}
.lc-products-inquiry-upw .footer li:nth-child(n+2) {margin-left:6px;}
.lc-products-inquiry-upw .footer .ty-1,
.lc-products-inquiry-upw .footer .ty-2 {display:block; width:120px; height:42px; text-align:center; border-radius:4px; cursor:pointer; font-family: var(--family-regular);font-weight: var(--weight-regular); line-height:42px; font-size:15px; color:#fff;}
.lc-products-inquiry-upw .footer .ty-1 {background-color:#555;}
.lc-products-inquiry-upw .footer .ty-1:hover {background-color:#000;}
.lc-products-inquiry-upw .footer .ty-2 {background-color:#ccc;}
.lc-products-inquiry-upw .footer .ty-2:hover {background-color:#999;}

/* lc-inquiry-write */

.lc-inquiry-write {
    box-sizing: border-box;
    padding: 36px 0 24px 0;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.lc-inquiry-write .close-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    padding: 4px;
    cursor: pointer;
}

.lc-inquiry-write .close-icon > span {
    position: absolute;
    bottom: 0;
    left: 0;
}

.lc-inquiry-write .body {
    max-height: 660px;
    padding: 0 48px;
}

.lc-inquiry-write.product-option-select-layer .body {
    max-height: 464px;
}

.lc-inquiry-write .body .layer-title {
    padding: 20px 0;
}

.lc-inquiry-write .body .layer-title p {
    color: #111;
    font-size: 20px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
}

.lc-inquiry-write.identification .body .layer-title {
    padding: 10px 0 20px 0;
}

.lc-inquiry-write.identification .body .layer-title p {
    color: #111;
    font-size: 20px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
}

.lc-inquiry-write .body .message {
    padding: 10px 0;
    border-bottom: 1px solid #E6E6E6;
}

.lc-inquiry-write .body .message p {
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-inquiry-write .body .input-wrap {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.lc-inquiry-write .body .input-title {
    width: 140px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lc-inquiry-write .body .input-title p {
    color: #999;
    font-size: 15px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-inquiry-write .body .input-title .req {
    fill: var(--color2);
}

.lc-inquiry-write .body .input-wrap input:not([type=checkbox]) {
    display: flex;
    height: 36px;
    padding: 0px 4px;
    align-items: center;
    border: 0;
    border-bottom: 1px solid #E6E6E6;
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-inquiry-write .body .input-wrap input:read-only {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lc-inquiry-write .body .input-wrap input:not([type=checkbox]):focus {
    border-bottom: 1px solid #111;
}

.lc-inquiry-write .body .input-wrap input:not([type=checkbox]).w240 {
    width: 232px;
}

.lc-inquiry-write .body .input-wrap input:not([type=checkbox]).w274 {
    width: 266px;
}

.lc-inquiry-write .body .input-wrap input:not([type=checkbox])::placeholder {
    color: #CCC;
}

.lc-inquiry-write .body .input-wrap .open-layer {
    width: 98px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 32px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    box-sizing: border-box;
    cursor: pointer;
}

.lc-inquiry-write .body .input-wrap .open-layer:hover {
    border: 1px solid #111;
}

.lc-inquiry-write .body .input-wrap textarea {
    width: calc(100% - 160px);
    height: 170px;
    padding: 10px 10px 0 10px;
    border: 1px solid #E6E6E6;
    resize: none;
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-inquiry-write .body .input-wrap textarea:focus {
    border: 1px solid #111;
}

.lc-inquiry-write .body .input-wrap textarea::placeholder {
    color: #CCC;
}

.lc-inquiry-write .checkbox-wrap {
    display: flex;
    gap: 10px;
}

.lc-inquiry-write .checkbox {
    width: unset;
    height: unset;
    display: flex;
    align-items: center;
}

.lc-inquiry-write .checkbox label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    line-height: unset;
    font-size: unset;
    color: unset;
}

.lc-inquiry-write .checkbox label .check-icon {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.lc-inquiry-write .checkbox label.focus .check-icon {
    display: block;
}

.lc-inquiry-write .checkbox label p {
    color: #111;
    font-size: 15px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-inquiry-write .checkbox input {
    appearance: none;
}

.lc-inquiry-write .result {
    width: 100%;
    display: none;
    padding: 10px 0;
    text-align: center;
    color: #FFF;
    font-size: 14px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
    border-radius: 6px;
    background: #F11;
}

.lc-inquiry-write .result.active {
    display: block;
}

.lc-inquiry-write .recaptcha {
    display: flex;
    /*justify-content: end;*/
    padding: 10px 0;
}

.lc-inquiry-write .non-members {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #E6E6E6;
}

.lc-inquiry-write .description {
    padding: 24px 0;
    margin-top: 24px;
    border-top: 1px solid #E6E6E6;
}

.lc-inquiry-write .description p {
    margin-top: 8px;
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-inquiry-write .footer {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding-top: 16px;
    margin-top: 10px;
}

.lc-inquiry-write .footer .btn {
    width: 200px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border: 1px solid #111;
    background: #FFF;
    cursor: pointer;
}

.lc-inquiry-write .footer .btn:nth-child(2) {
    background: #111;
}


.lc-inquiry-write .footer .btn p {
    color: #111;
    font-size: 18px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
}

.lc-inquiry-write .footer .btn:nth-child(2) p {
    color: #FFF;
}

.lc-inquiry-write .product-option-item {
    padding: 8px 10px 8px 16px;
    border-bottom: 1px solid #E6E6E6;
    cursor: pointer;
}

.lc-inquiry-write .product-option-item:hover {
    background: #F4F4F4;
}

.lc-inquiry-write .product-option-item.active {
    background: #FAFAFA;
}

.lc-inquiry-write .product-option-item p {
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}


/* lc-products-preview */

.lc-products-preview {
    transition: opacity .3s ease;
    opacity: 0 !important;
}

.lc-products-preview.active {
    opacity: 1 !important;
}

.lc-products-preview .Layer-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: calc(var(--main-width) + 60px);
    max-height: calc(100% - 100px);
}

.lc-products-preview .Layer-content {
    border-radius: 10px;
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow-y: auto;
}

.lc-products-preview .preview-content {
    width: 100%;
    padding: 40px 30px;
    box-sizing: border-box;
}

.lc-products-preview .contents {
    position: relative;
    width: 100%;
    display: flex;
    align-items: start;
    gap: 100px;
}

.lc-products-preview .contents.right {
    justify-content: end;
}

.lc-products-preview .contents.contents-type-a {
    gap: 60px;
}

.lc-products-preview .contents .gallery-image-wrap {
    width: calc(100% - 540px);
}

.lc-products-preview .contents .gallery-image-wrap.fixed {
    position: absolute;
    left: 0;
}

.lc-products-preview .contents.contents-type-b .gallery-image-wrap {
    width: calc(100% - 620px);
}

.lc-products-preview .contents.contents-type-c .gallery-image-wrap {
    width: calc(100% - 650px);
}

.lc-products-preview .contents .gallery-image.gallery-type-a {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
}

.lc-products-preview .contents .gallery-image.gallery-type-b {
    position: relative;
    /*width: 100%;*/
    display: flex;
    gap: 10px;
    flex: 1;
}

.lc-products-preview .contents .gallery-image.gallery-type-c {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
}

.lc-products-preview .contents .gallery-image.gallery-type-a .gallery {
    position: relative;
    max-width: 440px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.lc-products-preview .contents .gallery-image.gallery-type-b .gallery {
    position: relative;
    max-height: 530px;
    height: 100%;
}

.lc-products-preview .contents .gallery-image.gallery-type-c .gallery {
    position: relative;
    max-width: 440px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/*.lc-products-preview .contents .gallery-image.gallery-type-a ul {*/
/*    width: fit-content;*/
/*}*/

.lc-products-preview .contents .gallery-image .gallery li {
    position: relative;
    width: 80px !important;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #E6E6E6;
    border-radius: 4px;
    overflow: hidden;
}

.lc-products-preview .contents .gallery-image .gallery li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.lc-products-preview .contents .gallery-image.basic-st .gallery li img {
    width: unset;
    height: unset;
    object-fit: unset;
    max-width: 100%;
    max-height: 100%;
}

.lc-products-preview .contents .gallery-image .gallery li.active img {
    opacity: 1;
}

.lc-products-preview .contents .gallery-image .gallery li .video-background {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.30);
    z-index: 2;
}

.lc-products-preview .contents .image-round .gallery-image .gallery li .video-background {
    border-radius: 4px;
}

.lc-products-preview .contents .gallery-image.gallery-type-a .gallery-wrap {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.lc-products-preview .contents .gallery-image.gallery-type-c .gallery-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto 0 auto;
}


.lc-products-preview .contents .gallery-image .swiper-btn-prev svg path {
    fill: #666666;
}

.lc-products-preview .contents .gallery-image .swiper-btn-prev.swiper-button-disabled svg path {
    fill: #CCC;
}

.lc-products-preview .contents .gallery-image .swiper-btn-prev:not(.swiper-button-disabled):hover {
    border: 1px solid #CCC;
}


.lc-products-preview .contents .gallery-image .swiper-btn-next svg path {
    fill: #666666;
}

.lc-products-preview .contents .gallery-image .swiper-btn-next.swiper-button-disabled svg path {
    fill: #CCC;
}

.lc-products-preview .contents .gallery-image .swiper-btn-next:not(.swiper-button-disabled):hover {
    border: 1px solid #CCC;
}

.lc-products-preview .contents .gallery-image.gallery-type-a .swiper-btn-prev {
    position: absolute;
    left: 0;
    width: 24px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    z-index: 2;
    cursor: pointer;
}

.lc-products-preview .contents .gallery-image.gallery-type-a .swiper-btn-next {
    position: absolute;
    right: 0;
    width: 24px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    z-index: 2;
    cursor: pointer;
}

.lc-products-preview .contents .gallery-image.gallery-type-b .swiper-btn {
    display: flex;
    gap: 4px;
    margin-top: 10px;
}

.lc-products-preview .contents .gallery-image.gallery-type-b .swiper-btn > div {
    width: 36px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    cursor: pointer;
}

.lc-products-preview .contents .gallery-image.gallery-type-c .swiper-btn-prev {
    position: absolute;
    left: -34px;
    width: 24px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    z-index: 2;
    cursor: pointer;
}

.lc-products-preview .contents .gallery-image.gallery-type-c .swiper-btn-next {
    position: absolute;
    right: -34px;
    width: 24px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    z-index: 2;
    cursor: pointer;
}

.lc-products-preview .contents .gallery-image .image-wrap {
    position: relative;
    height: fit-content;
    background: #E6E6E6;
    display: flex;
    align-items: center;
}

.lc-products-preview .contents .image-round .gallery-image .image-wrap {
    border-radius: 8px;
    overflow: hidden;
}

.lc-products-preview .contents .gallery-image.gallery-type-a .image-wrap {
    width: 100%;
}

.lc-products-preview .contents .gallery-image.gallery-type-b .image-wrap {
    width: calc(100% - 90px);
}

.lc-products-preview .contents .gallery-image.gallery-type-b .image-wrap.no-gallery {
    width: 100%;
}

.lc-products-preview .contents .gallery-image.gallery-type-d .image-wrap {
    width: 100%;
}

.lc-products-preview .contents .gallery-image .image-wrap .image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lc-products-preview .contents .gallery-image .image-wrap .image:after {
    display: block;
    content: "";
    padding-bottom: 100%;
}

.lc-products-preview .contents .gallery-image .image-wrap .image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lc-products-preview .contents .gallery-image.basic-st .image-wrap .image img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    width: unset;
    height: unset;
    object-fit: unset;
}

.lc-products-preview .contents .gallery-image .image-wrap .image-prev {
    position: absolute;
    left: 0;
    padding: 0 12px;
    cursor: pointer;
    z-index: 1000;
}

.lc-products-preview .contents .gallery-image .image-wrap .image-next {
    position: absolute;
    right: 0;
    padding: 0 12px;
    cursor: pointer;
    z-index: 1000;
}

.lc-products-preview .contents .gallery-image .image-wrap .image-video {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background: #000;
    display: none;
}

.lc-products-preview .contents .gallery-image .image-wrap .image-video:after {
    display: block;
    content: "";
    padding-bottom: 100%;
}

.lc-products-preview .contents .gallery-image .image-wrap .image-video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

.lc-products-preview .gallery-image .open-gallery {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.lc-products-preview .gallery-image .open-gallery > li {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lc-products-preview .image-round .gallery-image .open-gallery > li {
    border-radius: 8px;
    overflow: hidden;
}

.lc-products-preview .gallery-image:not(.basic-st) .open-gallery > li:after {
    display: block;
    content: "";
    padding-bottom: 100%;
}

.lc-products-preview .open-gallery > li:nth-child(1) {
    display: none;
}

.lc-products-preview .gallery-image .open-gallery img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lc-products-preview .gallery-image.basic-st .open-gallery img {
    /*position: absolute;*/
    position: relative;
    max-width: 100%;
    max-height: 100%;
    width: unset;
    height: unset;
    object-fit: unset;
}

.lc-products-preview .gallery-image .open-gallery .image-video {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background: #000;
}

.lc-products-preview .gallery-image:not(.basic-st) .open-gallery .image-video:after {
    display: block;
    content: "";
    padding-bottom: 100%;
}

.lc-products-preview .gallery-image .open-gallery .image-video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}






/* lc-audios */

.lc-audios {
    padding: 24px 0;
}

.lc-audios .items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lc-audios .item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lc-audios .item .title {
    margin-top: 12px;
    color: #666;
    font-size: 13px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

/* lc-audios */

.lc-products-preview .contents .details-wrap {
    width: 480px;
}

.lc-products-preview .contents .details-wrap.fixed {
    position: absolute;
    right: 0;
}

.lc-products-preview .contents.contents-type-b .details-wrap {
    width: 520px;
}

.lc-products-preview .contents.contents-type-c .details-wrap {
    width: 550px;
    padding-bottom: 13px;
}

.lc-products-preview .details-wrap .order-time {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #E6E6E6;
}
.lc-products-preview .details-wrap .order-time p {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}
.lc-products-preview .details-wrap .order-time span {
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4px;
    margin-right: 4px;
    margin-left: 8px;
    border-radius: 4px;
    background: #333;
    color: #FFF;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.lc-products-preview .details-wrap .icon-keyword {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    gap: 4px;
}

.lc-products-preview .details-wrap .icon-keyword > div {
    position: relative;
    display: flex;
    height: 23px;
    padding: 0px 6px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
}

.lc-products-preview .details-wrap .icon-keyword > div a {
    position: absolute;
    width: 100%;
    height: 100%;
}

.lc-products-preview .details-wrap .icon-keyword > div p {
    max-width: 225px;
    font-size: 12px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lc-products-preview .details-wrap .icon {
    border: 1px solid #333;
    background: #333;
}

.lc-products-preview .details-wrap .icon:hover {
    border: 1px solid var(--color2);
    background: var(--color2);
}

.lc-products-preview .details-wrap .icon p {
    color: #FFF;
}

.lc-products-preview .details-wrap .icon-keyword .keyword {
    color: #111;
    border: 1px solid #E6E6E6;
    background: #FFF;
}

.lc-products-preview .details-wrap .keyword:hover {
    border: 1px solid #333;
}

.lc-products-preview .details-wrap .brand {
    position: relative;
    width: fit-content;
    margin-bottom: 8px;
    cursor: pointer;
}

.lc-products-preview .details-wrap .brand p {
    color: #111;
    font-size: 20px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 140%;
    text-decoration-line: underline;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lc-products-preview .details-wrap .brand:hover p {
    color: var(--color2);
}

.lc-products-preview .details-wrap .products-title {
    margin-bottom: 16px;
}

.lc-products-preview .details-wrap .products-title p {
    color: #111;
    font-size: 18px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-preview .details-wrap .products-title.bold p {
    font-size: 20px;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
}

.lc-products-preview .details-wrap .summary {
    margin-bottom: 16px;
}

.lc-products-preview .details-wrap .summary p {
    color: #666;
    font-size: 14px;
    font-family: var(--family-light);
    font-weight: var(--weight-light);
    line-height: 140%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.lc-products-preview .details-wrap .products-price {
    position: relative;
    padding-bottom: 36px;
}

.lc-products-preview .details-wrap .price > p {
    display: flex;
    align-items: center;
}

.lc-products-preview .details-wrap .price > p > span {
    display: flex;
    align-items: center;
}

.lc-products-preview .details-wrap .price .currency-price {
    color: #111;
    font-family: Arial;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    margin-right: 3px;
}

.lc-products-preview .details-wrap .list_price.type-1 .price .currency-price {
    color: #999;
    font-family: Arial;
    font-size: 16px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    text-decoration: line-through;
}

.lc-products-preview .details-wrap .price .currency-text {
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-preview .details-wrap .list_price.type-1 .price .currency-text {
    color: #999;
    font-size: 13px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    padding-top: 1px;
}

.lc-products-preview .details-wrap .discount-price {
    display: flex;
}

.lc-products-preview .details-wrap .discount-percent {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lc-products-preview .details-wrap .discount-percent svg path {
    fill: var(--color2);
}

.lc-products-preview .details-wrap .discount-percent p {
    color: var(--color2);
    font-family: Arial;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    margin-right: 4px;
}

.lc-products-preview .details-wrap .discount-percent .time-sale-timer {
    position: absolute;
    bottom: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    padding: 2px 4px 0 4px;
    border-radius: 4px;
    background: var(--color2);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}

.lc-products-preview .details-wrap .discount-percent .time-sale-timer .time-sale-arrow {
    position: absolute;
    top: -4px;
    left: 25px;
}

.lc-products-preview .details-wrap .discount-percent .time-sale-timer p {
    color: #FFF;
    font-family: Arial;
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
    margin-right: 0;
}

@keyframes blink { 50% { opacity: 0.0; } }

.lc-products-preview .details-wrap .discount-percent .time-sale-timer p .time-sale-comma {
    margin: 0 6px;
    animation: blink 1s step-start 0s infinite;
}

.lc-products-preview .details-wrap .discount-percent .time-sale-timer p .time-sale-comma svg path {
    fill: #FFF;
}

.lc-products-preview .details-wrap .products-price .supplier {
    position: absolute;
    top: 2px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lc-products-preview .details-wrap .products-price .supplier a {
    color: #666;
    font-size: 13px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-preview .details-wrap .products-price .supplier:hover svg path {
    fill: var(--color2);
}

.lc-products-preview .details-wrap .products-price .supplier:hover a {
    color: var(--color2);
}

.lc-products-preview .details-wrap .review-quantity {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
}

.lc-products-preview .details-wrap .review:hover .review-icon svg path {
    fill: var(--color2);
}

.lc-products-preview .details-wrap .review {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lc-products-preview .details-wrap .review .score {
    display: flex;
    align-items: center;
    color: #111;
    font-family: Arial;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
    gap: 4px;
}

.lc-products-preview .details-wrap .review:hover .score {
    color: var(--color2);
}

.lc-products-preview .details-wrap .review .count {
    color: #666;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    text-decoration: none;
    cursor: pointer;
}

.lc-products-preview .details-wrap .review:hover .count {
    color: var(--color2);
}

.lc-products-preview .details-wrap .review-quantity-division {
    width: 1px;
    height: 14px;
    background: #E4E4E4;
    margin: 0 12px;
}

.lc-products-preview .details-wrap .quantity {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lc-products-preview .details-wrap .quantity p {
    color: #666;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-preview .details-wrap .details-wrap-division {
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 20px;
}

.lc-products-preview .details-wrap .country {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 8px;
    background-color: #111;
    margin-bottom: 16px;
}

.lc-products-preview .details-wrap .country p {
    color: #FFF;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-preview .details-wrap .country p span {
    text-decoration: underline;
    cursor: pointer;
}

.lc-products-preview .details-wrap .card {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.lc-products-preview .details-wrap .card .title {
    width: 100px;
}

.lc-products-preview .details-wrap .card .title p {
    color: #666;
    font-size: 14px;
    font-family: var(--family-light);
    font-weight: var(--weight-light);
    line-height: 140%;
}

.lc-products-preview .details-wrap .card .content {
    width: calc(100% - 100px);
    display: flex;
    justify-content: space-between;
}

.lc-products-preview .details-wrap .card .content p {
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    cursor: pointer;
}

.lc-products-preview .details-wrap .card .content p:hover {
    color: var(--color2);
    text-decoration: underline;
}

.lc-products-preview .details-wrap .point {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.lc-products-preview .details-wrap .point .title {
    width: 100px;
}

.lc-products-preview .details-wrap .point .title p {
    color: #666;
    font-size: 14px;
    font-family: var(--family-light);
    font-weight: var(--weight-light);
    line-height: 140%;
}

.lc-products-preview .details-wrap .point .content {
    width: calc(100% - 100px);
    display: flex;
    gap: 4px;
}

.lc-products-preview .details-wrap .point .content p {
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-preview .details-wrap .point .content .review-point {
    color: #666;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-preview .details-wrap .delivery-choice {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.lc-products-preview .details-wrap .delivery-choice .title {
    width: 100px;
}

.lc-products-preview .details-wrap .delivery-choice .title p {
    color: #666;
    font-size: 14px;
    font-family: var(--family-light);
    font-weight: var(--weight-light);
    line-height: 140%;
}

.lc-products-preview .details-wrap .delivery-choice .content {
    width: calc(100% - 100px);
    display: flex;
    gap: 4px;
}

.lc-products-preview .details-wrap .delivery-choice .content p {
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lc-products-preview .details-wrap .delivery-choice .content p > span:first-child {
    display: flex;
    align-items: center;
}

.lc-products-preview .details-wrap .delivery-choice .content p > span:first-child:after {
    content: "";
    display: block;
    width: 1px;
    height: 14px;
    margin: 0 4px 0 8px;
    background-color: #E4E4E4;
}

.lc-products-preview .details-wrap .delivery-choice .content p > span:nth-child(3) {
    color: #346AFF;
}

.lc-products-preview .details-wrap .delivery-choice .detail-btn {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.lc-products-preview .details-wrap .delivery-choice .detail-btn p {
    color: #666;
    font-size: 13px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    text-decoration: underline;
    cursor: pointer;
}

.lc-products-preview .details-wrap .delivery {
    display: flex;
    margin-bottom: 18px;
}

.lc-products-preview .details-wrap .delivery .title {
    width: 100px;
    padding-top: 8px;
}

.lc-products-preview .details-wrap .delivery .title p {
    color: #666;
    font-size: 14px;
    font-family: var(--family-light);
    font-weight: var(--weight-light);
    line-height: 140%;
}

.lc-products-preview .details-wrap .delivery .content {
    width: calc(100% - 100px);
    display: flex;
    gap: 4px;
}

.lc-products-preview .details-wrap .delivery .content .delivery-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.lc-products-preview .details-wrap .delivery .content .delivery-radio p {
    color: #666;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-preview .details-wrap .delivery .content .radio label {
    position: relative;
    height: 36px;
    padding: 0 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    cursor: pointer;
    box-sizing: border-box;
}

.lc-products-preview .details-wrap .delivery .content .radio label:hover p {
    color: #111;
}

.lc-products-preview .details-wrap .delivery .content .radio label.focus {
    padding: 0 8px;
    border: 1px solid #111;
}

.lc-products-preview .details-wrap .delivery .content .radio label.focus p {
    color: #111;
}

.lc-products-preview .details-wrap .delivery .content input {
    appearance: none;
}

.lc-products-preview .details-wrap .order-level-info {
    padding: 20px 0;
    border-top: 1px solid #E4E4E4;
}

.lc-products-preview .details-wrap .order-level-info-box {
    height: 38px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    background: #666;
    padding: 0 8px;
    gap: 6px;
}

.lc-products-preview .details-wrap .order-level-info-box p {
    color: #FFF;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-preview .details-wrap .order-level-info-box p > a {
    color: #FFF;
    text-decoration-line: underline;
}

.lc-products-preview .details-wrap .file-download {
    padding: 12px 0 10px 0;
    border-top: 1px solid #E4E4E4;
}

/* naverpay */

.lc-products-preview .dw-naverpay:not(.active) {display: none}

.lc-products-preview .details-wrap .file-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    margin-top: 8px;
    background: #F8F8F8;
}

.lc-products-preview .details-wrap .file-item-contents {
    width: calc(100% - 150px);
}

.lc-products-preview .details-wrap .file-item-name {
    color: #111;
    font-size: 13px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lc-products-preview .details-wrap .file-item-title {
    color: #666;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-preview .details-wrap .file-item-button {
    width: 98px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #111;
    background: #FFF;
    color: #111;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
}

.lc-products-preview .details-wrap .naver-kakao-order {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 0;
    border-top: 2px solid #000;
    border-bottom: 1px solid #EAECEE;
}

.lc-products-preview .details-wrap .naver-kakao-order .description {
    width: 120px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.lc-products-preview .details-wrap .naver-kakao-order .description p {
    color: #666;
    font-size: 11px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: 140%;
    font-family: Noto Sans KR;
}

.lc-products-preview .details-wrap .naver-kakao-order .button {
    width: calc(100% - 128px);
    height: 100%;
    display: flex;
    gap: 8px;
}

.lc-products-preview .details-wrap .naver-kakao-order .button span {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
}

.lc-products-preview .details-wrap .naver-kakao-order .button .naver-button {
    border: 1px solid #00C851;
    background: #00DE5A;
}

.lc-products-preview .details-wrap .naver-kakao-order .button .kakao-button {
    border: 1px solid #F8E400;
    background: #FFEB00;
}

.lc-products-preview .details-wrap .dw-naverpay {
    padding-top: 16px;
}



















/*@media (hover: hover) {*/

/*    .lc-products-preview .Layer-content {*/
/*        scrollbar-color: var(--scrollbar-color) transparent;*/
/*        scrollbar-width: thin;*/
/*    }*/

/*    .lc-products-preview .Layer-content::-webkit-scrollbar {*/
/*        background: transparent;*/
/*        width: 16px;*/
/*    }*/

/*    .lc-products-preview .Layer-content::-webkit-scrollbar-thumb {*/
/*        height: 56px;*/
/*        border-radius: 8px;*/
/*        border: 4px solid transparent;*/
/*        background-clip: content-box;*/
/*        background-color: var(--scrollbar-color);*/
/*    }*/

/*}*/



/*.lc-products-preview .wraps {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: -webkit-flex;*/
/*    display: flex;*/

/*    box-sizing: border-box;*/
/*    width: 100%;*/
/*    padding: 40px 30px 40px 30px;*/
/*}*/

/*.lc-products-preview .products-order .buy {margin-bottom:0;}*/

/*.lc-products-preview .wraps .gallery_image {display: flex; position: relative;}*/
/*.lc-products-preview .wraps .details-wrap {margin-left:auto; border-radius: 20px;}*/

/*.lc-products-preview .swiper-btn-prev {display: flex; justify-content: center; align-items: center; position: absolute; width: 70px; height: 31px; top: -31px; transform: rotate(180deg); opacity:0.1;}*/
/*.lc-products-preview .swiper-btn-prev:hover {cursor: pointer; opacity: 1;}*/
/*.lc-products-preview .swiper-btn-prev:hover svg path {stroke: var(--color2);}*/
/*.lc-products-preview .swiper-btn-next {display: flex; justify-content: center; align-items: center; position: absolute; width: 70px; height: 31px; top: 495px; opacity:0.1;}*/
/*.lc-products-preview .swiper-btn-next:hover {cursor: pointer; opacity: 1;}*/
/*.lc-products-preview .swiper-btn-next:hover svg path {stroke: var(--color2);}*/
/*.lc-products-preview .swiper-container {width: 70px; max-height: 495px; margin-right: 30px;}*/
/*.lc-products-preview .image-wrap {position: relative; display: flex; justify-content: center; align-items: center; width: var(--p-header-width); min-height: var(--p-header-width); margin-right: 10px; background-color: #FFFFFF; border-radius: 20px; overflow: hidden;}*/
/*.lc-products-preview .image-wrap.no-image {background-color: #eeeeee;}*/
/*.lc-products-preview .image-wrap .sale_dday {display: flex; position: absolute; top: 15px; left: 15px; font-family: var(--family-medium);font-weight: var(--weight-medium); line-height: 36px; font-size: 36px; color: #FFFFFF;}*/
/*.lc-products-preview .image-wrap .sale_dday div {height: 40px; width: 26px; padding-left: 1px; text-align: center; background-color: #444444; border-radius: 4px;}*/
/*.lc-products-preview .image-wrap .sale_dday .comma {width: 7px; margin : 2px 8px -2px 8px; padding: 0; background-color: transparent; color: #444444;}*/
/*@keyframes blink { 50% { opacity: 0.0; } }*/
/*.lc-products-preview .image-wrap .sale_dday .blink:nth-child(6) {animation: blink 1s step-start 0s infinite;}*/
/*.lc-products-preview .image-wrap .icon {display: none; position: absolute; top: 0; right: 0;}*/
/*.lc-products-preview .image-wrap .icon.active {display: block}*/
/*.lc-products-preview .image-wrap .icon img {width: 100px; height: 100px;}*/
/*.lc-products-preview .image-wrap .image img {max-width: var(--p-header-width); max-height: var(--p-header-width);}*/
/*.lc-products-preview .zoom {display: flex; justify-content: center; align-items: flex-end; height: 50px; margin-right: 40px;}*/
/*.lc-products-preview .zoom svg:hover path {fill: var(--color2);}*/
/*.lc-products-preview .zoom svg:hover g {stroke: var(--color2);}*/
/*.lc-products-preview .zoom svg:hover path:nth-child(3) {stroke: var(--color2);}*/
/*.lc-products-preview .details-wrap {width: 400px; min-height: var(--p-header-width); background-color: #FFFFFF;}*/
/*.lc-products-preview .details-wrap .brand_side {position: relative; display: flex; justify-content: space-between; height:13px; margin-bottom: 20px;}*/
/*.lc-products-preview .details-wrap .brand_side .brand p {font-family: var(--family-medium);font-weight: var(--weight-medium); line-height: 13px; font-size: 14px; color: #000000;}*/
/*.lc-products-preview .details-wrap .brand_side .side-btn {position: absolute; top: -10px; right: 0;}*/
/*.lc-products-preview .details-wrap .brand_side .side-btn svg {cursor: pointer; opacity: 0.8;}*/
/*.lc-products-preview .details-wrap .brand_side .side-btn svg:hover {fill: var(--color2);}*/
/*.lc-products-preview .details-wrap .title p {font-family: var(--family-medium);font-weight: var(--weight-medium); line-height: 1.3; font-size: 28px; color: #000000;}*/
/*.lc-products-preview .details-wrap .model_score {display: flex; justify-content: space-between; margin-top: 20px;}*/
/*.lc-products-preview .details-wrap .model_score p {font-family: var(--family-light);font-weight: var(--weight-light); line-height: 13px; font-size: 14px; color: #666666;}*/
/*.lc-products-preview .details-wrap .model_score .model p {width: 300px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}*/
/*.lc-products-preview .details-wrap .model_score .score {display: flex;}*/
/*.lc-products-preview .details-wrap .model_score .score svg {margin-right: 5px;}*/
/*.lc-products-preview .details-wrap .list_price {display: flex; justify-content: space-between; align-items: baseline;}*/
/*.lc-products-preview .details-wrap .list_price .price_title {font-family: var(--family-light);font-weight: var(--weight-light); line-height: 17px; font-size: 14px; color: #000000;}*/
/*.lc-products-preview .details-wrap .list_price.type-1 .price {font-family: var(--family-light);font-weight: var(--weight-light); line-height: 17px; font-size: 14px; color: #666666;}*/
/*.lc-products-preview .details-wrap .list_price.type-1 .price span .currency-price {text-decoration: line-through; font-size: 18px;}*/
/*.lc-products-preview .details-wrap .list_price.type-1 .price span .currency-decimal:before {content: '.';}*/
/*.lc-products-preview .details-wrap .list_price.type-1 .price span .currency-decimal {text-decoration: line-through; font-size: 18px;}*/
/*.lc-products-preview .details-wrap .list_price.type-2 .price {font-family: var(--family-regular);font-weight: var(--weight-regular); line-height: 17px; font-size: 14px; color: #000000;}*/
/*.lc-products-preview .details-wrap .list_price.type-2 .price span .currency-price {font-family: var(--family-medium);font-weight: var(--weight-medium); font-size: 24px;}*/
/*.lc-products-preview .details-wrap .discount_price {display: flex; justify-content: space-between; align-items: baseline; margin-top: 11px;}*/

/*.lc-products-preview .details-wrap .list_price.type-3 .price {font-family: var(--family-light);font-weight: var(--weight-light); line-height: 17px; font-size: 18px; color: #000000;}*/
/*.lc-products-preview .details-wrap .list_price.type-3 .price span .currency-decimal:before {content: '.';}*/

/*.lc-products-preview .details-wrap .discount_price .price_title {position: relative; font-family: var(--family-light);font-weight: var(--weight-light); line-height: 17px; font-size: 14px; color: #000000; cursor: pointer;}*/
/*.lc-products-preview .details-wrap .discount_price .price_title .detail {transition: opacity 0.2s; display: block; position: absolute; width: 300px; top: 0; left: 93px; z-index: -1; visibility: hidden; opacity: 0;}*/
/*.lc-products-preview .details-wrap .discount_price .price_title:hover .detail {opacity:1; visibility:visible; z-index: 1; animation: detail-support-ani .2s linear;}*/
/*.lc-products-preview .details-wrap .discount_price .price_title .detail > svg {margin-right: -1px; margin-bottom: 1px;}*/
/*.lc-products-preview .details-wrap .discount_price .price_title .detail > span {padding: 5px 7px; font-size: 12px; line-height: 1; color: #FFFFFF; background-color: #000000;}*/
/*@keyframes detail-support-ani {*/
/*    0% {left: 110px;}*/
/*    25% {left: 105px;}*/
/*    50% {left: 100px;}*/
/*    75% {left: 95px;}*/
/*    100% {left: 93px;}*/
/*}*/

/*.lc-products-preview .details-wrap .discount_price .price {font-family: var(--family-regular);font-weight: var(--weight-regular); line-height: 17px; font-size: 14px; color: #000000;}*/
/*.lc-products-preview .details-wrap .discount_price .price span .currency-price {font-family: var(--family-medium);font-weight: var(--weight-medium); font-size: 24px;}*/
/*.lc-products-preview .details-wrap .discount_price .price span .currency-decimal {font-family: var(--family-medium);font-weight: var(--weight-medium); line-height: 1; font-size: 12px; margin-left: 8px;vertical-align: top;}*/
/*.lc-products-preview .details-wrap .benefit {position: relative; display: flex; justify-content: flex-end; margin-top: 20px;}*/
/*.lc-products-preview .details-wrap .benefit span:not(.popup-position) {padding: 0 10px; background-color: #f4f4f4; border-radius: 12px; font-family: var(--family-light);font-weight: var(--weight-light); line-height: 25px; font-size: 12px; color: #666666;}*/
/*.lc-products-preview .details-wrap .benefit span:nth-child(n+2):not(.popup-position) {margin-left: 4px;}*/
/*.lc-products-preview .details-wrap .benefit .a:hover {background-color: #333333; color: #FFFFFF; cursor: pointer;}*/
/*.lc-products-preview .details-wrap .benefit .popup-position {position: absolute; right: -40px; top: 25px;}*/

/*.lc-products-preview .details-wrap .supplier,*/
/*.lc-products-preview .details-wrap .download,*/
/*.lc-products-preview .details-wrap .point,*/
/*.lc-products-preview .details-wrap .delivery {display: flex; border-bottom: 1px solid #f4f4f4; cursor: pointer;}*/
/*.lc-products-preview .details-wrap .delivery:not(.pointer) {cursor: default;}*/
/*.lc-products-preview .details-wrap .supplier .supplier-title,*/
/*.lc-products-preview .details-wrap .download .download-title,*/
/*.lc-products-preview .details-wrap .point .point-title,*/
/*.lc-products-preview .details-wrap .delivery .delivery-title {width: 100px; font-family: var(--family-light);font-weight: var(--weight-light); line-height: 47px; font-size: 12px; color: #666666;}*/
/*.lc-products-preview .details-wrap .supplier .supplier-contents,*/
/*.lc-products-preview .details-wrap .point .point-contents,*/
/*.lc-products-preview .details-wrap .delivery .delivery-contents {display: flex; justify-content: space-between; width: calc(100% - 100px); font-family: var(--family-regular);font-weight: var(--weight-regular); line-height: 47px; font-size: 12px; color: #000000;}*/
/*.lc-products-preview .details-wrap .supplier-description,*/
/*.lc-products-preview .details-wrap .download-description,*/
/*.lc-products-preview .details-wrap .point-description,*/
/*.lc-products-preview .details-wrap .delivery-description {display: none; padding: 20px 25px; background-color: #f9f9f9; border-radius: 9px;}*/
/*.lc-products-preview .details-wrap .delivery-description {display: block;}*/
/*.lc-products-preview .details-wrap .supplier-description p,*/
/*.lc-products-preview .details-wrap .point-description p {font-family: var(--family-regular);font-weight: var(--weight-regular); line-height: 1; font-size: 13px; color: #333333;}*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio {margin-bottom: 16px; padding-bottom: 20px; border-bottom: 1px solid #cccccc;}*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio .title {margin-bottom: 10px;}*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio .title p {font-family: var(--family-medium);font-weight: var(--weight-medium); line-height: 1; font-size: 13px; color: #333333;}*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio p {font-family: var(--family-regular);font-weight: var(--weight-regular); line-height: 25px; font-size: 13px; color: #333333;}*/
/*.lc-products-preview .details-wrap .supplier-description p:nth-child(n+2) span {text-decoration: underline; text-underline-position: under;}*/
/*.lc-products-preview .details-wrap .supplier-description p:nth-child(n+2),*/
/*.lc-products-preview .details-wrap .point-description p:nth-child(n+2) {margin-top: 8px;}*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio .radio {position: relative;}*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio .radio label > span:nth-child(1) {position: relative; width: 13px; height: 13px; border: 1px solid #cccccc; border-radius: 8px; background-color: #FFFFFF;}*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio .radio label > span:nth-child(1) svg {display: none; }*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio .radio label.focus > span:nth-child(1) {border: 1px solid #f9f9f9;}*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio .radio label.focus > span:nth-child(1) svg {position: absolute; top: -1px; left: -1px; display: block; fill: var(--color2);}*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio .radio label.focus p {font-family: var(--family-medium);font-weight: var(--weight-medium); color: #000000;}*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio .radio label > p {margin-left: 5px;}*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio .radio label {display: flex; align-items: center;}*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio .radio input {position: absolute; z-index: -1;}*/

/*.lc-products-preview .details-wrap .delivery-description .delivery-radio .radio label:hover {cursor: pointer;}*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio .radio label:not(.focus):hover > span:nth-child(1) {border: 1px solid #000000;}*/
/*.lc-products-preview .details-wrap .delivery-description .delivery-radio .radio label:hover p {color: #000000; text-decoration:underline; text-underline-position: under;}*/
/*.lc-products-preview .details-wrap .delivery-description .products-delivery-description .table ul {display: flex; flex-wrap: wrap;}*/
/*.lc-products-preview .details-wrap .delivery-description .products-delivery-description .table ul li {width: 100%;}*/
/*.lc-products-preview .details-wrap .delivery-description .products-delivery-description .table ul:nth-child(n+2) {margin-top: 7px;}*/
/*.lc-products-preview .details-wrap .delivery-description .products-delivery-description .table ul li p span:nth-child(1) {font-family: var(--family-regular);font-weight: var(--weight-regular); line-height: 1.5; font-size: 13px; color: #333333;}*/
/*.lc-products-preview .details-wrap .delivery-description .products-delivery-description .table ul li p span:nth-child(n+2) {font-family: var(--family-regular);font-weight: var(--weight-regular); line-height: 1.5; font-size: 13px; color: #333333;}*/
/*.lc-products-preview .details-wrap .delivery-description .products-delivery-description .table ul li p span:nth-child(n+2) a {font-family: var(--family-medium);font-weight: var(--weight-medium); color: #000000; text-decoration: underline; text-underline-position: under;}*/
/*.lc-products-preview .details-wrap .delivery-description .products-delivery-description .table ul li p.country-url span {font-family: var(--family-medium);font-weight: var(--weight-medium); font-size: 13px; color: #000000;}*/
/*.lc-products-preview .details-wrap .delivery-description .products-delivery-description .table ul li p.country-url span a {color: #000000; text-decoration: underline; text-underline-position: under;}*/
/*.lc-products-preview .details-wrap .delivery-description .products-delivery-description .table ul li p span.btn {font-family: var(--family-medium);font-weight: var(--weight-medium); color: #000000; text-decoration: underline; text-underline-position: under; cursor: pointer;}*/

/*.lc-products-preview .details-wrap .delivery-description .products-delivery-description .table .countrys ul {*/
/*    margin-top: 7px;*/
/*    margin-right: -16px;*/
/*    max-height: 110px;*/
/*    overflow-y: auto;*/
/*}*/

/*@media (hover: hover) {*/

/*    .lc-products-preview .details-wrap .delivery-description .products-delivery-description .table .countrys ul {*/
/*        scrollbar-color: var(--scrollbar-color) transparent;*/
/*        scrollbar-width: thin;*/
/*    }*/

/*    .lc-products-preview .details-wrap .delivery-description .products-delivery-description .table .countrys ul::-webkit-scrollbar {*/
/*        background: transparent;*/
/*        width: 16px;*/
/*    }*/

/*    .lc-products-preview .details-wrap .delivery-description .products-delivery-description .table .countrys ul::-webkit-scrollbar-thumb {*/
/*        height: 56px;*/
/*        border-radius: 8px;*/
/*        border: 4px solid transparent;*/
/*        background-clip: content-box;*/
/*        background-color: var(--scrollbar-color);*/
/*    }*/

/*}*/

/*.lc-products-preview .details-wrap .delivery-description .products-delivery-description .table ul.countrys-ul {margin-top: 23px;}*/
/*.lc-products-preview .details-wrap .delivery-description .products-delivery-description .table .countrys ul li {display: flex; align-items: center; width: 50%; height: 27px;}*/
/*.lc-products-preview .details-wrap .delivery-description .arrive {margin-top: 16px; padding-top: 16px; border-top: 1px solid #cccccc;}*/
/*.lc-products-preview .details-wrap .delivery-description .arrive p {font-family: var(--family-regular);font-weight: var(--weight-regular); line-height: 1.5; font-size: 13px; color: #333333;}*/
/*.lc-products-preview .details-wrap .supplier.focus,*/
/*.lc-products-preview .details-wrap .download.focus,*/
/*.lc-products-preview .details-wrap .point.focus,*/
/*.lc-products-preview .details-wrap .delivery.focus {border-bottom: 1px solid #FFFFFF;}*/

/*.lc-products-preview .details-wrap .supplier.focus .supplier-contents svg,*/
/*.lc-products-preview .details-wrap .download.focus .download-contents svg,*/
/*.lc-products-preview .details-wrap .point.focus .point-contents svg,*/
/*.lc-products-preview .details-wrap .delivery.focus .delivery-contents svg {transform: rotate(180deg);}*/

/*.lc-products-preview .details-wrap .extra_charge p {*/
/*    font-family: var(--family-light);font-weight: var(--weight-light);*/
/*    line-height: 1.4;*/
/*    font-size: 13px;*/
/*    color: #000;*/
/*}*/

/*!* download *!*/

/*.lc-products-preview .details-wrap .download:not([data-btn]) {*/
/*    cursor: default;*/
/*}*/

/*.lc-products-preview .details-wrap .download .download-contents {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    width: calc(100% - 100px);*/

/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    -webkit-align-items: center;*/
/*    align-items: center;*/
/*}*/

/*.lc-products-preview .details-wrap .download .download-contents .subj {*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*    white-space: nowrap;*/

/*    font-family: var(--family-regular);font-weight: var(--weight-regular);*/
/*    line-height: 47px;*/
/*    font-size: 12px;*/
/*    color: #555;*/
/*}*/

/*.lc-products-preview .details-wrap .download-wrap .item:nth-child(n+2) {*/
/*    margin-top: 10px;*/
/*}*/

/*.lc-products-preview .details-wrap .download-wrap .item-download {*/
/*    display: -webkit-box;*/
/*    display: -ms-inline-flexbox;*/
/*    display: -webkit-inline-flex;*/
/*    display: inline-flex;*/

/*    max-width: 100%;*/

/*    word-wrap: break-word;*/
/*    word-break: break-all;*/
/*    text-decoration: none;*/
/*    font-family: var(--family-regular);font-weight: var(--weight-regular);*/
/*    line-height: 1.4;*/
/*    font-size: 12px;*/
/*}*/

/*.lc-products-preview .details-wrap .download-wrap .item-download:hover .item-name,*/
/*.lc-products-preview .details-wrap .download-wrap .item-download:hover .item-title {*/
/*    text-decoration: underline;*/
/*}*/

/*.lc-products-preview .details-wrap .download-wrap .item-name,*/
/*.lc-products-preview .details-wrap .download-wrap .item-guide,*/
/*.lc-products-preview .details-wrap .download-wrap .item-title {*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*    white-space: nowrap;*/
/*}*/

/*.lc-products-preview .details-wrap .download-wrap .item-name {*/
/*    color: #1a0dab;*/
/*}*/

/*.lc-products-preview .details-wrap .download-wrap .item-size {*/
/*    flex: none;*/
/*    margin-left: 3px;*/
/*    font-family: var(--family-regular);font-weight: var(--weight-regular);*/
/*    color: #ff0808;*/
/*}*/

/*.lc-products-preview .details-wrap .download-wrap .item-title {*/
/*    word-wrap: break-word;*/
/*    word-break: break-all;*/
/*    font-family: var(--family-regular);font-weight: var(--weight-regular);*/
/*    line-height: 1.4;*/
/*    font-size: 12px;*/
/*    color: #000;*/
/*}*/

/*.lc-products-preview .details-wrap .download-wrap .item-guide {*/
/*    word-wrap: break-word;*/
/*    word-break: break-all;*/
/*    font-family: var(--family-regular);font-weight: var(--weight-regular);*/
/*    line-height: 1.4;*/
/*    font-size: 12px;*/
/*    color: #555555;*/
/*}*/

/* overseas */

.lc-products-preview .overseas-wrap {
    background:url('../img/overseas-bg.png') repeat;
    padding:5px;
    margin-bottom:20px;
}

.lc-products-preview .overseas-inner {
    z-index: 1;
    position: relative;
    padding:11px 0px 13px 15px;
    background-color: #fff;
}

.lc-products-preview .overseas-inner:after {
    z-index: -1;
    display: block;
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 110px;
    height: 95px;
    background: url('../img/overseas-mark.png') no-repeat;
    opacity: .2;
}

.lc-products-preview .overseas-inner > div:nth-child(n+2) {
    margin-top: 2px;
}

.lc-products-preview .overseas-wrap .title span:nth-child(1) {
    font-family: var(--family-medium);font-weight: var(--weight-medium);
    line-height: 1.4;
    font-size: 14px;
    color: #333;
}

.lc-products-preview .overseas-wrap .title span:nth-child(2) {
    margin-left: 10px;
    font-family: var(--family-light);font-weight: var(--weight-light);
    line-height: 1.4;
    font-size: 13px;
    color: #666;
}

.lc-products-preview .overseas-wrap .text {
    font-family: var(--family-light);font-weight: var(--weight-light);
    line-height: 1.4;
    font-size: 13px;
    color: #666;
}

.lc-products-preview .gallery li {display:inline-block; height: 70px; vertical-align:top; position:relative;}
.lc-products-preview .gallery li:hover {cursor:pointer; border-radius: 7px;}

.lc-products-preview .gallery li > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    width: 70px;
    height: 70px;
}

.lc-products-preview .gallery li > div:before {
    box-sizing: border-box;
    transition: all .1s ease;
    z-index: 2;
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    border-radius: 7px;
    border: 1px solid #ebebeb;
    width: 100%;
    height: 100%;
}

.lc-products-preview .gallery li.active > div:before {
    border: 2px solid #000;
}

.lc-products-preview .gallery li:hover > div:before {
    border: 2px solid var(--color1);
}

.lc-products-preview .gallery li img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 7px;
}

.lc-products-preview .gallery.ty-stop .swiper-wrapper {flex-direction: column;}
.lc-products-preview .gallery.ty-stop li:nth-child(n+2) {margin-top:15px;}

/* nothing_detail */

.lc-products-preview .nothing_detail {
    word-wrap: break-word;
    word-break: break-all;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 13px;
    color: #333;
    max-height: 110px;
    overflow-y: auto;
}

@media (hover: hover) {

    .lc-products-preview .nothing_detail {
        scrollbar-color: var(--scrollbar-color) transparent;
        scrollbar-width: thin;
    }

    .lc-products-preview .nothing_detail::-webkit-scrollbar {
        background: transparent;
        width: 16px;
    }

    .lc-products-preview .nothing_detail::-webkit-scrollbar-thumb {
        height: 56px;
        border-radius: 8px;
        border: 4px solid transparent;
        background-clip: content-box;
        background-color: var(--scrollbar-color);
    }

}




/* naverpay */

.lc-products-preview .dw-naverpay:not(.active) {display: none}
.lc-products-preview .dw-naverpay {margin-top:20px;}

/* request */

.lc-products-preview .request-group {
    margin: 15px 0 0 0;
}

.lc-products-preview .request-wrap {
    padding-top:16px;
}

.lc-products-preview .request-title {
    word-wrap: break-word;
    word-break: break-all;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #4a5b94;
}

.lc-products-preview .request-form {
    margin-top: 9px;
    width: calc(100% - 2px);
    padding: 0;
    border: 1px solid #f0f0f0;
    background-color: #fff
}

.lc-products-preview .request-form textarea {
    height: 100px;
}

.lc-products-preview .request-form input {
    height: 34px;
}

.lc-products-preview .request-form textarea,
.lc-products-preview .request-form input {
    background-color: transparent;
    text-align: left;
    width: calc(100% - 20px);
    padding: 0 10px;
    height: 32px;
    border: 0;
    font-family: var(--family-light);font-weight: var(--weight-light);
    line-height: 32px;
    font-size: 14px;
    color: #000000;
}

.lc-products-preview .request-form .ty-required {
    animation-name: preview-input-animation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.lc-products-preview .request-form.focus {
    color: #000;
    border-color: #333;
}

.lc-products-preview .request-form.focus textarea,
.lc-products-preview .request-form.focus input {
    color: #000;
}

.lc-products-preview .request-form.value:not(.focus) {
    color: #999;
    border-color: #e6e6e6;
}

.lc-products-preview .request-form.value:not(.focus) textarea,
.lc-products-preview .request-form.value:not(.focus) input {
    color: #999;
}


/* orderupload */

.lc-products-preview .orderupload-wrap {
    margin: 0 20px;
}

.lc-products-preview .orderupload-item {
    padding-top: 20px;
    padding-bottom: 20px;
}

.lc-products-preview .orderupload-wrap .orderupload-item {
    border-top: 1px solid #f0f0f0;
}

.lc-products-preview .orderupload-group .orderupload-item:nth-child(n+2) {
    border-top: 1px solid #f0f0f0;
}

.lc-products-preview .orderupload-group .orderupload-item:last-child {
    border-bottom: 1px solid #f0f0f0;
}

.lc-products-preview .orderupload-title {
    margin-top: -3px;
    margin-bottom: -4px;
    word-wrap: break-word;
    word-break: break-all;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #4a5b94;
}

.lc-products-preview .orderupload-inner {
    margin-top: 10px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.lc-products-preview .orderupload-file {
    position: relative;
    display: -webkit-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
}

.lc-products-preview .orderupload-file input {
    z-index: 10;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.lc-products-preview .orderupload-button {
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #dfdfdf;
    background-color: #fff;
    width: 100px;
    height: 34px;
    text-align: center;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 33px;
    font-size: 15px;
    color: #666666;
}

.lc-products-preview .orderupload-info {
    margin-left: 10px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    width: calc(100% - 110px);
}

.lc-products-preview .orderupload-info a {
    display: -webkit-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;

    max-width: 100%;
}

.lc-products-preview .orderupload-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #666666;
}

.lc-products-preview .orderupload-size {
    margin-left: 3px;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #ff0808;
}

.lc-products-preview .orderupload-del {
    flex: none;
    margin-left: auto;
    cursor: pointer;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 12px;
    color: #999999;
}

.lc-products-preview .orderupload-item:not(.active) .ty-edit,
.lc-products-preview .orderupload-item.active .ty-write {
    display: none;
}

.lc-products-restock {
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.lc-products-restock .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px 12px 20px;
    border-bottom: 1px solid #EEE;
    background: #FFF;
}

.lc-products-restock .header .title {
    color: #333;
    font-size: 20px;
    font-family: var(--family-bold);
    font-weight: var(--weight-bold);
    line-height: normal;
}

.lc-products-restock .header .close-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lc-products-restock .body .guide {
    display: flex;
    padding: 20px 24px;
    justify-content: center;
    align-items: center;
}

.lc-products-restock .body .guide p {
    color: #333;
    text-align: center;
    font-size: 15px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: normal;
}

.lc-products-restock .body .hp {
    display: flex;
    padding: 0 24px 20px 24px;
    justify-content: center;
    align-items: center;
}

.lc-products-restock .body .hp .input {
    width: 260px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #DDD;
    background: #FFF;
}

.lc-products-restock .body .hp .input > p {
    color: #666;
    font-size: 13px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: normal;
}

.lc-products-restock .body .hp .input > input {
    flex: 1;
    width: 100%;
    padding: 0;
    color: #000;
    font-size: 14px;
    font-family: var(--family-regular);
    font-weight: var(--weight-regular);
    line-height: normal;
}

.lc-products-restock .body .hp .input > input::placeholder {
    color: #969A9C;
}

.lc-products-restock .footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px 20px 24px;
    gap: 12px;
}

.lc-products-restock .footer > div {
    flex: 1;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-family: var(--family-bold);
    font-weight: var(--weight-bold);
    line-height: normal;
    color: #FFF;
}

.lc-products-restock .footer .submit {
    background: #1EC545;
    opacity: 0.5;
    cursor: default;
}

.lc-products-restock .footer .cancel {
    background: #888;
    cursor: pointer;
}

.lc-products-restock .footer .submit.active {
    opacity: 1;
    cursor: pointer;
}