.acces__hours{
    flex-direction: column;
    gap: 5px;
}
.acces{
    height: initial;
    gap: 5px;
}
.wrp_acces__hours{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
@media screen and (max-width: 1199px) {
    .acces__hours {
        gap: 5px;
    }
}

/* Calendar Datepicker */
.cdp {
    width: 320px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    font-family: var(--font-base);
}
.cdp__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}
.cdp__title {
    font-size: 16px;
    font-weight: 600;
    color: #00629b;
}
.cdp__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--accent-extra-light);
    border-radius: 8px;
    background: transparent;
    color: #00629b;
    cursor: pointer;
    transition: var(--trsn);
    padding: 0;
}
.cdp__nav:hover {
    background: var(--accent-extra-light);
}
.cdp__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
}
.cdp__weekdays span {
    font-size: 12px;
    font-weight: 600;
    color: #00629b;
    padding: 4px 0;
    text-transform: uppercase;
}
.cdp__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    min-height: 220px;
}
.cdp__day {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 36px;
    font-size: 14px;
    border-radius: 8px;
    color: var(--black);
    transition: var(--trsn);
    box-sizing: border-box;
}
.cdp__day--empty {
    pointer-events: none;
}
.cdp__day--work {
    background: #00629b;
    color: #fff;  
}
.cdp__day--off {
    background: #00629b;
    color: var(--accent);
    font-weight: 600;
    border: 1px solid #eeeae4;
    opacity: .4;
    
}
.cdp__day--today {
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
}
.cdp__day--today.cdp__day--off {
    background: var(--accent-strong-light);
    color: #00629b;
    border-color: #00629b;
    opacity: 1;
}
.cdp__legend {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--accent-extra-light);
}
.cdp__legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #00629b;
}
.cdp__legend-dot {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    flex-shrink: 0;
}
.cdp__legend-dot--work {
    background: #00629b;
    border: 2px solid var(--accent);
    opacity: .4;
}
.cdp__legend-dot--off {
    background: #00629b;
    border: 2px solid var(--accent-gray-dark);
}
.cdp__loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.cdp__loading::after {
    content: '';
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent-extra-light);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: cdp-spin 0.6s linear infinite;
}
@keyframes cdp-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
    .calendar_wrp {
        flex-direction: column;
        gap: 24px;
    }
    .cdp {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .wrp_calendar_hours{
        width: 100%;
    }
    .calendar_days{
        width: 100%;
    }
}
.wrp_calendar_hours{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.calendar_text{
    margin-top: 30px;
    max-width: 550px;
}


@media screen and (max-width: 991px) {
    .wrp_acces__hours{
        flex-direction: column;
    }
    .calendar_days{
        margin-top: 20px;
    }
}