/* calendar */




.past-days
{
 color: #ccc;
}

.calendar-container {
    height: auto;
    width: 100%;
}
.calendar-container h1
{
    width:100%;
    text-align: center;
    height: 100px;
}
.calendar header {
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

.calendar .btn-prev,
.calendar .btn-next {
    top: 10px;
    line-height: 28px;
    font-size: 24px;
    position: absolute;
    color: #323232;
    cursor: pointer;
}

.calendar .btn-prev:hover,
.calendar .btn-next:hover {
    color: #167F09;
}

.calendar .btn-prev {
    left: 2px;
}

.calendar .btn-next {
    right: 5px;
}

.calendar table {
    width: 100%;
    margin-top: 20px;
}

.calendar thead {
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.calendar tbody {
    color: #999;
}

.calendar td {
    padding: 15px 5px;
    font-size: 18px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.calendar tbody .date-day:hover {
    cursor: pointer;
    color: #167F09;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.calendar .current-day {
    color: #f6f8f8;
    position: relative;
    cursor: pointer;
}

.calendar .current-day:hover {
    color: #f6f8f8;
}

td.current-day:after {
    content: '';
    display: block;
    width: 32px !important;
    height: 32px !important;
    background: #1A60AB;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) !important;
    -moz-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    -o-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 50%;
    z-index: -1;
}
.calendar .booked {
    color: #f6f8f8;
    position: relative;
}

.calendar .booked:hover {
    color: #fff!important;
}

td.booked:after {
    content: '';
    display: block;
    width: 32px !important;
    height: 32px !important;
    background: #358d44;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) !important;
    -moz-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    -o-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 50%;
    z-index: -1;
}
.calendar .event {
    cursor: pointer;
    position: relative;
}

td.event.active {
    color: #167F09;
}

.calendar .event:after {
    content: '';
    display: block;
    background: #167F09;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}



.bookingDetails

{
    text-align: center;
    position: absolute;
    width: 100%;
}

