@charset "UTF-8";

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */

.pika-single {
	z-index: 9999;
	display: block;
	position: relative;
	color: #333;
	font-family: inherit;
        width:100%
}
/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
    content: " ";
    display: table;
}
.pika-single:after { clear: both }

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
}

.pika-lendar {
	width: 100%;
	margin: 8px;
}

.pika-title {
	position: relative;
	margin: 0 10px 20px;
}

.pika-label {
	position: relative;
	z-index: 9999;
	overflow: hidden;
	margin: 0;
	padding: 5px 3px;
	font-size: 14px;
	line-height: 20px;
	font-weight: bold;
	float: left;
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    opacity: 0;
}


.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}
.pika-prev.is-disabled:hover,
.pika-next.is-disabled:hover {
    background: none !important;
    outline: none !important;
}

.pika-select {
    display: inline-block;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

.pika-table th, .pika-table td {
	width: 14.285714285714286%;
	height: 49px;
	text-align: center;
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.pika-button {
	cursor: pointer;
	display: block;
	box-sizing: border-box;
	outline: none;
	border: 0;
	margin: auto;
	width: 32px;
        height:32px;
	padding: 8px;
	color: #000;
	font-size: 12px;
	line-height: 15px;
	text-align: center;
        background:none;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-today .pika-button {
}

.has-event .pika-button, .available.pika-button {
	color: #000;
	border-radius: 50%;
	/* border: 1px solid #cccccc; */
	font-weight: bold;
	background-color: #eaeaea;
	color: #000;
}

.has-event .pika-button {
    background: #005da9;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
    background: none;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    border-radius: 3px;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #000;
    opacity: .3;
}

.is-outside-current-month .pika-button {
    opacity: .3;
}

.is-selection-disabled {
    pointer-events: none;
    cursor: default;
}

td:not(.is-selected) .pika-button.available:hover {
	background: #ddd;
	border-radius: 30px;
}

/* styling for abbr */
.pika-table abbr {
	border-bottom: none;
	cursor: help;
	font-weight: bold;
	color: #000;
}

.waitlisted-only {
	border-bottom: 1px solid #000 !important;
	background: #fff !important;
	cursor: pointer;
	color: #000 !important;
	border-radius: 0;
	padding: 0 !important;
	width: 15px;
}
.is-selected .pika-button {
	color: #fff !important;
	background: #4a89dc !important;
	width: 30px;
}
.event-today-legend {
	background: #4a89dc;
	border: 1px solid #4a89dc;
	height: 14px !important;
	width: 14px !important;
}
.legend-dot {
	display: inline-block;
	height: 11px;
	width: 11px;
	float: left;
	margin: 4px 5px 0 0;
	padding: 0;
	cursor: default;
}
.legend-dot.waitlisted-only {
	padding: 4px;
}
.event-today-legend.waitlisted-only {
    cursor:default;
    height: 11px !important;
    width: 11px !important;
    padding:0;
    border-radius:50%
}