.picker-title {
    width: 100%;
    display: flex;
    padding: 1.25rem;
    justify-content: space-between;
    align-items: center;
}

.picker-title>h3 {
    color: #000;
    font-size: var(--font-size-16);
    font-weight: 500;
    line-height: 150%; /* 1.5rem */
    letter-spacing: -0.03125rem;
}
.picker-title>a>svg {
    width: 1.5rem;
    height: 1.5rem;
}

.daterangepicker{
    margin-top: 0.9125rem;
}

.daterangepicker .drp-calendar.left{
    padding : .25rem 0 .25rem 1.25rem;
}
.daterangepicker .drp-calendar.right{
    padding : .25rem 1.25rem .25rem 0;
}
.daterangepicker th.month{
    color: #000;
    font-size: var(--font-size-14);
    font-weight: 400;
    line-height: normal;
}
.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    width: 1.375rem;
    height: 1.375rem;
}
.daterangepicker td.start-date,
.daterangepicker td.end-date,
.daterangepicker td.start-date.end-date{
    border-radius: 50%;
}
.daterangepicker td.active, .daterangepicker td.active:hover{
    background-color: #F4EFFF;
    color: var(--primary-color);
}

.daterangepicker .calendar-table .next span{
    background-image: url('../../img/common/right.png');
}
.daterangepicker .calendar-table .prev span{
    background-image: url('../../img/common/left.png');
}
.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
    transform: unset;
    -webkit-transform: unset;;
    color: #FFF;
    border: unset;
    border-width: unset;
    border-radius: unset;
    display: inline-block;
    padding: unset;
    background-repeat: no-repeat;
    width: 1rem;
    height: 1rem;
}
.daterangepicker td.available:hover, .daterangepicker th.available:hover {
    background-color: unset;
    border-color: none;
    color: unset;
}
.daterangepicker .calendar-table th.prev,
.daterangepicker .calendar-table th.next {
    min-width: unset;
}
.daterangepicker .calendar-table table thead tr:nth-child(2){
    background-color: #f5f5f5;
}
.daterangepicker .calendar-table th{
    border:none;
}
.daterangepicker .calendar-table tr:nth-child(2) th{
    border-radius: unset;
}
.daterangepicker{
    direction: unset!important;
    text-align: unset!important;
}
.daterangepicker:before, .daterangepicker:after {
    content:unset;
}



/**/
.reservation.floating .reservation-datepicker {
    top: unset;
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
    bottom : 15rem;
}
.reservation-datepicker {
    display: none;
    position: absolute;
    width: 80%;
    max-width: 60rem;
    background-color: #FFF;
    padding: 1.25rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 25%);
    border-radius: 5px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
    z-index: 10;
}
.reservation-datepicker.active {
    display: block;
}

.reservation-datepicker>.reservation-datepicker-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.reservation-datepicker-wrap>.wrap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reservation-datepicker-wrap>.wrap-header>p {
    font-size: var(--font-size-16);
    font-weight: 500;
    line-height: 150%; /* 1.5rem */
    letter-spacing: -0.03125rem;
}
.mobile-info-date {
    display: none;
}

