@charset "utf-8";

/* cart-header */

.cart-header .side li:first-child {
    background-color: #333;
    color: #fff;
}

/* cart-content */

.cart-content .checkbox {
    width: 24px;
    height: 24px;
}

.cart-content .checkbox.ty-auto {
    width: auto;
}

.cart-content .checkbox input {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.cart-content .checkbox label {
    z-index: 1;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.cart-content .checkbox label:before {
    z-index: -2;
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    opacity: 1;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 100%;
}

.cart-content .checkbox label:after {
    display: none;
}

.cart-content .checkbox label svg {
    z-index: -1;
    position: absolute;
    display: block;
    left: 4px;
    top: calc(50% - 5px);
    width: 16px;
    height: 11px;
    opacity: 1;
    fill: #ccc;
}

.cart-content .checkbox label p {
    top: -1px;
    position: relative;
    margin-left: 30px;
    display: inline-block;
    word-wrap: break-word;
    word-break: break-all;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 24px;
    font-size: 16px;
    color: #666;
}

.cart-content .checkbox label.focus:before {
    border-color: var(--color2);
    background-color: var(--color2);
}

.cart-content .checkbox label.focus svg {
    fill: #fff;
}

.cart-content .checkbox label.focus p {
    color: #333;
}

.cart-content .checkbox label:hover p {
    color: #000;
}

.cart-content .checkbox label:hover p:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 0;
    border-bottom: 1px solid #000;
}

/* cart-container */

.cart-container .tab {
    padding-top: 5px;
    height: 73px;
    background-color: #fff;
}

.cart-container .tab ul {
    height: 100%;
    display: flex;
    align-items: center;
}

.cart-container .tab li {
    position: relative;
    display: inline-block;
    height: 24px;
    cursor: pointer;
}

.cart-container .tab li:nth-child(n+2) {
    margin-left: 31px;
}

.cart-container .tab li:nth-child(n+2):before {
    display: block;
    content: '';
    position: absolute;
    left: -15px;
    top: calc(50% - 9px);
    width: 0;
    height: 18px;
    border-left: 1px solid #e8e8e8;
}

.cart-container .tab .text {
    position: relative;
    display: inline-block;
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 24px;
    font-size: 18px;
    color: #666;
}

.cart-container .tab .count {
    display: none;
    top: -2px;
    margin-left: 7px;
    z-index: 1;
    position: relative;
    width: 24px;
    height: 24px;
    text-align: center;
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 20px;
    font-size: 13px;
    color: #999;
}

.cart-container .tab .count:before {
    z-index: -1;
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 100%;
}

.cart-container .tab .count.active {
    display: inline-block;
}

.cart-container .tab li.active .text,
.cart-container .tab li.active .count {
    color: var(--color2);
}

.cart-container .tab li:not(.active):hover .text {
    color: #333;
}

.cart-container .tab li:not(.active):hover .text:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 0;
    border-bottom: 1px solid #333;
}

.cart-container .choice {
    padding: 0 10px;
    height: 60px;
    background-color: #fafafa;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-container .choice ul {
    height: 100%;
    display: flex;
    align-items: center;
}

.cart-container .choice li {
    position: relative;
    height: 24px;
}

.cart-container .choice li:nth-child(n+2) {
    top: -1px;
    cursor: pointer;
}

.cart-container .choice li:nth-child(n+2) {
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 24px;
    font-size: 16px;
    color: #666;
}

.cart-container .choice li:nth-child(n+2):hover {
    color: #000;
}

.cart-container .choice li:nth-child(n+2):hover:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 0;
    border-bottom: 1px solid #000;
}

.cart-container .choice li:nth-child(n+2) {
    margin-left: 31px;
}

.cart-container .choice li:nth-child(n+2):before {
    display: block;
    content: '';
    position: absolute;
    left: -15px;
    top: calc(50% - 9px);
    margin-top: 1px;
    width: 0;
    height: 18px;
    border-left: 1px solid #e8e8e8;
}

