@charset "UTF-8";
/* Cart */
.payContainer {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto 40px;
  border: 1px solid #DDD;
  border-radius: 10px;
  background-color: #EFEFEF;
}

.prodCateCon {
  margin-bottom: 30px;
}

.headingBox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 480px) {
  .headingBox .desc {
    display: none;
  }
}
.headingBox .checkAll {
  flex: 0 0 55px;
  padding: 3px 0 3px 15px;
  height: 30px;
  text-align: center;
  background: #999;
  border-radius: 8px 0 0 0;
}
.headingBox .checkAll.empty {
  flex: 0 0 20px;
}
.headingBox .checkAll .jq-checkbox {
  border-color: #FFF;
}
.headingBox .checkAll .jq-checkbox.checked {
  border-color: #FFF;
  background: #FFF;
}
.headingBox .checkAll .jq-checkbox.checked .jq-checkbox__div:before {
  border-color: #999;
}
.headingBox .checkAll .jq-checkbox.checked .jq-checkbox__div:after {
  border-color: #999;
}
.headingBox h3 {
  padding: 3px 20px 3px 0;
  height: 30px;
  margin-right: 10px;
  font-size: 17px;
  font-weight: 500;
  line-height: 23px;
  color: #FFF;
  background: #999;
  border-radius: 0 8px 0 0;
}

.cartList {
  width: 100%;
}
.cartList__container {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 5px;
  border: 1px solid #999;
  border-radius: 0 15px 15px 15px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
  background-color: #FFF;
}
.cartList__container.storage {
  border-radius: 15px;
}
.cartList li {
  display: flex;
  padding: 10px 0;
  margin: 0;
  align-items: center;
  border-bottom: 1px solid #CCC;
}
@media screen and (max-width: 480px) {
  .cartList li {
    display: grid;
    grid-template-areas: "a b b" "a c c" "a d e" "a f f";
  }
}
.cartList li:last-child {
  border-bottom: none;
}
.cartList .check {
  flex: 0 0 40px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .cartList .check {
    grid-area: a;
    flex: none;
  }
}
.cartList .prod {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .cartList .prod {
    grid-area: b;
    flex: none;
    padding-bottom: 3px;
    border-bottom: 1px dotted #ddd;
  }
}
.cartList .prod .thumb {
  display: inline-block;
  width: 100px;
  padding: 5px;
  margin-right: 10px;
  font-size: 0;
  line-height: 0;
  vertical-align: middle;
}
.cartList .prod .thumb img {
  width: 100%;
  border: 1px solid #CCC;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
}
.cartList .prod .prodName {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #000;
}
.cartList .prod .prodName .title {
  display: block;
  font-size: 12px;
  color: #999;
}
.cartList .prod .prodName input[name=prodTit] {
  padding: 0;
  border: 0;
}
.cartList .prod .prodName input[name=prodTit]::before {
  display: inline;
  content: "[";
}
.cartList .prod .prodName input[name=prodTit]::after {
  display: inline;
  content: "]";
}
.cartList .prodOption {
  flex: 0 0 100px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .cartList .prodOption {
    grid-area: c;
    flex: none;
  }
}
.cartList .quantity {
  flex: 0 0 120px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .cartList .quantity {
    grid-area: d;
    flex: none;
  }
}
.cartList .quantity input {
  width: 3em;
  text-align: center;
}
.cartList .price {
  flex: 0 0 150px;
  padding-right: 20px;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .cartList .price {
    grid-area: e;
    flex: none;
  }
}
.cartList .price .priceCase {
  display: inline-block;
  margin-right: 3px;
  color: #999;
}
.cartList .price-block {
  display: block;
  padding: 5px 0;
}
.cartList .function {
  flex: 0 0 130px;
}
@media screen and (max-width: 480px) {
  .cartList .function {
    display: none;
  }
}
.cartList .function button {
  display: block;
  min-width: 90px;
  margin: 3px auto;
}
.cartList .date {
  flex: 0 0 70px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .cartList .date {
    grid-area: f;
    flex: none;
    border-top: 1px dotted #ddd;
  }
}
.cartList .date .remain {
  display: block;
  font-size: 12px;
  color: #999;
}
@media screen and (max-width: 480px) {
  .cartList .date .remain {
    display: inline-block;
  }
}
.cartList .orderDate {
  flex: 0 0 120px;
  text-align: center;
}
.cartList .orderPrice .priceCase {
  display: inline-block;
  margin-left: 30px;
  color: #999;
}
.cartList .orderPrice .unit {
  display: inline-block;
}
.cartList tr td {
  border-bottom: 1px solid #CCC;
}
.cartList tr:last-child td {
  border-bottom: none;
}
.cartList tr td {
  padding: 10px 0;
}
.cartList tr .check {
  flex: none;
  width: 40px;
}
.cartList tr .prod {
  flex: none;
  display: flex;
}
.cartList tr .quantity {
  flex: none;
  width: 120px;
  text-align: center;
}
.cartList tr .quantity input {
  width: 3em;
  text-align: center;
}
.cartList tr .price {
  flex: none;
  width: 150px;
}
.cartList tr .function {
  flex: none;
  width: 130px;
}
.cartList tr .date {
  flex: none;
  width: 70px;
}
.cartList tr .orderDate {
  flex: none;
  width: 120px;
}
.cartList tr .prodOption {
  flex: none;
  width: 100px;
}
.cartList tr .nobord {
  border-bottom: none;
}

