.schedule{
    width: 100% !important;
}

.schedule .monthday{
    width: 100%;
    float: left;
}

.schedule .back,
.schedule .next{
    cursor: pointer;
    width: 5%;
    float: left;
    border: 1px solid #eee;
    line-height: 50px;
    height: 59px;
    text-align: center;
    padding-top: 10px;
    float:left;
}

.schedule .back:hover,
.schedule .next:hover{
    background: #eee;
}

.schedule .back{
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.schedule .next{
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.schedule .day > div{
    float: left;
    text-align: center;
    border: 1px solid #eee;
    padding:7px 1px;
    width:14.4%;
    height: 100%;
    margin-right: -1px;
    margin-top: -1px;
    
}

.schedule .day .dayText{
    line-height: 80px;
    font-size: 2.5em;
    color:#999;
}

.schedule .daysName{
    float: left;
    text-align: center;
    border: 1px solid #eee;
    padding:7px 1px;
    line-height: 30px;
    width:14.4%;
    margin-right: -1px;
    margin-top: -1px;
    font-size:1.5em;
    color:#fff;
    background: rgb(58, 87, 159);
}

.schedule .day .inactive {
    opacity:0;
}



.schedule .day .active {
    position: relative;
    border-top:7px solid #65C400;
    padding-top: 1px;
    background: rgba(86,255,0,0.24);
    cursor: pointer;
}

.schedule .day .active:hover {
    background: rgb(238, 201, 63);
    border-top:7px solid orange;
}

.schedule .day .active .eventDetails{
    background: #fff;
    position: absolute;
    border: 1px solid #eee;
    top:-150%;
    left: 100%;
    z-index: 2000;
    min-height: 340px;
    max-height: 450px;
    overflow-y: auto; 
    width: 350px;
    padding:10px;
    display: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    box-shadow: 5px 5px 5px -5px #222;
}


.schedule .day .active .eventDetails p{
    line-height: 25px;
    margin:0;
}

.schedule .day .active:hover > .eventDetails{
   display: block;
}

.schedule .month {
    cursor: pointer;
    width: 90%;
    margin:0 !important;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    line-height: 57px;
    text-align: center;
    font-size: 1.3em;
    float:left;
}

.schedule .month:hover{
    background: rgb(238, 201, 63);
    color:#fff;
}

.listsItem .statistic {
    min-height: 250px;
    border-top: 1px solid #ddd;
    display: none;
}