.appointments h4 {
  font-size: 22px;
  text-align: center;
  color: #555555;
}
.appointments .clndr {
  max-width: 700px;
  margin: 0 auto;
}
.appointments .controls {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
}
.appointments .controls .clndr-previous-button,
.appointments .controls .clndr-next-button {
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  font-size: 24px;
  border-radius: 50%;
  transition: all 0.2s;
  background: #d90036;
  color: white;
}
.appointments .controls .clndr-previous-button:hover,
.appointments .controls .clndr-next-button:hover {
  background: #b90016;
}
.appointments .controls .clndr-next-button {
  padding-left: 3px;
  width: 37px;
}
.appointments .controls .month {
  font-weight: 600;
}
.appointments .days-container {
  position: relative;
  overflow: hidden;
}
.appointments .days {
  display: flex;
  flex-wrap: wrap;
}
.appointments .days .headers {
  display: flex;
  flex: 0 0 100%;
  padding-bottom: 10px;
  color: #555;
  font-weight: bold;
}
.appointments .days .headers .day-header,
.appointments .days .day {
  flex: 0 0 14.2857%;
  text-align: center;
}
.appointments .days .day {
  position: relative;
  height: 54px;
  line-height: 54px;
  border-bottom: 1px #eee solid;
  font-size: 18px;
}
.appointments .days .day .num-events {
  position: absolute;
  bottom: 5px;
  left: calc(50% - 5px);
  background: #5599ff;
  width: 10px;
  height: 10px;
  line-height: 15px;
  text-align: center;
  font-size: 10px;
  color: transparent;
  border-radius: 50%;
  overflow: hidden;
}
.appointments .days .day.event {
  cursor: pointer;
  transition: all 0.2s;
}
.appointments .days .day.event:hover {
  background: #f9f9f9;
}
.appointments .days .day.adjacent-month {
  opacity: 0.4;
}
.appointments .dot {
  display: inline-block;
  margin-right: 3px;
  background: #5599ff;
  width: 10px;
  height: 10px;
  line-height: 15px;
  text-align: center;
  font-size: 10px;
  color: transparent;
  border-radius: 50%;
  overflow: hidden;
}
.appointments .events {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  transition: all 0.5s;
}
.appointments .events .x-button {
  position: absolute;
  right: 10px;
  width: 40px;
  height: 40px;
  top: 10px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.2);
  background: #5599ff;
  border-radius: 50%;
  transition: all 0.5s;
}
.appointments .events .x-button i {
  line-height: 40px;
  color: white;
}
.appointments .events .x-button:hover {
  background: #227aff;
}
.appointments .events .events-list {
  text-align: center;
  font-size: 18px;
}
.appointments .events .events-list strong {
  padding-top: 10px;
  font-size: 22px;
  color: #555555;
}
.appointments .days-container.show-events .events {
  top: 0;
}
.appointments .calendarFooter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 700px;
  margin: 0 auto;
  padding: 25px 20px 0;
  font-size: 12px;
}
.appointments .calendarFooter .legend {
  padding: 5px 20px 5px 0;
}
.appointments .calendarFooter .ical {
  padding: 5px 0;
}
.appointments .calendarFooter .ical a {
  display: inline-block;
  padding: 10px 15px;
  background: #5599ff;
  color: white;
  border-radius: 2px;
  transition: all 0.2s;
}
.appointments .calendarFooter .ical a:hover {
  background: #227aff;
}
.appointments .calendarFooter .ical i {
  font-weight: bold;
}
.appointments .abuse {
  max-width: 700px;
  margin: 0 auto;
  padding: 10px 20px 30px;
  text-align: right;
  font-size: 12px;
}
.appointments .abuse a {
  display: inline-block;
  padding: 10px 15px;
  background: #ffa500;
  border-radius: 2px;
  color: white;
  transition: all 0.2s;
}
.appointments .abuse a:hover {
  background: #cc8400;
}