.emptyCart {
  height: 120px;
  padding: 40px;
  margin-bottom: 120px;
  line-height: 40px;
  font-size: 17px;
  text-align: center;
  border: 1px solid #999;
  border-radius: 0 15px 0 15px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
}

.cartBotLine {
  display: flex;
  align-items: flex-start;
  margin-bottom: 80px;
}
.cartBotLine .buttonArea {
  flex: 1 1 auto;
}
.cartBotLine .checkOrder {
  flex: 1 1 auto;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cartBotLine .checkOrder__price {
  font-size: 14px;
}
.cartBotLine .checkOrder__price #totalAmout {
  font-size: 18px;
  font-weight: 700;
  color: #E8132C;
}
.cartBotLine .checkOrder__submit {
  margin-left: 20px;
}

.cart_description {
  margin-bottom: 40px;
}
.cart_description h3 {
  font-size: 18px;
}
.cart_description p {
  padding-left: 20px;
  text-indent: -5px;
}
.cart_description p::before {
  display: inline-block;
  margin-right: 7px;
  content: "*";
  color: #E8132C;
}

/* OrderSettle */
.order__container {
  width: 100%;
  max-width: 960px;
  padding: 20px;
  margin: 0 auto 40px;
  background: #EFEFEF;
  border: 1px solid #DDD;
  border-radius: 10px;
}
.order__container .ordTit {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.order__box {
  padding: 0 20px;
  margin-bottom: 40px;
  border: 1px solid #CCC;
  border-radius: 10px;
  background-color: #FFF;
}
.order__box .secAddress .address:first-child {
  margin: 4px 0;
}
.orderList__container {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 30px;
  border: 1px solid #999;
  border-radius: 0 15px 15px 15px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
  background-color: #FFF;
}
.orderList li {
  display: flex;
  padding: 10px 0;
  margin: 0;
  align-items: center;
  border-bottom: 1px solid #CCC;
}
.orderList li:last-child {
  border-bottom: none;
}
.orderList li .prod {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
.orderList li .prod .thumb {
  display: inline-block;
  width: 100px;
  padding: 5px;
  margin-right: 10px;
  font-size: 0;
  line-height: 0;
  vertical-align: middle;
}
.orderList li .prod .thumb img {
  width: 100%;
  border: 1px solid #CCC;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
}
.orderList li .prod .prodName {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #000;
}
.orderList li .prod .prodName .title {
  display: block;
  font-size: 12px;
  color: #999;
}
.orderList li .price {
  flex: 0 0 150px;
  padding-right: 20px;
  text-align: right;
}
.orderList li .price .priceCase {
  display: inline-block;
  margin-right: 3px;
  color: #999;
}
.orderList li .price-block {
  display: block;
  padding: 5px 0;
}
.orderList li .orderPrice .priceCase {
  display: inline-block;
  margin-left: 30px;
  color: #999;
}
.orderList li .orderPrice .unit {
  display: inline-block;
}
.order__pack {
  padding: 15px;
  border: 1px solid #CCC;
  border-radius: 10px;
  background: #FEFEFE;
  margin-bottom: 40px;
}
.order__pack .guide {
  margin-bottom: 10px;
}
.order__pack .unitAble {
  margin: 8px 0 0;
  text-align: center;
}
.order__pack .slim {
  width: 100%;
  margin-bottom: 10px;
}
.order__pack .slim th {
  font-size: 11px;
  border-bottom: 1px solid #CCC;
}
.order__pack .slim td {
  padding: 5px;
  text-align: center;
}
.order__partnerDC {
  margin-bottom: 40px;
}
.order__partnerDC__contents {
  padding: 0;
}
.order__partnerDC .notice {
  margin-bottom: 10px;
}
.order__partnerDC__list {
  padding: 10px 20px;
  border: 1px solid rgb(230, 165, 104);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background-color: #FFF;
}
.order__partnerDC__list .tLogo {
  font-weight: bold;
  color: rgb(59, 12, 216);
  line-height: 1.3;
}
.order__partnerDC__list li {
  padding: 0;
}
.order__partnerDC__list li:last-child {
  border-bottom: 0;
}
.order__partnerDC__list li dl {
  display: grid;
  grid-template-columns: 120px auto;
  align-items: center;
}
.order__partnerDC__list li dl li {
  padding: 0;
}
.order__partnerDC__list li dt {
  flex: 0 0 110px;
  height: 32px;
  line-height: 26px;
}
.order__partnerDC__list li dd .exp {
  display: inline-block;
}
.order__partnerDC__list #MPPointAft {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.order__skopiPay {
  margin-bottom: 40px;
}
.order__skopiPay__contents {
  padding: 0;
}
.order__skopiPay__itemlist {
  padding: 10px 20px;
  border: 1px solid rgb(250, 126, 69);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background-color: #FFF;
}
.order__skopiPay__itemlist > div {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f8a58b;
}
.order__skopiPay__itemlist > div:last-child {
  border-bottom: 0;
}
.order__skopiPay__itemlist > div *:first-child {
  flex: 0 0 40%;
}
.order__skopiPay__itemlist .item {
  display: inline-block;
  width: 80px;
}
.order__totalPrice {
  padding: 0 20px;
  margin-bottom: 40px;
  text-align: center;
}
.order__totalPrice .price {
  display: block;
}
.order__totalPrice #resultOrderSaleAmt,
.order__totalPrice #resultSaleAmt {
  font-size: 27px;
  font-weight: 700;
  color: #E8132C;
}
.order__buyerInfo {
  position: relative;
}
.order__buyerInfo h4 {
  color: firebrick !important;
}
.order__deliveryInfo {
  position: relative;
}
.order__deliveryInfo .titleWing {
  position: absolute;
  top: 0;
  left: 140px;
}
.order__deliveryInfo h4 {
  color: firebrick !important;
}
.order__paymethod .paymethod-form {
  display: block;
  padding: 10px 0;
}
.order__paymethod .paymethod-form ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.order__paymethod .paymethod-form ul.toss-test {
  grid-template-columns: repeat(4, 1fr);
}
.order__paymethod .paymethod-form li {
  padding: 10px 0;
  text-align: center;
}
.order__paymethod .paymethod-form li > div {
  display: none;
}
.order__paymethod .paymethod-form li .paymethod {
  display: block;
  padding: 10px;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: #666;
  background: #DDD;
  width: 100%;
  height: 44px;
}
.order__paymethod .paymethod-form li .paymethod.selected {
  border: 2px solid #F30;
  background-color: #F60;
  color: #FFF;
  font-weight: 900;
}
.order__paymethod .paymethod-form li > p {
  flex: 1 1 auto;
  font-size: 11px;
  line-height: 1.2;
}
.order__paymethod .paymethodVBank {
  height: 0;
  padding: 0;
  border-radius: 10px;
  transition: all 0.2s ease-in;
  opacity: 0;
  overflow: hidden;
}
.order__paymethod .paymethodVBank.open {
  margin-bottom: 20px;
  padding: 10px 20px;
  height: 220px;
  border: 1px solid #EFEFEF;
  background: #EFEFEF;
  opacity: 1;
  overflow: visible;
}
.order__paymethod .paymethodVBank .expectDate .unit {
  display: inline-block;
  margin-right: 10px;
}
.order__paymethod .paymethodVBank.insu {
  height: 255px;
}
.order__paymethod .paymethodVBank.insuYes {
  height: 440px;
}
.order__paymethod .insuranceUse {
  padding: 8px;
  text-align: center;
}
.order__paymethod .insurance {
  padding: 15px;
  background: aliceblue;
  border: 1px solid lightblue;
}
.order__paymethod .insurance .desc {
  margin-bottom: 10px;
}
.order__paymethod .insurance .desc h5 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
.order__paymethod .insurance .desc p {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
}
.order__paymethod .insurance .inputData input[type=text] {
  width: 100px;
  text-align: center;
  border-color: #333;
}
.order__paymethod .insurance .inputData label {
  margin-right: 10px;
}
.order__paymethod .insurance #insuSucc {
  display: none;
  padding: 10px 10px 10px 25px;
}
.order__paymethod .insurance #insuSucc span {
  font-weight: 500;
  color: #000;
}