.cart-container .choice-line {
    height: 40px;
    background-color: #fff;
}

.cart-container .not {
    padding: 80px 0;
    border-top: 1px solid #bbbbbb;
    border-bottom: 1px solid #f0f0f0;
    background-color: #fff;
}

.cart-container .not svg {
    display: block;
    margin: 0 auto;
    width: 120px;
    height: 120px;
}

.cart-container .not path {
    fill: #d2d2d2;
    stroke: #d2d2d2;
    stroke-width: 0.32;
    stroke-miterlimit: 10;
}

.cart-container .not p {
    margin-top: 25px;
    text-align: center;
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 20px;
    color: #999;
}

.cart-container .load .group:nth-child(n+2) {
    margin-top: 40px;
}

.cart-container .load .supplier {
    height: 46px;
    border-top: 1px solid #bbbbbb;
    background-color: #fff;
}

.cart-container .load .supplier ul {
    height: 100%;
    display: flex;
    align-items: center;
}

.cart-container .load .supplier li:nth-child(1) {
    margin-left: 10px;
}

.cart-container .load .supplier li:nth-child(2) {
    margin-left: 7px;
}

.cart-container .load .supplier li:nth-child(2) a {
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 16px;
    color: #000;
}

.cart-container .load .supplier li:nth-child(2) a:hover {
    color: #000;
}

.cart-container .load .item {
    border-top: 1px solid #f0f0f0;
    background-color: #fff;
}

.cart-container .load .inner {
    position: relative;
    width: 100%;
    min-height: 120px;
}

.cart-container .load .inner > ul {
    display: -moz-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
}

.cart-container .load .inner > ul > li:nth-child(n+4) {
    border-left: 1px solid #f0f0f0;
}

.cart-container .load .inner > ul > li:nth-child(1) {
    width: 24px;
    padding: 20px 10px;
}

.cart-container .load .inner > ul > li:nth-child(2) {
    width: 120px;
    padding: 20px 20px 20px 0;
}

.cart-container .load .inner > ul > li:nth-child(3) {
    margin-right: auto;
    padding: 25px 10px 20px 0;
    position: relative;
    width: calc(100% - 536px);
}

.cart-container .load .inner > ul > li:nth-child(4) {
    width: 140px;
    padding: 25px 10px;
}

.cart-container .load .inner > ul > li:nth-child(5) {
    width: 140px;
    padding: 25px 0 20px 10px;
}

.cart-container .load .inner > ul > li:nth-child(6) {
    border-left: 0;
    width: 30px;
    padding: 10px 0;
}

.cart-container .load .chk .checkbox {
    z-index: 10;
    display: block;
    position: absolute;
    left: 10px;
    top: 20px;
}

.cart-container .load .image a {
    z-index: 10;
    display: inline-block;
    position: relative;
}

.cart-container .load .image .thumb {
    display: flex;
    flex-direction: column;
    display: -ms-flexbox;
    -ms-flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 120px;
    min-height: 120px;
    z-index: 1;
}

.cart-container .load .thumb img {
    max-width: 120px;
    max-height: 120px;
}

.cart-container .load .thumb.ty-no {
    background-color: #ececec;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart-container .load .thumb.ty-no svg {
    width: 60px;
    height: 60px;
    fill: #000;
    opacity: 0.1;
}

