
.calendar-container {
    height: 200px;
    width: 180px;
	margin:0 auto;
}

.month{font-weight:bold}

.calendar {
    text-align: center;
}


.calendar header {
    position: relative;
}

.calendar tbody {
    color: #000;
}



.calendar tbody td.active {
    border: 1px solid #c0392b;
}

.calendar td {
    height: 12px;
    line-height: 1px;
    text-align: center;
    width: 12px;
    padding: 2px;
}

.current-day {
    border:1px solid #000;
    color: #000;
}

.event {
    cursor: pointer;
    position: relative;
}

.event-days{font-size:10px}
.event:after {
    border:1px solid #fff;
	border-radius:50%;
    bottom: 0px;
    display: block;
    content: '';
    height: 12px;
    left: 40%;
    margin: -4px 0 3px -5px;
    position: absolute;
    width: 12px;
}

.event.green-event:after {
    background: #009E82;
}

.event.blue-event:after {
    background: #0078AB;
}

.event.current-day:after {
    background: #f9f9f9;
}

.btn-prev,
.btn-next {
	color: #000;
	height: 10px;
	font-size: 12px;
	font-weight:bold;
	line-height: 28px;
	margin: -16px;
	position: absolute;
	top: 50%;
	width: 10px;
}


.btn-prev {
    left: 30px;
}

.btn-next {
    right: 35px;
}

.list {
    margin-top: 20px;
}

.close {
    color: #A4AAAB;
    margin-top: -15px;
    margin-right: 10px;
    float: right;
}

.day-event {
    background-color: #F2F2F2 ;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 0px;
    margin-bottom: 50px;
    display:none;

}

.day-event p{
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.day-event span{
    font-size: 10px;
}

.day-event button {
    position: relative;
    vertical-align: top;
    width: 100%;
    height: 50px;
    padding: 0;
    font-size: 10px;
    color: white;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    background: #c0392b;
    border: 0;
    border-bottom: 2px solid #b53224;
    cursor: pointer;
    -webkit-box-shadow: inset 0 -2px #b53224;
    box-shadow: inset 0 -2px #b53224;
}