
/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
	border-radius: 5px; 
	border: 2px solid #000;
	background: #4c4c4c;
	color: #fff;
}

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
	font-size: 13px;
	line-height: 16px;
	padding: 8px 10px;
	overflow: hidden;
}

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
	/* border-color: ... !important; */
}


/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
	cursor: help;
	margin-left: 4px;
}

/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
	padding: 0;
	font-size: 0;
	line-height: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9999999;
	pointer-events: none;
	width: auto;
	overflow: visible;
}
.tooltipster-base .tooltipster-content {
	overflow: hidden;
}


/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
	display: block;
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
	display: block;
	width: 0; 
	height: 0;
	position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-top: 8px solid;
	bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-top: 9px solid;
	bottom: -7px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-bottom: 8px solid;
	top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-bottom: 9px solid;
	top: -7px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
	left: 0;
	right: 0;
	margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
	left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	left: 5px;
}
.tooltipster-arrow-top-right span,  .tooltipster-arrow-bottom-right span {
	right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
	right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-left: 8px solid;
	top: 50%;
	margin-top: -7px;
	right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-left: 9px solid;
	margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-right: 8px solid;
	top: 50%;
	margin-top: -7px;
	left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-right: 9px solid;
	margin-top: -8px;
}


/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade-show {
	opacity: 1;
}

.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
	top: 0;
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0px !important;
	opacity: 0;
}

.tooltipster-slide {
	left: -40px;
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0px !important;
	opacity: 0;
}


/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
	opacity: 0.5;
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

.pj-calendar .btn-primary,
.pj-calendar-day p { -webkit-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; }

.pj-calendar-head,
.pj-calendar-views,
.pj-calendar-actions,
.pj-calendar-body { *zoom: 1; }

.pj-calendar-head:after,
.pj-calendar-views:after,
.pj-calendar-actions:after,
.pj-calendar-body:after { content: ''; clear: both; display: table; }

.pj-calendar { }

.pj-calendar-day-header,
.pj-calendar-day { width: 14.285714285714286%; float: left; float: left; text-align: center;}

.pj-calendar-head.pj-calendar-8-columns .pj-calendar-day-header{width: 12.5%;}
.pj-calendar-body.pj-calendar-8-columns .pj-calendar-day{width: 12.5%;}

.pj-calendar-head p,
.pj-calendar-day p { margin: 0; padding: 32% 0; font-size: 15px; position: relative;}

.pj-calendar-day { }
.pj-calendar-day p:hover { }
.pj-calendar-day p { margin: 0 1px 1px 0; cursor: pointer; }

.pj-calendar-body { margin-left: 1px; }