/* 팝업 */
object {
  position: absolute;
  top: 0;
  left: -4000px;
  width: 0;
  height: 0;
}

.sktTPlus .notice {
  padding: 10px;
  margin-bottom: 10px;
  background: lightyellow;
  border: 1px solid lightsalmon;
  border-radius: 10px;
}
.sktTPlus .form_certTMember .itemLine {
  padding: 3px 0;
}
.sktTPlus .form_certTMember .itemLine input {
  width: 100%;
  text-align: center;
}

.sktMem .popup__formBox {
  padding: 15px;
  border-width: 2px;
  border-radius: 16px;
  background: #FAFAFA;
}
.sktMem .popup__noti {
  margin-bottom: 10px;
}
.sktMem .tableForm label {
  margin-right: 1em;
}
.sktMem .privateAgree {
  padding: 10px;
  margin-bottom: 10px;
  background: lightyellow;
  border: 1px solid lightsalmon;
  border-radius: 10px;
}
.sktMem .list li {
  font-size: 12px;
}

.cashbag .selTCashbagEvent {
  padding: 5px;
  margin-bottom: 10px;
  border: 1px solid #CCC;
  text-align: center;
}
.cashbag .selTCashbagEvent label {
  margin: 0 5px;
}
.cashbag .selTCashbagEvent label:first-child {
  margin-right: 50px;
}
.cashbag .tableForm {
  padding: 0 30px;
}

