

/*
Copyright 2017 caio.inovativa.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/* 
    Created on : 03/01/2017, 15:31:53
    Author     : caio.inovativa
*/
.calendar { 
    -moz-box-shadow:0px 3px 3px rgba(0, 0, 0, 0.25); 
    -webkit-box-shadow:0px 3px 3px rgba(0, 0, 0, 0.25); 
    margin: auto;
    height: 100%;
    width: 80%;
    float: left;
    padding: 5px;
}

.calendar-header { 
    cursor:default; 
    background: white; 
    height: auto; 
    position: relative; 
    color: #2b2b2b; 
    -webkit-border-top-left-radius: 5px; 
    -webkit-border-top-right-radius: 5px; 
    -moz-border-radius-topleft: 5px; 
    -moz-border-radius-topright: 5px; 
    border-top-left-radius: 5px; 
    border-top-right-radius: 5px; 
    font-weight:bold; 
    text-transform: uppercase; 
} 
.calendar-header span { 
    display:inline-block; 
    line-height:34px; 
}

.calendar-header .month-year {
    letter-spacing: 1px;
    text-align: center;
    border: 1px solid red;
    width: auto;
    vertical-align: central;
}

.calendar table { 
    background:#fff; 
    border-collapse:collapse; 
} 
.calendar td { 
    color:#2b2b2b; 
    width:30px; 
    height:30px; 
    line-height:30px; 
    text-align:center; 
    border:1px solid #e6e6e6; 
    cursor:default; 
} 
.calendar #days td { 
    height:26px; 
    line-height: 26px; 
    text-transform:uppercase; 
    font-size:90%; 
    color:#9e9e9e; 
} 
.calendar #days td:not(:last-child) { 
    border-right:1px solid #fff; 
}


.calendar table { 
    background:#fff; 
    border-collapse:collapse; 
} 
.calendar td { 
    color:#2b2b2b; 
    width: 14.28%; 
    height: 105px;
    line-height:30px; 
    text-align:center; 
    border:1px solid #e6e6e6; 
    cursor:pointer; 
    padding: 0 !important;
} 
.calendar #calendar-days th { 
    height:26px; 
    line-height: 26px; 
    text-transform:uppercase; 
    text-align: center;
    font-size:90%; 
    color:#9e9e9e; 
    border:1px solid #e6e6e6; 
} 

.calendar #calendar-grid .curr td.today { 
    background:#EFEEEC; 
    color:#8c8c8c; 
    -moz-box-shadow:    inset 0 0 10px #000000;
    -webkit-box-shadow: inset 0 0 10px #000000;
    box-shadow:         inset 0 0 10px #000000;
} 
.calendar #calendar-grid td:not(.nil):not(th):hover { 
    cursor: pointer;
    transition: background-color 0.5s;
    background-color: rgba(221,221,221,0.3); 
}

.calendar-details {
    border: none;
    font-size: 1em;
    overflow-x: hidden;
    transition: 0.5s;
    width: 0;
}

.calendar-details tr {
    border-bottom: 2.5px solid #ddd;
    font-size: 0.8em;
}

.calendar-details tr:nth-child(even){
    background-color: #ececec;
}

.day {
    color: #95c8ff;
    padding: 2px;
    font-weight: bold;
    margin-left: 80%;
    margin-right: 2px;
}
.DayRod{
    font-size:15px;
    text-align: right;
    float: right;
    color:#95c8ff;
    font-weight: bold;
    top: 100%;
    position: sticky;
    margin-left: 80%;
    margin-right: 2px;
}

.excel-like {
    border: 2px solid #e8f5e9  !important;
    margin-top: 20px;
}
/* ============================
        Mobile Responsiveness
   ============================*/


@media(max-width: 768px) {

    #calendar .weekdays, #calendar .other-month {
        display: none;
    }

    #calendar li {
        height: auto !important;
        border: 1px solid #ededed;
        width: 100%;
        padding: 10px;
        margin-bottom: -1px;
    }

    #calendar .date {
        float: none;
    }
}