body {
    font-family: 'Helvetica';
}

.month-picker {
    position: relative;
}


/* .open-calendar {
    width: 100%;
    cursor: pointer;
    padding: 7px 15px;
    border-radius: 5px;
    background-color: #f7f9fc;
    border: 1px solid #e4e9f2;
    color: #8f9bb3;
    transition: all .15s;
}

.open-calendar:focus {
    outline: none;
}

.open-calendar:hover {
    background-color: #edf1f7;
} */

.open-calendar {
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 0px;
    font-size: 24px !important;
}

.calendar {
    display: none;
    width: 230px;
    height: 275px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0.5rem 1rem 0 rgb(44 51 73 / 10%);
    position: absolute;
    top: 60px;
    left: 0px;
    background-color: white;
    z-index: 100;
}

.show-calendar {
    display: block;
}

.calendar-header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.calendar-header .year {
    display: inline-block;
    padding: 10px 25px;
    background-color: #3366ff;
    color: white;
    border-radius: 8px;
}

.months-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 25px;
}

.months-container .month {
    width: 30%;
    height: 30px;
    color: black;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
}

.months-container .month:hover {
    background-color: #598bff;
    color: white;
}

.month-selected {
    background-color: #3366ff;
    color: white !important;
}

.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.btn-close {
    border: 1px solid #ff3d71;
    background-color: #ff3d71;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.select-year {
    cursor: pointer;
    color: #3366ff;
    padding: 10px 15px;
    user-select: none;
    font-weight: 600;
}

.select-year:hover {
    background-color: rgba(143, 155, 179, 0.08);
    border-color: transparent;
}