@charset "utf-8";

/* ——————————————————————————
 * cart 장바구니
/* —————————————————————————— */
/* cart_none */
.cart_none {
    margin-top: 0;
    text-align: center;
    padding: 120px 18px
}

.cart_none i {
    display: inline-block;
    font-size: 88px;
    color: #bbb
}

.cart_none p {
    font-size: 17px;
    color: #888;
    margin: 25px 0
}

.cart_none .btn {
    max-width: 58%;
    margin: auto
}

/* cart_wrap */
.cart_wrap .check_all {
    margin-top: 0;
    padding: 17px 18px;
}

.cart_wrap .check_all button.btn {
    position: absolute;
    right: 18px;
    top: 50%;
    margin-top: -14px
}

/* cart_body */
.cart_body {
    padding: 0 18px;
}

/* cart_list */
.cart_list {
    position: relative
}

.cart_list .cart_item {
    position: relative;
    padding: 54px 0 18px
}

.cart_list .cart_item.section {
    border-bottom: 1px solid #e9ecef;
    border-top: none;
}

.cart_list .cart_item.section:last-child {
    border-bottom: none;
}

.cart_list .cart_item .checksType_1 {
    position: absolute;
    top: 18px;
    left: 0;
}

.cart_list .cart_item .item_btn {
    width: 24px;
    position: absolute;
    top: 18px;
    right: 0;
}

.cart_list .cart_item .item_btn button {
    width: 24px;
    line-height: 24px;
    font-size: 16px;
    color: #bebebe;
}

.cart_list .cart_item .item_btn button svg {
    width: 24px;
    height: 24px;
}

.cart_list .cart_item .cart_item_wrap {
    display: flex;
    justify-content: space-between;
}

.cart_list .cart_item .photo {
    width: 80px;
    height: 80px;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
}

.cart_list .cart_item .photo:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 12px
}

.cart_list .cart_item .photo img {
    width: 100%;
    height: auto;
}

.cart_list .cart_item .info {
    flex: 0 1 auto;
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart_list .cart_item h3 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 1.4em;
    max-height: 2.8em;
    margin-bottom: 12px;
}

.cart_list .cart_item .model {
    display: block;
    font-size: 11px;
    letter-spacing: 0;
    color: #868e96;
    margin-top: 2px
}

.cart_list .cart_item .info .info_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart_list .cart_item .info .info_row li {
    color: #555;
    font-size: 12px;
    display: inline-block;
    flex: 0 1 auto;
    text-align: right;
}

.cart_list .cart_item .info .info_row:after {
    display: none;
}

.cart_list .cart_item .info .opt li:first-child {
    width: 30%;
    text-align: left;
}

.cart_list .cart_item .info .opt li:last-child {
    max-width: 80%;
    padding: 2px 8px;
    background: #eeeff8;
    border-radius: 4px;
}

.cart_list .cart_item .info .opt li:last-child span {
    font-size: 11px;
    color: #0d00ff;
}

.cart_list .cart_item .prd_prc {
    position: relative;
    margin-top: 18px;
    text-align: right
}

.cart_list .cart_item .prd_prc .inputType_qty {
    position: absolute;
    top: 0;
    left: 0
}

.cart_list .cart_item .prd_prc dl {
    line-height: 21px;
    font-size: 0
}

.cart_list .cart_item .prd_prc dl dd,
.cart_list .cart_item .prd_prc dl dt {
    display: inline-block;
    font-size: 12px
}

.cart_list .cart_item .prd_prc dl dt {
    margin-right: 10px;
    color: #888
}

.cart_list .cart_item .prd_prc dl dd em {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em
}

.cart_list .cart_item .prd_prc dl.card dd em {
    color: #e60031
}

/* cart_bottom */
.cart_bottom {
    border-bottom: none;
}

