.calendar {
   position: relative;
  background: #fff;
  border-radius: 0 0 1em 1em;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2), 0 3px 1px #fff;
  color: #555;
  width: 460px;
 font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
}
.calendar .circle {
    width: 8px;
    height: 8px;
    background-color: #428bca;
    border-radius: 50%;
   display: none;
}
.day.scheduleDay {
    cursor: pointer !important;
}
.day.scheduleDay .circle {
    display: inline-block;
}
.calendar .header {
    width: 100%;
    background-color: #428bca;
    color: #fff;
    text-align: center;
    position: relative;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding-top: 10px;
    height: 100px;
}
.calendar .header .month {
    opacity: 1;
    text-align: center;
   height: 45px;
   line-height: 45px;
    padding: 0px 40px;
    font-size: 2.5em;
    margin-bottom: 0px;
    font-weight: normal;
}
.calendar .header .year {
    text-align: center;
    padding: 0px 40px;
    font-size: 1.5em;
}
.ring-left,
.ring-right {
  position: absolute;
  top: 80px;
}
.ring-left {
  left: 2em;
}
.ring-right {
  right: 2em;
}
.ring-left:before,
.ring-left:after,
.ring-right:before,
.ring-right:after {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.3), 0 -1px 1px rgba(0, 0, 0, 0.2);
  content: "";
  display: inline-block;
  margin: 8px;
  height: 32px;
  width: 8px;
}
.left, .right {
    position: absolute;
    width: 0px;
    height: 0px;
    border-style: solid;
    top: 50%;
    margin-top: -7.5px;
    cursor: pointer;
}
.right {
    border-width: 7.5px 0 7.5px 10px;
    border-color: transparent transparent transparent #FFF;
    right: 20px;
}
.left {
    border-width: 7.5px 10px 7.5px 0;
    border-color: transparent #FFF transparent transparent;
    left: 20px;
}
.month {
    /* overflow: hidden; */
    opacity: 0;
    margin-bottom: 40px;
    transition: all 0.7s ease;
}
.month.new {
  -webkit-animation: fadeIn 1s ease-out;
  opacity: 1;
}
.month.in.next {
  -webkit-animation: moveFromLeftFadeMonth 0.4s ease-out;
  -moz-animation: moveFromLeftFadeMonth 0.4s ease-out;
  animation: moveFromLeftFadeMonth 0.4s ease-out;
  opacity: 1;
}
.month.in.prev {
  -webkit-animation: moveFromRightFadeMonth 0.4s ease-out;
  -moz-animation: moveFromRightFadeMonth 0.4s ease-out;
  animation: moveFromRightFadeMonth 0.4s ease-out;
  opacity: 1;
}
.month.out.next {
  -webkit-animation: moveToRightFadeMonth 0.4s ease-in;
  -moz-animation: moveToRightFadeMonth 0.4s ease-in;
  animation: moveToRightFadeMonth 0.4s ease-in;
  opacity: 1;
}
.month.out.prev {
  -webkit-animation: moveToLeftFadeMonth 0.4s ease-in;
  -moz-animation: moveToLeftFadeMonth 0.4s ease-in;
  animation: moveToLeftFadeMonth 0.4s ease-in;
  opacity: 1;
}
.week-days {
  padding: 8px 0px;
  background-color: #efefef;
  border-top: 4px solid #2066A3;
}
.week-days .day {
  cursor: default;
}
.week {
 /*  background-color: #fff;*/
  /* background: #4A4A4A; */
}
.week .day {
 width: 60px;
height: 60px;
}
.day.other {
  color: #E9E9E9;
}
.day {
  display: inline-block;
  width: -webkit-calc(13.28571429%);
  padding: 10px;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  /* background: #4A4A4A; */
  position: relative;
  z-index: 5;
}
.day.other .circle {
  background-color: #E9E9E9;
}
.day.today {
 color:#fff;
  background-color: #428bca;
  font-weight: normal;
width: 40px;
height: 40px;
border-radius: 50%;
}
.arrow {
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -5px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #e9e9e9 transparent;
  transition: all 0.7s ease;
}
.arrow:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  margin-left: -5px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #fff transparent;
}

