.footer {
    paddding: 10px 0;
    border-top: 1px solid #eee;
}

.brand {
    height: 40px;
    margin: 5px 20px 5px 5px;
}

.glyphicon {
    color: yellowgreen;
}

.inline {
    display: inline-block;
}

.width-85 {
    width: 85%;
}

.form-control-small {
    display: inline-block;
    width: auto;
}

.div-flex {
    display: inline-block;
    margin-bottom: 20px;
    margin-right: 10px;
}

.hidden {
    display: none;
}

.team-members {
    font-style: italic;
    padding: 5px;
    padding-bottom: 0;
}

/* Calendar */
div.calendar-container {
    padding-bottom: 20px;
    text-align: center;
}

h2.calendar-date {
    text-align: center;
    display: inline-table;
}

table.calendar { border: 2px solid #888; margin: 0 auto; }
tr.calendar-row {}
tr.calendar-day { min-height: 80px; font-size: 11px; position: relative; } * html div.calendar-day { height: 80px; }
td.calendar-day:hover { background: #eceff5; }
td.calendar-day-np { background: #eee; min-height: 80px;} * html div.calendar-day-np { height: 80px; }
td.calendar-day-head {
    background: #ccc;
    font-weight: bold;
    text-align: center;
    width: 120px;
    padding: 5px;
    border-bottom: 1px solid #999;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
}
div.day-number {
    background: #999;
    /*padding: 5px;*/
    color: #fff;
    font-weight: normal;
    /*float: right;*/
    /*margin: -5px -5px 0 0;*/
    width: 40px;
    height: 20px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
div.today {
    background: #2aabd2;
    font-weight: bolder;
}
td.calendar-day, td.calendar-day-np {
    width: 130px;
    padding: 5px;
    border-bottom: 1px solid #999;
    border-right: 1px solid #999;
    height: 130px;
    position: relative;
}
div.calendar-event {
    font-size: 11px;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 25px;
    left: 0;
    z-index: 10;
}
span.calander-single-event {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
div.calendar-heading {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.calendar-button {
    display: inline-table;
    margin: 0 20px;
}

.cal-tooltip {
    /*position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;*/
}
.cal-tooltiptext {
    visibility: hidden;
    opacity: 0;
    /*width: 120px;*/
    font-size: 14px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 110%;
    transition: opacity 0.25s ease-in;
}
.cal-tooltip .cal-tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}
.cal-tooltip:hover .cal-tooltiptext {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 767px) {
    .mobile-full {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    table {
        width:100%;
    }

    thead {
        display: none;
    }

    tr:nth-of-type(2n) {
        background-color:  inherit;
    }

    tr td:first-child {
        background-color: #f0f0f0;
        font-weight: bold;
        font-size: 1.3em;
    }

    tbody td {
        display: block;
        text-align: center;
    }

    tbody td:before {
        content: attr(data-th);
        display: block;
        text-align: center;
    }

    td.calendar-day, td.calendar-day-np, td.calendar-day-head {
        display: table-cell !important;
        font-size: 11px;
    }

    td.calendar-day, td.calendar-day-np {
        display: table-cell !important;
        font-size: 11px;
        height: 80px;
    }

    td.calendar-day:first-child {
        display: table-cell !important;
        background: #fff;
        font-size: 11px;
    }

    td.calendar-day-np:first-child {
        display: table-cell !important;
        background: #eee;
        font-size: 11px;
    }

    td.calendar-day-head:first-child {
        background-color: #ccc;
        font-weight: bold;
        font-size: 11px;
    }

    div.calendar-event {
        font-size: 10px;
    }
}