/* 이전 배송 주소 */
.prevDeliv .noti {
  margin-bottom: 8px;
}
.prevDeliv .list-wrap {
  padding: 10px;
  border: 2px solid #CCC;
  border-radius: 15px;
}
.prevDeliv .obdList {
  font-size: 13px;
  line-height: 1.2;
}
.prevDeliv .obdList td {
  padding: 5px 3px;
  border-bottom: 1px dotted #CCC;
}
.prevDeliv .obdList tr:last-child td {
  border-bottom: none;
}

.skopiMoney .noti {
  margin-bottom: 10px;
}
.skopiMoney .use {
  padding: 10px;
  border: 1px solid #FF8A00;
  border-radius: 10px;
  text-align: center;
}

.skopiCoupon .tbline {
  padding: 10px 20px;
  border: 2px solid #CCC;
  border-radius: 20px;
}
.skopiCoupon .useable-coupon-list {
  width: 100%;
}
.skopiCoupon .useable-coupon-list > li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dotted #CCC;
}
.skopiCoupon .useable-coupon-list > li:last-child {
  border-bottom: none;
}
.skopiCoupon .useable-coupon-list > li .orderProd,
.skopiCoupon .useable-coupon-list > li .coupon__delivery-free {
  flex: 1 1 auto;
}
.skopiCoupon .useable-coupon-list > li .quantity {
  flex: 0 0 60px;
  text-align: center;
}
.skopiCoupon .useable-coupon-list > li .price {
  flex: 0 0 140px;
  text-align: right;
}
.skopiCoupon .useable-coupon-list > li .select {
  flex: 0 0 140px;
  text-align: center;
}
.skopiCoupon .useable-coupon-list > li .saleAmt {
  flex: 0 0 140px;
  text-align: right;
}
.skopiCoupon .useable-coupon-list > li .thead {
  font-size: 12px;
  color: #999;
}
.skopiCoupon .useable-coupon-list tr td {
  padding: 10px 0;
  border-bottom: 1px dotted #CCC;
}
.skopiCoupon .useable-coupon-list tr:last-child td {
  border-bottom: none;
}
.skopiCoupon .useable-coupon-list tr .quantity {
  width: 60px;
  text-align: center;
}
.skopiCoupon .useable-coupon-list tr .price {
  width: 140px;
  text-align: right;
}
.skopiCoupon .useable-coupon-list tr .select {
  width: 140px;
  text-align: center;
}
.skopiCoupon .useable-coupon-list tr .saleAmt {
  width: 140px;
  text-align: right;
}
.skopiCoupon .useable-coupon-list tr .thead {
  font-size: 12px;
  color: #999;
}
.skopiCoupon .totalAmt {
  padding: 10px 20px;
}
.skopiCoupon .totalAmt strong {
  font-size: 17px;
  color: #E8132C;
}
.skopiCoupon .isCouponList {
  display: none;
}

