.hello-week{
    width:100%;
    max-width:var(--hello-week-max-width);
    margin:0 auto;
    padding:1rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    border-radius:var(--hello-week-border-radius);
    background-color:var(--hello-week-bg-color);
    box-shadow:0 2px 20px 8px rgba(0,0,0,.12);
    user-select:none}
  .hello-week .navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: #6c757d;
    color: #fff;}
  .hello-week .prev,
  .hello-week .next {
    padding: 1em;
    cursor: pointer;
	background: #343a40; }
  .hello-week .period {
    width: 100%;
    font-size: 1.6em;
    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%;
    padding: 1em;
    transition: background-color 0.2s cubic-bezier(0.25, 0.1, 0.49, 0.9); }
