.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;
  border-bottom: 1px solid #eee;
  background: #175a75;
  border-radius: 10px 10px 0px 0px;
  padding-top: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight:normal;
}
.weeks-container{ background: #fff; border-radius:0px 0px 10px 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;
  color:#fff;
}

.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:#2f6b83;
  border: none;
  padding: 10px 20px;
  color:#fff;
  margin: 0px 10px;
  text-indent: -99999px;
  position: relative;
  cursor: pointer;

}

.next-button:before{
  content: '';
position: absolute;
top: 12px;
left: 12px;
width: 8px;
height: 8px;
border-style: solid;
border-width: 3px 3px 0 0;
transform: rotate(
45deg);
transform-origin: center center;
color: #fff;
}

.prev-button:before{
  content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 3px 3px 0 0;
    transform: rotate(-130deg);
    transform-origin: center center;
color: #fff;
}

.week {
  margin: 10px 0;
}

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

.weeks-wrapper.header {
  border-bottom: 1px solid #eee;
}

.week .day.header {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}
#calendar-wrapper .header{padding:5px 0px;}
.day span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  vertical-align: middle;
  font-size: 13px;
}

.day.today span {
  position: relative;
  display: inline-block;
  font-size: 110%;
  /*background:#f4cd00;*/
}

/* 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;
}*/

/* 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.today span::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  /*border-bottom: 2px solid orange;*/
  width: 10px;
  height: 1px;
}

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

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

.week .day.selected span {
  background: #175a75;
  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;
  background: #fff;
  display: none;
}

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