﻿/** Calendar **/
.calendar {
    margin-bottom: 20px;
}

    .calendar .calendar-content, .calendar .body {
        position: relative;
    }

.cell, .column {
    float: left;
    width: 14%;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.cell {
    height: 30px;
    line-height: 25px;
}

    .cell .mid-hour-cell {
        width: 100%;
        height: 15px;
    }

        .cell .mid-hour-cell:first-of-type {
            border-bottom: 1px dashed #EBEBEB;
        }

.column {
    border-right: 1px solid #aaa;
}

    .column .cell {
        width: 100%;
        border-bottom: 1px solid #EBEBEB;
    }

        .column .cell:last-of-type {
            border-bottom: none;
        }

.calendar .body .cell:hover {
    background-color: #F6F6F6;
    cursor: copy;
}

.header .cell {
    background: #659be0 !important;
    color: white;
    height: 30px;
    line-height: 30px;
    border-right: 1px solid #fff;
    cursor: copy;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

    .header .cell:last-of-type {
        border-right: none;
    }

    .header .cell.closing-day {
        background-color: #337ab7 !important;
    }

.column.closing-day .cell {
    background-color: #dcdcdc;
}

.column.hours {
    width: 2%;
    float: left;
    border-right: none;
}

    .column.hours .cell {
        border-right: 1px solid #aaa;
        border-bottom: none;
        line-height: 0;
    }

    .column.hours .header-cell {
        background: #659be0;
        color: white;
        height: 30px;
        line-height: 30px;
        border-right: 1px solid #fff;
    }

.reservation {
    color: white;
    position: absolute;
    width: 13.94%;
    background: red;
    -webkit-border-radius: 4px !important;
    border-radius: 4px !important;
    box-shadow: 0 1px 3px rgba(64, 63, 63, 0.7);
    padding: 10px;
    cursor: pointer;
    /*border-bottom: solid 10px #fff;*/
    overflow: hidden;
}

    .reservation.option {
        background-image: url('../assets/images/bg-pattern/bg-pattern10.png');
        background-repeat: repeat;
    }

    .reservation span {
        display: block;
    }

.week-navigation {
    margin-bottom: 20px;
}

.md-dialog-content {
    width: 600px;
}

md-dialog {
    min-width: 600px;
}

md-toolbar.md-default-theme:not(.md-menu-toolbar), md-toolbar:not(.md-menu-toolbar) {
    background-color: #00BCD4;
}


/*CUSTOM SELECT STYLE*/
select {
    font-family: inherit;
    background-color: transparent;
    width: 100%;
    padding: 4px 0;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid rgba(0,0,0, 0.12);
    width: 75px;
    color: rgba(0,0,0,0.87);
}

    /* Remove focus */
    select:focus {
        outline: none;
    }

.mdl-selectfield {
    font-family: 'Roboto','Helvetica','Arial',sans-serif;
    position: relative;
}

    .mdl-selectfield label {
        color: rgba(0,0,0,0.54);
        font-size: 11px;
    }
