.be-date-picker,
.be-date-picker * {
    box-sizing: border-box;
}

.be-date-picker {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(66px, .72fr) minmax(126px, 1.38fr) minmax(88px, .9fr);
    gap: 8px;
    align-items: center;
}

.be-date-picker__select {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 0 12px;
    border: 1px solid #c8d9dc;
    border-radius: 13px;
    outline: 0;
    color: #0b2638;
    background-color: #fff;
    font: inherit;
    font-weight: 500;
    line-height: 1.25;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.be-date-picker__select:hover {
    border-color: #8db9b9;
}

.be-date-picker__select:focus {
    border-color: #0b8b88;
    background-color: #fbffff;
    box-shadow: 0 0 0 4px rgba(11, 139, 136, .12);
}

.be-date-picker__select:invalid:not(:focus) {
    color: #526b79;
}

.be-date-picker__select:disabled {
    color: #71848e;
    background-color: #edf2f2;
    cursor: not-allowed;
}

.be-date-picker__hint {
    grid-column: 1 / -1;
    margin-top: -2px;
    color: #526b79;
    font-size: 11.52px;
    font-weight: 500;
    line-height: 1.4;
}

.lifegraph__field .be-date-picker__select {
    border-color: rgba(11, 38, 56, .22);
    background-color: #fffefb;
}

.lifegraph__field .be-date-picker__hint {
    color: #5d7380;
}

@media (max-width: 480px) {
    .be-date-picker {
        grid-template-columns: minmax(58px, .68fr) minmax(112px, 1.42fr) minmax(76px, .9fr);
        gap: 5px;
    }

    .be-date-picker__select {
        height: 48px;
        padding: 0 7px;
        border-radius: 11px;
        font-size: 13.12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .be-date-picker__select {
        transition: none;
    }
}