.reservation-datepicker-wrap>.wrap-calendar .calendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-datepicker>.reservation-datepicker-wrap>.wrap-calendar {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.reservation-datepicker>.reservation-datepicker-wrap>.wrap-calendar .cal-area {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

.reservation-datepicker-wrap>.wrap-calendar .calendar-header svg {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}
.reservation-datepicker-wrap>.wrap-calendar .calendar-header svg.disabled.cal-btn{
    pointer-events: none;
}
.reservation-datepicker-wrap>.wrap-calendar .calendar-header svg.cal-prev.disabled path {
    stroke: #AFAFAF;
}

.reservation-datepicker-wrap>.wrap-calendar .calendar-header>.header-month {
    display: flex;
    gap: .6875rem;
    width: 100%;
    justify-content: center;
}

.reservation-datepicker-wrap>.wrap-calendar>.calendar-left>.calendar-header {
    justify-content: flex-start;
}

.reservation-datepicker-wrap>.wrap-calendar>.calendar-right>.calendar-header {
    justify-content: end;
}


.reservation-datepicker-wrap>.wrap-calendar .calendar-header>.header-month p {
    color: #000;
    font-size: var(--font-size-14);
    font-weight: 400;
    line-height: normal;
}
.reservation-datepicker>.reservation-datepicker-wrap>.wrap-calendar .cal-area>.calendar-body {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex:1;
}

.wrap-calendar .cal-area>.calendar-body .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #F5F5F5;
    border-radius: 5px;
    padding: .25rem .3125rem;
    gap: .625rem;
}

.wrap-calendar .cal-area>.calendar-body .days>.day {
    color: #000;
    font-size: var(--font-size-12);
    font-weight: 400;
    line-height: normal;
    text-align: center;
}
.dates {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    /* gap:.625rem; */
}

.dates>div{
    cursor: pointer;
    position: relative;
    padding:.625rem;
}
.dates>div.sat{
    color:#1933da;
}
.dates>div.sun{
    color:#d61111;
}
.dates>div p{
    text-align: center;
    font-size: var(--font-size-14);
    font-weight: 400;
    line-height: normal;
    z-index: 2;
    position: relative;
}

.dates>div:not(.date-current) {
    opacity: .5;
}
.dates>div.date-current.active {
    color: #FFF;
}
.date-current.active.st::before{
    content: '';
    width: 50%;
    height: 1.5rem;
    position: absolute;
    background-color: #F4EFFF;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
}
.date-current.active.ed::before{
    content: '';
    width: 50%;
    height: 1.5rem;
    position: absolute;
    background-color: #F4EFFF;
    top: 50%;
    right: 30%;
    transform: translate(-50%, -50%);
}

.dates>div.date-current.dateRange::after {
    position: absolute;
    background-color: #F4EFFF;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    width: 100%;
    height: 1.5rem;
}
.dates>div.date-current.active::after {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}
.calendar-info {
    display: flex;
    margin-top: .375rem;
    justify-content: space-between;
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    background-color: #FFF;
    padding: .625rem 1rem;
    align-items: center;
}

.calendar-info>.info-date {
    display: flex;
    gap: .625rem;
}

.calendar-info p,
.calendar-info span {
    color: #000;
    font-size: var(--font-size-12);
    font-weight: 500;
    line-height: 140%; /* 1.05rem */
    letter-spacing: -0.03125rem;
}

.calendar-info svg {width: 1rem;height: .475rem;}

.calendar-info>.info-time {
    display: flex;
    gap: .625rem;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.wrap-footer {
    display: flex;
    justify-content: space-between;
}
.wrap-footer.mobile {
    display: none;
}
.wrap-footer>.footer-right {
    display: flex;
    gap: 1.5rem;
    align-items: end;
}

.wrap-footer>.footer-right>.total-time {
    display: flex;
    gap: .375rem;
    align-items: center;
}

.wrap-footer>.footer-right>.total-time p {
    color: #515151;
    font-size: var(--font-size-12);
    font-weight: 400;
    line-height: 140%; /* 1.05rem */
    letter-spacing: -0.03125rem;
}

.wrap-footer>.footer-right>.total-time span {
    color: #515151;
    font-size: var(--font-size-18);
    font-weight: 600;
    line-height: 150%; /* 1.6875rem */
    letter-spacing: -0.03125rem;
}

.date-confirm-btn {
    color: #FFF;
    outline: none;
    border: none;
    background-color: var(--primary-color);
    font-size: var(--font-size-14);
    font-weight: 500;
    line-height: 140%; /* 1.225rem */
    letter-spacing: -0.03125rem;
    padding: 0.6875rem 1.875rem;
    border-radius: 5px;
    height: 2.625rem;
}

.footer-left>p {
    font-size: var(--font-size-12);
    font-weight: 400;
    line-height: 140%; /* 1.05rem */
    letter-spacing: -0.03125rem;
    color: #515151;
}
.time-select {
    display: none;
    position: absolute;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
    top: 4rem;
    left: -1rem;
    width: 5.5rem;
    transform: translateY(-15%);
    background-color: #FFF;
    border-radius: 5px;
    z-index: 10;
    cursor:default;
}
.time-select.active{
    display: block;
}

.time-select>.time-list {
    display: flex;
    padding: .4375rem 0;
}

.time-select>.time-list>ul{
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    width: 100%;
    max-height: 13.875rem;
    overflow-y: scroll;
    display: block;
    border-radius: 5px;
}
.time-select>.time-list>ul>li {
    color: #000;
    font-size: var(--font-size-14);
    font-weight: 500;
    line-height: 140%; /* 1.225rem */
    letter-spacing: -0.03125rem;
    padding: .3725rem .725rem;
    cursor: pointer;
    position: relative;
}
.time-select>.time-list>ul>li.active{
    color:var(--primary-color);
    background-color: #F4EFFF;
}
.time-select>.time-list>ul>li.disabled {
    cursor: default;
    color:#AFAFAF;
}
.time-select>.time-list>ul>li:not(:first-child)::after{
    content: '';
    position: absolute;
    width: 80%;
    height: 1px;
    background-color: #DEDEDE;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}


@media screen and (max-width: 767.9px) {
    .reservation-datepicker {
        position: fixed;
        visibility: visible;
        top: 0;
        left: -1px;
        width: calc(100% + 1px);
        transform: unset;
        height: 100%;
        z-index: 9999;
        border-radius: 0;
        padding: .875rem 1rem;
        overflow-y: scroll;
    }
    .reservation-datepicker-wrap>.wrap-header>p {
        font-size: .875rem;
        line-height: 100%;
    }

    .reservation-datepicker-wrap>.wrap-header svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .reservation-datepicker>.reservation-datepicker-wrap {
        gap: 2.5rem;
    }

    .reservation-datepicker>.reservation-datepicker-wrap>.wrap-calendar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .reservation-datepicker>.reservation-datepicker-wrap>.wrap-calendar .cal-area {
        width: 100%;
    }
    .reservation-datepicker-wrap>.wrap-calendar .calendar-header>.header-month p {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 140%;
    }
    .reservation-datepicker>.reservation-datepicker-wrap>.wrap-calendar .cal-area>.calendar-body{
        gap: .5rem;
    }
    .calendar-info.pc{
        display: none;
    }
    .mobile-info-date {
        display: flex;
        align-items: center;
        background-color: rgba(222, 222, 222, 0.30);
        border-radius: 2px;
        padding: .875rem 1rem;
        justify-content: space-between;
        white-space: nowrap;
        margin-top: -1.25rem;
    }

    .mobile-info-date>div {
        display: flex;
        align-items: center;
        gap: .25rem;
    }
    .mobile-info-date > div > img {
        width: 1.041rem;
        height: 1.041rem;
    }

    .mobile-info-date>div>svg {
        width: 1.041rem;
        height: 1.041rem;
    }

    .mobile-info-date>div p {
        color: #000;
        font-size: 0.875rem;
        line-height: 100%; /* 0.875rem */
        letter-spacing: -0.03125rem;
    }

    .mobile-info-date>div p.mo_date {
        font-weight: 500;
    }

    .mobile-info-date>div p.mo_time {
        font-weight: 400;
    }


    .mobile-info-date>svg {
        width: 1rem;
        height: 1.25rem;
    }
    .wrap-footer.pc{
        display: none;
    }
    .wrap-footer.mobile{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-time {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 1rem;
        width: 100%;
    }

    .footer-time p {
        color: var(--primary-color);
        font-size: 0.75rem;
        font-style: normal;
        font-weight: 400;
        line-height: 100%; /* 0.75rem */
        letter-spacing: -0.03125rem;
    }
    .ft-time {
        display: flex;
        flex-direction: column;
        gap: .6875rem;
        width: 100%;
    }

    .info-time {
        align-items: center;
        display: flex;
        border: 1.041px solid #515151;
        border-radius: 2px;
        padding: 0 .75rem;
        height: 2rem;
        position: relative;
        justify-content: space-between;
    }

    .info-time span {
        color: #515151;
        font-size: 0.875rem;
        font-style: normal;
        font-weight: 400;
        line-height: 100%; /* 0.875rem */
        letter-spacing: -0.03125rem;
    }
    .ft-select {
        display: flex;
        align-items: center;
        gap: 1.365rem;
        width: 100%;
    }
    .date-confirm-btn{
        width: 100%;
    }

    .total-time {
        display: flex;
        gap: .5rem;
    }

    .total-time>p {
        color: #515151;
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 500;
        line-height: 100%; /* 1.125rem */
        letter-spacing: -0.03125rem;
        white-space: nowrap;
    }

    .total-time>svg {
        width: 1.1875rem;
        height: 1.1875rem;
    }
    .dates>div p {
        font-size: .75rem;
        font-weight: 500;
    }

    .time-select {
        left: 0;
        width: 100%;
        top: -.5rem;
        transform: translateY(-100%);
    }
}