

#calendar{
    width: 100%;
    line-height: 1.2em;
    font-size: 14px;
    text-align: center;
    border: none !important;
    color: #000;
}
#calendar thead tr:last-child{
    font-size: small;
    color: #4976b6;
}
#calendar thead tr td {
    padding: 10px 5px 10px 5px;
    color: #888;
}
#calendar thead tr:nth-child(1) td:nth-child(2) {
    position: relative;
    color: #05244d;
}
#calendar thead tr:nth-child(1) td:nth-child(1):hover,
#calendar thead tr:nth-child(1) td:nth-child(3):hover{
    cursor: pointer;
}
#calendar td{
    border: none;
    padding: 6px;
    font-size: 14px !important;
}

#calendar tbody td{
    position: relative;
    color: #040404;
}
#calendar tbody td:nth-child(n+6), #calendar .holiday{
    /*color: #fba493;*/
}
#calendar tbody td.today{
    position: relative;
    z-index: 1;
    color: #888;
}
#calendar tbody td.today:before{
    content: '';
    width: 24px;
    height: 24px;
    color: #fff;
    position: absolute;
    /*background: #4976b6;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
#calendar tbody td.active{
    position: relative;
    color: #fff;
    cursor: pointer;
    z-index: 1;
}
#calendar tbody td.active:before{
    content: '';
    background-color: rgba(42, 59, 62, 1);
    color: #fff;
    width: 36px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.calendarBox{
    position: relative;
}
.calendarBox .calView{
    position: absolute;
    display: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 5px;
    background-color: rgba(42, 59, 62, 1);
    padding: 35px 10px 30px 25px;
    top: 2px;
    z-index: 2;
    width: 100%;
    color:#646060;
    font-size: 14px;
    overflow: hidden;
}
.calendarBox .calView h2{
    font-size:16px;
    /*font-weight:normal;*/
    /*line-height:20px;*/
    margin: 10px 0 0 0;
    color: #fff;
}
.calendarBox .calView li{
    list-style: none;
    color: #fff;
    border-bottom: 1px solid #fff;
    margin: 0 30px 0 0;
    padding: 10px 0 10px 0;
}
.calendarBox .calView li:last-child{
    /*border: none;*/
}
.calendarBox .calView li a{
    display: block;
    color: #fff;
    line-height: 1.2;
}
.calendarBox .calView .close{
    color: #fff;
    text-decoration: none;
    position: absolute;
    right: 10px;
    top: 4px;
    opacity: 2;
    font-size: 25px;
    outline: none;
    border: none;
    box-shadow: none;
}
