.monthpicker {
    position: absolute;
    color: inherit;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: auto;
    max-width: none;
    padding: 0;
    margin-top: 7px;
    top: 100px;
    display: none;
    flex-direction: column;
    left: 20px;
    z-index: 4;
    font-family: arial;
    font-size: 15px;
    line-height: 1em;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.monthpicker_active {
    display: flex !important;
}

.monthpicker_header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 4px;
}
.monthpicker_header-button {
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    padding: 12px 0;
    flex: 1;
    border-radius: 4px;
}
.monthpicker_header-button:focus {
    outline: none;
}
.monthpicker_header-button:hover {
    background-color: #72d68a;
    color: white;
}

.monthpicker_header-select {
    flex: 1;
    display: flex;
    justify-content: center;
}

.monthpicker_header-select select {
    border: none !important;
    outline: none;
    background-color: transparent;
    padding: 0;
    padding: 12px;
    cursor: pointer;
    font-size: 18px;
}

.monthpicker_month {
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
}

.monthpicker_month-item {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 12px 8px;
    border: none;
    outline: none;
    border-radius: 4px;
}

.monthpicker_month-item:focus {
    outline: none;
}
.monthpicker_month-item:hover {
    background-color: #72d68a;
    color: white;
}

.monthpicker_month-item_active {
    background-color: #28a745;
    color: white;
}

@media (max-width: 564px) {
    .monthpicker {
        left: 50%;
        transform: translateX(-50%);
    }
}

.container_time {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    flex-wrap: nowrap;
}
