body .container-fluid
{
	padding-left: 0;
	padding-right: 0;
}

.club-tag.promoted
{
	background-color: #dec560;
	color: white; 
	border-radius: 2px; 
	padding-top: 4px; 
	padding-bottom: 4px; 
	padding-left: 8px;
	padding-right: 8px;  
	font-size: 56%; 
	margin-right: 10px;
	font-family: Arial;
}

.court_slots_hidden
{
	display: none;
}

.courts_show_slots_controls
{
	display: none;
}

.courts_view_less
{
	display: none;
}

.btn-filter
{
	background-color: white;
	font-size: 12pt;
	border-radius: 0;
	border: 1px solid #ccc;
}

.search-info
{
	font-weight: bold;
	color: #777; 
	font-size: 10pt;
}

/***** Slot stuff *****/

.court-container
{
	width: 100%;
	height: 195px;
	position: relative;
	overflow-x: auto;
	overflow-y: hidden;

	padding-left: 10px;
	padding-right: 10px;
	padding-bottom:10px;

	-webkit-overflow-scrolling: touch;
}

.court-info
{
	width: 200px;
	margin-top:20px;
}

.slot-container
{
	height: 40px;
	position: absolute;
	left: 500px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.slot
{
	padding: 5px 10px;
	color: white;
	background-color: #00afd2;
	width: 70px;
	height: 40px;
	margin-left: 10px;
	margin-right: 10px;
	display: inline-block;
	float: left;
	text-align: center;
	position: relative;
	font-size: 12pt;
	cursor: pointer;
}

.slot:first-child
{
	margin-left: 0;
}

.slot.red
{
	background-color: #f0aaaa;
}

.slot.gray
{
	background-color: #e0e0e0;
}

.slot.gray:hover, .slot.gray:active
{
	color: white;
}

.slot:not(.gray):hover, .slot:not(.gray):active
{
	background-color: #00829C;
	color: white;
	text-decoration: none;
}

.slot p
{
	margin: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 14px;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

/* Extra small devices (phones, 600px and down) */
@media (max-width: 600px) 
{
	.club-container .small-container .slot
	{
		width: 60px;
		height: 34px;
	}
	
	.club-container .small-container .slot:first-child
	{
	}
}

/***** Sticky stuff *****/

.sticky-shows-me
{
	display: none;
}

.sticky 
{
	position: fixed;
	top: 56px;
	left: 0;
	right: 0;
	z-index: 901;
}

	.sticky .sticky-hides-me
	{
		display: none;
	}

	.sticky .sticky-shows-me
	{
		display: block;
	}
	
.favorite
{
	color: #ddd;
	cursor: pointer;
}
	
.favorite:hover
{
	color: #00afd2;
	cursor: pointer;
}

.favorite.favorited
{
	color: #00afd2;
}

.favorite.favorited:hover
{
	color: #00829C;
}