.calendar-box {
  border: 1px solid #A4B4DC;
  border-radius: 18px;
  padding: 10px 0;
}
.buttons-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.buttons-container .label-container {
  display: inline-block;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  text-transform: capitalize;
  font-weight: bold;
}

.year-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  padding: 5px 20px;
}

.prev-button,
.next-button {
  border: none;
  padding: 15px;
  background: url(/assets/img/chevrons-left.png) no-repeat center;
  width: 18px;
  height: 18px;
  text-indent: 9999px;
}

.prev-button {
  transform: rotate(180deg);
}

.week {
  margin: 10px 0;
}

.week.highlight {
  background: none;
}



.week .day.header {
  font-size: 12px;
  line-height: 14px;
  color: #6E7781;
}

.day span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  vertical-align: middle;
  font-size: 14px;
  color: #262D33;
}

.day.today span {

}

/* weekend */
.week:not(.start-on-monday) .day:first-child,
.week:not(.start-on-monday) .day:last-child {
  color: orange;
}

/* sunday */
.week:not(.start-on-monday) .day:first-child {
  color: red;
}


.day.today span::after {

}

.day.sunday span {
  color: #262D33;
}


.week .day.selected span {
  background: #233D80;
  color: white;
}

.week .day[disabled="disabled"] span {
  color: #aaa;
  cursor: not-allowed;
}

.months-wrapper .month span {
  display: inline-block;
  padding: 10px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.special-buttons {
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.today-button {
  margin: 0 auto;
  background: transparent;
  border: none;
  padding: 5px;
}

.month-label {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #000;
}