.cart_bottom .prc_all {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart_bottom .prc_all dl {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.cart_bottom .prc_all dl:after {
    display: none;
}

.cart_bottom .prc_all dl dd,
.cart_bottom .prc_all dl dt {
    display: inline-block;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0;
}

.cart_bottom .prc_all dl.combine_prc {
    padding-top: 12px;
    border-top: 1px solid #DDD;
}

.cart_bottom .prc_all dl.total_prc {
    padding-top: 12px;
    border-top: 2px solid #202020;
}

.cart_bottom .prc_all dl.combine_prc dt,
.cart_bottom .prc_all dl.total_prc dt {
    font-weight: bold;
}

.cart_bottom .prc_all dl.combine_prc dd,
.cart_bottom .prc_all dl.total_prc dd {
    color: #a50034;
    font-weight: bold;
}

.cart_bottom .prc_all dl.total_prc dd {
    font-size: 20px;
}

/* ——————————————————————————
 * order 렌탈신청
/* —————————————————————————— */
/* order_prod_list */
.order_prod .sec_tit,
.order_form .sec_tit {
    border-bottom: 1px solid #e9ecef;
}

.order_prod .sec_tit h3,
.order_form .sec_tit h3 {
    line-height: 20px;
}

.order_prod_list ul {
    max-height: 175px;
    position: relative;
    overflow: hidden;
}

.order_prod_list .order_item {
    position: relative;
    padding: 18px 0 16px;
    width: 100%;
}

.order_prod_list .order_item.single {
    display: flex;
    justify-content: space-between;
}

.order_prod_list .order_item.single:after {
    display: none;
}

.more_item_btn {
    width: 100%;
    background: #e0e0e0;
    height: 48px;
    line-height: 48px;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.order_prod_list .order_item:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #eee;
    position: absolute;
    top: 0;
    left: 0;
    padding-right: 20px
}

.order_prod_list .order_item:first-child:before {
    display: none
}

.order_prod_list .order_item .order_item_wrap {
    display: flex;
    justify-content: space-between;
}

.order_prod_list .order_item .info {
    flex: 0 1 auto;
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order_prod_list .order_item .info .info_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order_prod_list .order_item h3 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 1.4em;
    max-height: 2.8em;
    margin-bottom: 12px;
}

.order_prod_list .order_item .model {
    display: block;
    font-size: 11px;
    letter-spacing: 0;
    color: #868e96;
    margin-top: 2px;
}

.order_prod_list .order_item .info .info_row li {
    color: #555;
    font-size: 12px;
    display: inline-block;
    flex: 0 1 auto;
    text-align: right;
}

.order_prod_list .order_item .info .info_row:after {
    display: none;
}

.order_prod_list .order_item .info .info_row li:first-child {
    width: 30%;
    text-align: left;
}

.order_prod_list .order_item .info .opt li:last-child {
    max-width: 80%;
    background: #eeeff8;
    padding: 2px 8px;
    border-radius: 4px;
}

.order_prod_list .order_item .info .opt li:last-child span {
    font-size: 11px;
    color: #0d00ff;
}

.order_prod_list .order_item .photo {
    width: 80px;
    height: 80px;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
}

.order_prod_list .order_item .photo:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 12px
}

.order_prod_list .order_item .photo img {
    width: 100%;
    height: auto
}

.order_prod_list .order_item .prd_prc {
    margin-top: 14px
}

.order_prod_list .order_item .prd_prc .inputType_qty {
    position: absolute;
    top: 0;
    left: 0
}

.order_prod_list .order_item .prd_prc dl {
    line-height: 21px;
    font-size: 0
}

.order_prod_list .order_item .prd_prc dl dd,
.order_prod_list .order_item .prd_prc dl dt {
    display: inline-block;
    font-size: 12px
}

.order_prod_list .order_item .prd_prc dl dt {
    margin-right: 10px;
    color: #888
}

.order_prod_list .order_item .prd_prc dl dd em {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: -2px
}

.order_prod_list .order_item .prd_prc dl.card dd em {
    color: #a50034;
}

/* order_form */
.order_form {
    padding-bottom: 28px
}

.order_form ul li {
    margin-top: 18px
}

.order_form .btn_wrap {
    margin-top: 20px
}

/* order_result */
.order_result {
    padding: 60px 20px;
    text-align: center
}

.order_result .icon-check {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    display: inline-block;
    background: #333333;
    border-radius: 50%;
    color: #fff;
    font-size: 42px
}

.order_result h3 {
    font-size: 24px;
    line-height: 1.35;
    margin: 20px 0 10px
}

.order_result h3 em {
    font-weight: 900
}

.order_result p.desc {
    font-size: 12px;
    color: #888;
    margin-bottom: 30px;
}


.order_prc .prc_all {
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order_prc .prc_all dl {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.order_prc .prc_all dl:after {
    display: none;
}

.order_prc .prc_all dl dd,
.order_prc .prc_all dl dt {
    display: inline-block;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0;
}

.order_prc .prc_all dl.combine_prc {
    padding-top: 12px;
    border-top: 1px solid #DDD;
}

.order_prc .prc_all dl.total_prc {
    padding-top: 12px;
    border-top: 2px solid #202020;
}

.order_prc .prc_all dl.combine_prc dt,
.order_prc .prc_all dl.total_prc dt {
    font-weight: bold;
}

.order_prc .prc_all dl.combine_prc dd,
.order_prc .prc_all dl.total_prc dd {
    color: #a50034;
    font-weight: bold;
}

.order_prc .prc_all dl.total_prc dd {
    font-size: 20px;
}