month-picker span, .year-container > *, .today {
    cursor: pointer;
}

    month-picker span > * {
        pointer-events: none;
    }

month-picker span {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

month-picker input:read-only {
    width: 100%;
    outline: none;
    height: 38px;
    word-break: keep-all;
    border-radius: 4px;
    padding: 2px 36px 2px 12px;
}

month-picker span > svg {
    position: absolute;
    height: 30px;
    width: 30px;
}

.month-container, .year-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 2px;
}

month-picker label {
    display: none !important;
}

.calendar, .year-list {
    position: absolute;
    padding: 10px;
    background-color: var(--bg-white);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    border-radius: 5px;
}

.calendar {
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    z-index: 70;
}

.year-container {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    padding: 0 0 8px;
    border-bottom: 1px solid red;
}

.year-list {
    left: 50%;
    transform: translate(-50%,28%);
    z-index: 71;
}

.month, .year {
    display: flex;
    justify-content: center;
    cursor: pointer;
    border-radius: 2px;
    padding: 2px 5px;
}

    .month:not(.active):hover, .year:not(.active):hover {
        background-color: rgba(51,51,58, .1);
        transition: 0.2s ease-in-out;
        color: var(--font-color-dark) !important;
    }

    .month.active, .year.active {
        background-color: var(--soft-red);
    }

.today {
    text-align: center;
    width: 100%;
    border-top: 1px solid red;
    padding-top: 0.5em;
}

#txtUnitFilter::placeholder, #txt-periodeFilter::placeholder, .select2-selection__rendered {
    font-size: 15px;
    line-height: 28px;
    color: #999;
}
