.calendar-wrapper {
    height: fit-content;
    background: var(--hm-light50);
    box-sizing: content-box;
}

.date_picker {
    width: 270px;
    position: relative;
}

.date_picker_input {
    display: flex;
    flex-direction: column;
    gap:10px;
    margin-bottom: 0px !important;

    font-family: R400;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;

    color: var(--hm-licorice);
}

.date_picker_input label {
    color: var(--hm-licorice, #101F23);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: R400;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.cal_input_block {
    width: 270px;
    display: flex;
    flex-direction: row;
    background: var(--hm-light50);

    justify-content: space-around;

    padding: 6px 12px;

    box-sizing: border-box !important;
}

.cal_input_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 16px;
}

.cal_input_clear{
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cal_date_input {
    color: var(--hm-licorice) !important;
    padding: 0;
    font-family: R400;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;

    outline: none;
    border: 0;
    width:100%;
    background-color: transparent;
}

.cal_input_block:hover .cal_input_icon svg path{
    fill: var(--hm-licorice);
}

.date_picker_calendar {
    min-height: fit-content;
    overflow: hidden;
    background: var(--hm-light50);
    padding: 16px 13px ;
    position: absolute;
    z-index: 6100;
    width: 270px;
    margin-top: 4px;
}

.date_picker_input.showCal .cal_input_block .cal_input_icon svg path{
    fill: var(--hm-licorice) !important;
}

.cal_input_clear:hover svg path{
    fill: var(--hm-licorice) !important;
}

.date_picker_calendar.hidden{
    visibility: hidden;
}

.calendar_header {
    width: 100%;
    min-height: 30px;
    margin-bottom: 8px;
    color: var(--hm-licorice) !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'R500';
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

.cal-btn {
    width: 20px;
    height: 20px;
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 6px;
}

.cal-btn img {
    width: 10px;
    height: 10px;
}

.cal-btn:hover svg path{
    fill:var(--hm-gunmetal) !important;
}

.cal_days,
.calendar_main {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 4px;
    column-gap: 4px;
    color: var(--hm-licorice) !important;
    text-align: center;

    font-family: R400;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;

}

.cal_days {
    margin-top: 13px;
    margin-bottom: 4px;
}

.calendar_main {
    grid-template-rows: repeat(6, min(30px));
}

.cell_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 30px;
}

.cal_days .cell_item{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: var(--hm-white) !important;
    height: 24px;
    width: 30px;

    font-family: R400;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    color: var(--hm-gunmetal);

    transition: background-color ease-in .3s;
}

.cal_date.current{
    color : var(--hm-slate);
    background-color: var(--hm-white);
}

.cal_date:not(.current) {
    cursor: default;
    background-color: var(--hm-slate60);
    color: var(--hm-gunmetal);
}

.cal_date.current:hover{
    background: var(--hm-yellow50) !important;
    color: var(--hm-licorice) !important;
    font-weight: 700 !important;
}

.cal-btn:hover,
.current:hover {
    cursor: pointer;
}

.current {
    color: var(--hm-licorice) !important;
}

.isSelected{
    background: var(--hm-yellow50) !important;
    color: var(--hm-licorice) !important;

    font-family: R400;
    font-size: 14px;
    font-weight: 700 !important;
    line-height: 16px;
    text-align: center;
}

.additional-active{
    color: var(--hm-yellow50) !important;
    background-color: var(--hm-white) !important;
}