.calendar-wrapper {
  width: 100%;
  max-width: 400px;
  margin: auto;
  padding: 5px 10px 0px;
  border-radius:5px;
  background:#fff;position: relative;
  float: left;
  border: 1px solid #f6f6f6;
}

.calendar-box {

}

.buttons-container {
  cursor: pointer;
}

.week {
  overflow: hidden;
}

.week.highlight {
  background: #e5f3e1;
}

/* weekend */
.week .day:first-child, .week .day:last-child {
  /*color: orange;*/
}

/* sunday */
.week .day:first-child {
  /*color: red;*/
}

.day {
  display: inline-block;
  float: left;
  /* width: 13.28%; */
  width: 25px;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  padding-bottom: 2px;
}

.day.disabled span {
  color: #AAA;
}

/* vertical highlight */
.week .day.highlight span {
  /*color: blue;*/
}

.day.selected span {
  /*background: orange;*/
}

.day.today span {
/*   font-family: 'MontserratR'; */
  font-weight: bold;
  background: #71cd06;
  color: #fff;
}

.months-container.hidden, .weeks-container.hidden {
  display: none;
}

.months-wrapper {
  overflow: hidden;
}

.months-wrapper .month {
  display: inline-block;
  float: left;
  width: 25%;
  text-align: center;
  cursor: pointer;
}
.months-wrapper .month.one-third {
  width: 33.33%;
}
