.header {
  width: 100%;
  border-bottom: 1px solid rgb(221, 221, 221);
  display: flex;
  flex-direction: row;
  justify-content: space-between;

}

.calendar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: space-around;
  padding: 20px 0px 20px;
}

.title-content {
  padding: 20px 0px 20px 20px;
}

.title {
  margin-bottom: 0px !important;
  color: #6F6F70;
}

.last-update {
  margin: 0px !important;
  color: #ACACAC;
}

.box-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-shadow: 0px 1px rgb(221, 221, 221);
  border: 1px solid rgb(221, 221, 221);
  border-radius: 10px;
}

.box-space {
  margin-right: 10px
}

.counts {
  padding-left: 20px;
  padding-right: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.count-number {
  margin: 0px !important;
}

.count-line {
  margin: 0px !important;
  font-size: 12px;
  color: #ACACAC;
}


.icon-day {
  align-items: center;
  background-color: #858585;
  border-radius: 0px 10px 10px 0px;
  padding: 15px 20px 10px 20px;
}

.icon-week {
  background-color: #E86363;
  border-radius: 0px 10px 10px 0px;
  padding: 15px 20px 10px 20px;
}


@media only screen and (max-width: 425px) {
  .header {
    margin-top: 20px;
    flex-direction: column;
    border: 0px;
  }

  .title-content {
    padding: 0px;
  }

  .calendar {
    padding: 10px 0px 10px;
    width: 100%
  }

  .box-content {
    width: 50%;
    margin: 0px auto
  }

  .box-space {
    margin-right: 5px;
  }

  .counts {
    padding: 5px
  }
}