#date-picker-id .date-picker {
    border: unset;
    box-sizing: border-box;
    padding: 0;
    height: 60px;
}

#date-picker-id .timeBox-mobile .owl-item {
    width: 42px !important;
}

#date-picker-id .date-picker ul {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 8px;
    column-gap: 8px;
}

#date-picker-id .date-picker ul li {
    background-color: #fbf6f5;
    width: auto;
    flex: 1;
    margin: 0;
    height: unset;
    padding: 6px 0;
    transition: 0.2s linear background-color;
}

#date-picker-id .date-picker ul li span {
    transition: 0.2s linear color;
}

#date-picker-id .date-picker ul li span:first-child {
    color: #717171;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    text-transform: capitalize;
    padding-bottom: 2px;
    margin-bottom: 3px;
    position: relative;
}

#date-picker-id .date-picker ul li span:first-child::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 1px;
    border-radius: 2px;
    background: #894f3c;
}

#date-picker-id .date-picker ul li span:last-child {
    color: #070f03;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

#date-picker-id .date-picker ul li.li_today span:first-child {
    color: #f8825d;
}

#date-picker-id .date-picker ul li.li_today span:last-child {
    color: #c73c10;
}

#date-picker-id .date-picker ul li:hover,
#date-picker-id .date-picker ul li.on {
    background-image: unset;
    background-color: #c73c10;
}

#date-picker-id .date-picker ul li:hover span:first-child,
#date-picker-id .date-picker ul li.on span:first-child {
    color: #d4d4d4;
}

#date-picker-id .date-picker ul li:hover span:first-child::after,
#date-picker-id .date-picker ul li.on span:first-child::after {
    background: #ff9979;
}

#date-picker-id .date-picker ul li:hover span:last-child,
#date-picker-id .date-picker ul li.on span:last-child {
    color: #fff;
}

#date-picker-id .date-picker ul li::after {
    content: "";
    display: none;
}


body.dark #date-picker-id .date-picker ul li {
    background-color: #3a0f01;
}

body.dark #date-picker-id .date-picker ul li span:first-child {
    color: #d4d4d4;
}

body.dark #date-picker-id .date-picker ul li span:first-child::after {
    background: #894f3c;
}

body.dark #date-picker-id .date-picker ul li span:last-child {
    color: #fff;
}

body.dark #date-picker-id .date-picker ul li.li_today span:first-child {
    color: #f8825d;
}

body.dark #date-picker-id .date-picker ul li.li_today span:last-child {
    color: #d64a1e;
}

body.dark #date-picker-id .date-picker ul li:hover,
body.dark #date-picker-id .date-picker ul li.on {
    background-color: #c73c10;
}

body.dark #date-picker-id .date-picker ul li:hover span:first-child,
body.dark #date-picker-id .date-picker ul li.on span:first-child {
    color: #d4d4d4;
}

body.dark #date-picker-id .date-picker ul li:hover span:first-child::after,
body.dark #date-picker-id .date-picker ul li.on span:first-child::after {
    background: #ff9979;
}

body.dark #date-picker-id .date-picker ul li:hover span:last-child,
body.dark #date-picker-id .date-picker ul li.on span:last-child {
    color: #fff;
}