.cart-container .load .image a > div:not(.thumb) {
    display: flex;
    flex-direction: column;
    display: -ms-flexbox;
    -ms-flex-direction: column;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.cart-container .load .image a > div:not(.thumb):before {
    z-index: -1;
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .5;
}

.cart-container .load .image a > div:not(.thumb) span {
    font-family: var(--family-medium);font-weight: var(--weight-medium);
    line-height: 1.4;
    font-size: 20px;
    color: #fff;
}

.cart-container .load .product > .block {
    display: flex;
    flex-direction: column;
    display: -ms-flexbox;
    -ms-flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.cart-container .load .title-inner {
    width: 100%;
    max-width: 100%;
}

.cart-container .load .title-inner:nth-child(2) {
    margin-top: 1px;
}

.cart-container .load .tit1,
.cart-container .load .tit2 {
    text-decoration: none;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
}

.cart-container .load .tit1 {
    margin: -3px 0 0 0;
    white-space: nowrap;
    font-family: var(--family-light);font-weight: var(--weight-light);
    line-height: 1.4;
    font-size: 13px;
    color: #888;
}

.cart-container .load .tit2 {
    max-height: 45px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}

.cart-container .load .title span:nth-child(1) {
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 16px;
    color: #000;
}

.cart-container .load .title span:nth-child(2) {
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 16px;
    color: #4043d2;
}

.cart-container .load .quantity {
    padding-top: 15px;
}

.cart-container .load .quantity li {
    display: inline-block;
    vertical-align: top;
}

.cart-container .load .quantity li:nth-child(1),
.cart-container .load .quantity li:nth-child(3) {
    position: relative;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 100%;
    border: 1px solid #dedede;
    cursor: pointer;
}

.cart-container .load .quantity li:nth-child(1) svg,
.cart-container .load .quantity li:nth-child(3) svg {
    display: block;
    position: absolute;
    left: calc(50% - 4px);
    top: calc(50% - 2px);
    width: 8px;
    height: 4px;
    fill: #000;
    opacity: .3;
}

.cart-container .load .quantity li:nth-child(4) {
    margin-left: 10px;
    padding: 0 10px;
    background-color: #fff;
    border: 1px solid #dedede;
    cursor: pointer;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 30px;
    font-size: 13px;
    color: #666;
}

.cart-container .load .quantity .input {
    padding: 0;
    width: 100%;
    height: 30px;
    border: 0;
}

.cart-container .load .quantity .input input {
    padding: 0;
    width: 46px;
    height: 30px;
    border: 0;
    background: transparent;
    text-align: center;
}

.cart-container .load .quantity .input input {
    font-weight: bold;
    font-family: 'gulim', sans-serif;
    line-height: 30px;
    font-size: 14px;
    color: #666;
}

.cart-container .load .quantity li:nth-child(1):hover,
.cart-container .load .quantity li:nth-child(3):hover {
    border-color: #999;
}

.cart-container .load .quantity li:nth-child(1):hover svg,
.cart-container .load .quantity li:nth-child(3):hover svg {
    opacity: 1;
}

.cart-container .load .quantity li:nth-child(4):hover {
    border-color: #ccc;
    color: #000;
}

.cart-container .load .addoption {
    margin-top: 15px;
    padding: 12px;
    background-color: #fafafa;
    border: 1px solid #f0f0f0;
}

.cart-container .load .addoption > p {
    margin: -3px 0 0 0;
    font-family: var(--family-medium);font-weight: var(--weight-medium);
    line-height: 1.4;
    font-size: 13px;
    color: #4a5b94;
}

.cart-container .load .addoption > div {
}

.cart-container .load .addoption > div > p {
    max-width: 100%;
    margin: 0 0 -2px 0;
    padding: 5px 0 0 7px;
    position: relative;
}

.cart-container .load .addoption > div > p:before {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 12px;
    width: 3px;
    height: 3px;
    background-color: #4a5b94;
}

.cart-container .load .addoption > div > p:nth-child(n+2) {
    margin-top: 7px;
    border-top: 1px solid #f0f0f0;
}

.cart-container .load .addoption > div > p span {
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 12px;
    color: #4a5b94;
    word-wrap: break-word;
    word-break: break-all;
    cursor: pointer;
}

.cart-container .load .addoption > div > p span:hover {
    z-index: 1;
    position: relative;
    display: inline-block;
    text-decoration: underline;
}

.cart-container .load .price p {
    text-align: center;
}

.cart-container .load .price span {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
}

.cart-container.ty-KRW .load .price p:nth-child(1) {
    position: relative;
    top: -4px;
}

.cart-container.ty-KRW .load .price p:nth-child(1) .currency-price {
    margin: -3px 0 -3px 0;
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 20px;
    color: #000;
}

.cart-container.ty-KRW .load .price p:nth-child(1) .currency-text {
    top: -2px;
    margin: -3px 0 -3px 3px;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #000;
}

.cart-container:not(.ty-KRW) .load .price p:nth-child(1) .currency-price {
    margin: -3px 0 -3px 0;
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 20px;
    color: #000;
}

.cart-container:not(.ty-KRW) .load .price p:nth-child(1) .currency-decimal {
    top: 3px;
    vertical-align: top;
    margin: -3px 0 -3px 3px;
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 12px;
    color: #000;
}

.cart-container .load .price p:nth-child(2) {
    margin: 2px 0 -3px 0;
}

.cart-container .load .price p:nth-child(2) span {
    z-index: 1;
    position: relative;
    display: inline-block;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 13px;
    color: #999;
}

.cart-container .load .price p:nth-child(2) span:after {
    z-index: -1;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 0;
    border-top: 1px solid #999;
}

.cart-container .load .delivery > .block {
    display: flex;
    flex-direction: column;
    display: -ms-flexbox;
    -ms-flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.cart-container .load .delivery .text {
    margin: -3px 0 0 0;
    text-align: center;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #000;
}

.cart-container .load .delivery .price {
    margin-bottom: -2px;
}

.cart-container .load .delivery .guide {
    text-align: center;
    margin-top: 4px;
}

.cart-container .load .delivery .guide p {
    display: inline-block;
    cursor: pointer;
}

.cart-container .load .delivery .guide span {
    display: inline-block;
    vertical-align: middle;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 13px;
    color: #999;
}

.cart-container .load .delivery .guide svg {
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    fill: #000;
    width: 12px;
    height: 12px;
    opacity: .2;
}

.cart-container .load .delivery .guide p:hover span {
    color: var(--color2);
}

.cart-container .load .delivery .guide p:hover svg {
    fill: var(--color2);
    opacity: 1;
}

.cart-container .load .delivery .unable {
    margin: -3px 0 0 0;
    text-align: center;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #f43142;
}

.cart-container .load .delivery .charge {
    text-align: center;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 12px;
    color: #5674b9;
}

.cart-container .load .delivery .bundle_no {
    text-align: center;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 13px;
    color: #f43142;
}

.cart-container .load .delivery .button ul {
    text-align: center;
}

.cart-container .load .delivery .button li {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.cart-container .load .delivery .button li:nth-child(n+2) {
    margin-left: 4px;
}

.cart-container .load .delivery .wishlist {
    position: relative;
    width: 28px;
    height: 28px;
    background-color: #fff;
    border: 1px solid #dedede;
}

.cart-container .load .delivery .wishlist svg {
    display: block;
    position: absolute;
    left: calc(50% - 7px);
    top: calc(50% - 6px);
    width: 14px;
    height: 12px;
    opacity: .6;
}

.cart-container .load .delivery .wishlist path {
    fill: none;
    stroke: #000000;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-miterlimit: 10;
}

.cart-container .load .delivery .order {
    padding: 0 10px;
    background-color: #fff;
    border: 1px solid #dedede;
    cursor: pointer;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 28px;
    font-size: 13px;
    color: #666;
}

.cart-container .load .delivery .wishlist:hover {
    border-color: #999;
}

.cart-container .load .delivery .wishlist:hover svg {
    opacity: 1;
}

.cart-container .load .delivery .wishlist:hover path {
    stroke: var(--color2);
}

.cart-container .load .delivery .order:hover {
    border-color: #000;
    background-color: #000;
    color: #fff;
}

.cart-container .load .delete span {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cart-container .load .delete svg {
    width: 20px;
    height: 20px;
}

.cart-container .load .delete path {
    fill: #221E1F;
    opacity: .5;
}

.cart-container .load .delete span:hover path {
    fill: #000;
    opacity: 1;
}

.cart-container .load .amount {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    width: 100%;
    height: 65px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    background-color: #fafafa;
}

.cart-container .load .amount ul {
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.cart-container .load .amount ul:nth-child(1) > li:nth-child(1) {
    margin-left: 20px;
}

.cart-container .load .amount ul:nth-child(1) > li:nth-child(n+2) {
    margin-left: 10px;
}

.cart-container .load .amount ul:nth-child(2) .price {
    margin-left: 10px;
    margin-right: 20px;
}

.cart-container .load .amount li {
    display: inline-block;
    vertical-align: middle;
}

.cart-container .load .amount .text {
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #666;
}

.cart-container .load .amount .price {
    white-space: nowrap;
}

.cart-container .load .amount .price span {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
}

.cart-container.ty-KRW .load .amount .price .currency-price {
    top: -1px;
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 20px;
    color: #666;
}

.cart-container.ty-KRW .load .amount .price .currency-text {
    margin-left: 3px;
    top: -3px;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #666;
}

.cart-container:not(.ty-KRW) .load .amount .price .currency-price {
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 20px;
    color: #666;
}

.cart-container:not(.ty-KRW) .load .amount .price .currency-decimal {
    margin-left: 3px;
    vertical-align: top;
    top: 3px;
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 12px;
    color: #666;
}

.cart-container .load .svg {
    width: 15px;
    height: 15px;
    opacity: .3;
}

.cart-container .load .svg.ty-minus line {
    fill: #FFFFFF;
    stroke: #000000;
    stroke-width: 3;
    stroke-linecap: square;
    stroke-miterlimit: 10;
}

.cart-container .load .svg.ty-equal line {
    fill: #FFFFFF;
    stroke: #000000;
    stroke-width: 3;
    stroke-linecap: square;
    stroke-miterlimit: 10;
}

.cart-container .load .amount .ty-benefit .currency-price,
.cart-container .load .amount .ty-benefit .currency-text,
.cart-container .load .amount .ty-benefit .currency-decimal {
    color: #f43142 !important;
}

.cart-container .load .amount ul:nth-child(2) .text,
.cart-container .load .amount ul:nth-child(2) .currency-price,
.cart-container .load .amount ul:nth-child(2) .currency-text,
.cart-container .load .amount ul:nth-child(2) .currency-decimal {
    color: #000 !important;
}

/* cart-side */

.cart-side .items .item {
    display: none;
}

.cart-side.ty-point .items .item {
    display: block;
}

.cart-side.ty-point .items .item:nth-child(n+2) {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px dashed #bbb;
}

.cart-side:not(.ty-point) .items .item:nth-child(n+2) {
    display: block;
}

.cart-side .items .prices {
    margin-top: 30px;
}

.cart-side .items .subject {
    margin: -4px 0 -3px 0;
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 18px;
    color: #000;
}

.cart-side .items ul {
    display: none;
}

.cart-side .items ul.active {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    width: 100%;
    height: 14px;
}

.cart-side .items ul:nth-child(n+2) {
    margin-top: 20px;
}

.cart-side .items li {
    position: relative;
    vertical-align: bottom;
}

.cart-side .items .name {
    margin: -3px 0;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #666;
}

.cart-side .items .price {
    top: -6px;
}

.cart-side .items .price span {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
}

.cart-side.ty-KRW .items .price .currency-minus {
    margin-right: 3px;
}

.cart-side.ty-KRW .items .price .currency-price {
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 18px;
    color: #666;
}

.cart-side.ty-KRW .items .price .currency-text {
    margin-left: 2px;
    top: -1px;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #666;
}

.cart-side:not(.ty-KRW) .items .price .currency-text {
    margin-left: 2px;
    top: -1px;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #666;
}

.cart-side:not(.ty-KRW) .items .price .currency-price {
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 18px;
    color: #666;
}

.cart-side:not(.ty-KRW) .items .price .currency-decimal {
    top: 3px;
    vertical-align: top;
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 9px;
    color: #666;
}

.cart-side .items .price.ty-benefit .currency-price,
.cart-side .items .price.ty-benefit .currency-text,
.cart-side .items .price.ty-benefit .currency-decimal {
    color: #f43142 !important;
}

.cart-side .amount {
    margin-top: 30px;
}

.cart-side .amount ul {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    width: 100%;
    height: 26px;
}

.cart-side .amount li {
    position: relative;
    vertical-align: bottom;
}

.cart-side .amount .name {
    top: 11px;
    margin: -3px 0;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #000;
}

.cart-side .amount .price {
    top: -11px;
}

.cart-side .amount .price span {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
}

.cart-side.ty-KRW .amount .price .currency-price {
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 34px;
    color: #000;
}

.cart-side.ty-KRW .amount .price .currency-text {
    margin-left: 2px;
    top: -6px;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #000;
}

.cart-side:not(.ty-KRW) .amount .price .currency-price {
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 34px;
    color: #000;
}

.cart-side:not(.ty-KRW) .amount .price .currency-decimal {
    top: 6px;
    vertical-align: top;
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 1.4;
    font-size: 12px;
    color: #000;
}

.cart-side .order {
    margin-top: 60px;
    z-index: 1;
    position: relative;
    display: block;
    width: 100%;
    height: 64px;
    background-color: var(--color2);
    text-align: center;
    cursor: pointer;
}

.cart-side .order:before {
    z-index: -1;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 5px 0 var(--color2);
    opacity: .3;
}

.cart-side .order {
    text-decoration: none;
    font-family: var(--family-bold);font-weight: var(--weight-bold);
    line-height: 64px;
    font-size: 20px;
    color: #fff;
}

.cart-side .naverpay {
    margin-top: 30px;
}

.cart-side .naverpay:not(.active) {
    display: none;
}

.cart-side .address {
    display: none;
    margin-top: 30px;
    padding: 20px 0 30px 0;
}

.cart-side .address .subject {
    margin: -3px 0 -3px 0;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.4;
    font-size: 15px;
    color: #666;
}

.cart-side .address .country span {
    display: inline-block;
    vertical-align: middle;
}

.cart-side .address .country span:nth-child(2) {
    margin: -3px 0 -3px 10px;
    font-family: var(--family-light);font-weight: var(--weight-light);
    line-height: 1.4;
    font-size: 16px;
    color: #333;
}

.cart-side .address .country span:nth-child(3) {
    margin: -3px 0 -3px 3px;
    font-family: var(--family-light);font-weight: var(--weight-light);
    line-height: 1.4;
    font-size: 16px;
    color: #999;
}

.cart-side .address .text {
    margin: 0px 0 -3px 0;
    word-wrap: break-word;
    word-break: break-all;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 1.45;
    font-size: 12px;
    color: #666;
}

.cart-side .address .btns {
    margin-top: 10px;
    height: 20px;
}

.cart-side .address .btns span {
    transition: all .3s ease;
    padding: 0 5px 0 5px;
    display: inline-block;
    height: 19px;
    background-color: #cccccc;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0;
    font-family: var(--family-regular);font-weight: var(--weight-regular);
    line-height: 19px;
    font-size: 12px;
    color: #fff;
}

.cart-side .address .btns span:nth-child(n+2) {
    margin-left: 5px;
}

.cart-side .address .btns span:hover {
    background-color: #666;
}

.cart-side .address:hover .btns span {
    opacity: 1;
}

.cart-side .address.active {
    display: block;
}
