.hello-week {
    width: 99%;
    margin: 0px auto;
    padding: 5px 0px;
    user-select: none;
    font-size: 1em;
    position: relative;
    border: 1px solid #ccc;}
  .hello-week .navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0; }
  .hello-week .prev,
  .hello-week .next {
    padding: 1em;
    cursor: pointer; }
  .hello-week .period {
    width: 100%;
    font-size: 1em;
    font-weight: 400;
    text-align: center; }
  .hello-week .week {
    display: flex; }
    .hello-week .week.rtl {
      flex-direction: row-reverse; }
  .hello-week .month {
    display: flex;
    flex-wrap: wrap;
    cursor: pointer; }
    .hello-week .month.rtl {
      flex-direction: row-reverse; }
  .hello-week .day {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14.28571%;
    font-size: 1em;
    color: #000;
    padding: 0.3em 0px;
    transition: background-color 0.2s cubic-bezier(0.25, 0.1, 0.49, 0.9); }

    @media (max-width: 576px) {
        .hello-week {
            width: 98% !important;
        }
    }
