.calendar {
    width: 280px;
    height: 380px;
}
.calendar-modal {
    display: none;
    position: absolute;
    background: #fdfdfd;
    border: 1px solid #e8e8e8;
    box-shadow: 1px 2px 3px #ddd
}
.calendar-inner {
    position: relative;
    z-index: 1;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -ms-transform: perspective(1000px);
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
}
.calendar-views {
    transform-style: preserve-3d;
}
.calendar .view {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    *overflow: hidden;
    /*-webkit-transition: .6s;
    transition: .6s;*/
}
.calendar-d .view-month,
.calendar-m .view-date {
    transform: rotateY(180deg);
    visibility: hidden;
    z-index: 1;
}
.calendar-d .view-date,
.calendar-m .view-month {
    transform: rotateY(0deg);
    visibility: visible;
    z-index: 2;
}
.calendar-ct,
.calendar-hd,
.calendar-views .week,
.calendar-views .days {
    overflow: hidden;
}
.calendar-views {
    width: 100%;
}
.calendar .view,
.calendar .date-items li {
    float: left;
}
.calendar-hd {
    padding: 5px 0;
    height: 40px;
    line-height: 30px;
	text-align: center;
}
.calendar-hd .prev,
.calendar-hd .next {
	display: inline-block;
	margin: 0 20px;
	padding: 0 10px;
	font-size: 22px;
	color: #999;
}
.calendar-display {
    font-size: 18px;
    text-indent: 10px;
}
.view-month .calendar-hd {
    padding: 10px;
}
.calendar-views .week {
	border-top: 2px solid #b5b5b6;
	border-bottom: 1px solid #b5b5b6;
}
.calendar li[disabled] {
    color: #bbb;
}
.calendar li.old[disabled],
.calendar li.new[disabled] {
    color: #eee;
}
.calendar-display .m,
.calendar-views .days .old,
.calendar-views .days .new,
.calendar-display:hover,
.calendar-arrow span:hover {
    color: #bbb;
}

.calendar-arrow span,
.calendar-views .days li[data-calendar-day],
.calendar-views .view-month li[data-calendar-month] {
    cursor: pointer;
} 
.calendar li[disabled] {
    cursor: not-allowed;
}

.calendar-arrow {
    width: 50px;
    margin-right: 10px;
}
.calendar-arrow span {
    font: 500 26px sans-serif;
}

.calendar ol li {
    position: relative;
    float: left;
    text-align: center;
}
.calendar .week li {
    width: 50px;
    height: 30px;
    line-height: 30px;
}
.calendar .days li {
	height: 50px;
	padding-top:6px;
}
/* .calendar .days li:nth-child(8),
.calendar .days li:nth-child(9),
.calendar .days li:nth-child(10),
.calendar .days li:nth-child(11),
.calendar .days li:nth-child(12),
.calendar .days li:nth-child(13),
.calendar .days li:nth-child(14),
.calendar .days li:nth-child(22),
.calendar .days li:nth-child(23),
.calendar .days li:nth-child(24),
.calendar .days li:nth-child(25),
.calendar .days li:nth-child(26),
.calendar .days li:nth-child(27),
.calendar .days li:nth-child(28),
.calendar .days li:nth-child(36),
.calendar .days li:nth-child(37),
.calendar .days li:nth-child(38),
.calendar .days li:nth-child(39),
.calendar .days li:nth-child(40),
.calendar .days li:nth-child(41),
.calendar .days li:nth-child(42) {
	background:#eee;
} */
.calendar .days li p {
	margin-left:5px;
	line-height:10px;
	font-size:10px;
	-webkit-transform-origin-x:0;
	-webkit-transform:scale(0.83);
	color:#f50;
}
.calendar .month-items li {
    width: 70px;
    height: 70px;
    line-height: 70px;
}
.calendar .days li[data-calendar-day]:hover,
.calendar .view-month li[data-calendar-month]:hover {
    background: #eee; 
}
.calendar .calendar-views .now,
.calendar .calendar-views .selected {
	display: inline-block;
	width: 50px;
	height: 50px;
}
.calendar .calendar-views .peak {
	color: #fff;
    background: #fabd00!important;
}
.calendar .calendar-views .now {
	color: #fff;
    background: #eeaa30!important;
}
.calendar .calendar-views .now p {
	color:#fff;
}
.calendar .calendar-views .selected {
    color: #66be8c;
    background: #CDE9D9!important; 
}
.calendar .calendar-views .dot {
    position: absolute;
    left: 50%;
    bottom: 4px;
    margin-left: -2px; 
    width: 4px;
    height: 4px;
    background: #66be8c;
    border-radius: 50%;
}
.calendar-views .now .dot {
    background: #fff;
}

.calendar .date-items {
    width: 300%;
    margin-left: -100%;
}

.calendar-label {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    padding: 5px 10px;
    line-height: 22px;
    color: #fff;
    background: #000;
    border-radius: 3px;
    opacity: .7;
    filter: alpha(opacity=70);
}
.calendar-label i {
    display: none;
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 0;
    height: 0;
    margin-left: -3px;
    border: 6px solid transparent;
    border-top-color: #000;
}