/* ======== 모달 ======== */ 
.md_container {background-color: #00000020; position: fixed; width: 100vw; height: 100vh; top: 0; left: 0; z-index: 500;} 

.md_wrap {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);}
.md_box {background-color: #fff; border-radius: 15px; box-shadow: 0 0 10px #00000015; border: 1px solid #eee; padding: 40px 20px 25px; display: flex; flex-direction: column; width: 90vw; align-items: center; gap: 25px;}
.btn_box.md {width: 100%; display: flex; gap: 8px;}
.md_text {display: flex; flex-direction: column; width: 100%; align-items: center; gap: 10px;}
.md_text p {font-size: 20px; font-family:'NanumSquareNeoBold' !important; text-align: center;}
.md_text span {font-size: 18px; color: #555; text-align: center;}



/* 셀렉트박스 목록 */
.slt_list {background-color: #fff; border-radius: 15px; box-shadow: 0 0 10px #00000015; border: 1px solid #ddd; padding: 10px 0; width: 90vw;}
.slt_list ul {display: flex; width: 100%; flex-direction: column;}
.slt_list ul li {width: 100%; padding: 12px 15px; text-align: center; font-size: 18px; border-bottom: 1px solid #eee;}
.slt_list ul li:last-child {border-bottom: none;}
.slt_list ul {max-height: 60vh; overflow-y: auto;}


/* 바텀시트 */
.bt_sheet {position: fixed; width: 100vw; bottom: 0; left: 0; z-index: 100;}
.bt_box {width: 100%; border-radius: 20px 20px 0 0; background-color: #fff; padding: 15px 20px 30px; display: flex; flex-direction: column; gap: 20px; box-shadow: 0 -3px 6px #00000008; align-items: center;}
.bt_sheet .handle_box {width: 100%; display: flex; justify-content: center; flex-direction: column; align-items: center; gap: 6px;}
.bt_box .handle {display: block; width: 30px; height: 5px; border-radius: 10px; background-color: #ddd;}
.bt_box .handle_box span {font-size: 14px; font-weight: 500; color: #888;}
.bt_box .bt_con {width: 100%;}
.bt_con .bt_detail {padding-bottom: 20px; border-bottom: 1px solid #ddd; margin-bottom: 20px; display: none;}
.bt_con > .table.pay.active {display: flex;}
/* .bt_con .bt_main .table {padding-top: 20px; border-top: 1px solid #ddd;} */
.bt_box .bt_btn {width: 100%;}
.mb_sheet {margin-bottom: 200px;}



/* 모달 - 이미지슬라이드 */
.md_container.img {background-color: #00000070;}
.md_container .close {display: block; width: 35px; height: 35px; background: url(../img/md_close.png) no-repeat center/contain; position: absolute; top: 30px; right: 20px;}
.imgSwiper {position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 100%;}
.imgSwiper .swiper-slide {width: 100%; max-height: 60vh; display: flex;}
.imgSwiper .swiper-slide img {width: 100%; object-fit: contain;}
.md_container.img .swiper-pagination {position: absolute; bottom: 5%; left: 50%; transform: translateX(-50%); padding: 10px 20px; border-radius: 50px; background-color: #00000050; width: 85px; color: #fff; font-size: 20px; line-height: 1;}
.md_container.img .swiper-pagination span {line-height: 1; font-size: 20px; color: #fff; font-weight: 400;}



/* ======== 350px ======== */
@media screen and (max-width: 350px) {
    /* 바텀시트 */
    .bt_box {gap: 15px;}
    .mb_sheet {margin-bottom: 200px;}
}