/*
    ************************************ 예약페이지  request 페이지 *******************************************
*/
.request .btnArea { cursor: pointer; }
.request .listSection { margin-bottom: 50px; } /*좀 조절해줌*/
.request .listSection:nth-last-child(1) { margin-bottom: 0; }
.request .listArea .listBox { padding: 60px 30px 0 30px; box-sizing: border-box; }
/*
*   *** 예약확인 ***
*/
/*** 선택한 시술 ***/
.request .selectedArea { padding-right: 20px; box-sizing: border-box; }
.request .selectedScroll { width: 100%; height: 345px; overflow-y: auto; padding-right: 20px; }
.request .selectedScroll .shadowBox { position: relative; border: 2px solid #dda478; box-sizing: border-box; margin-bottom: 10px; padding: 20px; box-sizing: border-box; }
.request .selectedScroll .shadowBox:nth-last-child(1) { margin-bottom: 0; }
.request .selectedScroll .shadowBox .textArea { margin-bottom: 15px; }
.request .selectedScroll .shadowBox .textArea .listTit { font-size: 20px; font-family:'Pretendard-Medium'; color: #151515; margin-bottom: 15px; padding-right: 30px; box-sizing: border-box; }
.request .selectedScroll .shadowBox .textArea .subTit { font-size: 16px; font-family:'Pretendard-Light'; color: #909090; }
.request .selectedScroll .shadowBox .amountArea { display: flex; justify-content: flex-end; align-items: center; gap: 20px; }
.request .selectedScroll .shadowBox .amountArea .amount {font-size: 16px; font-family:'Pretendard-Light'; color: #aaaaaa; text-decoration: line-through; }
.request .selectedScroll .shadowBox .amountArea .won { font-size: 16px; font-family:'Pretendard-Regular'; color: #909090; }
.request .selectedScroll .shadowBox .amountArea .discount { font-size: 20px; font-family:'Pretendard-SemiBold'; color: #a00000; }
.request .selectedScroll .shadowBox .deleteIcon { position: absolute; top: 20px; right: 20px; cursor: pointer; }
/* 선택한 시술 스크롤 영역 */
.request .selectedScroll::-webkit-scrollbar { width: 4px; /* 스크롤바 너비 */ }
.request .selectedScroll::-webkit-scrollbar-track { background: #f5f5f5; /* 트랙 색상 (배경) */ }
.request .selectedScroll::-webkit-scrollbar-thumb { background-color: #e5e5e5; /* 손잡이 색상 */ border-radius: 6px; }
/*** 예약일시 ***/
.request .dateTimeArea .list { width: 100%; display: flex; align-items: center; justify-content: flex-start; font-size: 18px; font-family:'Pretendard-Medium'; margin-bottom: 15px; }
.request .dateTimeArea .list:nth-last-child(1) { margin-bottom: 0; }
.request .dateTimeArea .list .title { width: 90px; color: #909090; }
.request .dateTimeArea .list .subText { flex: 1; color: #dda478; }
/*** 요청사항 ***/
.request .requestArea textarea { width: 100%; height: 120px; border-radius: 10px; font-size: 18px; font-family:'Pretendard-Light'; background-color: #f5f5f5; resize: none; padding: 20px; box-sizing: border-box; }
.request .requestArea textarea::placeholder { color: #aaaaaa; }


/*
*   *** 예약일 시간 선택 ***
*/
/*** 예약일 선택 - 달력 ***/
.request .calendarArea .calendarBox { width: 100%; height: 450px; border: 1px solid #eeeeee; border-radius: 10px; padding: 30px 0; box-sizing: border-box; }
.request .calendarArea .calendarBox .calendarControl { display: flex; align-items: center; justify-content: center; gap: 80px; }
.request .calendarArea .calendarBox .calendarControl .buttons { display: flex; align-items: center; justify-content: center; gap: 80px; }
.request .calendarArea .calendarBox .calendarControl .buttons .btn { background: transparent; font-size: 22px; cursor: pointer; }
.request .calendarArea .calendarBox .currentDate { color: #303030; font-size: 25px; font-family:'Pretendard-SemiBold'; }
.request .calendarArea .calendarBox #calendarWrapper { margin-top: 30px; }
.request .calendarArea .calendarBox #calendarWrapper table { width: 100%; }
.request .calendarArea .calendarBox #calendarWrapper thead tr th { width: calc(100%/7); font-size: 18px; color: #909090; font-family:'Pretendard-Medium';  padding-bottom: 15px; }
.request .calendarArea .calendarBox #calendarWrapper tbody tr td { width: calc(100%/7); font-size: 18px; color: #151515; font-family:'Pretendard-Medium'; text-align: center;
    padding: 15px 0; box-sizing: border-box; cursor: pointer; }
/*선택일*/
.request .calendarArea .calendar-selected { position: relative; z-index: 1; }
.request .calendarArea .calendar-selected:before { content: attr(data-day); line-height: 2.2; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 40px; height: 40px;
    color: #fff; background-color: #dda478; border-radius: 50%; z-index: 0; }
/*휴진일*/
.request .calendarArea .calendarBox #calendarWrapper tbody tr td.closedDays { color: #cccccc; pointer-events: none; }
.request .calendarArea .calendarBox #calendarWrapper tbody tr td.calendar-disabled { color: #cccccc; pointer-events: none; }

/*** 시간선택 ***/
.request .timeSelectArea .gridWrapper {overflow:hidden; padding: 0 2px 2px 0; box-sizing: border-box; }
.request .timeSelectArea .grid {display:flex; flex-wrap:wrap; padding:10px 0 0 10px; margin:-10px; }
.request .timeSelectArea .grid .gridCell { width:calc(100% / 8); height: 60px; box-sizing:border-box; border:0 solid transparent; border-width:0 10px 10px 0; }
.request .timeSelectArea .grid .gridCell .timeCell { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #303030; font-family:'Pretendard-Light';
    border-radius: 5px; border: 1px solid #eeeeee; cursor: pointer; box-sizing: border-box; }
.request .timeSelectArea .grid .gridCell .timeCell.dis { color: #cccccc; }
.request .timeSelectArea .grid .gridCell .timeCell.on { color: #ffffff; background-color: #dda478; }
/*** 예약정보 ***/
.request .bookInfoArea { padding-bottom: 100px; box-sizing: border-box; }
.request .bookInfoArea .userInfo { display: flex; align-items: center; justify-content: flex-start; gap: 60px; }
.request .bookInfoArea .userInfo .info { display: flex; align-items: center; justify-content: flex-start; gap: 20px; }
.request .bookInfoArea .userInfo .name { font-size: 18px; color: #303030; font-family:'Pretendard-Medium'; }
.request .bookInfoArea .userInfo .input { width: 270px; height: 45px; border: 1px solid #eeeeee; border-radius: 5px; box-sizing: border-box; padding: 0 20px; }
.request .bookInfoArea .userInfo input { width: 100%; height: 100%; display: flex; align-items: center; color: #000000; font-size: 18px; font-family:'Pretendard-Light';}
.request .bookInfoArea .userInfo input::placeholder { color: #d0d0d0; }
.request .bookInfoArea .checkListArea .checkList { display: flex; align-items: center; gap: 60px; margin-top: 30px; }
.request .bookInfoArea .checkListArea .checkBox { display: flex; align-items: center; gap: 10px; color: #909090; cursor: pointer; }
.request .bookInfoArea .checkListArea .checkBox a { color: #909090; }
.request .bookInfoArea .checkListArea .checkBox input[type=checkbox] { width: 13px; height: 13px; cursor: pointer; }
.request .bookInfoArea .checkListArea .checkBox input + label {  cursor: pointer; }
.request .bookInfoArea .checkListArea .opacityBlank { display: none; }




/* ******************** media 진입 ******************** */
@media (max-width: 1480px) {
    /*
        ************************************ 예약페이지  request 페이지 *******************************************
    */

    /*
    *   *** 예약확인 ***
    */
    .request .listArea .listBox  { padding: 40px 20px 15px 20px; }
    /*** 선택한 시술 ***/
    .request .selectedArea { padding-right: 10px; }
    .request .selectedScroll { padding-right: 10px; }
    .request .selectedScroll .shadowBox { padding: 15px; }
    .request .selectedScroll .shadowBox .textArea .listTit { font-size: 18px; }
    .request .selectedScroll .shadowBox .textArea .subTit { font-size: 14px; }
    .request .selectedScroll .shadowBox .amountArea .discount { font-size: 18px; }
    .request .selectedScroll .shadowBox .amountArea .won { font-size: 14px; }
    .request .selectedScroll .shadowBox .amountArea .amount { font-size: 14px; }
    /*** 예약일시 ***/
    .request .dateTimeArea .list { font-size: 16px; }
    /*** 요청사항 ***/
    .request .requestArea textarea { font-size: 16px; padding: 15px; }

    /*
    *   *** 예약일 시간 선택 ***
    */
    /*** 시간 선택  ***/
    .request .timeSelectArea .grid .gridCell { height: 50px; }
    .request .timeSelectArea .grid .gridCell .textCell { font-size: 16px; }
    /*** 예약정보 ***/
    .request .bookInfoArea .userInfo .name { font-size: 16px; }
    .request .bookInfoArea .userInfo .input { width: 250px; }
    .request .bookInfoArea .userInfo input {font-size: 16px; }
}

@media (max-width:1024px){
    .reservation.request { gap: 30px; }
    /*
        ************************************ 예약페이지  request 페이지 *******************************************
    */
    /*
    *   *** 예약일 시간 선택 ***
    */
    /*** 달력 선택 ***/
    .request .calendarArea .calendarBox .calendarControl .buttons { gap: 60px; }
    .request .calendarArea .calendarBox .currentDate { font-size: 20px; }
    .request .calendarArea .calendarBox .calendarControl .buttons .btn { font-size: 18px; }
    .request .calendarArea .calendarBox #calendarWrapper thead tr th { font-size: 16px; }
    .request .calendarArea .calendarBox #calendarWrapper tbody tr td { font-size: 16px; }
    /*** 시간 선택  ***/
    .request .timeSelectArea .grid .gridCell { width: calc(100%/6); }
}

@media (max-width:768px){
    /*
        ************************************ 예약페이지  request 페이지 *******************************************
    */
    .request .listSection { margin-bottom: 30px; }
    /*
    *   *** 예약확인 ***
    */
    .request .listArea .listBox { padding: 30px 20px 0 20px; }
    /*** 선택한 시술 ***/
    .request .selectedScroll .shadowBox .textArea .listTit { font-size: 16px; padding-right: 15px; }
    .request .selectedScroll .shadowBox .textArea .subTit { font-size: 11px; }
    .request .selectedScroll .shadowBox .amountArea .discount { font-size: 16px; }
    .request .selectedScroll .shadowBox .amountArea .won { font-size: 11px; }
    .request .selectedScroll .shadowBox .amountArea .amount { font-size: 11px; }
    .request .selectedScroll .shadowBox .deleteIcon { top: 15px; right: 15px; width: 15px; }
    .request .selectedScroll .shadowBox .deleteIcon img { width: 100%; }
    /*** 예약일시 ***/
    .request .dateTimeArea .list { font-size: 14px; margin-bottom: 10px; }
    /*** 요청사항 ***/
    .request .requestArea textarea { font-size: 14px; height: 90px; }


    /*
    *   *** 예약일 시간 선택 ***
    */
    /*** 날짜 선택  ***/
    .request .calendarArea .calendarBox { height: 275px; padding: 15px 0; }
    .request .calendarArea .calendarBox .currentDate { font-size: 16px; }
    .request .calendarArea .calendarBox #calendarWrapper { margin-top: 15px; }
    .request .calendarArea .calendarBox #calendarWrapper thead tr th { font-size: 14px; padding-bottom: 7px; }
    .request .calendarArea .calendarBox #calendarWrapper tbody tr td { font-size: 14px; padding: 8px 0; }
    .request .calendarArea .calendarBox .calendarControl .buttons { gap: 35px; }
    .request .calendarArea .calendarBox .calendarControl .buttons .btn { font-size: 12px; }
    .request .calendarArea .calendar-selected:before { width: 30px; height: 30px; }
    /*** 시간 선택 ***/
    .request .timeSelectArea .grid .gridCell { width: calc(100%/ 5); height: 45px; }
    .request .timeSelectArea .grid .gridCell .timeCell { font-size: 14px; }
    /*** 예약정보 ***/
    .request .bookInfoArea { padding-bottom: 30px; }
    .request .bookInfoArea .userInfo { align-items: flex-start; flex-direction: column; gap: 15px; }
    .request .bookInfoArea .userInfo .info { width: 100%; }
    .request .bookInfoArea .userInfo .info .title { width: 65px; font-size: 14px; }
    .request .bookInfoArea .userInfo .info .input { width: auto; flex: 1; padding: 0 15px; }
    .request .bookInfoArea .userInfo .info input { font-size: 14px; }
    .request .bookInfoArea .checkListArea { display: flex; align-items: center; gap: 20px; }
    .request .bookInfoArea .checkListArea .checkList { flex: 1; flex-direction: column; gap: 15px; align-items: flex-start; margin-top: 15px; font-size: 12px; }
    .request .bookInfoArea .checkListArea .opacityBlank { width: 65px; display: block; }
    .request .bookInfoArea .checkListArea .checkBox { gap: 5px; }
    .request .bookInfoArea .checkListArea .checkBox input[type=checkbox] { width: 10px; height: 10px; }


}