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

.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: bold;
}
.buttons-container .label-container .month-label {
	font-size: 16px;
	
}
.buttons-container .label-container .year-label {
	font-size: 16px;
	 
	font-weight:normal;
}
.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{ 
  background: transparent;
  border: none;
  padding: 0 0 0 10px;
  font-size: 11px;
  width: 50px;
  text-align: left;
}
.next-button {
  background: transparent;
  border: none;
  padding: 0 10px 0 0;
  font-size: 11px;
  width: 50px;
  text-align: right;
}

.week {
  margin: 3px 0;
}

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

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

.week .day.header {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
/*   font-family: 'MontserratSB'; */
}

.day span {
  display: inline-block;
  width: 19px;
  height: 19px;
  line-height: 19px;
  border-radius: 50%;
  vertical-align: middle;
  font-size: 11px;
/*   font-family: 'MontserratL'; */
}
.day span:hover {
  background: var(--primary-color);
  color: white;
}
.day.today span {
  position: relative;
  display: inline-block;
}

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

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

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

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

.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: #74a2ef; */
/*   color: white; */
/* 	font-family: 'MontserratR'; */
/* 	font-weight:bold; */
}

.week .day.scheduled span {
/*   background: #74a2ef; */
/*   color: white; */
/*   font-family: 'MontserratL'; */
/*   font-weight: normal; */
}

.week .day.scheduled span:hover {
  background: var(--primary-color);
  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;
	position: absolute;
	top:-28px;
	right: -1px;
	padding: 2px 4px;
	background: white;
	color:var(--primary-color); 
	border: 1px solid var(--primary-color); 
	border-radius: var(--round-border-radius);     
	line-height: 1;
    font-size: var(--xsmall-font-size);
}
.special-buttons:hover {
	background: var(--primary-hover-color);
	color: #fff;
	border: 1px solid var(--primary-hover-color);
} 
.today-button {
	margin: 0 auto;
	background: transparent;
	border: none; 
	font-size: var(--xsmall-font-size); 
	letter-spacing: 0.5px; 
	color: inherit;
}