/*
 * calendar
 */
.fbcourse-calendar {
	max-width: 900px;
	margin: 0 auto;
}
	.fbcourse-calendar:after {
		content:"";
		display:block;
		clear:both;
	}
	a.fc-day-grid-event {
		cursor: pointer;
	}

/*
 * overlay
 */
#fbcourse-popup {
	display: none;
	position: fixed;
	overflow: hidden;
	width: 80%;
	left: 50%;
	margin-left: -40%;
	top: 5%;
	bottom: 5%;
	padding: 0;
	background-color: #fff;
	z-index: 101;
}
	#fbcourse-popup .content {
		overflow-y: scroll;
		width: 100%;
		height: 100%;
		padding: 5% 5% 2%;
		margin: 0 auto; 
	}
	#fbcourse-popup .loader {
		background: #fff url(../img/loader.gif) no-repeat 50% 50%;
	}
	#fbcourse-popup .close {
		position: absolute;
		right: 25px;
		top: 12px;
		background-color: #666;
		color: #fff;
		font: bold 14px sans-serif;
		padding: 4px 8px 5px;
		text-align: center;
		border-radius: 5px;
		box-shadow: none;
		cursor: pointer;
	}
		#fbcourse-popup .close:hover {
			background-color: #24376a;
		}
/* show */
	body.fbcourse-overlay:after {
		content: "";
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		min-height: 100%;
		width: 100%;
		z-index: 100;
		background-color: rgba(0,0,0,0.75);
	}
	body.fbcourse-overlay #fbcourse-popup {
		display: block;
	}

/*
 * map
 */
#fbcourse-map {
	width: 100%;
	height: 400px;
	border: 1px solid #999;
}

/*
 * course details
 */
#fbcourse-details-full {
}
	#fbcourse-popup h2.entry-title {
		display: block !important; /* show only when in a modal popup */
	}
	/* - summary / booking table */
	#fbcourse-summary {
		border: 0 none;
		width: 100%;
	}
		#fbcourse-summary td {
			border: 0 none;
			vertical-align: top;
			color: #000;
		}
			#fbcourse-summary td:first-child {
				width: 20%;
			}
		#fbcourse-summary td.right {
			text-align: right;
		}
	/* - booking form */
	#fbcourse-bookingform {
	}
	#fbcourse-bookingform .error {
		color: #f00;
	}
		#fbcourse-bookingform table {
			border: 0 none;
			width: 100%;
		}
			#fbcourse-bookingform table.payment {
				table-layout: fixed;
			}
		#fbcourse-bookingform td {
			border: 0 none;
			vertical-align: top;
			color: #000;
		}
			#fbcourse-bookingform table.personal td:first-child {
				width: 20%;
			}
			#fbcourse-bookingform td.right {
				text-align: right;
			}
		#fbcourse-bookingform input[type="text"],
		#fbcourse-bookingform textarea {
			width: 99%;
			min-width: 200px;
			margin-bottom: 0;
		}
			#fbcourse-bookingform input[type="text"].small {
				width: 20% !important;
				min-width: 50px !important;
			}
			#fbcourse-bookingform input[type="text"].medium {
				width: 35% !important;
				min-width: 80px !important;
			}
		#fbcourse-bookingform textarea {
			resize: none;
			height: 110px;
		}

