.calendar-table{
    width: 100%;
    border-left: 1px solid #DDD;
    border-top: 1px solid #DDD;
}

.calendar-row{
    height: 100px;
}
.calendar-row-detail{
    display: none;
    padding: 20px;
    color: #fff;
    background-color: #2A3F54;
    /* box-shadow: inset 0 0 15px 0 rgba(0,0,0,.5); */
}

.calendar-cell{
    display: inline-block;
    height: 100px;
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    width: calc(100% / 7);
    position: relative;
    transition: all 0.4s;
    background-position: center bottom -17px;
    background-image: url("../../bundles/uradmin/img/calendarSelector.png");
    background-repeat: no-repeat;
}

.calendar-cell.calendar-selected{
    background-position: bottom center;
}
.calendar-row.calendar-selected .calendar-cell{
    border-bottom: none;
}

.calendar-cell.currentDate{
    color: rgb(33,150,243);
    font-size: 17px;
    font-weight: 600
}

.calendar-cell.otherMonth .cellDateNumber{
    color: #DDD;
}

.change-date, .calendar-label{
    display: inline-block
}
.calendar-controle{
    text-align: center;
    font-size: 20px
}
.calendar-label{
    padding-left: 20px;
    padding-right: 20px;
    width: 250px;
}
.cellDateNumber{
    float: right;
    padding-top: 10px;
    padding-right: 10px;
}
.cellCounter {
    bottom: 0px;
    position: absolute;
    margin-left: 5px;
    margin-bottom: 5px;
}
.cellCounterPoint{
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #2A3F54;
    margin: 5px;
    margin-right: 0px;
    border-radius: 5px;
}