#calendar {
    display: none;
    position: absolute;
    left: 75px;
    width: auto;
    color: #EAECF0;
    background: #000000;
    border: 1px solid #292929;
    border-radius: 10px;
    box-shadow: 3px 15px 41.3px -4px #1018288F;
    z-index: 10;
}

.calendar-content {
    padding: 20px;
}

#calendar table {
    width: 100%;
    border-collapse: collapse;
}

#calendar th,
#calendar td {
    width: 14.28%;
    text-align: center;
    padding: 5px;
    cursor: pointer;
}

#calendar th,
#calendar td {
    width: 40px;
    height: 40px;
    color: #D0D5DD;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

#calendar td {
    font-weight: 400;
}

#calendar .calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#calendar .calendar-nav div {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

#calendar .calendar-nav button {
    cursor: pointer;
    background: transparent;
    border: none;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
}

.calender-selected-date {
    position: relative;
}

.calender-selected-date::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
}

#calendar .dimmed {
    color: #484848 !important;
}

#calendar td.today {
    background-color: #FFCE00;
    color: #000000;
    border-radius: 50%;
}

#current-date {
    cursor: pointer;
    color: #FFCE00;
}

.calendar-nav-footer {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-top: 2px solid #292929;
}

.calendar-nav-footer .b-cancel {
    width: 100%;
    height: 40px;
    color: #DFDFDF;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    background-color: transparent;
    border: 1px solid #494949;
    border-radius: 6px;
}

.calendar-nav-footer .b-apply {
    width: 100%;
    height: 40px;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    background-color: #FFCE00;
    border: 1px solid #FFCE00;
    border-radius: 6px;
}

@media (max-width: 991.98px) {
    #calendar {
        left: 0 !important;
    }

    .calendar-content,
    .calendar-nav-footer {
        padding: 15px;
    }

    #calendar th,
    #calendar td {
        font-size: 13px;
        width: 35px;
        height: 30px;
    }

    #calendar .calendar-nav div {
        font-size: 14px;
    }

    #calendar .calendar-nav button svg {
        width: 16px;
        height: 16px;
    }
}