/* Table */

div.calendar {
    float: left;
}

#calendar-2 {
    margin-left: 10px;
}

table.calendar {

    border-collapse: collapse;
    border-spacing: 2px;
    table-layout: fixed;
    width: 438px;
}

table.calendar th {

    border: 3px solid #ffffff;

    height: 24px;

    color: white;
    background-color: #707173;

    font-family: roboto;
    font-size: 11px;
    font-weight: bold;

    vertical-align: middle;
    text-align: center;
    text-transform: uppercase;
}

table.calendar td {

    border: 4px solid #ffffff;

    vertical-align: middle;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    font-family: roboto;
    font-size: 11px;
    font-weight: normal;
}

/* Days of another month */

table.calendar .another-month-day {
    background-color: #ebebeb;
    height: 59px;
}

/* Days of current month */

table.calendar .day {
    height: 24px;
}

table.calendar .day-number {
    padding-top: 5px;
}

table.calendar .day-content {
    background-color: #ebebeb;
    height: 35px;
}

/* Available day with price */

table.calendar .available-day {
    color: white;
    background-color: #a1bc31;
}

table.calendar .price {
    height: 15px;
    padding-top: 2px;
    font-weight: bold;
    color: #707173;
}

table.calendar .tick {
    padding: 2px 0px;
}

/* Not available day */

table.calendar .not-available-day {
    color: white;
    background-color: #be0411;
}

table.calendar .not-available-day.candidate-departure {
    background-color: #a1bc31;
}

table.calendar .not-available-day.candidate-departure + .day-content .not-available-message {
    color: #707173;
}

table.calendar .not-available-message {
    color: #be0411;
    padding: 6px 2px;
    line-height: normal;
    font-size: 8px;
}

/* Day with restriction */

table.calendar .restricted-day {
    color: white;
    background-color: #da9500;
}

table.calendar .restriction-message {
    color: #da9500;
    font-size: 8px;
}

/* Day with release */

table.calendar .day-with-release {
    color: white;
    background-color: #76aadc;
}

table.calendar .restriction-message-with-release {
    color: #76aadc;
    font-size: 8px;
}

.day-with-release-box {
    margin: 10px 0;
    border-color: #76aadc;
    background-color: #76aadc;
}

/* Closed Hotel */
table.calendar .closed-hotel {
    background-color: #c3c3c3;
}

table.calendar .closed-hotel + .no-available .not-available-message {
    color: #6a6767;
}

/* Day selection */

.available {
    cursor: pointer;
}

.no-available {
    cursor: auto;
}

.selected-cell {
    background: #f6eb61 !important;
    color: black !important;
}

.disabled-cell {
}

.candidate-cell {
}

@media (max-width: 1000px) {
    .fancybox-inner table.calendar {
        width: 428px;
    }
}