.pj-calendar-head {border-bottom: 1px solid #ccc; border-top: 1px solid #ccc; margin-bottom: 1px;}
.pj-calendar-head p { font-weight: bold; padding: 10% 0;}

.pj-calendar-day-selected p {}
.pj-calendar-day-selected p:hover {}

.pj-calendar-day-today p {}
.pj-calendar-day-today p:hover {}

.pj-calendar-day-disabled p:hover,
.pj-calendar-day-disabled p { background: transparent; cursor: default;}

.pj-calendar-day-past p:hover,
.pj-calendar-day-past p { cursor: not-allowed;}

.pj-calendar-day-inactive p:hover,
.pj-calendar-day-inactive p { cursor: not-allowed;}

.pj-calendar-actions { position: relative; padding: 10px;}
.pj-calendar-actions .btn { position: relative; z-index: 2; }

.pj-calendar-ym { position: absolute; top: 9px; left: 0; width: 100%; z-index: 1; text-align: center; font-weight: bold; font-size: 21px;}

.pj-calendar-views { padding: 10px 10px 0;}
.pj-calendar-views .btn-primary { font-size: 15px;}

@media (max-width: 420px) {
	.pj-calendar-head p,
	.pj-calendar-day p { padding: 22% 0; }
	
	.pj-calendar-cell p,
	.pj-calendar-head p { font-size: 14px; }

	.pj-calendar-cell { padding-left: 0; padding-right: 0; }
}
/* ==========================================================================
	#New Styles
========================================================================== */
#pjWrapperEBCalendar_theme1 .pjEbcEventDate { margin: 0; font-size: 13px; font-weight: 700; }
#pjWrapperEBCalendar_theme1 .pjEbcEventTitle { margin: 0; font-size: 22px; }
#pjWrapperEBCalendar_theme1 .pjEbcEventAddress { margin: 0; font-size:inherit;font-style:italic;font-weight:600 }
#pjWrapperEBCalendar_theme1 .pjEbcEventCategory { margin: 0; font-size: 12px;}
#pjWrapperEBCalendar_theme1 .pjCalTable .pjEbcEventCategory {margin-bottom: 5px;}

#pjWrapperEBCalendar_theme1 .pjEbcAvailTickets { margin-left: 5px; }

#pjWrapperEBCalendar_theme1 .pjEbcCloseEvent { padding-top: 8px; padding-bottom: 5px; }
#pjWrapperEBCalendar_theme1 .pjEbcError { color: #a94442 !important; }

#pjWrapperEBCalendar_theme1 .pjEbcBookingForm { padding: 15px; }
#pjWrapperEBCalendar_theme1 .pjEbcBookingForm .pjEbcFormHeader { padding-top: 10px; }
#pjWrapperEBCalendar_theme1 .pjEbcBookingForm .pjEbcFormHeader .datetime { padding: 10px 0 10px; font-size: 18px; font-weight: 700; text-transform: uppercase; }
#pjWrapperEBCalendar_theme1 .pjEbcBookingForm label { font-weight: 400; }
#pjWrapperEBCalendar_theme1 .pjEbcBookingForm .pjEbcEventContent label,
#pjWrapperEBCalendar_theme1 .pjEbcBookingForm .pjEbcEventContent span { display: block; padding: 0 10px; }
#pjWrapperEBCalendar_theme1 .pjEbcBookingForm .pjEbcEventContent label { font-size: 22px; line-height: 1.2; font-weight: 400; }
#pjWrapperEBCalendar_theme1 .pjEbcCaptcha .input-group-addon { padding: 0; }
#pjWrapperEBCalendar_theme1 .pjEbcCaptcha img { height: 32px; border-radius: 0 4px 4px 0; }
#pjWrapperEBCalendar_theme1 select.form-control { cursor: pointer; }
#pjWrapperEBCalendar_theme1 .pjEbcBookingForm .pjEbcActions { padding-left: 170px; }
#pjWrapperEBCalendar_theme1 .pjEbcBookingForm .form-group { position: relative; padding: 0 10px; }
#pjWrapperEBCalendar_theme1 .pjEbcBookingForm .form-group .pjEbcError ~ em { position: absolute; bottom: -16px; left: 10px; overflow: hidden; max-width: 100%; font-size: 12px; white-space: nowrap; -ms-text-overflow: ellipsis; text-overflow: ellipsis; }
#pjWrapperEBCalendar_theme1 .pjEbcBookingForm .pjEbcFormBody dt { text-align: left; }
#pjWrapperEBCalendar_theme1 .pjEbcBookingForm .btn-primary { margin: 0 5px; }

.pjCalInner { max-width: 100%; }

.pjCalDay { display: none; }

#pjWrapperEBCalendar_theme1 > .container-fluid { padding-left: 0; padding-right: 0; }  
#pjWrapperEBCalendar_theme1 .pjCalMonths th { padding: 0; }
#pjWrapperEBCalendar_theme1 .pjCalMonths th a { padding: 5px; display: block; }
#pjWrapperEBCalendar_theme1 .pjCalMonths th .active { background: #333; color: #fff; }
#pjWrapperEBCalendar_theme1 .pjCalMonths th .active:hover { text-decoration: none; cursor: default; }

/* ==========================================================================
	#pjIcCalendar
========================================================================== */
#pjWrapperEBCalendar_theme1 .pjIcCalendar { min-width: 290px; margin-top: 10px; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarHead { position: relative; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarHead .pjIcCalendarBtn { position: absolute; top: 0; height: 100%; width: 26px; text-align: center; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarHead .pjIcCalendarBtn:hover { text-decoration: none; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarHead .pjIcCalendarBtn * { display: inline-block; vertical-align: middle; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarHead .pjIcCalendarBtnPrev { left: 0; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarHead .pjIcCalendarBtnNext { right: 0; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarHead .pjIcCalendarBtn:before { display: inline-block; height: 100%; margin-right: -0.025em; vertical-align: middle; content: ""; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarCurrent { margin: 0; padding: 0 10px; font-size: 30px; padding-bottom: 20px; line-height: 1.2; text-transform: capitalize; text-align: center; font-weight: normal; display: inline-block; margin: 0 auto; }

/* ==========================================================================
	#pjIcCalendarTable
========================================================================== */
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable th,
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td { width: 14.29%; text-align: center;  }
#pjWrapperEBCalendar_theme1 .pjIcCalendarTableWeek th,
#pjWrapperEBCalendar_theme1 .pjIcCalendarTableWeek td { width: 13.5%; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarTableWeek th:first-child,
#pjWrapperEBCalendar_theme1 .pjIcCalendarTableWeek td:first-child { width: 5.5%; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarTableDay th:first-child,
#pjWrapperEBCalendar_theme1 .pjIcCalendarTableDay td:first-child { width: 5.5%; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarTableDay th,
#pjWrapperEBCalendar_theme1 .pjIcCalendarTableDay td { width: auto; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarTableDay td p { text-align: left; margin-bottom: 0;}  
#pjWrapperEBCalendar_theme1 .pjIcCalendarTableDay td p + p { margin-top: 5px;}  
#pjWrapperEBCalendar_theme1 .pjIcCalendarTableDay td:before,
#pjWrapperEBCalendar_theme1 .pjIcCalendarTableDay td:after { display: none; position: absolute; top: 0; left: 0; height: 0; width: 0; overflow: hidden; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable th { text-transform: capitalize; border-bottom: 0;}
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td { cursor: not-allowed; vertical-align: middle;}
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td.pjIcMonthAlt { background: #f3f5f4; color: #ccc; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td:hover { background: #7d8381; color: #fff; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td.pjIcDayToday { background: #ffdb99; color: #333; font-weight: bold; cursor: pointer; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td.pjIcDayToday:hover { background: #ffcd70; color: #000; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td.pjIcDayDisabled { cursor: pointer; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td.pjIcDayInactive { background: #d21e1d; color: #fff; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td.pjIcDayInactive:hover { background: #d21e1d; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td.pjIcDayTaken { background: #073163; color: #fff; cursor: pointer; }
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td.pjIcDayTaken:hover { background: #073163; }
#pjWrapperEBCalendar_theme1 .pjCalTable .no-events td { cursor: not-allowed; }
#pjWrapperEBCalendar_theme1 .pjCalTable .pjEbcEventDesc{ margin-bottom: 8px;overflow: hidden;}
#pjWrapperEBCalendar_theme1 .pjCalTable .pjEbcEventDesc img{display: block; float: left; margin-right: 8px;}

#pjWrapperEBCalendar_theme1 .pjCalTable td.day-num{width: 35px; text-align: center;}
#pjWrapperEBCalendar_theme1 .pjCalTable td.day-week{width: 100px;}
#pjWrapperEBCalendar_theme1 .pjCalTable td.start-time{width: 85px; text-align: center;}
/* #pjWrapperEBCalendar_theme1 .pjCalTable td:nth-child(1) { width: 28px; text-align: center; }
#pjWrapperEBCalendar_theme1 .pjCalTable td:nth-child(2) { width: 85px; } */

#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td.pjIcDayChosen,
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td.pjIcDayChosen:hover,
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td.pjIcDayToday.pjIcDayChosen:hover { background: #12965d; color: #fff; font-weight: bold; cursor: pointer; }

#pjWrapperEBCalendar_theme1 .pjCalHeading { margin-top: 10px; }

#pjWrapperEBCalendar_theme1 .pjPecEventContainer .thumbnail { position: relative; padding: 0px; background: none; border: none; border-bottom: 1px solid #ddd; margin-bottom: 0px; padding-bottom: 20px;}
#pjWrapperEBCalendar_theme1 .pjPecEventContainer .thumbnail:last-child{border-bottom: none;} 
#pjWrapperEBCalendar_theme1 .pjPecEventContainer .pjPecCloseEvent { position: absolute; top: 24px; right: 18px; }
#pjWrapperEBCalendar_theme1 .pjPecEventContainer .thumbnail .pjEbcEventDesc{}
#pjWrapperEBCalendar_theme1 .pjPecEventContainer .thumbnail .pjEbcEventDesc img{ display: block; float: left; margin-right: 12px; }

#pjWrapperEBCalendar_theme1 .pjIcCalendarHead .pull-left,
#pjWrapperEBCalendar_theme1 .pjIcCalendarHead .pull-right,
#pjWrapperEBCalendar_theme1 .pjCalHeading .btn { margin-top: 5px; }

#pjWrapperEBCalendar_theme1 .pjCalButtons { padding: 5px 0 15px; }

#pjWrapperEBCalendar_theme1 .caret { margin-left: 2px; }

.asd { width: 50px; background: red; height: 50px; }

#pjWrapperEBCalendar_theme1 .pjEbcDetailsWrapper{overflow: hidden;}
#pjWrapperEBCalendar_theme1 .pjEbcBackToCalendar{display: block; }
/* ==========================================================================
	#Map
========================================================================== */
#pjWrapperEBCalendar_theme1 .pjPecMapCanvas{display: none; margin-bottom: 12px; margin-top: 6px; width: 100%; height: 180px;}

#pjWrapperEBCalendar_theme1 .pjPecEventContainer{background: #fbfbfb;}
/* ==========================================================================
	#Tooltip
========================================================================== */
.pj-calendar-tooltip {display: none;}
.tooltipster-default .pj-calendar-tooltip{display: block;}
.tooltipster-default { border-radius: 3px; border: 1px solid #222; background: #444; }

.tooltipster-default p { padding: 0; margin: 0; }
.tooltipster-default p + p { padding-top: 7px; }

#pjWrapperEBCalendar_theme1 .pjEbcTermWrapper{
	overflow: auto;
	-ms-overflow-x: hidden;
	overflow-x:hidden;
	max-height: 200px;
}

/* ==========================================================================
	#Css For Calendar Component
========================================================================== */
.btn-primary,
.pj-calendar-tooltip,
.pj-calendar-day p { -webkit-transition: all 0.2s; -o-transition: all 0.2s; transition: all 0.2s; }

.pj-calendar-tooltip-view { -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; }

.panel-footer,
.pj-calendar-head,
.pj-calendar-views,
.pj-calendar-footer,
.pj-calendar-actions,
.tooltip-view-table li,
.pj-calendar-tooltip ul li,
.pj-calendar-booking-summary li,
.pj-calendar-body { *zoom: 1; }

.panel-footer:after,
.pj-calendar-head:after,
.pj-calendar-views:after,
.pj-calendar-footer:after,
.pj-calendar-actions:after,
.tooltip-view-table li:after,
.pj-calendar-tooltip ul li:after,
.pj-calendar-booking-summary li:after,
.pj-calendar-body:after { content: ''; clear: both; display: table; }

.pj-calendar { border: 1px solid #ccc; position: relative; overflow: hidden;}

.pj-calendar-day-header,
.pj-calendar-day { width: 14.285714285714286%; float: left; text-align: center;}
.pj-calendar-head p,
.pj-calendar-day p { margin: 0; padding: 32% 0; font-size: 15px; }

.pj-calendar-day { background: #f7f7f7; }
.pj-calendar-day p:hover { background-color: #1b6aac; color: #fff; }
.pj-calendar-day p { margin: 0 1px 1px 0; cursor: pointer; background: #fff; }

.pj-calendar-body { padding-left: 1px; padding-top: 1px; position: relative;}

.pj-calendar-head { background: #f8f8f8; border-bottom: 1px solid #ccc; border-top: 1px solid #ccc; }
.pj-calendar-head p { font-weight: bold; padding: 10% 0;}

.pj-calendar-day-selected p { background: #12965d; color: #fff; }
.pj-calendar-day-selected p:hover { background: #128956;}

.pj-calendar-day-today p { background: #ffdb99; color: #333; }
.pj-calendar-day-today p:hover { background: #f1ce8d; color: #333;}

.pj-calendar-day-disabled p:hover,
.pj-calendar-day-disabled p { background: transparent; cursor: default;}

.pj-calendar-day-past p:hover,
.pj-calendar-day-past p { background: #dde4e6; cursor: not-allowed; color: #333;}

.pj-calendar-day-inactive p:hover,
.pj-calendar-day-inactive p { background: #d21e1d; cursor: not-allowed; color: #fff;}

.pj-calendar-actions { position: relative; padding: 10px;}
.pj-calendar-actions .btn { position: relative; z-index: 2; }

.pj-calendar-ym { position: absolute; top: 9px; left: 0; width: 100%; z-index: 1; text-align: center; font-weight: bold; font-size: 21px;}
.pj-calendar-d { font-size: 21px; font-weight: bold; text-align: center; }

.pj-calendar-views { padding: 10px; background: #f8f8f8; border-bottom: 1px solid #ccc; }
.pj-calendar-views .btn-primary { font-size: 15px;}

.pj-calendar-head2 .pj-calendar-day-header{ width: 12.5%; float: left; text-align: center;}
.pj-calendar-column{width: 12.5%; float: left; }
.pj-calendar-cell{text-align: center;}

.pj-calendar-cell { padding: 10px 5px; min-height: 49px; background: #fff;}
.pj-calendar-cell p { padding: 3px 0 0; font-size: 15px; margin: 0; }

.pj-calendar-cell label {display: block; margin: 0; }
.pj-calendar-cell .booked-btn { margin: 3px 0 -3px; display: inline-block; }

.pj-calendar-column:nth-child(2n+1) .pj-calendar-cell { background: #f7f7f7; }
.pj-calendar-cell label.pjTsWeeklyIconSelected span{ background-position: 0 -24px;}
.pj-calendar-column .pj-calendar-rowspan{height: 100%; text-align: center; display: table-cell; vertical-align: middle;}

#pjWrapperEBCalendar_theme1 .pjEbcEventCell p,
#pjWrapperEBCalendar_theme1 .pjEbcEventCell p:hover{
	background: #12965d none repeat scroll 0 0 !important;
    color: #fff !important;
    cursor: pointer;
    font-weight: bold;
}
/* ==========================================================================
	#Dropdown Toggle
========================================================================== */
#pjWrapperEBCalendar_theme1 .btn-default .pjIcDropdownInner { display: inline-block; overflow: hidden; max-width: 120px; margin-right: 5px; vertical-align: middle; }

@media (max-width: 640px) {
	#pjWrapperEBCalendar_theme1 .pjCalInner img { width: 100%; display: block; height: auto; }

	#pjWrapperEBCalendar_theme1 .pjCalHidden,
	#pjWrapperEBCalendar_theme1 .pjCalMonths { display: none; }

	#pjWrapperEBCalendar_theme1 .pjCalTable td,
	#pjWrapperEBCalendar_theme1 .pjCalTable { border: 0!important; }
	#pjWrapperEBCalendar_theme1 .pjCalTable td:nth-child(2),
	#pjWrapperEBCalendar_theme1 .pjCalTable td:first-child { padding-left: 2px!important; padding-right: 2px!important; font-style: italic; }

	#pjWrapperEBCalendar_theme1 .pjCalDay { display: block; }

	#pjWrapperEBCalendar_theme1 .pjCalTable tr { border-bottom: 1px solid #ccc!important; }
}

@media (max-width: 580px) {
	#pjWrapperEBCalendar_theme1 .pjIcCalendarHead .pjIcCalendarCurrent { padding-top: 5px; font-size: 24px; text-align: center; }
	
	#pjWrapperEBCalendar_theme1 .pjIcCalendarTableWeek th,
	#pjWrapperEBCalendar_theme1 .pjIcCalendarTableWeek td { padding: 2px; }

	#pjWrapperEBCalendar_theme1 .pjEbcBookingForm .pjEbcActions { padding-left: 0; }
}
/**theme1**/
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTegdm0LZdjqr5-oayXSOefg.woff2) format('woff2'), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTXhCUOGz7vYGh680lGh-uXM.woff) format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3VtXRa8TVwTICgirnJhmVJw.woff2) format('woff2'), url(https://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSugdm0LZdjqr5-oayXSOefg.woff2) format('woff2'), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSnhCUOGz7vYGh680lGh-uXM.woff) format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzOgdm0LZdjqr5-oayXSOefg.woff2) format('woff2'), url(https://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzHhCUOGz7vYGh680lGh-uXM.woff) format('woff');
}

body #pjWrapperEBCalendar_theme1 { /*background: #f7f7f7;*/ font-family: 'Open Sans', sans-serif;}

#pjWrapperEBCalendar_theme1 .pjEbcEventTitle,
#pjWrapperEBCalendar_theme1 .pjEbcEventCategory,
#pjWrapperEBCalendar_theme1 .pjEbcBookingForm .pjEbcFormHeader .datetime span,
#pjWrapperEBCalendar_theme1 .pjEbcBookingForm .pjEbcEventContent label { color: #55ad32;font-weight:600;padding-top:10px;padding-bottom:10px }

#pjWrapperEBCalendar_theme1 .form-control:focus { border-color: #1b6aac; -webkit-box-shadow: 0 0 10px rgba(27, 106, 172, .3); box-shadow: 0 0 10px rgba(27, 106, 172, .3); }

#pjWrapperEBCalendar_theme1 .btn {
	border-color: #1b6aac; color: #fff; 
	background: rgb(64,152,226);
	background: -moz-linear-gradient(top,  rgba(64,152,226,1) 0%, rgba(53,140,217,1) 60%, rgba(52,140,212,1) 67%, rgba(50,137,214,1) 77%, rgba(47,135,209,1) 97%, rgba(44,134,210,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(64,152,226,1)), color-stop(60%,rgba(53,140,217,1)), color-stop(67%,rgba(52,140,212,1)), color-stop(77%,rgba(50,137,214,1)), color-stop(97%,rgba(47,135,209,1)), color-stop(100%,rgba(44,134,210,1)));
	background: -webkit-linear-gradient(top,  rgba(64,152,226,1) 0%,rgba(53,140,217,1) 60%,rgba(52,140,212,1) 67%,rgba(50,137,214,1) 77%,rgba(47,135,209,1) 97%,rgba(44,134,210,1) 100%);
	background: -o-linear-gradient(top,  rgba(64,152,226,1) 0%,rgba(53,140,217,1) 60%,rgba(52,140,212,1) 67%,rgba(50,137,214,1) 77%,rgba(47,135,209,1) 97%,rgba(44,134,210,1) 100%);
	background: -ms-linear-gradient(top,  rgba(64,152,226,1) 0%,rgba(53,140,217,1) 60%,rgba(52,140,212,1) 67%,rgba(50,137,214,1) 77%,rgba(47,135,209,1) 97%,rgba(44,134,210,1) 100%);
	background: linear-gradient(to bottom,  rgba(64,152,226,1) 0%,rgba(53,140,217,1) 60%,rgba(52,140,212,1) 67%,rgba(50,137,214,1) 77%,rgba(47,135,209,1) 97%,rgba(44,134,210,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4098e2', endColorstr='#2c86d2',GradientType=0 );
	text-shadow: 0 0 0 #000;
}

#pjWrapperEBCalendar_theme1 .pjIcCalendarTable { background: #fff; }

#pjWrapperEBCalendar_theme1 .btn.active,
#pjWrapperEBCalendar_theme1 .btn:hover {
	 border-color: #1b6aac; color: #fff; 
	background: rgb(44,134,210);
	background: -moz-linear-gradient(top,  rgba(44,134,210,1) 0%, rgba(47,135,209,1) 3%, rgba(50,137,214,1) 23%, rgba(52,140,212,1) 33%, rgba(53,140,217,1) 40%, rgba(64,152,226,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(44,134,210,1)), color-stop(3%,rgba(47,135,209,1)), color-stop(23%,rgba(50,137,214,1)), color-stop(33%,rgba(52,140,212,1)), color-stop(40%,rgba(53,140,217,1)), color-stop(100%,rgba(64,152,226,1)));
	background: -webkit-linear-gradient(top,  rgba(44,134,210,1) 0%,rgba(47,135,209,1) 3%,rgba(50,137,214,1) 23%,rgba(52,140,212,1) 33%,rgba(53,140,217,1) 40%,rgba(64,152,226,1) 100%);
	background: -o-linear-gradient(top,  rgba(44,134,210,1) 0%,rgba(47,135,209,1) 3%,rgba(50,137,214,1) 23%,rgba(52,140,212,1) 33%,rgba(53,140,217,1) 40%,rgba(64,152,226,1) 100%);
	background: -ms-linear-gradient(top,  rgba(44,134,210,1) 0%,rgba(47,135,209,1) 3%,rgba(50,137,214,1) 23%,rgba(52,140,212,1) 33%,rgba(53,140,217,1) 40%,rgba(64,152,226,1) 100%);
	background: linear-gradient(to bottom,  rgba(44,134,210,1) 0%,rgba(47,135,209,1) 3%,rgba(50,137,214,1) 23%,rgba(52,140,212,1) 33%,rgba(53,140,217,1) 40%,rgba(64,152,226,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c86d2', endColorstr='#4098e2',GradientType=0 );
	text-shadow: 0 0 0 #000;
}

#pjWrapperEBCalendar_theme1 a { color: #2e86d0; } 

#pjWrapperEBCalendar_theme1 .pj-calendar-day { background: #ececec; }
#pjWrapperEBCalendar_theme1 .thumbnail,
#pjWrapperEBCalendar_theme1 .pjCalTable,
#pjWrapperEBCalendar_theme1 .pjCalMonths table,
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td,
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable,
#pjWrapperEBCalendar_theme1 .pj-calendar-head,
#pjWrapperEBCalendar_theme1 .pj-calendar-body,
#pjWrapperEBCalendar_theme1 .pj-calendar-day p { background: #f7f7f7; }
#pjWrapperEBCalendar_theme1 .pj-calendar-head { border-color: #333; }
#pjWrapperEBCalendar_theme1 .pj-calendar-day-header,
#pjWrapperEBCalendar_theme1 .pj-calendar-day p,
#pjWrapperEBCalendar_theme1 .pj-calendar-day:hover p { color: #333; }
#pjWrapperEBCalendar_theme1 .pj-calendar-day-today p { background: #2e86d0; color: #fff; }
#pjWrapperEBCalendar_theme1 .pj-calendar-day-today p:hover { background: #55ad32; color: #fff; }
#pjWrapperEBCalendar_theme1 .pj-calendar-day-past { background: #f7f7f7; }
#pjWrapperEBCalendar_theme1 .pjEbcEventCell p { background: #55ad32 !important; }
#pjWrapperEBCalendar_theme1 .pjEbcEventCell p:hover { background: #2e86d0 !important; }

#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td.pjIcMonthAlt:hover,
#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td.pjIcMonthAlt,
#pjWrapperEBCalendar_theme1 .pj-calendar-day-past p { background: #ececec; }

#pjWrapperEBCalendar_theme1 .pjCalMonths th .active { background: #2e86d0; }

#pjWrapperEBCalendar_theme1 .pjIcCalendarTable td:hover { background: #1b6aac; }

#pjWrapperEBCalendar_theme1 h2,
#pjWrapperEBCalendar_theme1 .thumbnail strong { color: #55ad32; }
