.header-calendar {
  margin: 22px 30px 0;
  padding: 18px 14px;
  border-radius: 24px;
}

.header-month {
  display: none;
}

.week-days {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 2px;
  margin-right: 0;
}

.day {
  flex: 1;
  min-width: 0;

  text-align: center;

  opacity: 1;
  color: #5f6473;
}

.day-number {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 7px;

  font-size: 16px;
  font-weight: 800;

  border-radius: 50%;

  color: #555967;
}

.day-name {
  font-size: 10px;
  font-weight: 500;

  color: #656b7a;
  opacity: 1;
}

.day.today .day-number {
  background: #ffffff;
  color: #f4a300;

  box-shadow:
    0 8px 22px rgba(0, 0, 0, .10);
}

.day.today .day-name {
  color: #f4a300;
  opacity: 1;
}