/* Order Complete */
#payType1,
#payType2,
#payType3 {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 80px;
  padding: 20px;
  border: 2px solid #CCC;
  border-radius: 20px;
  background: #FFF;
}
#payType1 .list li .sButton,
#payType2 .list li .sButton,
#payType3 .list li .sButton {
  text-indent: 0;
}

.openAlbumBox .list {
  margin-bottom: 10px;
}
.openAlbumBox #obdList {
  margin-bottom: 30px;
}

/* MP Point Popup */
.TmembershipPoint header {
  height: 40px;
  padding: 10px;
  line-height: 1;
  background: #8F8781;
}
.TmembershipPoint header h1 {
  font-size: 20px;
  color: #FFF;
}
.TmembershipPoint .pop_content {
  padding: 15px;
}
.TmembershipPoint .MP-stit {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
}
.TmembershipPoint .MP-txt {
  padding: 15px;
  margin-bottom: 20px;
  background: #FAFAFA;
  border: 1px solid #CCC;
  border-radius: 5px;
}
.TmembershipPoint .MP-txt li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 8px;
  font-size: 13px;
}
.TmembershipPoint .MP-txt li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  content: "-";
}
.TmembershipPoint .payInfo {
  margin-bottom: 10px;
  font-size: 15px;
}
.TmembershipPoint .payInfo .box {
  padding: 0;
}
.TmembershipPoint .payInfo .totalSaleAmt .num {
  font-size: 18px;
  color: #F30;
}
.TmembershipPoint .payInfo .realSaleAmt .num {
  font-size: 18px;
  color: #0072BC;
}
.TmembershipPoint .tPointBox {
  margin-top: 20px;
  margin-bottom: 15px;
  border: 2px solid #CCC;
  padding: 10px;
  border-radius: 13px;
}
.TmembershipPoint .tPointBox .hasPoint {
  display: block;
  padding: 5px 10px;
  font-size: 13px;
  text-align: right;
}
.TmembershipPoint .disTplusPoint,
.TmembershipPoint .accuTplusPoint,
.TmembershipPoint .usePoint {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10px;
  margin-bottom: 10px;
  background: #EFEFEF;
  box-sizing: border-box;
  border-radius: 10px;
}
.TmembershipPoint .disTplusPoint .box,
.TmembershipPoint .accuTplusPoint .box,
.TmembershipPoint .usePoint .box {
  flex: 0 0 50%;
}
.TmembershipPoint .useTplusPoint {
  position: relative;
}
.TmembershipPoint .useTplusPoint .hasPointInfo {
  position: absolute;
  top: 6px;
  right: 10px;
  text-align: right;
  font-size: 13px;
}
.TmembershipPoint .useTplusPoint .pointBox {
  display: block;
}
.TmembershipPoint .useTplusPoint .pointBox .p-blue {
  color: #0072BC;
}
.TmembershipPoint .useTplusPoint .pointBox .point {
  display: inline-block;
  font-weight: bold;
}
.TmembershipPoint .useTplusPoint .usePoint {
  padding: 10px 12px;
  margin-bottom: 25px;
  background: #EFEFEF;
  border-radius: 10px;
}
.TmembershipPoint .useTplusPoint .usePoint input#MP_useAmt {
  width: 120px;
}
.TmembershipPoint .heading {
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: bold;
}
.TmembershipPoint .exp {
  font-size: 12px;
}
.TmembershipPoint .agree {
  padding: 5px;
}
.TmembershipPoint .agree .ja-checkbox {
  vertical-align: bottom;
}

.retouch_option_tit {
  font-size: 21px;
  text-align: center;
  color: #F30;
}
.retouch_option_box {
  padding: 15px;
  border: 1px solid #F30;
  background: #FFF;
  border-radius: 10px;
  margin: 0 0 40px 0;
  box-shadow: 3px 3px 3px 0, 0, 0, 0.15;
}
.retouch_option_list > li {
  margin-bottom: 10px;
}
.retouch_option_list > li:last-child {
  margin-bottom: 0;
}
.retouch_option_list > li > ul,
.retouch_option_list > li > div {
  padding-left: 20px;
}
.retouch_option_list > li:first-child li {
  padding-left: 20px;
  text-indent: -20px;
}

/** 보증보험 **/
.tossAgreements {
  width: 400px;
  margin: 0 auto;
}
.tossAgreements_container {
  margin-bottom: 40px;
}
.tossAgreementsCont {
  margin-top: 5px;
  height: 0;
  padding-left: 22px;
  transition: height ease-in 0.3s;
  overflow: hidden;
}
.tossAgreementsCont.open {
  height: 70px;
}

/*# sourceMappingURL=skopi_order.css.map */
