@charset "UTF-8";
/* ---------------장바구니--------------- */
.cart_desc {
  font-size: 18px;
  color: #999;
  margin-bottom: 30px;
  line-height: 130%;
}

.cart_pay_section {
  background-color: #f7f7f7;
}

.cart_pay_list li {
  position: relative;
  float: left;
  width: calc(25% - (45px / 4));
  background-color: #FFF;
}

.cart_pay_list li:not(:nth-of-type(1)) {
  margin-left: 15px;
}

.cart_pay_list li.cost {
  border-radius: 10px 0 0 10px;
}

.cart_pay_list li.point {
  border-radius: 0 10px 10px 0;
}

.cart_pay_list li.price .inner .pay_won {
  color: #fc454c;
}

.cart_pay_list li .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 50px;
}

.cart_pay_list li .inner .pay_tit {
  font-size: 14px;
  margin-bottom: 10px;
  color: #666;
}

.cart_pay_list li .inner .pay_won {
  font-size: 20px;
}

.cart_pay_list li .inner .pay_won span {
  font-size: 25px;
  font-weight: 700;
}

.cart_pay_list li .calcbox {
  z-index: 1;
  position: absolute;
  right: -32.5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.cart_pay_list li .calcbox .line {
  position: absolute;
  display: block;
  width: 18px;
  height: 3px;
  background-color: #918c8c;
}

.cart_pay_list li .calcbox.minus .line {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.cart_pay_list li .calcbox.result .line {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.cart_pay_list li .calcbox.result .line.line1 {
  margin-top: -3px;
}

.cart_pay_list li .calcbox.result .line.line2 {
  margin-top: 6px;
}

.cart_pay_list li .calcbox.plus .line {
  left: 50%;
  top: 50%;
}

.cart_pay_list li .calcbox.plus .line.line1 {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.cart_pay_list li .calcbox.plus .line.line2 {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.cart_info_button_box {
  margin-top: 30px;
}

.cart_info_button_box .cart_info_btn {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  font-weight: 700;
  padding: 0 30px;
  height: 35px;
  line-height: 33px;
  border: 1px solid #666;
  border-radius: 3px;
  color: #666;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.cart_pay_button_box {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cart_pay_button_box .cart_pay_btn {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 30px;
  height: 60px;
  text-align: center;
  line-height: 58px;
  margin: 0 10px;
  font-weight: 700;
  font-size: 20px;
  border: 1px solid #333;
  border-radius: 7px;
  -webkit-transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.cart_pay_button_box .cart_pay_btn.back_btn {
  color: #333;
}

.cart_pay_button_box .cart_pay_btn.buy_btn {
  background-color: #333;
  color: #FFF;
}

/* ---------------장바구니 end--------------- */
/* 

*/
/* ---------------주문결제--------------- */
.order_title {
  width: 100%;
  font-size: 25px;
  margin-bottom: 20px;
}

.order_content.finish {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order_content.finish::after {
  display: none;
}

.order_content.finish .order_price_box {
  width: calc(50% - 10px);
}

.order_content.finish .order_price_box .order_price .inner {
  background-color: #FFF;
}

.order_content.finish .order_price_box .order_price.order_price_right .inner:not(:nth-of-type(1)) {
  margin-top: 20px;
}

.order_content.finish .order_price_box .order_price.order_price_left .inner:not(:nth-of-type(1)) {
  background-color: #f5f5f5;
}

.order_content.finish .order_price_box .order_price.order_price_left .inner .price_list li .won span {
  color: #fc454c;
  font-size: 20px;
}

.order_content .order_info_box {
  float: left;
  width: calc(100% - 480px);
}

.order_content .order_info_box .inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #CCC;
}

.order_content .order_info_box .inner.first {
  border-top: 2px solid #1c1c1c;
}

.order_content .order_info_box .order_info .inner, .order_content .order_info_box .order_account .inner {
  padding: 7px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order_content .order_info_box .order_info .inner.jcfs, .order_content .order_info_box .order_account .inner.jcfs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 17px 30px;
}

.order_content .order_info_box .order_info .inner .left, .order_content .order_info_box .order_account .inner .left {
  width: 160px;
  font-weight: 500;
  font-size: 16px;
}

.order_content .order_info_box .order_info .inner .right, .order_content .order_info_box .order_account .inner .right {
  position: relative;
  width: calc(100% - 160px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order_content .order_info_box .order_info .inner .info_input, .order_content .order_info_box .order_account .inner .info_input {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc((100% - 60px) / 3);
  height: 40px;
  padding: 0 20px;
  border-radius: 3px;
  border: 1px solid #dfdfdf;
  color: #666;
}

.order_content .order_info_box .order_info .inner .info_input.long_input, .order_content .order_info_box .order_account .inner .info_input.long_input {
  width: 100%;
}

.order_content .order_info_box .order_info .inner .info_input.direct_input, .order_content .order_info_box .order_account .inner .info_input.direct_input {
  display: none;
}

.order_content .order_info_box .order_info .inner .etc, .order_content .order_info_box .order_account .inner .etc {
  display: block;
  width: 30px;
  text-align: center;
  font-size: 16px;
  color: #666;
}

.order_content .order_info_box .order_info .inner .check:not(:nth-last-of-type(1)), .order_content .order_info_box .order_account .inner .check:not(:nth-last-of-type(1)) {
  margin-right: 30px;
}

.order_content .order_info_box .order_info .inner .check label, .order_content .order_info_box .order_account .inner .check label {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 16px;
}

.order_content .order_info_box .order_info .inner .check .order_check + label::before, .order_content .order_info_box .order_account .inner .check .order_check + label::before {
  content: '';
  display: inline-block;
  margin-right: 3px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #999;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}

.order_content .order_info_box .order_info .inner .check .order_check + label::after, .order_content .order_info_box .order_account .inner .check .order_check + label::after {
  content: '';
  opacity: 0;
  z-index: 1;
  position: absolute;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #5959f7;
  background-color: #5959f7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.order_content .order_info_box .order_info .inner .check .order_check:checked + label, .order_content .order_info_box .order_account .inner .check .order_check:checked + label {
  color: #5959f7;
  font-weight: 700;
}

.order_content .order_info_box .order_info .inner .check .order_check:checked + label::before, .order_content .order_info_box .order_account .inner .check .order_check:checked + label::before {
  border-color: #5959f7;
}

.order_content .order_info_box .order_info .inner .check .order_check:checked + label::after, .order_content .order_info_box .order_account .inner .check .order_check:checked + label::after {
  opacity: 1;
}

.order_content .order_info_box .order_discount {
  margin: 50px 0;
}

.order_content .order_info_box .order_discount .inner {
  padding: 20px 30px;
}

.order_content .order_info_box .order_discount .inner .coupon_point_tit {
  font-size: 16px;
  margin-bottom: 10px;
}

.order_content .order_info_box .order_discount .inner .coupon_point_tit span {
  color: #fc454c;
}

.order_content .order_info_box .order_discount .inner .coupon_point_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order_content .order_info_box .order_discount .inner .coupon_point_box .coupon_point_input {
  display: block;
  width: 300px;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  padding: 0 20px;
  color: #666;
}

.order_content .order_info_box .order_discount .inner .coupon_point_box .etc {
  display: block;
  width: 30px;
  text-align: center;
  font-size: 16px;
  color: #666;
}

.order_content .order_info_box .order_discount .inner .coupon_point_box .coupon_point_btn {
  display: block;
  width: 120px;
  border-radius: 3px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  color: #FFF;
  background-color: #333;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.order_content .order_info_box .order_discount .inner .desc {
  width: 100%;
  margin-top: 10px;
  line-height: 130%;
  font-size: 14px;
  color: #666;
}

.order_content .order_price_box {
  float: right;
  width: 450px;
}

.order_content .order_price_box .order_price .inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #DDD;
  padding: 30px;
  background-color: #fafafa;
}

.order_content .order_price_box .order_price .inner .price_list li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order_content .order_price_box .order_price .inner .price_list li:nth-of-type(1) {
  padding-top: 0;
}

.order_content .order_price_box .order_price .inner .price_list li:nth-last-of-type(1) {
  padding-bottom: 0;
}

.order_content .order_price_box .order_price .inner .price_list li.border {
  position: relative;
}

.order_content .order_price_box .order_price .inner .price_list li.border::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 100%;
  height: 1px;
  background-color: #CCC;
}

.order_content .order_price_box .order_price .inner .price_list li .won, .order_content .order_price_box .order_price .inner .price_list li .tit {
  font-size: 16px;
}

.order_content .order_price_box .order_price .inner .price_list li.big {
  font-size: 25px;
}

.order_content .order_price_box .order_price .inner .price_list li.big span {
  font-size: 25px;
}

.order_content .order_price_box .order_price .inner .price_list li.big .won {
  color: #fc454c;
}

.order_content .order_price_box .order_price .inner .price_list li.small {
  color: #999;
}

.order_content .order_price_box .order_button_box .terms {
  margin: 25px 0;
}

.order_content .order_price_box .order_button_box .terms label {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.order_content .order_price_box .order_button_box .terms .order_terms_check + label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #999;
  margin-right: 3px;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.order_content .order_price_box .order_button_box .terms .order_terms_check + label::after {
  content: '\f00c';
  opacity: 0;
  z-index: 1;
  position: absolute;
  left: 2.5px;
  top: calc(50% + 2px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFF;
  font-size: 12px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.order_content .order_price_box .order_button_box .terms .order_terms_check:checked + label::before {
  background-color: #5959f7;
  border-color: #5959f7;
}

.order_content .order_price_box .order_button_box .terms .order_terms_check:checked + label::after {
  opacity: 1;
}

.order_content .order_price_box .order_button_box .terms .order_terms_btn {
  margin-left: 5px;
  display: inline-block;
  font-size: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 65px;
  height: 22px;
  line-height: 20px;
  border: 1px solid #707070;
  color: #707070;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.order_content .order_price_box .order_button_box .order_buy_btn {
  display: block;
  width: 100%;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: #FFF;
  font-size: 20px;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.order_content .order_info_box, .order_content .order_price_box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.order_finish_desc {
  margin-top: 20px;
  margin-bottom: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
  background-color: #f5f5f5;
  border: 1px solid #DDD;
}

.order_finish_desc ul li {
  line-height: 130%;
  color: #666;
  font-size: 16px;
}

.order_finish_desc ul li:not(:nth-of-type(1)) {
  margin-top: 5px;
}

/* ---------------주문결제 end--------------- */
/* 

*/
/* ---------------쿠폰 팝업--------------- */
.order_popup_dummy {
  display: none;
  z-index: 105;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.order_popup {
  display: none;
  z-index: 110;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 95%;
  max-width: 500px;
}

.order_popup .titbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 50px;
  background-color: #2d0e73;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  border-radius: 10px 10px 0 0;
}

.order_popup .titbox .popup_title {
  font-size: 20px;
  color: #FFF;
}

.order_popup .titbox .popup_close_btn {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
}

.order_popup .titbox .popup_close_btn span {
  position: absolute;
  left: 0;
  top: 11.5px;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFF;
}

.order_popup .titbox .popup_close_btn span.line1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.order_popup .titbox .popup_close_btn span.line2 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.order_popup .content {
  background-color: #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  border-radius: 0 0 10px 10px;
}

.order_popup .content .box1 {
  margin-top: 10px;
}

.order_popup .content .box2 {
  margin-top: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #CCC;
  margin-bottom: 10px;
}

.order_popup .content .refundbox {
  margin-bottom: 20px;
}

.order_popup .content .refundbox.refundbox_mbn {
  margin-bottom: 0;
}

.order_popup .content .terms_inner {
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #CCC;
  border-radius: 3px;
  line-height: 150%;
  padding: 10px;
  height: 300px;
  overflow-y: auto;
  color: #666;
}

.order_popup .content .coupon_tit, .order_popup .content .refund_tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

.order_popup .content .coupon_tit .tit, .order_popup .content .refund_tit .tit {
  font-size: 16px;
}

.order_popup .content .coupon_tit .text, .order_popup .content .refund_tit .text {
  font-size: 14px;
  color: #fc454c;
}

.order_popup .content .coupon_tit .text.price, .order_popup .content .refund_tit .text.price {
  font-size: 20px;
  font-weight: 700;
}

.order_popup .content .coupon_select, .order_popup .content .refund_select, .order_popup .content .refund_input {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 40px;
  border: 1px solid #CCC;
  border-radius: 3px;
  padding: 0 15px;
  color: #666;
  font-size: 16px;
}

.order_popup .content .coupon_select_btn,
.order_popup .content .terms_check_btn {
  display: block;
  width: 100%;
  border-radius: 5px;
  text-align: center;
  background-color: #333;
  color: #FFF;
  height: 50px;
  line-height: 50px;
  margin-bottom: 20px;
  font-size: 18px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.order_popup .content .desc {
  font-size: 14px;
  color: #666;
  line-height: 150%;
}

.order_popup .content .popup_btn_box {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.order_popup .content .popup_btn_box .popup_common_btn {
  display: block;
  width: 150px;
  height: 40px;
  color: #FFF;
  text-align: center;
  line-height: 40px;
  border-radius: 3px;
  margin: 0 5px;
  font-size: 18px;
  background-color: #5959f7;
  font-weight: 700;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.order_popup .content .popup_btn_box .popup_common_btn.popup_cancel_btn {
  background-color: #333;
}

/* ---------------쿠폰 팝업 end--------------- */
/* 

*/
/* ---------------media screen--------------- */
@media screen and (min-width: 991.1px) {
  .cart_info_button_box .cart_info_btn:hover {
    background-color: #666;
    color: #FFF;
  }
  .cart_pay_button_box .cart_pay_btn.back_btn:hover, .cart_pay_button_box .cart_pay_btn.go_btn:hover {
    background-color: #333;
    border-color: #333;
    color: #FFF;
  }
  .cart_pay_button_box .cart_pay_btn.buy_btn:hover {
    background-color: #555;
    border-color: #555;
  }
  .order_content .order_info_box .order_info .inner .check label:hover, .order_content .order_info_box .order_account .inner .check label:hover {
    color: #5959f7;
  }
  .order_content .order_info_box .order_discount .inner .coupon_point_box .coupon_point_btn:hover {
    background-color: #555;
  }
  .order_content .order_price_box .order_button_box .terms label:hover {
    color: #5959f7;
  }
  .order_content .order_price_box .order_button_box .terms .order_terms_btn:hover {
    background-color: #707070;
    color: #FFF;
  }
  .order_content .order_price_box .order_button_box .order_buy_btn:hover {
    background-color: #4040ad;
  }
  .order_popup .content .coupon_select_btn:hover, .order_popup .content .terms_check_btn:hover {
    background-color: #555;
  }
  .order_popup .content .popup_btn_box .popup_common_btn:hover {
    background-color: #4040ad;
  }
  .order_popup .content .popup_btn_box .popup_common_btn.popup_cancel_btn:hover {
    background-color: #555;
  }
}

@media screen and (max-width: 1350px) {
  .cart_pay_list li .inner {
    padding-left: 35px;
  }
  .order_title {
    font-size: 23px;
  }
  .order_content .order_info_box {
    width: calc(100% - 450px);
  }
  .order_content .order_info_box .order_info .inner, .order_content .order_info_box .order_account .inner {
    padding: 7px 20px;
  }
  .order_content .order_info_box .order_info .inner.jcfs, .order_content .order_info_box .order_account .inner.jcfs {
    padding: 17px 20px;
  }
  .order_content .order_info_box .order_info .inner .left, .order_content .order_info_box .order_account .inner .left {
    width: 110px;
  }
  .order_content .order_info_box .order_info .inner .right, .order_content .order_info_box .order_account .inner .right {
    width: calc(100% - 110px);
  }
  .order_content .order_info_box .order_info .inner .info_input, .order_content .order_info_box .order_account .inner .info_input {
    width: calc((100% - 50px) / 3);
    padding: 0 15px;
  }
  .order_content .order_info_box .order_info .inner .etc, .order_content .order_info_box .order_account .inner .etc {
    width: 25px;
  }
  .order_content .order_info_box .order_discount {
    margin: 35px 0;
  }
  .order_content .order_info_box .order_discount .inner {
    padding: 20px;
  }
  .order_content .order_info_box .order_discount .inner .coupon_point_box .coupon_point_input {
    width: 270px;
    padding: 0 15px;
  }
  .order_content .order_info_box .order_discount .inner .coupon_point_box .etc {
    width: 25px;
  }
  .order_content .order_price_box {
    width: 430px;
  }
  .order_content .order_price_box .order_price .inner {
    padding: 20px;
  }
}

@media screen and (max-width: 1100px) {
  .cart_desc {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .cart_pay_list li {
    width: calc(25% - (30px / 4));
  }
  .cart_pay_list li:not(:nth-of-type(1)) {
    margin-left: 10px;
  }
  .cart_pay_list li .inner {
    height: 130px;
    padding-left: 25px;
  }
  .cart_pay_list li .inner .pay_tit {
    margin-bottom: 7px;
  }
  .cart_pay_list li .inner .pay_won {
    font-size: 18px;
  }
  .cart_pay_list li .inner .pay_won span {
    font-size: 21px;
  }
  .cart_pay_list li .calcbox {
    right: -25px;
    width: 40px;
    height: 40px;
  }
  .cart_pay_list li .calcbox .line {
    width: 15px;
    height: 2px;
  }
  .cart_pay_list li .calcbox.result .line.line1 {
    margin-top: -2px;
  }
  .cart_pay_list li .calcbox.result .line.line2 {
    margin-top: 4px;
  }
  .cart_info_button_box {
    margin-top: 20px;
  }
  .cart_info_button_box .cart_info_btn {
    padding: 0 20px;
    font-size: 15px;
  }
  .cart_pay_button_box {
    margin-top: 20px;
  }
  .cart_pay_button_box .cart_pay_btn {
    font-size: 18px;
    height: 50px;
    line-height: 48px;
  }
  .order_title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .order_content.finish .order_price_box {
    margin-top: 0;
    width: calc(50% - 5px);
  }
  .order_content.finish .order_price_box .order_price.order_price_right .inner:not(:nth-of-type(1)) {
    margin-top: 10px;
  }
  .order_content.finish .order_price_box .order_price.order_price_left .inner .price_list li .won span {
    color: #fc454c;
    font-size: 18px;
  }
  .order_content .order_info_box {
    float: none;
    width: 100%;
  }
  .order_content .order_info_box .order_info .inner, .order_content .order_info_box .order_account .inner {
    padding: 7px 15px;
  }
  .order_content .order_info_box .order_info .inner.jcfs, .order_content .order_info_box .order_account .inner.jcfs {
    padding: 15px;
  }
  .order_content .order_info_box .order_info .inner .left, .order_content .order_info_box .order_account .inner .left {
    width: 80px;
    font-size: 15px;
  }
  .order_content .order_info_box .order_info .inner .right, .order_content .order_info_box .order_account .inner .right {
    width: calc(100% - 80px);
  }
  .order_content .order_info_box .order_info .inner .info_input, .order_content .order_info_box .order_account .inner .info_input {
    height: 35px;
    padding: 0 10px;
    font-size: 15px;
  }
  .order_content .order_info_box .order_info .inner .etc, .order_content .order_info_box .order_account .inner .etc {
    font-size: 15px;
  }
  .order_content .order_info_box .order_info .inner .check label, .order_content .order_info_box .order_account .inner .check label {
    font-size: 15px;
  }
  .order_content .order_info_box .order_discount {
    margin: 25px 0;
  }
  .order_content .order_info_box .order_discount .inner {
    padding: 15px;
  }
  .order_content .order_info_box .order_discount .inner .coupon_point_tit {
    font-size: 14px;
    margin-bottom: 7px;
  }
  .order_content .order_info_box .order_discount .inner .coupon_point_box .coupon_point_input {
    width: 250px;
    height: 35px;
    padding: 0 10px;
    font-size: 15px;
  }
  .order_content .order_info_box .order_discount .inner .coupon_point_box .etc {
    font-size: 15px;
  }
  .order_content .order_info_box .order_discount .inner .coupon_point_box .coupon_point_btn {
    width: 100px;
    height: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  .order_content .order_info_box .order_discount .inner .desc {
    font-size: 13px;
  }
  .order_content .order_price_box {
    float: none;
    margin-top: 25px;
    width: 100%;
  }
  .order_content .order_price_box .order_price .inner {
    padding: 15px;
  }
  .order_content .order_price_box .order_price .inner .price_list li .won, .order_content .order_price_box .order_price .inner .price_list li .tit {
    font-size: 15px;
  }
  .order_content .order_price_box .order_price .inner .price_list li.big {
    font-size: 20px;
  }
  .order_content .order_price_box .order_price .inner .price_list li.big span {
    font-size: 20px;
  }
  .order_content .order_price_box .order_button_box .terms {
    margin: 20px 0;
  }
  .order_content .order_price_box .order_button_box .terms label {
    font-size: 13px;
  }
  .order_content .order_price_box .order_button_box .terms .order_terms_check + label::after {
    left: 2px;
    top: calc(50% + 1px);
  }
  .order_content .order_price_box .order_button_box .order_buy_btn {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
  }
  .order_popup .titbox {
    height: 45px;
    padding: 0 15px;
  }
  .order_popup .titbox .popup_title {
    font-size: 18px;
  }
  .order_popup .content {
    padding: 15px;
  }
  .order_popup .content .box1 {
    margin-top: 5px;
  }
  .order_popup .content .box2 {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .order_popup .content .refundbox {
    margin-bottom: 15px;
  }
  .order_popup .content .refundbox.refundbox_mbn {
    margin-bottom: 0;
  }
  .order_popup .content .terms_inner {
    font-size: 15px;
    height: 250px;
  }
  .order_popup .content .coupon_tit, .order_popup .content .refund_tit {
    margin-bottom: 10px;
  }
  .order_popup .content .coupon_tit .tit, .order_popup .content .refund_tit .tit {
    font-size: 15px;
  }
  .order_popup .content .coupon_tit .text, .order_popup .content .refund_tit .text {
    font-size: 13px;
  }
  .order_popup .content .coupon_tit .text.price, .order_popup .content .refund_tit .text.price {
    font-size: 18px;
  }
  .order_popup .content .coupon_select, .order_popup .content .refund_select, .order_popup .content .refund_input {
    padding: 0 10px;
    font-size: 15px;
  }
  .order_popup .content .coupon_select_btn, .order_popup .content .terms_check_btn {
    height: 45px;
    line-height: 45px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  .order_popup .content .desc {
    font-size: 13px;
    line-height: 130%;
  }
  .order_popup .content .popup_btn_box .popup_common_btn {
    font-size: 16px;
  }
  .order_finish_desc {
    margin-bottom: 40px;
    padding: 20px;
  }
  .order_finish_desc ul li {
    font-size: 15px;
  }
}

@media screen and (max-width: 991px) {
  .cart_pay_list li .inner {
    height: 120px;
    padding-left: 20px;
  }
  .cart_pay_list li .inner .pay_won {
    font-size: 16px;
  }
  .cart_pay_list li .inner .pay_won span {
    font-size: 18px;
  }
  .cart_pay_list li .calcbox {
    right: -20px;
    width: 30px;
    height: 30px;
  }
  .cart_pay_list li .calcbox .line {
    width: 12px;
  }
  .order_content.finish .order_price_box {
    margin-top: 0;
    width: 100%;
  }
  .order_content.finish .order_price_box:not(:nth-of-type(1)) {
    margin-top: 10px;
  }
}

/* @media screen and (max-width:850px){
    
} */
@media screen and (max-width: 767px) {
  .cart_info_section {
    padding-bottom: 30px;
  }
  .cart_pay_section {
    padding-top: 30px;
  }
  .cart_pay_list {
    border-radius: 10px;
    overflow: hidden;
  }
  .cart_pay_list li {
    float: none;
    width: 100%;
    background-color: #FFF;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 15px;
  }
  .cart_pay_list li:not(:nth-of-type(1)) {
    margin-left: 0;
  }
  .cart_pay_list li.cost {
    border-radius: 0;
  }
  .cart_pay_list li.price {
    border-top: 1px solid #EEE;
  }
  .cart_pay_list li.point {
    border-radius: 0;
  }
  .cart_pay_list li .inner {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: auto;
  }
  .cart_pay_list li .inner .pay_tit {
    margin-bottom: 0;
  }
  .cart_pay_list li .calcbox {
    display: none;
  }
  .cart_info_button_box .cart_info_btn {
    padding: 0 15px;
    height: 30px;
    line-height: 28px;
    font-size: 14px;
  }
  .cart_pay_button_box .cart_pay_btn {
    font-size: 16px;
    height: 45px;
    line-height: 43px;
    padding: 0 20px;
  }
}

@media screen and (max-width: 600px) {
  .cart_desc {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .cart_info_button_box {
    margin-top: 15px;
  }
  .cart_pay_button_box {
    margin-top: 15px;
  }
  .cart_pay_button_box .cart_pay_btn {
    font-size: 14px;
    height: 40px;
    line-height: 38px;
    margin: 0 5px;
  }
  .order_title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .order_content.finish .order_price_box .order_price.order_price_left .inner .price_list li .won span {
    font-size: 16px;
  }
  .order_content .order_info_box .order_info .inner, .order_content .order_info_box .order_account .inner {
    padding: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .order_content .order_info_box .order_info .inner.jcfs, .order_content .order_info_box .order_account .inner.jcfs {
    padding: 15px 10px;
  }
  .order_content .order_info_box .order_info .inner.phone .left, .order_content .order_info_box .order_info .inner.email .left, .order_content .order_info_box .order_account .inner.phone .left, .order_content .order_info_box .order_account .inner.email .left {
    width: 100%;
    margin-bottom: 7px;
  }
  .order_content .order_info_box .order_info .inner.phone .right, .order_content .order_info_box .order_info .inner.email .right, .order_content .order_info_box .order_account .inner.phone .right, .order_content .order_info_box .order_account .inner.email .right {
    width: 100%;
  }
  .order_content .order_info_box .order_info .inner .left, .order_content .order_info_box .order_account .inner .left {
    width: 60px;
    font-size: 14px;
  }
  .order_content .order_info_box .order_info .inner .right, .order_content .order_info_box .order_account .inner .right {
    width: calc(100% - 60px);
  }
  .order_content .order_info_box .order_info .inner .info_input, .order_content .order_info_box .order_account .inner .info_input {
    width: calc((100% - 40px) / 3);
    font-size: 14px;
  }
  .order_content .order_info_box .order_info .inner .info_input.long_input, .order_content .order_info_box .order_account .inner .info_input.long_input {
    width: 100%;
  }
  .order_content .order_info_box .order_info .inner .info_input.name_input, .order_content .order_info_box .order_account .inner .info_input.name_input {
    min-width: 150px;
  }
  .order_content .order_info_box .order_info .inner .etc, .order_content .order_info_box .order_account .inner .etc {
    width: 20px;
    font-size: 14px;
  }
  .order_content .order_info_box .order_info .inner .check:not(:nth-last-of-type(1)), .order_content .order_info_box .order_account .inner .check:not(:nth-last-of-type(1)) {
    margin: 5px 0;
    margin-right: 20px;
  }
  .order_content .order_info_box .order_info .inner .check label, .order_content .order_info_box .order_account .inner .check label {
    font-size: 14px;
  }
  .order_content .order_info_box .order_discount {
    margin: 20px 0;
  }
  .order_content .order_info_box .order_discount .inner {
    padding: 10px;
  }
  .order_content .order_info_box .order_discount .inner .coupon_point_tit {
    font-size: 14px;
  }
  .order_content .order_info_box .order_discount .inner .coupon_point_box .coupon_point_input {
    width: 230px;
    font-size: 14px;
  }
  .order_content .order_info_box .order_discount .inner .coupon_point_box .etc {
    width: 20px;
    font-size: 14px;
  }
  .order_content .order_price_box {
    margin-top: 20px;
  }
  .order_content .order_price_box .order_price .inner {
    padding: 10px;
  }
  .order_content .order_price_box .order_price .inner .price_list li {
    padding: 7px 0;
  }
  .order_content .order_price_box .order_price .inner .price_list li .won, .order_content .order_price_box .order_price .inner .price_list li .tit {
    font-size: 14px;
  }
  .order_content .order_price_box .order_price .inner .price_list li.big {
    font-size: 18px;
  }
  .order_content .order_price_box .order_price .inner .price_list li.big span {
    font-size: 18px;
  }
  .order_content .order_price_box .order_button_box .terms {
    margin: 15px 0;
  }
  .order_content .order_price_box .order_button_box .order_buy_btn {
    max-width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }
  .order_popup .titbox {
    height: 40px;
    padding: 0 10px;
  }
  .order_popup .titbox .popup_title {
    font-size: 16px;
  }
  .order_popup .content .coupon_tit .tit, .order_popup .content .refund_tit .tit {
    font-size: 14px;
  }
  .order_popup .content .coupon_tit .text.price, .order_popup .content .refund_tit .text.price {
    font-size: 17px;
  }
  .order_popup .content .terms_inner {
    padding: 7px;
    font-size: 14px;
    height: 220px;
    margin-bottom: 15px;
  }
  .order_popup .content .coupon_select, .order_popup .content .refund_select, .order_popup .content .refund_input {
    font-size: 14px;
    height: 35px;
  }
  .order_popup .content .coupon_select_btn, .order_popup .content .terms_check_btn {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  .order_popup .content .popup_btn_box {
    margin-top: 15px;
  }
  .order_popup .content .popup_btn_box .popup_common_btn {
    margin: 0;
    margin-top: 10px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
  }
  .order_popup .content .popup_btn_box .popup_common_btn.popup_write_btn, .order_popup .content .popup_btn_box .popup_common_btn.popup_cancel_btn {
    width: 100px;
    margin: 0 5px;
  }
  .order_finish_desc {
    margin-bottom: 30px;
    padding: 15px;
  }
  .order_finish_desc ul li {
    font-size: 14px;
  }
  .order_finish_desc ul li:not(:nth-of-type(1)) {
    margin-top: 3px;
  }
}

@media screen and (max-width: 400px) {
  .cart_desc {
    font-size: 13px;
  }
  .cart_pay_list li .inner .pay_tit {
    font-size: 13px;
  }
  .cart_pay_list li .inner .pay_won {
    font-size: 14px;
  }
  .cart_pay_list li .inner .pay_won span {
    font-size: 16px;
  }
  .cart_pay_button_box .cart_pay_btn {
    height: 35px;
    line-height: 33px;
    padding: 0 15px;
  }
  .order_popup .titbox {
    height: 35px;
  }
  .order_popup .titbox .popup_title {
    font-size: 14px;
  }
  .order_popup .titbox .popup_close_btn {
    width: 20px;
    height: 20px;
  }
  .order_popup .titbox .popup_close_btn span {
    top: 9px;
  }
  .order_popup .content {
    padding: 10px;
  }
  .order_popup .content .box2 {
    margin-top: 15px;
  }
  .order_popup .content .terms_inner {
    font-size: 13px;
    height: 200px;
  }
  .order_popup .content .coupon_tit .tit, .order_popup .content .refund_tit .tit {
    font-size: 13px;
  }
  .order_popup .content .coupon_tit .text.price, .order_popup .content .refund_tit .text.price {
    font-size: 16px;
  }
  .order_popup .content .coupon_select, .order_popup .content .refund_select, .order_popup .content .refund_input {
    font-size: 13px;
    height: 30px;
  }
  .order_popup .content .coupon_select_btn, .order_popup .content .terms_check_btn {
    height: 35px;
    line-height: 35px;
    font-size: 13px;
  }
  .order_popup .content .popup_btn_box {
    margin-top: 10px;
  }
  .order_popup .content .popup_btn_box .popup_stop_text {
    font-size: 13px;
    height: 30px;
    line-height: 30px;
  }
  .order_popup .content .popup_btn_box .popup_common_btn {
    height: 30px;
    line-height: 30px;
    font-size: 13px;
  }
  .order_finish_desc {
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 10px;
  }
  .order_finish_desc ul li {
    font-size: 13px;
  }
  .order_finish_desc ul li:not(:nth-of-type(1)) {
    margin-top: 2px;
  }
}

/* ---------------media screen end--------------- */
