.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;
    position: static;
    display: block;
    width: 100%;
    text-align: right;
}

.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: uppercase;
  font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    position: absolute;
    left: 0;
}

.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 {
  background: transparent;
  border: none;
    text-indent: -999999px;
    width: 24px;
    height: 24px;
}
.prev-button { 
    margin-right: 40px; 
}

.week {
  margin: 10px 0;
}

.week.highlight {
  border-radius: 5px;
}

.week .day.header {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
    line-height: 19px;
    color: #737476;
}

.day span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  vertical-align: middle;
    font-weight: 500;
    font-size: 13px;
}

.day.today span {
  position: relative;
  display: inline-block;
  font-size: 110%;
}


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

/* start on monday - sunday */
.week.start-on-monday .day:last-child {
  color: red;
}

.day.sunday span {
  color: #ff8a80;
}

.week .day.highlight span {
  color: #2196f3;
}

.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 {
}

.today-button {
  margin: 0 auto;
  background: transparent;
  border: none;
    position: absolute;
    right: 31px;
    top: 1px;
    font-weight: normal;
    font-size: 13px;
    line-height: 21px;
}