.profile select.form-control {
    font-family: 'BNPP Sans';
    width: 100%;
    font-weight: 400;
    border: none;
    border-radius: 15px;
    background: #EEEEF3;
    color: #575757;
    font-size: 18px;
    line-height: 30px;
    padding: 14px 20px;

    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: 16px 18px;
    background-position: 98% 50%;
    cursor: auto;
}

.dates .date.periodized {
    overflow: hidden;
    background: #eeeef3;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}
.dates .date.periodized div.date-periods__content {
    align-items: start;
    padding-top: 13px;
}
.dates .date.periodized.success {
    border-radius: 15px;
}

.dates.month .date.periodized {
    min-height: 110px;
    height: auto;
    padding: 8px 6px;
}

.date-periods {
    padding-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 6px;
}

.date-periods__slot {
    flex: none;
    display: flex;
    width: 88%;
    align-items: center;
    justify-content: center;
    min-height: 16px;
    border-radius: 9px;
    padding: 2px 4px;
    color: rgba(87, 87, 87, 0.55);
    font-size: 8px;
    line-height: 1;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.95);
    transition: background-color 150ms ease, color 150ms ease;
}

.date.periodized--am .date-periods__slot--am,
.date.periodized--pm .date-periods__slot--pm,
.date.periodized--full .date-periods__slot--full {
    background: #00a16a;
    color: #ffffff;
}

.date.periodized.error .date-periods__slot {
    background: #ee6f6c;
    color: #ffffff;
}

.date-periods__content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 34px;
}

.dates.month .date.periodized p {
    line-height: 14px;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dates.month .date.periodized p strong {
    margin-bottom: 1px;
}

.period-label {
    padding: 0;
    margin: 2px 0 0;
    color: #a9a9a9;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
}

@media (max-width: 320px) {
    .dates.month .date.periodized {
        min-height: 98px;
    }

    .date-periods__slot {
        min-height: 15px;
        font-size: 8px;
    }

    .date-periods__content {
        min-height: 32px;
    }
}
