.header-current-day {
    width: 285px;
    margin-top: 63px;
}

.header-current-day__month {
    position: relative;
    width: 100%;
    height: 46px;
    background: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 2px;
    overflow: visible;
}

.header-current-day__month-text {
    font-family: "Proxima Nova", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6d6d6d;
    position: relative;
    z-index: 1;
}

.header-current-day__week {
    border-radius: 4px;
    height: 46px;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 5px 14px;
}

.month-cutout{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.header-current-day__day {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 19px;
    z-index: 1;
}

.header-current-day__name {
    font-family: "Proxima Nova", sans-serif;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    color: rgba(109, 109, 109, 0.6);
    position: relative;
    z-index: 1;
}

.header-current-day__day .header-current-day__holiday-name {
    color: rgba(176, 14, 30, 0.6);
}

.header-current-day__number {
    font-family: "Proxima Nova", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #6d6d6d;
    position: relative;
    z-index: 1;
}

.header-current-day__day .header-current-day__holiday-number {
    color: #b00e1e;
}

.header-current-day__day.day_active::before {
    content: '';
    position: absolute;
    top: -9px;
    left: -59%;
    border-radius: 30px;
    width: 42px;
    height: 54px;
    background: #b6212f;
    display: block;
    z-index: 0;
}

.header-current-day__day.day_active .header-current-day__name,
.header-current-day__day.day_active .header-current-day__number {
    color: #ffffff;
}

.side-claendar {
    display:none;
}
