@keyframes mobileCalSlideUp{from{transform:translateY(100%)}to{transform:translateY(0)}}
.mobile-cal{display:none;position:fixed;inset:0;z-index:10000}
@media(min-width:769px){.mobile-cal{display:none !important}}
.mobile-cal.is-open{display:flex;flex-direction:column;justify-content:flex-end}
.mobile-cal__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.5)}
.mobile-cal__sheet{position:relative;background:#fff;border-top-left-radius:20px;border-top-right-radius:20px;max-height:88vh;display:flex;flex-direction:column;animation:mobileCalSlideUp .26s ease;overflow:hidden}
.mobile-cal__header{display:flex;align-items:center;padding:14px 16px 12px;border-bottom:1px solid #d6d6d6;flex-shrink:0;gap:8px}
.mobile-cal__close{border:0;background:rgba(0,0,0,0);font-size:20px;line-height:1;color:#6a6a6a;padding:4px;cursor:pointer;flex-shrink:0;width:32px;text-align:center}
.mobile-cal__title{flex:1;font-size:16px;font-weight:600;color:#323232;text-align:center}
.mobile-cal__clear{border:0;background:rgba(0,0,0,0);font-size:14px;color:#4f961a;cursor:pointer;padding:4px;flex-shrink:0;font-weight:500;width:70px;text-align:right}
.mobile-cal__body{flex:1;overflow-y:auto;-webkit-overflow-scrolling:touch;padding:0 12px 8px;scrollbar-width:thin;scrollbar-color:#a7a7a7 rgba(0,0,0,0)}
.mobile-cal__body::-webkit-scrollbar{width:4px}
.mobile-cal__body::-webkit-scrollbar-thumb{background:#a7a7a7;border-radius:999px}
.mobile-cal__footer{padding:10px 16px 20px;border-top:1px solid #d6d6d6;flex-shrink:0}
.mobile-cal__apply{width:100%;height:48px;border:0;border-radius:14px;background:#4f961a;color:#fff;font-size:16px;font-weight:500;cursor:pointer}
.mobile-cal__apply:disabled{opacity:.5;cursor:default}
.mobile-cal__month{margin-top:24px}
.mobile-cal__month:first-child{margin-top:16px}
.mobile-cal__month-name{font-size:15px;font-weight:600;color:#323232;text-align:center;margin-bottom:8px;text-transform:capitalize}
.mobile-cal__weekdays{display:grid;grid-template-columns:repeat(7,1fr);margin-bottom:2px}
.mobile-cal__weekday{font-size:12px;color:#6a6a6a;text-align:center;padding:4px 0;font-weight:500}
.mobile-cal__days{display:grid;grid-template-columns:repeat(7,1fr)}
.mobile-cal__day{position:relative;display:flex;align-items:center;justify-content:center;aspect-ratio:1;-webkit-tap-highlight-color:rgba(0,0,0,0);user-select:none;cursor:pointer;touch-action:manipulation}
.mobile-cal__day.is-in-range{background:rgba(79,150,26,.12)}
.mobile-cal__day.is-range-start{background:linear-gradient(to right,transparent 50%,rgba(79,150,26,.12) 50%)}
.mobile-cal__day.is-range-end{background:linear-gradient(to left,transparent 50%,rgba(79,150,26,.12) 50%)}
.mobile-cal__day--empty,.mobile-cal__day.is-past{cursor:default;pointer-events:none}
.mobile-cal__day span{width:34px;height:34px;display:flex;align-items:center;justify-content:center;border-radius:50%;font-size:14px;color:#323232;position:relative;z-index:1;flex-shrink:0}
.mobile-cal__day.is-past span{color:#c8c8c8}
.mobile-cal__day.is-today span{font-weight:700}
.mobile-cal__day.is-start span,.mobile-cal__day.is-end span{background:#4f961a;color:#fff;font-weight:600}
.mobile-cal__day.is-range-start span{border-radius:50% 0 0 50%}
.mobile-cal__day.is-range-end span{border-radius:0 50% 50% 0}
body.mobile-cal-open{overflow:hidden}
