/* 
    제작 : 조현우
    갱신일 : 2024.06.21
*/
/* sec03 cart 모달 */
/* 모달 헤더 */
.cart_bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}
.cart_area {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    z-index: 999;
    background-color: #fff;
}
.cart_area .modal_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 12px 20px;
    font-size: 0.875rem;
    background-color: #000;
}
.cart_area .modal_header button {
    filter: invert(1);
    width: 22px;
    height: 22px;
    background-color: unset;
    background-image: url("../images/close.png");
    background-size: 100%;
    border: 0;
}
/* 모달 바디 */
.cart_area {
    
}
.modal_body {
    min-height: 434px;
    /* padding: 20px 20px 0 20px */
}
.modal_body h3 {
    padding: 20px;
    font-size: 0.75rem;
    line-height: 1.3;
    border-bottom: 1px dotted #000;
}
.modal_body #user_product_form {
    display: flex;
    width: 100%;
    height: 434px;
    flex-direction: column;
    justify-content: space-between;
}
.modal_body #user_product_form .top_tbl {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding: 0 20px;
}
.modal_body #user_product_form .top_tbl .image img {
    width: 200px;
    height: 200px;
    background-color: #aaa;
}
.modal_body #user_product_form .top_tbl .top_list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.modal_body #user_product_form .top_tbl .top_list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal_body #user_product_form .top_tbl .top_list li p {
    width: 150px;
    line-height: 1.3;
    font-size: 0.75rem;
    color: #353535;
}
.modal_body #user_product_form .top_tbl .top_list select {
    width: 60%;
    height: 24px;
    border: 1px solid #d5d5d5;
    font-size: 0.75rem;
}
.modal_body #user_product_form .btm_tbl .result_price {
    width: 100%;
    padding: 8px 8px 8px 20px;
    font-size: 0.75rem;
    line-height: 30px;
    color: #353535;
    border-top: 1px solid #ddd;
    background: #fff;
}
.modal_body #user_product_form .btm_tbl .result_price .product_price {
    font-size: 21px;
    font-weight: 500;
}
.modal_body #user_product_form .btm_tbl .result_price {

}
.modal_body #user_product_form .btm_tbl .finish_btn {
    padding: 9px;
    border-top: 1px solid #d7d5d5;
    text-align: center;
    background: #fbfafa;
}
.modal_body #user_product_form .btm_tbl .finish_btn button {
    width: 125px;
}
.modal_body #user_product_form .btm_tbl .finish_btn #buy_btn {
    display: inline-block;
    padding: 8px 8px;
    border: 1px solid #000;
    font-size: 0.813rem;
    line-height: 18px;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    background-color: #000;
    transition: all 0.3s;
}
.modal_body #user_product_form .btm_tbl .finish_btn #buy_btn:hover {
    background-color: #fff;
    color: #000;
}
.modal_body #user_product_form .btm_tbl .finish_btn #cart_btn {
    display: inline-block;
    padding: 8px 8px;
    border: 1px solid #d1d1d1;
    font-size: 0.813rem;
    line-height: 18px;
    text-align: center;
    color: #222;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.3s;
}
.modal_body #user_product_form .btm_tbl .finish_btn #cart_btn:hover {background-color: #f3f3f3;}