/* @group reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, menu, nav, header, footer {
	color: #333;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

body {
	line-height: 1;
	color: black;
	background: white;
}

body.fixed-bg {
	background-attachment: fixed;
}

ol, ul {
	list-style: none;
}

@media (min-width: 1025px) {
	html {
		margin-left: calc(100vw - 100%);
		margin-right: 0;
	}
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}

caption, th, td {
	text-align: left;
	font-weight: normal;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

/* @end */

/* @group common */

html, body {
	height: 100%
}

p {
	margin-bottom: 10px;
}

a {
	color: #369cf7;
	text-decoration: none;
}

.hover a:not(.disabled):hover {
	cursor: pointer;
}

section {
	margin-top: 20px;
}

/* @end */

.container {
	background: #fff;
	min-height: 100%;
}

.clear {
	clear: both;
	height: 0px;
	line-height: 0px;
	font-size: 0px;
}

/* Latest and simplest version of the clearfix hack */
.group:after {
	content: "";
	display: table;
	clear: both;
}

.dimmed {
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: 2000;
}

.logged-in-admin {
	display: none;
	position: fixed;
	bottom: 0px;
	right: 0px;
	left: 0px;
	height: 100px;
	background: rgba(250, 200, 15, 0.8);
	z-index: 1000;
	text-align: center;
	line-height: 50px;
	pointer-events: none;
}

.logged-in-admin p {
	font-size: 16px;
	color: rgba(30, 30, 30, 0.8);
	font-weight: 200;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 30px;
	line-height: 30px;
	padding-bottom: 20px;
}

.logged-in-admin i {
	color: rgba(30, 30, 30, 0.8);
	font-size: 30px;
	display: block;
	padding-top: 20px;
	height: 30px;
	line-height: 30px;
}

.admin-login-active .logged-in-admin {
	display: block;
}

.admin-login-active .container {
	margin-bottom: 105px;
}

.admin-login-active .footer-wrapper {
	bottom: 105px;
}

#content {
	position: relative;
}

.bg-padding /* This is used to prevent background from popping up on iPhone's elastic scrolling effect. */
{
	position: fixed;
	width: 100%;
	height: 300px;
	z-index: -1;
}

/* Used for cutting overflowing text. */
.crop {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.description {
	text-align: left;
}

.description p {
	line-height: normal;
	overflow: hidden;
	text-overflow: ellipsis;
}

.description .portrait {
	width: 200px;
	height: 200px;
	margin: 20px auto;
	display: block;
	border-radius: 8px;
}

.header-top {
	height: 40px; /*HEADER HEIGHT*/
}

.header-image {
	overflow: hidden;
}

.header-image img {
	display: block;
	width: 100%;
	position: relative;
}

.header {
	height: 40px; /*HEADER HEIGHT*/
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 200;
}

.header h1 {
	font-size: 22px;
	line-height: 40px; /*HEADER HEIGHT*/
	height: 40px; /*HEADER HEIGHT*/
	padding-left: 10px;
	padding-right: 36px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header h1,
.header h1 a {
	font-size: 22px;
	color: #fff;
	font-weight: 100;
}

.header .menu-toggle {
	position: absolute;
	height: 40px; /*HEADER HEIGHT*/
	top: 0px;
	right: 0px;
	padding: 0px 10px;
	display: none;
}

.header a .fa {
	font-size: 26px;
	display: block;
	line-height: 40px;
	font-weight: 100;
}

.header .menu {
	height: 40px; /*HEADER HEIGHT*/
	position: absolute;
	right: 0px;
	top: 0px;
}

.header .menu li, .header .menu li a {
	float: left;
	display: block;
}

.header .menu li a {
	height: 40px; /*HEADER HEIGHT*/
	line-height: 40px; /*HEADER HEIGHT*/
	font-size: 15px;
	padding: 0px 10px;
}

.header a {
	transition: all 0.2s ease-in-out;
	color: #fff;
	font-weight: 200;
}

.hover .header a:hover {
	cursor: pointer;
}

#menu-my-account, #menu-my-bookings, #menu-profile, #menu-register, #menu-signin, #menu-signout, #menu-prepaids {
	display: none;
}

@media (min-width: 1024px) {
	.header,
	.bg-padding {
		width: 1024px;
	}

	.container {
		width: 1024px;
		margin: 0px auto;
		box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.8);
	}
}

@media (max-width: 675px) {
	.header .menu {
		position: absolute;
		left: 0px;
		height: auto;
		top: -500px;
		transition: top 0.1s ease-in-out;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	}

	.header .menu.open {
		top: 50px;
	}

	.header .menu li,
	.header .menu li a {
		float: none;
		display: block;
	}

	.header .menu li a {
		font-size: 17px;
		color: #fff;
		font-weight: 300;
		margin-top: 0px;
		margin-right: 10px;
		margin-left: 10px;
		padding-left: 0px;
		padding-right: 0px;
		margin-bottom: 0px;
		border-top: 1px solid rgba(255, 255, 255, 0.05);
	}

	.header .menu-toggle {
		display: block;
	}

	/*HEADER HEIGHT*/
	.header-top,
	.header,
	.header .menu-toggle {
		height: 50px;
	}

	.header h1 {
		line-height: 50px;
		height: 50px;
		position: relative;
		z-index: 1;
	}

	.header .menu-toggle {
		z-index: 2;
	}

	.header .menu-toggle span {
		display: inline-block;
		color: inherit;
		max-width: 80px;
		text-align: right;
		padding-right: 8px;
		line-height: 18px;
	}

	.header .menu-toggle .fa {
		display: inline-block;
	}

	.header .menu li a {
		height: 50px;
		line-height: 50px;
		display: block;
	}

	.header .menu li a.hidden {
		display: none
	}

	.header a .fa {
		line-height: 50px;
	}

}

#menu-language {
	padding-top: 4px;
}

#menu-language img {
	width: 30px;
	border-radius: 2px;
	transition: opacity 0.2s ease-in-out;
}

.hover #menu-language:hover img {
	opacity: 0.8;
}

.language-select img {
	width: 30px;
	position: absolute;
	left: 16px;
	top: 14px;
	box-shadow: 0 1px 6px 0px rgba(0, 0, 0, 0.3);
	border-radius: 2px;
}

/* @group footer */
.footer-wrapper {
	display: none;
	bottom: 0px;
	height: 0px;
	max-width: 1024px;
	margin: 0px auto;
	position: relative;
}

.footer {
	position: absolute;
	left: 10px;
	height: 40px;
	right: 10px;
	top: -40px;
	line-height: 40px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 30%;
}

.footer a {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-right: 10px;
	color: rgba(0, 0, 0, 0.5);
	font-weight: 200;
	font-size: 12px;
	transition: all 0.2s ease-in-out;
}

.footer a span {
	color: inherit;
	font-size: inherit;
}

.footer a.copy {
	position: absolute;
	right: 10px;
	margin-right: 0px;
	text-align: right;
}

.footer .like {
	position: absolute;
	right: 0;
	top: 10px;
	width: 100px;
}

@media (max-width: 675px) {

	.footer a {
		font-size: 11px;
	}

	.footer a span {
		display: none;
	}

}

@media (max-width: 370px) {

	.footer {
		height: 56px;
		top: -56px;
	}

	.footer a.copy {
		left: 0;
		top: 18px;
		text-align: left;
		width: 100%;
	}

}

.hover .footer a:hover {
	cursor: pointer;
}

/* @end */
/* @group view-header */
.view-header {
	min-height: 40px;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	background: #fafafa;
}

.view-header.sticky {
	position: fixed;
	top: 40px;
	width: 100%;
	z-index: 100;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
	.view-header.sticky {
		width: 1024px;
	}
}

@media (max-width: 675px) {

	.view-header.is-sticky {
		transform: translate3d(0px, 0px, 0px);
	}

	.view-header.sticky {
		top: 50px;
	}
}

.view .view-header h1 {
	font-size: 20px;
	color: #333;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 10px;
	margin: 0 15px;
}

.view .view-header.view-header-booking h1 {
	overflow: visible;
	white-space: normal;
}

@media (min-width: 676px) {
	.view .view-header h1 {
		font-weight: 300;
	}
}

.view .view-header h1.btns-2 {
	margin-left: 50px;
	margin-right: 50px;
}

.view .view-header .view-header-btn {
	height: 40px;
	width: 20px;
	line-height: 40px;
	position: absolute;
	font-size: 22px;
	top: 0px;
	color: rgba(0, 0, 0, 0.2);
	text-shadow: #fff 0px 1px 0px;
	transition: all 0.2s ease-in-out;
	display: none;
}

.hover .view-header .view-header-btn:hover {
	cursor: pointer;
}

.view-header .view-header-btn.back {
	left: 0px;
	padding-left: 10px;
	text-align: left;
	font-size: 32px;
}

.view-header .view-header-btn.map-marker {
	right: 0px;
	padding-right: 10px;
	text-align: right;
}

.view-header .view-header-btn.phone {
	right: 30px;
	line-height: 43px;
	padding: 0px 5px;
}

.view-header small {
	display: block;
	text-align: center;
	color: #728fca;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 0px 50px;
	margin-top: -10px;
	margin-bottom: 10px;
	font-size: 12px;
}

.view .view-header h1 span {
	font-size: 20px;
}

.view .view-header h1 small {
	display: inline;
	padding: 0;
}

.view-header h1 .extra-on-sticky {
	display: none;
}

.view-header.sticky h1 .extra-on-sticky {
	display: inline;
}

/* @end */
/* @group tabs */
.tabs {
	padding: 0px 10px;
	max-width: 600px;
	margin: 1px auto 12px;
	display: none;
}

.tabs.tabs-active {
	display: block;
}

.view-header.sticky .tabs.tabs-active {
	display: none;
}

.tabs ul {
	font-size: 0;
	margin-top: -1px;
	text-align: center;
}

.tabs li {
	display: inline-block;
	position: relative;
}

.tabs a {
	text-align: center;
	display: block;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.5);
	font-size: 13px;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-left: 1px solid transparent;
	border-top: 1px solid transparent;
	margin-left: -1px;
	height: 30px;
	line-height: 30px;
	padding: 0px 5px;
}

.tabs li:first-child a {
	border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.tabs ul:first-child li a {
	border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.tabs ul:first-child li:first-child a {
	border-radius: 4px 0px 0px 0px;
}

.tabs ul:first-child li:last-child a {
	border-radius: 0px 4px 0px 0px;
}

.tabs ul.round-bottom li:first-child a {
	border-radius: 0px 0px 0px 4px;
}

.tabs ul.round-bottom li:last-child a {
	border-radius: 0px 0px 4px 0px;
}

.tabs ul.round-bottom li:first-child:last-child a {
	border-radius: 0px 0px 4px 4px;
}

.tabs ul.round-bottom:first-child li:first-child a,
.tabs ul:first-child:last-child li:first-child a {
	border-radius: 4px 0px 0px 4px;
}

.tabs ul.round-bottom:first-child li:last-child a,
.tabs ul:first-child:last-child li:last-child a {
	border-radius: 0px 4px 4px 0px;
}

.hover .tabs a:hover {
	cursor: pointer;
	border-color: #369cf7;
	color: #369cf7;
}

.tabs .selected a,
.tabs li.selected:first-child a,
.hover .tabs .selected a:hover {
	background: #369cf7;
	border-color: rgba(0, 0, 0, 0.1);
	color: #fff;
}

.tabs.tabs-2 {
	max-width: 400px;
}

.tabs.tabs-2 li {
	width: 50%;
}

.tabs.tabs-3 li {
	width: 33.3333333%;
}

.tabs.tabs-4 li {
	width: 25%;
}

.tabs.tabs-5 li {
	width: 20%;
}

.tabs.tabs-6 li {
	width: 16.6666667%;
}

.tabs.tabs-7 li {
	width: 14.2857143%;
}

.tabs.tabs-8 li {
	width: 12.5%;
}

.tabs.tabs-9 li {
	width: 11.1111111%;
}

.tabs.tabs-10 li {
	width: 10%;
}

.tabs a.has-image {
	height: 128px;
}

.tabs a.has-image > img {
	display: block;
	margin: 0 auto;
	padding-top: 10px;
	width: 80%;
}

.tabs a.has-image .db-icon {
	display: block;
	font-size: 88px;
	padding-top: 10px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 675px) {

	.tabs a.has-image {
		height: 100px;
	}

	.tabs a.has-image .db-icon {
		font-size: 60px;
	}

}

/* @endgroup */
.view {
	padding-bottom: 60px;
}

.list .item {
	display: block;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
	color: #333;
	font-weight: 400;
	min-height: 50px;
	line-height: 50px;
}

.list .item.rows {
	line-height: 38px;
}

.hover .list .item:not(.disabled):hover {
	background: rgba(53, 155, 247, 0.1);
	cursor: pointer;
}

.list .item {
	padding: 0px 10px;
}

.list .item.item-cb {
	padding-left: 42px;
}

.list .cb {
	position: absolute;
	left: 10px;
	height: 20px;
	width: 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 0.1);
	top: 50%;
	margin-top: -11px;
	text-align: center;
	line-height: 20px;
	border-radius: 3px;
	font-size: 14px;
}

.list .item.item-cb-on {
	background: rgba(53, 155, 247, 0.1);
}

.list .item.item-cb-on .cb {
	background: #369cf7;
	color: #fff;
}

.list .item:not(.item-cb-on) .cb i {
	display: none;
}

.list span {
	display: block; /* Needed for text-overflow */
	padding-right: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #333;
	font-size: 16px;
	font-weight: 400;
}

.list .has-btn span,
.list .has-btn small {
	padding-right: 60px;
}

.list .has-image span,
.list .has-image small {
	padding-left: 50px;
}

.list small {
	display: block;
	color: #728fca;
	padding-right: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 11px;
	line-height: 12px;
	margin-top: -8px;
}

.list .item.disabled,
.list .item.disabled span,
.list .item.disabled small {
	color: #999999;
}

.list .item img {
	width: 40px;
	height: 40px;
	position: absolute;
	left: 10px;
	top: 50%;
	margin-top: -20px;
	border-radius: 6px;
}

.list .item .list-btn {
	color: rgba(114, 143, 201, 0.50);
	font-size: 20px;
	border: 1px solid rgba(114, 143, 201, 0.50);
	width: 32px;
	height: 32px;
	text-align: center;
	line-height: 32px;
	border-radius: 18px;
	position: absolute;
	top: 50%;
	margin-top: -17px;
	right: 28px;
}

.hover .list .item .list-btn:hover {
	color: #fff;
	background: #728fca;
	border-color: #728fca;
	cursor: pointer;
}

.list i.arrow {
	color: rgba(0, 0, 0, 0.25);
	height: 20px;
	width: 20px;
	text-align: right;
	right: 10px;
	margin-top: -10px;
	line-height: 20px;
	position: absolute;
	top: 50%;
	font-size: 20px;
}

.list i.loading {
	color: rgba(0, 0, 0, 0.25);
	height: 20px;
	width: 20px;
	text-align: center;
	right: 9px;
	margin-top: -10px;
	line-height: 20px;
	position: absolute;
	top: 50%;
	font-size: 17px;
	display: none;
}

.list .item.selected,
.hover .list .item.selected:hover {
	background: #369cf7;
	border-color: #369cf7;
}

.list .item.selected span,
.hover .list .item.selected:hover span {
	color: #fff;
}

.list .item.selected .arrow,
.hover .list .item.selected:hover .arrow {
	color: #fff;
}

.list .item.selected .loading,
.hover .list .item.selected:hover .loading {
	color: #fff;
}

.list .item.selected small,
.hover .list .item.selected:hover small,
.list .item.selected small i {
	color: rgba(255, 255, 255, 0.75)
}

.list .item.selected .list-btn {
	color: #fff;
	font-size: 20px;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.hover .list .item.selected .list-btn:hover {
	color: #369cf7;
	background: #fff;
	border-color: #fff;
	cursor: pointer;
}

.list .item.loading i.arrow,
.list .item.loading .list-btn {
	display: none;
}

.list .item.loading i.loading {
	display: inherit;
}

@media (min-width: 676px) {

	.list-standalone {
		margin: 40px auto;
		max-width: 600px;
		padding: 0px 10px;
	}

	.list-standalone .item {
		border-right: 1px solid rgba(0, 0, 0, 0.1);
		border-left: 1px solid rgba(0, 0, 0, 0.1);
	}

	.list-standalone li:first-child .item {
		border-top: 1px solid rgba(0, 0, 0, 0.1);
		border-radius: 4px 4px 0px 0px;
	}

	.list-standalone li:last-child .item {
		border-radius: 0px 0px 4px 4px;
	}

	.list-standalone li:first-child:last-child .item {
		border-radius: 4px 4px 4px 4px;
	}

}

.list-standalone.keep-borders {
	margin: 40px auto;
	max-width: 600px;
	padding: 0px 10px;
}

.list-standalone.keep-borders .item {
	border-right: 1px solid rgba(0, 0, 0, 0.1);
	border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.list-standalone.keep-borders li:first-child .item {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px 4px 0px 0px;
}

.list-standalone.keep-borders li:last-child .item {
	border-radius: 0px 0px 4px 4px;
}

.icons {
	margin: 0px 10px;
}

.icons .item {
	display: block;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-left: 0;
	position: relative;
	color: #333;
	font-weight: 400;
	height: 128px;
}

.icons li:first-child .item {
	border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.hover .icons .item:hover {
	background: rgba(53, 155, 247, 0.1);
	cursor: pointer;
}

.icons li {
	float: left;
}

.icons-4 li {
	width: 25%;
}

/* @group progress */

.progress {
	background: #fafafa;
	display: none;
}

@media (max-width: 675px) {

	.progress {
		display: block;
	}

}

.progress a {
	display: block;
	text-align: right;
	position: relative;
	font-size: 12px;
	min-height: 40px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	color: #728fca;
}

.progress a.hidden {
	display: none;
}

.hover .progress a:hover,
.progress a.selected {
	background: rgba(53, 155, 247, 0.1);
}

.hover .progress a:hover,
.hover .progress a:hover span,
.hover .progress a:hover i,
.hover .progress a:hover label {
	cursor: pointer;
}

.progress a span {
	display: block;
	padding: 0 10px 0 40%;
	text-align: right;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: inherit;
	line-height: 40px;
	font-size: 14px;
}

.progress a span:not(:first-of-type) {
	margin-top: -16px; /* To compensate for line height for multi selects */
}

.progress a i {
	position: absolute;
	right: auto;
	left: 8px;
	text-align: center;
	color: rgba(0, 0, 0, 0.3);
	top: 14px;
	font-size: 14px;
	width: 16px;
}

.progress a label {
	position: absolute;
	top: 0px;
	left: 30px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.5);
	font-size: 13px;
	width: 30%;
	font-size: 13px;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 40px;
	line-height: 40px;
}

.progress a label small {
	font-size: inherit;
	color: rgba(0, 0, 0, 0.25);
}

/* @end */

/* @group selectors */

.pre-selectors {
	padding: 20px 8px;
}

.pre-selectors .selector {
	margin: 0 auto;
	width: 100%;
}

.selector h2 {
	display: none;
}

@media (max-width: 675px) {

	.pre-selectors {
		padding: 20px 0;
	}

	.mobile .pre-selectors {
		display: none;
	}

	.selectors div:not(.cb) {
		display: none;
	}

	.selectors div:last-child,
	.selectors div:only-child {
		display: block;
	}

}

@media (min-width: 676px) {

	.selector .list .item {
		min-height: 36px;
		line-height: 36px;
	}

	.selector .list .item span {
		font-size: 12px;
		font-weight: 500;
	}

	.selector .list .item.rows {
		line-height: 25px;
	}

	.selector .list .item.rows small {
		margin-top: -6px;
	}

	.selector .list .item .list-btn {
		font-size: 16px;
		width: 24px;
		height: 24px;
		line-height: 24px;
		border-radius: 18px;
		margin-top: -13px;
		right: 24px;
	}

	.selector .list .has-image span,
	.selector .list .has-image small {
		padding-left: 34px;
	}

	.selector .list .item img {
		width: 32px;
		height: 32px;
		left: 2px;
		margin-top: -16px;
		border-radius: 2px;
	}

	.selector .list li:first-child .item {
		border-radius: 4px 4px 0px 0px;
		border-top: 1px solid rgba(0, 0, 0, 0.1);
	}

	.selector .list .item {
		border-left: 1px solid rgba(0, 0, 0, 0.1);
		border-right: 1px solid rgba(0, 0, 0, 0.1);
	}

	.selector h2 {
		color: #728fca;
		padding: 0px 10px 4px;
		font-weight: 500;
		line-height: 14px;
		font-size: 12px;
		text-align: center;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		display: block;
	}

	.selectors {
		padding: 20px 8px;
		position: relative;
	}

	.selectors .selector {
		float: left;
		transition: all 0.2s ease-in-out;
	}

	.selector.hidden {
		display: none;
	}

	.selector {
		width: 50%;
	}

	.selectors-2 .selector {
		width: 50%;
	}

	.selectors-3 .selector {
		width: 33.3333333%;
	}

	.selectors-4 .selector {
		width: 25%;
	}

	.selectors-5 .selector {
		width: 20%;
	}

	.selectors-6 .selector {
		width: 16.6666667%;
	}

	.selectors-7 .selector {
		width: 14.2857143%;
	}

	.selectors-1 .selector.selector-wide,
	.selectors-2 .selector.selector-wide,
	.selectors-3 .selector.selector-wide,
	.selectors-4 .selector.selector-wide,
	.selectors-5 .selector.selector-wide,
	.selectors-6 .selector.selector-wide,
	.selectors-7 .selector.selector-wide {
		width: 100%;
		float: none;
	}

	.selectors-1 .selector {
		margin-left: 25%;
	}

	.selector .list {
		margin: 0px 8px;
		margin-bottom: 10px;
	}

	.selector .list:before {
		content: "";
		display: block;
		position: absolute;
		margin-left: -4px;
		top: 38px;
		bottom: 26px;
		border: 4px solid #ffffff;
		border-radius: 8px;
		pointer-events: none;
		z-index: 1;
		transition: all 0.2s ease-in-out;
	}

	.selectors-1 .selector:not(.selector-wide) .list:before {
		width: calc(50% - 24px);
	}

	.selectors-2 .selector:not(.selector-wide) .list:before {
		width: calc(50% - 24px);
	}

	.selectors-3 .selector:not(.selector-wide) .list:before {
		width: calc(33.3333333% - 22px);
	}

	.selectors-4 .selector:not(.selector-wide) .list:before {
		width: calc(25% - 21px);
	}

	.selectors-5 .selector:not(.selector-wide) .list:before {
		width: calc(20% - 20px);
	}

	.selectors-6 .selector:not(.selector-wide) .list:before {
		width: calc(16.6666667% - 19px);
	}

	.selectors-7 .selector:not(.selector-wide) .list:before {
		width: calc(14.2857143% - 18px);
	}

	.selector .list:after {
		content: "";
		display: block;
		position: absolute;
		top: 42px;
		bottom: 30px;
		border: 1px solid rgba(0, 0, 0, 0.1);
		border-radius: 4px;
		pointer-events: none;
		z-index: 1;
		transition: all 0.2s ease-in-out;
	}

	.selectors-1 .selector:not(.selector-wide) .list:after {
		width: calc(50% - 26px);
	}

	.selectors-2 .selector:not(.selector-wide) .list:after {
		width: calc(50% - 26px);
	}

	.selectors-3 .selector:not(.selector-wide) .list:after {
		width: calc(33.3333333% - 24px);
	}

	.selectors-4 .selector:not(.selector-wide) .list:after {
		width: calc(25% - 23px);
	}

	.selectors-5 .selector:not(.selector-wide) .list:after {
		width: calc(20% - 22px);
	}

	.selectors-6 .selector:not(.selector-wide) .list:after {
		width: calc(16.6666667% - 21px);
	}

	.selectors-7 .selector:not(.selector-wide) .list:after {
		width: calc(14.2857143% - 20px);
	}

	/* To fix Safari's bug where the box isn't redrawn after transition */
	@media screen and (min-color-index: 0) and(-webkit-min-device-pixel-ratio: 0) {

		@media {

			.selectors-1 .selector:not(.selector-wide) .list:before,
			.selectors-1 .selector:not(.selector-wide) .list:after {
				width: 50%;
				visibility: hidden;
			}

			.selectors-1 .selector .list li:last-child .item {
				border-radius: 0 0 4px 4px;
				border-bottom: 1px solid rgba(0, 0, 0, 0.1);
			}

		}
	}

	.list .item.item-cb {
		padding-left: 36px;
	}

	.list .cb {
		height: 16px;
		width: 16px;
		top: 50%;
		margin-top: -9px;
		line-height: 16px;
		font-size: 12px;
	}

	.list .has-btn span,
	.list .has-btn small {
		padding-right: 40px;
	}
}

.selector.multi .item input {
	position: absolute;
	top: 50%;
	left: 4px;
	height: 12px;
	margin-top: -6px;
}

.selector.multi .item.disabled {
	pointer-events: none;
}

/* @end */

.datetime {
	height: 60px;
	position: relative;
	margin: 0px 10px
}

.datetime h2 {
	color: #333;
	padding: 0px 40px;
	font-weight: 300;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 20px;
	height: 60px;
	line-height: 60px;
}

.datetime a {
	position: absolute;
	top: 50%;
}

.datetime .datetime-btn {
	height: 36px;
	width: 36px;
	text-align: center;
	font-size: 30px;
	line-height: 34px;
	margin-top: -19px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 0.4);
	text-shadow: #fff 0px 1px 0px;
}

.datetime .datetime-calendar {
	font-size: 18px;
	display: none;
}

.hover .datetime .datetime-btn:hover {
	background: rgba(53, 155, 247, 0.1);
	cursor: pointer;
}

.datetime .datetime-next {
	right: 0px;
}

.datetime .datetime-prev {
	left: 0px;
}

.datetime .datetime-link {
	color: #369cf7;
	font-size: 12px;
	height: 20px;
	line-height: 20px;
	margin-top: -10px;
}

.hover .datetime .datetime-link:hover {
	text-decoration: underline;
	cursor: pointer;
}

.datetime .datetime-today {
	text-align: right;
	right: 96px;
	display: none;
}

.datetime .datetime-info {
	left: 50px;
	display: none;
}

@media (min-width: 676px) {
	.datetime {
		padding: 10px 0px;
		margin: 0px 16px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

	.datetime-border {
		border-top: 1px solid rgba(0, 0, 0, 0.1);
	}

	.datetime .datetime-prev {
		left: auto;
		right: 42px;
	}

	.datetime .datetime-today,
	.datetime .datetime-info,
	.datetime .datetime-calendar {
		display: block;
	}
}

/* @end */

/* @group week-selector */

.week-selector {
	text-align: center;
	margin-bottom: 10px;
	min-height: 58px;
}

.week-selector > * {
	vertical-align: top;
}

.week-selector h2,
.week-selector h2 small {
	color: #728fca;
}

.week-selector h2 {
	display: inline-block;
	margin-bottom: -4px;
}

.week-selector .browse {
	display: inline-block;
	width: 40px;
}

.week-selector .browse.prev {
	padding-right: 12px;
}

.week-selector .browse.next {
	padding-left: 12px;
}

.week-selector .browse a {
	display: inline-block;
	font-size: 36px;
	color: #728fca;
	width: 34px;
}

.week-selector .browse a.disabled {
	color: #cccccc;
}

.hover .week-selector .browse a:not(.disabled):hover {
	cursor: pointer;
}

/* @end */

/* @group week */

.week {
	display: none;
	margin: 20px 10px 0;
}

.week .week-header,
.week .week-content {
	position: relative;
}

.week .day {
	width: 14.285%;
	float: left;
	text-align: center;
	box-sizing: border-box;
}

.week.days-5 .day {
	width: 20%;
}

.week-header .day {
	position: relative;
	padding-top: 4px;
}

.week-header .day:not(:first-child):after {
	content: "";
	display: block;
	position: absolute;
	top: 5px;
	bottom: 0;
	margin-left: -0.5px;
	border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.week-header .day.empty h3:before {
	content: "x";
	font-size: 70px;
	font-weight: 100;
	position: absolute;
	left: 50%;
	top: 6px;
	margin-left: -14px;
}

.week-content .day.empty {
	padding: 64px 0;
}

.week .day ul {
	margin: 0px 2px;
}

.week .day a {
	background: #ffffff;
	color: #000000;
	font-size: 13px;
	font-weight: 500;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid transparent;
	padding: 4px;
	text-align: center;
	display: block;
	background-clip: padding-box;
	margin-top: -1px;
}

.week .day li:first-child a {
	border-radius: 4px 4px 0 0;
}

.week .day li:last-child a {
	border-radius: 0 0 4px 4px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.week .day li:first-child:last-child a {
	border-radius: 4px;
}

.hover .week .day a:hover {
	background: rgba(53, 155, 247, 0.1);
	cursor: pointer;
}

.week .day a > * {
	display: inline-block;
	vertical-align: middle;
	padding: 4px 5px;
}

.week .day small {
	margin-top: 2px;
	font-style: normal;
	display: block;
	color: #728fca;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 11px;
	font-weight: normal;
}

.week .day h3 {
	color: #728fca;
	padding: 2px;
	margin-bottom: 4px;
	font-weight: 300;
	line-height: 14px;
	font-size: 11px;
	text-align: center;
	position: relative;
}

.week .day.day-today h3 b {
	background: #728fca;
	color: #fff;
	border-radius: 20px;
}

.week .day h3 b {
	font-weight: 500;
	display: block;
	font-size: 14px;
	height: 22px;
	width: 22px;
	margin: 0px auto;
	line-height: 22px;
	text-align: center;
}

.week .day h3.short {
	display: none;
}

.week .day.day-past h3 {
	color: #dddddd;
}

.week .day.day-past,
.week-header .day.empty h3:before {
	color: #bbbbbb;
}

.week.week-classes .day a {
	padding: 4px;
	min-height: 50px;
}

.week .day a b {
	border-top: 3px solid #728fca;
	display: block;
	padding: 2px;
	margin-left: -2px;
	margin-right: -2px;
	margin-top: -2px;
	margin-bottom: 4px;
	font-size: 12px;
	font-weight: 500;
}

.week .day a.c1 b {
	border-color: #f83b47;
}

.week .day a.c2 b {
	border-color: #71f100;
}

.week .day a.c3 b {
	border-color: #ffc618;
}

.week .day a.c4 b {
	border-color: #f069f3;
}

.week .day a.c5 b {
	border-color: #2fe3ff;
}

@media (min-width: 676px) {

	.week .day ul {
		margin: 0px 4px;
	}

	.week-content .day:not(:first-child):after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		bottom: 10px;
		margin-left: -0.5px;
		border-left: 1px solid rgba(0, 0, 0, 0.05);
	}

	/** Today marked with border **/
	/*
		.week-header .day.day-today:before,
		.week-content .day.day-today:before
		{
			content: "";
			display: block;
			border: 2px solid #728fca;
			position: absolute;
			bottom: 0;
			box-sizing: border-box;
			pointer-events: none;
		}

		.week-header .day.day-today:before
		{
			border-bottom: none;
			top: 30px;
			width: 100%;
			border-radius: 5px 5px 0 0;
		}

		.week-content .day.day-today:before
		{
			border-top: none;
			top: 0;
			width: 14.285%;
			border-radius: 0 0 5px 5px;
		}
	*/
	.week .day a .time {
		font-size: 13px;
	}

}

@media (max-width: 675px) {

	.week > h1 {
		display: none;
	}

	.week .day.selected {
		background-color: rgba(53, 155, 247, 0.1);
	}

	.week .day.day-past.selected {
		background: rgba(0, 0, 0, 0.1);
	}

	.week-header .day.selected {
		border-radius: 5px 5px 0 0;
	}

	.week-content .day.selected {
		border-radius: 5px;
		width: 100%;
		padding: 10px 16px 6px;
		box-sizing: border-box;
	}

	.week-content .day.selected:first-child {
		border-radius: 0 5px 5px 5px;
	}

	.week-content .day.selected:last-child {
		border-radius: 5px 0 5px 5px;
	}

	.week-content .day.selected.empty {
		padding: 36px 16px;
	}

	.week-content .day:not(.selected) {
		display: none;
	}

	.week .day a {
		padding: 8px 4px;
	}

	.week .day a small:before {
		content: " - ";
	}

	.week .day a small {
		display: inline;
		color: #333;
	}

	.week .day h3 {
		display: none;
	}

	.week .day h3.short {
		display: block;
	}

	.hover .week .day h3:hover {
		cursor: pointer;
	}

}

/* @end */
/* DEBUG */
.view {
	display: none;
}

.view-loading {
	display: block;
}

.loading-content {
	text-align: center;
	padding: 60px;
}

.loading-content i {
	font-size: 30px;
	color: rgba(0, 0, 0, 0.1);
}

.loading-content small {
	display: block;
	padding-top: 10px;
	color: rgba(0, 0, 0, 0.25);
	font-weight: 300;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 20px;
}

.view h1 {
	margin-bottom: 10px;
}

.view h1,
.view h1 span {
	font-size: 32px;
	font-weight: 200;
	text-align: center;
}

.view h1 small {
	padding-top: 5px;
	display: block;
	font-size: 16px;
	font-weight: 200;
	color: #999;
}

.view h2,
.view h2 span {
	font-size: 18px;
	font-weight: 200;
	margin-bottom: 4px;
}

.view h2 small {
	font-size: 14px;
	margin-top: 0px;
}

.view h3,
.view h3 span {
	font-size: 14px;
	font-weight: 300;
}

.view.view-message {
	padding: 40px;
	text-align: center;
}

.view-header-booking {
	display: none;
}

@media (max-width: 675px) {

	.view-header-default {
		display: block;
	}

	.mobile .view-header-default {
		display: none;
	}

	.view-header-booking {
		display: block;
	}

	.view-header-booking.hidden {
		display: none;
	}

	.view.view-message {
		padding: 40px 20px;
	}

}

.view-header-helper {
	display: none;
}

.view-content {
	margin: 0 10px;
}

/* @group popups */

/**
 * Background scrolling prevented
 */
body.popup-open {
	overflow: hidden;
}

/* To fix iOS Safari's body scrolling when popup is open */
@media screen and (min-color-index: 0) and(-webkit-min-device-pixel-ratio: 0) and (max-width: 1024px) {

	@media {

		body.popup-open {
			position: fixed;
		}

	}

}

h2.account-deletion {
	font-size: 32px;
	font-weight: 200;
	text-align: center;
	margin-top: 85px;
}

.account-deletion-popup-wrapper {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.8);
	left: 0px;
	top: 0px;
	width: 10000px;
	height: 10000px;
	z-index: 999;
	display: none;
}

.account-deletion-popup {
	position: fixed;
	background-color: white;
	top: 50%;
	left: 50%;
	width: 600px;
	margin-left: -300px;
	margin-top: -300px;
	text-align: center;
	border: 1px solid gray;
	border-radius: 6px;
	/* needed styles for the overlay */
	z-index: 1000; /* keep on top of other elements on the page */
	padding-bottom: 15px;
}

.account-deletion-popup p {
	line-height: 30px;
	font-size: 30px;
	color: rgba(255, 40, 40, 0.8);
}

.account-deletion-popup p.info {
	margin: 40px;
	display: inline-block;
	position: relative;
	padding-left: 55px;
	vertical-align: middle;
}

.account-deletion-popup p.small-info {
	font-size: 18px;
	line-height: 18px;
	color: #666;
	margin: 0 40px 40px 40px;
}

.account-deletion-popup a.delete {
	width: 400px;
	height: 40px;
	background-color: rgba(255, 40, 40, 0.8);
	border-color: rgba(255, 40, 40, 0.8);
	margin-bottom: 20px;
}

.account-deletion-popup .info i {
	font-size: 60px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -30px;
}

.account-deletion-popup a.close {
	margin-bottom: 20px;
}

.dimmed-overlay {
	display: none;
	position: fixed;
	z-index: 300;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

#popup-container {
	text-align: center;
	overflow: auto;
	display: none;
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	-webkit-overflow-scrolling: touch; /* Fixes body scrolling through inputs on iOS (sometimes) */
	vertical-align: middle;
}

/**
 * See http://css-tricks.com/centering-in-the-unknown/
 */
#popup-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

/**
 * Dialog content can be of any width or height
 */
.popup {
	display: none;
	text-align: left;
	background-color: #ffffff;
	box-shadow: 0 10px 14px rgba(0, 0, 0, 0.5);
	border-radius: 3px;
	overflow: hidden;
	position: relative;
	margin: 10px 5px;
	max-width: 540px;
	width: 95%;
	vertical-align: middle;
}

.popup.opened {
	display: inline-block;
	visibility: visible;
}

.popup .popup-content {
	margin-top: 24px;
	min-width: 280px;
	padding: 0 40px 20px;
	text-align: center;
}

/* Text only popup for e.g. terms-of-use */

.popup .popup-content.text {
	text-align: left;
}

.popup .popup-content.text h1 {
	margin: 20px 0;
}

.popup .popup-content.text h2 {
	margin: 20px 0;
}

.popup .popup-content.text h3 {
	margin: 6px 0;
}

.popup > .close {
	position: absolute;
	right: 4px;
	top: 4px;
	width: 18px;
	border-radius: 2px;
	height: 18px;
	line-height: 16px;
	z-index: 100;
	text-align: center;
	font-size: 17px;
	color: #666;
	text-shadow: #fff 0px 1px 0px;
}

.hover .popup > .close:hover {
	background: #aaa;
	color: #fff;
	text-shadow: #999 0px -1px 0px;
	cursor: pointer;
}

.popup h1 {
	font-size: 32px;
	font-weight: 200;
	text-align: center;
	margin-bottom: 20px;
}

.popup h2 {
	font-size: 16px;
	font-weight: 200;
	margin-bottom: 10px;
}

@media (min-width: 676px) {
	.popup {
		width: 540px;
	}
}

@media (max-width: 675px) {

	.popup .popup-content {
		padding: 0 10px 20px;
	}

}

/* @end */

/* @group buttons */
.btn {
	border: 1px solid #ddd;
	border-radius: 4px;
	color: #333;
	display: block;
	font-size: 15px;
	font-weight: 200;
	height: 42px;
	line-height: 42px;
	margin: 10px auto;
	max-width: 420px;
	position: relative;
	text-align: center;
	text-decoration: none;
}

.btn span {
	color: #333;
	font-weight: 200;
	font-size: 15px;
}

.btn-main {
	background-color: #369cf7;
	border-color: #369cf7;
	color: #fff;
	font-weight: 500;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
	transition: all 0.2s ease-in-out;
}

.btn-buy {
	background-color: #58b014;
	border-color: #58b014;
	color: #fff;
	font-weight: 500;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
	transition: all 0.2s ease-in-out;
}

.btn label {
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 0px;
}

.btn .loading-indicator {
	height: 30px;
	width: 30px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -15px;
	margin-top: -15px;
	line-height: 30px;
	text-align: center;
	display: none;
	padding: 2px;
	font-size: 20px;
}

.btn .user-deletion {
	height: 30px;
	width: 30px;
	line-height: 30px;
	font-size: 20px;
	text-align: center;
	margin: 5px;
}

.btn.loading .loading-indicator {
	display: block;
}

.btn.loading label {
	display: none;
}

.btn.disabled {
	background-color: #cccccc;
	border-color: #cccccc;
	color: #eeeeee;
}

.btn.disabled label {
	text-shadow: rgba(0, 0, 0, 0.1) 0px 1px 0px;
}

.btn.disabled,
.btn.loading {
	pointer-events: none;
}

.hover .btn:not(.disabled):hover,
.hover .btn:not(.disabled):hover label {
	cursor: pointer;
}

.hover .btn.btn-main:not(.disabled):hover {
	background-color: #328bdb;
	border-color: #328bdb;
}

/* @end */

/* @group links */

.link {
	font-size: 14px;
	padding: 0 2px;
	transition: color 0.2s ease-in-out;
}

.hover .link:not(.disabled):hover {
	cursor: pointer;
	color: #328bdb;
}

.link .loading-indicator {
	padding-left: 8px;
	display: none;
}

.link.loading .loading-indicator {
	display: inline-block;
}

/* @end */

/* @group forms */

.form {
	border: 1px solid #333c4d;
	border-radius: 5px;
	background: #fff;
	margin: 0px auto 12px;
	width: auto;
	max-width: 422px;
}

.form-row, .form-row-group {
	position: relative;
	min-height: 42px;
	border-bottom: 1px solid #ddd;
}

.form-row-group > .form-row {
	border-bottom: none;
}

.form-row-group > h2 {
	color: #777;
	font-size: 15px;
	text-align: left;
	margin: 9px 0 0 8px;
}

.form-row p {
	margin: 0px;
	text-align: left;
	padding: 10px;
	color: #777;
	font-size: 13px;
	line-height: 1.5em;
}

.form-row p a {
	color: #369cf7;
	font-size: inherit;
}

.hover .form-row p a:hover {
	text-decoration: underline;
}

.form-row p b.red {
	color: #f83b47;
}

.form-row p b {
	font-weight: 500;
	color: #333;
}

.form .form-row:last-child,
.form .form-row.bottom,
.form .form-row-group:last-child {
	border-bottom: none;
}

.form .form-row span {
	display: block;
	float: left;
	height: 43px;
	width: 46%;
	position: relative;
}

.form input,
.form textarea {
	-webkit-appearance: none;
	background: transparent;
	display: block;
	width: 100%;
	display: block;
	padding: 18px 11px 4px;
	font-size: 15px;
	box-sizing: border-box;
	margin: 0px;
	z-index: 2;
	border: 0;
	color: #333;
	font-weight: 500;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	min-height: 42px;
}

.form textarea {
	resize: none;
	min-height: 80px;
}

.form input.show-invalid:invalid,
.form textarea.show-invalid:invalid,
.form input:focus:invalid,
.form textarea:focus:invalid,
.form .form-row.cb.show-invalid {
	box-shadow: 0 0 4px red;
}

.form .form-row:first-child input {
	border-radius: 5px 5px 0 0;
}

.form .form-row:last-child input {
	border-radius: 0 0 5px 5px;
}

.form-row .input-icon {
	color: #bbb;
	position: absolute;
	top: 10px;
	line-height: 22px;
	text-align: center;
	right: 6px;
	height: 22px;
	width: 22px;
	font-size: 18px;
}

.form-row select {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 5;
	height: 42px;
	width: 100%;
	opacity: 0.0;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.form-row .select-value {
	font-size: 15px;
	margin: 0px;
	position: absolute;
	z-index: 2;
	border: 0;
	color: #333;
	font-weight: 500;
	padding: 18px 14px 4px 11px;
}

.form-row .select-arrow {
	color: #bbb;
	position: absolute;
	bottom: 10px;
	line-height: 22px;
	text-align: center;
	right: 6px;
	height: 22px;
	width: 22px;
	font-size: 18px;
}

.hover .form-row-select:hover .select-arrow {
	color: #369cf7;
	cursor: pointer;
}

.form-row.error .select-arrow {
	right: 30px;
}

.form-row .forgot {
	position: absolute;
	right: 0px;
	height: 42px;
	width: 42px;
	font-size: 20px;
	z-index: 3;
	line-height: 42px;
	text-align: center;
	color: #ddd;
	transition: all 0.2s ease-in-out;
}

.form-row small {
	color: #bbb;
	font-size: 12px;
	top: 6px;
	font-weight: 400;
	position: absolute;
	right: 32px;
	top: 16px;
}

.form-row .cb {
	display: block;
	margin: 0 8px;
	position: relative;
	z-index: 1;
	color: #777;
	font-size: 15px;
	font-weight: 200;
	height: 42px;
	line-height: 42px;
	padding-left: 26px;
	text-align: left;
}

.form-row .cb:before {
	content: "";
	position: absolute;
	border: 1px solid rgba(0, 0, 0, 0.1);
	left: 0px;
	top: 12px;
	height: 16px;
	width: 16px;
	border-radius: 2px;
	z-index: 1;
}

.form-row .cb i {
	position: absolute;
	margin-right: 6px;
	color: #fff;
	background: #d6d8db;
	left: 0px;
	top: 12px;
	height: 18px;
	width: 18px;
	border-radius: 2px;
	line-height: 18px;
	text-align: center;
	font-size: 14px;
	display: none;
}

.form-row .cb.on i {
	display: inline;
}

.form-row .cb input {
	position: absolute;
	left: 0;
	top: 12px;
	width: 16px;
	height: 16px;
	opacity: 0;
}

.form-row .cb label {
	display: inline-block;
	position: relative;
	left: auto;
	top: auto;
	line-height: normal;
	text-align: left;
}

.form-row .cb label a {
	font-size: inherit;
	color: inherit;
	text-decoration: underline;
}

.form-row .cb label a:hover {
	opacity: 0.8;
}

.form-row a.list-item {
	display: block;
	font-size: 15px;
	color: #333;
	font-weight: 500;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 42px;
	padding-left: 44px;
}

.form-row a.list-item .image {
	position: absolute;
	left: 7px;
	background-color: #369cf7;
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 29px;
	border-radius: 15px;
	top: 6px;
	color: #fff;
	font-size: 17px;
}

.form-row a.list-item .image.red {
	background: #f83b47;
}

.form-row a.list-item i.action {
	color: #bbb;
	position: absolute;
	top: 10px;
	line-height: 22px;
	text-align: center;
	right: 6px;
	height: 22px;
	width: 22px;
	font-size: 22px;
}

.hover .form-row a.list-item:hover,
.hover .form-row a.list-item:hover i.action,
.hover .form-row .cb:hover {
	color: #369cf7;
	cursor: pointer;
}

.hover .form-row .cb label:hover {
	cursor: pointer;
}

.form-row .cb.on label,
.hover .form-row .cb.on:hover label {
	color: #333;
}

.form-row .cb.on i {
	background: #369cf7;
}

.form-row-btn {
	color: #69707f;
	position: absolute;
	right: 10px;
	top: 9px;
	height: 22px;
	line-height: 22px;
	text-align: center;
	padding: 0px 10px;
	font-weight: 500;
	font-size: 12px;
	background-color: #fff;
	text-shadow: rgba(255, 255, 255, 0.8) 0px 1px 0px;
	background-image: linear-gradient(to bottom, #fff, #eef0f1);
	border-radius: 2px;
	border: 1px solid #c5c6c8;
	z-index: 10;
}

.error .form-row-btn {
	right: 38px;
}

.hover .form-row-btn:hover {
	cursor: pointer;
}

.form-row-btn:active {
	box-shadow: inset rgba(0, 0, 0, 0.1) 0px 1px 2px;
}

.hover .form-row .forgot:hover {
	color: #369cf7;
	cursor: pointer;
}

.form-row .info {
	display: block;
	margin: 0px;
	position: absolute;
	z-index: 1;
	color: #f83b47;
	font-size: 13px;
	font-weight: 200;
	left: 10px;
	top: 14px;
}

.form-row .info b {
	font-size: 15px;
	font-weight: 500;
	color: #555;
	margin-right: 6px;
}

.form label {
	display: block;
	margin: 0px;
	position: absolute;
	z-index: 1;
	color: #777;
	font-size: 15px;
	font-weight: 200;
	text-align: left;
	left: 9px;
	top: 14px;
}

.form-row:not(.cb) label {
	pointer-events: none;
}

.hover .form-row:hover label,
.hover .form-row:hover .input-icon {
	color: #369cf7;
}

.form label.active {
	color: #369cf7;
	font-size: 11px;
	padding: 1px 2px;
	top: 6px;
	font-weight: 400;

}

.form label.labelRight {
	right: 10px;
	text-align: right;
}

.form label.active.transition {
	transition: all 0.1s ease-in-out;
}

.form label.active.error {
	color: #bbb;
	font-size: 10px;
	padding: 1px 2px;
	border-radius: 2px;
	background: #f64242;
	color: #fff;
	top: 6px;
}

.form .error label,
.form .error label.active,
.form .error .cb {
	color: #f64242;
}

.form .form-row > label small,
.form .form-row-group > h2 small {
	opacity: 0.6;
	position: static;
	color: inherit;
	font-size: 0.8em;
	font-weight: inherit;
}

.form .email.suggestion {
	min-height: 26px;
	height: 26px;
	text-align: start;
	transition: min-height .25s linear, height .25s linear;
	background-color: rgba(0, 0, 0, 0.1);
}

.form .email.suggestion.hidden {
	min-height: 0px;
	height: 0px;
}

.form .email.suggestion .text {
	padding: 7px;
}

.form .password.notification {
	min-height: 26px;
	height: 26px;
	text-align: start;
	transition: min-height .25s linear, height .25s linear;
	background-color: rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.form-arrow-up {
	display: block;
	position: absolute;
	top: 35px;
	left: 14px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid rgba(0, 0, 0, 0.1);
}

.form .password.notification.hidden {
	min-height: 0px;
	height: 0px;
}

.form .password.notification.hidden .form-arrow-up {
	display: none;
}

.form .password.notification .text {
	padding: 8px;
}

.form-row .error-icon {
	display: none;
	color: #fff;
	background: #f64242;
	position: absolute;
	top: 10px;
	line-height: 23px;
	text-align: center;
	right: 10px;
	height: 22px;
	width: 22px;
	font-size: 15px;
	border-radius: 3px
}

.form-row.error .error-icon {
	display: block;
}

/* @end */

/* @group calendar date icon */

.calendar-date-icon {
	display: inline-block;
	border-radius: 8px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
	margin: 0 auto;
	width: 100px;
	overflow: hidden;
	text-align: center;
	background-color: #ffffff;
}

.calendar-date-icon .month {
	background-color: #f64242;
	color: #ffffff;
}

.calendar-date-icon.history .month {
	background-color: #aaaaaa;
}

.calendar-date-icon .month,
.calendar-date-icon .day {
	font-size: 18px;
	font-weight: 200;
	line-height: 28px;
}

.calendar-date-icon .date {
	font-size: 60px;
	font-weight: 200;
	line-height: 56px;
}

.calendar-date-icon.small {
	width: 60px;
}

.calendar-date-icon.small .month,
.calendar-date-icon.small .day {
	font-size: 10px;
	line-height: 18px;
}

.calendar-date-icon.small .date {
	font-size: 36px;
	line-height: 32px;
}

.calendar-date-icon .check {
	display: none;
	position: absolute;
	margin-left: 64px;
	margin-top: -110px;
	color: #58b014;
	font-size: 54px;
}

.calendar-date-icon.confirmed .check {
	display: block;
}

.calendar-date-icon-divider {
	margin: 0 10px 60px 10px;
	width: 12px;
	border-top: 3px solid #333;
	display: inline-block;
}

/* @end */

/* @group booking list */

.booking-list .booking {
	line-height: normal;
}

.booking-list .booking .content-wrapper {
	position: relative;
	max-width: 300px;
	min-height: 70px;
	margin: 0 auto;
	padding: 10px 0;
}

.booking-list .booking.disabled {
	background-color: rgba(0, 0, 0, 0.05);
	pointer-events: none;
}

.booking-list .booking.disabled .content-wrapper .booking-details {
	color: #999;
}

.booking-list .booking.disabled .content-wrapper .booking-details h2 {
	color: #999;
}

.booking-list .booking .calendar-date-icon.disabled .month {
	background-color: #999;
	color: #ffffff;
}

.booking-list .booking .calendar-date-icon {
	position: absolute;
	left: 10px;
}

.booking-list .booking .calendar-date-icon.from-date {
	position: absolute;
	left: -80px;
}

.booking-list .booking .calendar-date-hyphen {
	position: absolute;
	left: -10px;
	border-top: 2px solid #333;
	width: 10px;
	height: 3px;
	top: 44px;
}

.booking-list .booking .booking-details {
	padding-left: 96px;
}

.booking-list .booking .booking-details .fa-calendar {
	margin-right: 4px;
}

.booking-list .booking .booking-details .fa-clock-o {
	margin-right: 5px;
}

/* @end */

/* @group booking list */

.prepaid-card-list.list.list-standalone li:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px 4px 0px 0px;
}

.prepaid-card-list.list.list-standalone li:last-child {
	border-radius: 0px 0px 4px 4px;
}

.prepaid-card-list .card {
	line-height: normal;
}

.prepaid-card-list .card .content-wrapper {
	position: relative;
	max-width: 300px;
	min-height: 70px;
	margin: 0 auto;
	padding: 10px 0;
}

.prepaid-card-list .card .content-wrapper small {
	margin-top: -4px;
	color: #728fca;
}

.prepaid-card-list .card .content-wrapper .available {
	margin-top: 8px;
	font-size: 16px;
}

.prepaid-card-list .card .price {
	margin-top: 8px;
	font-size: 16px;
}

.prepaid-valid-for-container {
	margin-top: 24px;
}

.prepaid-valid-for-container h2 {
	margin-bottom: 16px;
}

.prepaid-valid-for-items {
	max-height: 500px;
	overflow-y: auto;
}

.prepaid-valid-for-item {
	margin-bottom: 4px;
	display: block;
}

.prepaid-valid-for-categories {
	display: block;
	margin: 8px;
}

.prepaid-payment-options {
	margin: 8px;
}

.prepaid-info .prepaid-buttons {
	margin-top: 16px;
}

.prepaid-booking-item {
}

.prepaid-booking-item small {
	margin: 0 0 6px;
}

.prepaid-booking-item.item.card {
	min-height: 24px;
	line-height: 24px;
}

.prepaid-bookings-container {
	margin-top: 24px;
}

.prepaid-bookings-list.list.list-standalone {
	margin: 20px auto 0 auto;
}

.prepaid-bookings-list.list.list-standalone li:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px 4px 0px 0px;
}

.prepaid-bookings-list.list.list-standalone li:last-child {
	border-radius: 0px 0px 4px 4px;
}

.prepaid-quantity-info {
	margin: 8px;
}

.prepaid-list {
	max-height: 500px;
	height: auto;
	transition: max-height 0.2s ease-in;
	overflow: hidden;
}

.prepaid-list.hidden {
	max-height: 0px;
	transition: max-height 0.2s ease-out;
}

a.prepaid-header-disabled {
	pointer-events: none;
	opacity: 0.5;
	display: block;
}

.valid-prepaids-for-booking {
	margin: 12px;
	border-radius: 3px;
	padding: 12px;
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.5);
	background: #ffee4d;
}

.valid-prepaid-for-booking {
	display: block;
	margin: 4px;
}

/* @end */

/* @group booking info */

.booking-info .details {
	text-align: center;
	margin-bottom: 20px;
}

.calendar-date-icon {
	margin-bottom: 10px;
}

.booking-info .payment-options {
	margin-bottom: 10px;
}

.booking-info .links {
	text-align: center;
	margin-bottom: 10px;
}

.booking-info .share {
	margin: 20px 0;
}

.booking-info .share-button + .share-button {
	padding-left: 16px;
}

.booking-info .normal-price {
	text-decoration: line-through;
	color: #888;
}

.queue-info {
	display: inline-block;
	padding: 6px 8px;
	background-color: #ffee4d;
	border-radius: 4px;
	font-weight: 300;
	font-size: 13px;
	line-height: 13px;
}

.user-notes {
	margin: 10px auto 0;
	max-width: 422px;
}

.user-notes .label {
	padding: 10px 4px 0 0;
	font-weight: 500;
	max-width: 200px;
}

.user-notes .value {
	padding: 10px 0 0 4px;
	font-weight: 300;
}

@media (max-width: 675px) {

	.user-notes {
		padding: 0 15px;
	}

}

/* @end */

/* @group togglers */

.link.toggle > .fa-caret-down {
	display: inline;
}

.link.toggle > .fa-caret-up {
	display: none;
}

.link.toggle.open > .fa-caret-down {
	display: none;
}

.link.toggle.open > .fa-caret-up {
	display: inline;
}

/* @end */

/* @group message */
.message-wrapper {
	margin: 10px 0;
}

.message {
	padding: 0px 10px;
	border-radius: 4px;
	color: #fff;
	text-align: center;
	text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 0px;
	max-height: 0;
	transition: max-height 0.15s ease-out, padding 0.15s ease-out;
	overflow: hidden;
}

.message.show {
	padding: 6px 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	max-height: 500px;
	transition: max-height 0.25s ease-in, padding 0.25s ease-in;
}

.message h3 {
	font-size: 12px;
	font-weight: bold;
	color: inherit;
	text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 0px;
	padding: 0px;
	margin: 0px;
}

.message p {
	padding: 0px;
	margin: 0px;
	padding-top: 4px;
	color: inherit;
}

.message-warning {
	color: #666;
	text-shadow: none;
	background-color: #ffee4d;
}

.message-error {
	background-color: #f64242;
}

.message-success {
	background-color: #58b014;
}

.message-info {
	color: black;
	background-color: #dddddd;
}

/* @end */

/* @group confirm-message */

.confirm-alert {
	display: none;
	margin: 0 20px;
}

.confirm-alert .link {
	padding: 0 24px;
}

/* @end */

/* @group share-buttons */

.share-button {
	display: inline-block;
	font-size: 12px;
}

.share-button .fa {
	font-size: 24px;
	padding-bottom: 4px;
}

/* @end */

/* @group human-verification */

.human label {
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 0px;
}

.human {
	border-radius: 4px;
	display: block;
	height: 42px;
	line-height: 42px;
	margin: 0 auto 10px;
	max-width: 420px;
	position: relative;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
	transition: background-color 0.2s ease-in-out;
	background-color: #f89222;
	overflow: hidden;
}

.human label {
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 0px;
}

.human label {
	cursor: pointer;
}

.hover .human:not(.on):hover,
.hover .human:not(.on):focus {
	background-color: #f28919;
	cursor: pointer;
}

.human.on {
	height: 0;
	margin-bottom: 0;
	opacity: 0;
	transition: background-color 0.2s ease-in-out, height 0.4s 1.2s ease-in-out, margin-bottom 0.4s 1.2s ease-in-out, opacity 0.3s 1.3s ease-in-out;
}

.human.on,
.hover .human.on:hover {
	background-color: #58b014;
}

.hover .human.on:hover,
.hover .on:hover label {
	cursor: default;
}

.human:not(.on) label.on,
.human.on label.off {
	display: none;
}

.human.on label.on,
.human:not(.on) label.off {
	display: inline;
}

/* @end */

/* @group confirm booking dialog close buttons */

.booking-confirm-close-cancel label {
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 0px;
}

.booking-confirm-close-cancel {
	border-radius: 4px;
	display: block;
	height: 42px;
	line-height: 42px;
	margin: 0 auto 10px;
	max-width: 420px;
	position: relative;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
	transition: background-color 0.2s ease-in-out;
	background-color: #a6a6a6;
	overflow: hidden;
}

.booking-confirm-close-cancel label {
	cursor: pointer;
}

.hover .booking-confirm-close-cancel:hover,
.hover .booking-confirm-close-cancel:focus {
	background-color: #9c9c9c;
	cursor: pointer;
}

/* @end */

/* @group use discount code buttons */

.check-discount-code label {
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 0px;
}

.check-discount-code {
	border-radius: 4px;
	display: block;
	height: 42px;
	line-height: 42px;
	margin: 0 auto 40px;
	max-width: 420px;
	position: relative;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
	transition: background-color 0.2s ease-in-out;
	background-color: #f89222;
	overflow: hidden;
}

.check-discount-code label {
	cursor: pointer;
}

.hover .check-discount-code:not(.on):hover,
.hover .check-discount-code:not(.on):focus {
	background-color: #f28919;
	cursor: pointer;
}

.check-discount-code.on {
	transition: background-color 0.2s ease-in-out;
}

.check-discount-code.on,
.hover .check-discount-code.on:hover {
	background-color: #58b014;
}

.hover .check-discount-code.on:hover,
.hover .on:hover label {
	cursor: default;
}

.check-discount-code:not(.on) label.on,
.check-discount-code.on label.off {
	display: none;
}

.check-discount-code.on label.on,
.check-discount-code:not(.on) label.off {
	display: inline;
}

/* @end */

/* @group round fa icons */

.fa.big,
.fa.small {
	display: block;
	background: rgba(0, 0, 0, 0.1);
	color: #fff;
	text-shadow: rgba(0, 0, 0, 0.2) 0px 1px 0px;
	text-align: center;
}

.fa.small {
	height: 24px;
	width: 24px;
	border-radius: 12px;
	line-height: 24px;
	font-size: 16px;
}

.fa.big {
	height: 120px;
	width: 120px;
	border-radius: 100px;
	line-height: 120px;
	font-size: 80px;
	margin: 20px auto 20px;
}

.fa.red {
	background: #f64242;
}

.fa.green {
	background: #58b014;
}

.fa.blue {
	background: #369cf7;
}

/* @end */

/* @group facebook user info */

.fb-info {
	display: block;
	margin: 8px;
	position: relative;
	color: #777;
	font-size: 15px;
	font-weight: 200;
	height: 50px;
	line-height: 50px;
	padding-left: 60px;
	text-align: left;
}

.fb-info:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 48px;
	width: 48px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	z-index: 1;
}

.fb-info img {
	position: absolute;
	left: 0;
	top: 0;
	height: 50px;
	width: 50px;
	border-radius: 3px;
}

.fb-info h2 {
	display: inline-block;
	line-height: normal;
}

/* @end */

/* @group notifications */

#notifications {
	z-index: 400;
	position: fixed;
	left: 50%;
	top: 42px;
	margin-left: -160px;
}

#notifications .notification {
	background-color: #ffffff;
	box-shadow: 0 5px 7px rgba(0, 0, 0, 0.5);
	border-radius: 3px;
	display: block;
	position: relative;
	margin-top: 5px;
	overflow: hidden;
	width: 260px;
	min-height: 26px;
	padding: 6px 30px;
	z-index: 10;
	transition: background-color 0.9s ease-in 0.1s, opacity 0.1s ease-in;
	opacity: 1;
	text-align: center;
}

#notifications .notification.hidden {
	opacity: 0;
	display: block;
	background-color: #fce4ca;
	pointer-events: none;
	transition: background-color 0.0s ease-in, opacity 0.0s ease-in;
}

#notifications .notification.ok.hidden {
	background-color: #e4ffea;
}

#notifications .notification.error.hidden {
	background-color: #fdd8d8;
}

#notifications .notification .close {
	position: absolute;
	right: 2px;
	top: 2px;
	width: 18px;
	border-radius: 2px;
	height: 18px;
	line-height: 16px;
	text-align: center;
	font-size: 17px;
	color: #666;
	text-shadow: #fff 0px 1px 0px;
}

.hover #notifications .notification .close:hover {
	background: #aaa;
	color: #fff;
	text-shadow: #999 0px -1px 0px;
	cursor: pointer;
}

#notifications .notification .icon {
	position: absolute;
	left: 10px;
	top: 50%;
	margin-top: -12px;
}

#notifications .notification h3 {
	font-weight: 500;
	font-size: 14px;
}

#notifications .notification .extra-content {
	color: #777777;
	padding-top: 2px;
}

#notifications .notification .content {
	padding: 6px 0;
}

#notifications .notification.has-icon .content {
	padding-left: 10px;
}

/* @end */

/* @group price */

.price-tag {
	display: inline-block;
	padding: 4px 6px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	background-color: rgba(255, 255, 255, 0.7);
	background-clip: padding-box;
	font-weight: 300;
}

.price-tag.discount {
	font-weight: 500;
}

/* @end */

.view > .services,
.view > .classes,
.view > .resources,
.view > .courses {
	display: none;
}

.services .service-header {
	margin-top: 20px;
}

@media (max-width: 675px) {

	.services .service-header {
		display: none;
	}
}

/* @group Password strength indicator */

.password-strength-indicator {
	background: none repeat scroll 0 0;
	border-radius: 3px;
	font-size: 13px;
	font-weight: 300;
	height: 28px;
	line-height: 28px;
	position: absolute;
	right: 7px;
	top: 7px;
	width: 100px;
	text-align: center;
	transition: opacity 0.5s linear, background-color 0.2s linear;
	text-overflow: ellipsis;
	overflow: hidden;
}

.password-strength-indicator.weak {
	background-color: #f64242;
	color: #fff;
}

.password-strength-indicator.medium {
	background-color: #ffee4d;
	color: #333;
}

.password-strength-indicator.strong {
	background-color: #58b014;
	color: #fff;
}

.password-strength-indicator.fadedOut {
	opacity: 0;
}

/* @end */

/* @group classes */

.classes {
	padding-top: 20px;
}

.classes > h2 {
	margin: 0 auto -30px;
	max-width: 600px;
}

.classes .item {
	padding: 0 200px 0 86px;
	line-height: normal;
}

.classes .item > * {
	display: inline-block;
	vertical-align: middle;
}

.classes .item .color {
	position: absolute;
}

.classes .item .time {
	position: absolute;
	left: 25px;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
	overflow: visible;
	line-height: normal;
	top: 50%;
	margin-top: -16px;
}

.classes .item .color + .time {
	left: 36px;
}

.classes .item .time small {
	padding: 0;
	font-weight: normal;
	margin-top: 0;
}

.classes .item .list-btn {
	right: 10px;
}

.classes .item h3 {
	display: block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	line-height: 33px;
}

.classes .item h3 small {
	margin-top: -8px;
}

.classes .item .status {
	position: inherit;
	display: block;
	line-height: normal;
}

.classes .item .status span {
	padding: 0 4px;
	display: inline-block;
	width: 100px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-size: 13px;
}

.classes .item .status .action {
	background-color: #369cf7;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
	color: #fff;
	border-radius: 4px;
	font-size: 16px;
	text-shadow: rgba(0, 0, 0, 0.1) 0px 1px 1px;
	transition: all 0.2s ease-in-out;
}

.hover .classes .item:hover .status .action {
	background-color: #328bdb;
	border-color: #328bdb;
}

.classes .item .status small {
	display: inline-block;
	line-height: 30px;
	color: #f64242;
	text-align: right;
}

.classes .item .bookings-count.red {
	color: #f64242;
}

.classes .item .status .price-tag {
	font-size: 12px;
	line-height: 12px;
}

.classes .item .user-bookings-count small {
	display: inline;
}

.classes .item .queue-bookings-count small {
	display: inline;
}

.classes .item.disabled {
	background-color: rgba(0, 0, 0, 0.05);
}

.classes .item.disabled h3,
.classes .item.disabled .status,
.classes .item.disabled .bookings-count {
	color: #999999;
}

.classes .item.disabled .color {
	opacity: 0.7;
}

.classes .empty {
	text-align: center;
}

@media (min-width: 676px) {

	.classes .item .status {
		position: absolute;
		right: 54px;
		top: 50%;
		margin-top: -15px;
		line-height: 30px;
	}

	.classes .item .status .price-tag {
		vertical-align: middle;
		margin-top: -24px;
		margin-right: 10px;
	}

	.classes .item .color {
		width: 14px;
		height: 14px;
		left: 10px;
		top: 50%;
		margin-top: -8px;
		border: 1px solid rgba(0, 0, 0, 0.1) !important;
		border-radius: 100%;
	}

}

@media (max-width: 675px) {

	.classes > h2 {
		margin: 0;
		background-color: #fafafa;
		max-width: none;
		padding: 20px 10px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

	.classes > h2:first-of-type {
		border-top: 1px solid rgba(0, 0, 0, 0.1);
	}

	.classes .item {
		padding: 2px 52px;
		text-align: center;
	}

	.classes .item h3 {
		line-height: normal;
		padding-bottom: 2px;
	}

	.classes .item h3 small {
		margin-top: -1px;
		padding-right: 0;
	}

	.classes .item .time {
		left: 14px;
	}

	.classes .item .status span {
		width: 88px;
		height: 26px;
		line-height: 26px;
	}

	.classes .item .status .action {
		font-size: 14px;
	}

	.classes .item .status small {
		position: absolute;
		margin-left: -48px;
		top: 6px;
	}

	.classes .item .status .price-tag {
		position: absolute;
		margin-left: 102px;
		top: 2px;
	}

	.classes .item .color {
		width: 0;
		height: 0;
		left: 0;
		top: 0;
		border-top: 16px solid #fff;
		border-right: 16px solid transparent;
		background-color: transparent !important;
	}

}

/* @end */

/* @group resources */

.resources {
	padding-top: 20px;
}

.resources .selector {
	float: none;
	width: auto;
	margin-top: 10px;
}

.resources .selector h2 {
	display: block;
	text-align: center;
	margin-bottom: 10px;
}

.resources .selector .date {
	height: 40px;
}

.resources .selector .date h3 {
	color: inherit;
	padding: 2px;
	margin-bottom: 4px;
	font-weight: 300;
	line-height: 14px;
	font-size: 11px;
	text-align: center;
	position: relative;
}

.resources .selector .date h3 b {
	font-weight: 500;
	display: block;
	font-size: 14px;
	height: 22px;
	width: 22px;
	margin: 0px auto;
	line-height: 22px;
	text-align: center;
}

.resources .selector .date h3.short {
	display: none;
}

.resources .selector .date.disabled {
	color: #bbbbbb;
	background-color: rgba(0, 0, 0, 0.05);
	pointer-events: none;
}

.resources .price-tag {
	margin-left: 5px;
}

.day-calendar {
	margin: 20px 10px 0;
}

.day-calendar .day-header,
.day-calendar .day-content {
	position: relative;
	display: block;
	text-align: center;
}

.day-calendar .day {
	width: 12.5%;
	display: inline-block;
	text-align: center;
	box-sizing: border-box;
}

.day-calendar.resources-1 .day,
.day-calendar.resources-2 .day {
	width: 30%;
}

.day-calendar.resources-3 .day,
.day-calendar.resources-4 .day,
.day-calendar.resources-5 .day {
	width: 20%;
}

.day-calendar.resources-1 .day {
	width: 100%;
}

.day-calendar.resources-2 .day {
	width: 50%;
}

.day-calendar.resources-3 .day {
	width: 33.3333333%;
}

.day-calendar.resources-4 .day {
	width: 25%;
}

.day-calendar.resources-5 .day {
	width: 20%;
}

.day-calendar.resources-6 .day {
	width: 16.6666667%;
}

.day-calendar.resources-7 .day {
	width: 14.2857143%;
}

.day-calendar.resources-8 .day {
	width: 12.5%;
}

.day-header .day {
	position: relative;
	padding-top: 4px;
}

.day-header .day:not(:first-child):after {
	content: "";
	display: block;
	position: absolute;
	top: 5px;
	bottom: 0;
	margin-left: -0.5px;
	border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.day-content .day {
	position: relative;
}

.day-content .empty {
	position: absolute;
	width: 100%;
	top: 50%;
	margin-top: -7px;
	color: #999;
	font-weight: 200;
}

.day-calendar .day ul {
	margin: 0px 2px;
	background-color: #f0f0f0;
	background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
	background-size: 100% 37px;
	position: relative;
	border-radius: 4px;
}

.day-calendar .day li {
	position: absolute;
	width: 100%;
	display: table;
}

.day-calendar .day a {
	background: #ffffff;
	color: #000000;
	font-size: 13px;
	font-weight: 500;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	text-align: center;
	display: block;
	background-clip: padding-box;
	height: 37px;
	box-sizing: border-box;
	display: table-cell;
	vertical-align: middle;
}

.hover .day-calendar .day a:hover {
	background: rgba(53, 155, 247, 0.1);
	cursor: pointer;
}

.day-calendar .day a .time-value {
	display: inline-block;
	vertical-align: middle;
}

.day-calendar .day small {
	margin-top: 2px;
	font-style: normal;
	display: block;
	color: #728fca;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 11px;
	font-weight: normal;
}

.day-calendar .day h3 {
	color: #728fca;
	padding: 2px;
	margin-bottom: 8px;
	font-weight: 300;
	line-height: 14px;
	font-size: 13px;
	text-align: center;
	position: relative;
}

.day-calendar .day h3.short {
	display: none;
}

.day-calendar .day.day-past,
.day-calendar .day.day-past h3 {
	color: #bbbbbb;
}

.day-calendar .day a .time-value {
	color: inherit;
}

.day-calendar .day a b {
	border-top: 3px solid #728fca;
	display: block;
	padding: 2px;
	margin-left: -2px;
	margin-right: -2px;
	margin-top: -2px;
	margin-bottom: 4px;
	font-size: 12px;
	font-weight: 500;
}

.hover .day-calendar .time:not(.disabled):hover {
	background-color: #fff;
}

.day-calendar .time.selected a,
.hover .day-calendar .time.selected a:hover {
	background: #369cf7;
	border-color: rgba(255, 255, 255, 0.1) !important;
	color: #fff;
}

.day-calendar .time.selected a .time-value small {
	color: rgba(255, 255, 255, 0.6);
}

.day-calendar .time.disabled {
	background-color: #eee;
}

.day-calendar .day .time.disabled a {
	pointer-events: none;
	color: #666;
	background-color: rgba(0, 0, 0, 0.05);
}

.day-calendar .day .time.disabled .time-value small {
	color: #999;
}

.day-calendar .day .time .time-value.single-line small:before {
	content: " - ";
}

.day-calendar .day .time .time-value.single-line small {
	display: inline;
}

.round-btn {
	color: rgba(114, 143, 201, 0.50);
	font-size: 14px;
	border: 1px solid rgba(114, 143, 201, 0.50);
	width: 18px;
	height: 18px;
	text-align: center;
	line-height: 18px;
	border-radius: 100%;
	margin-top: -12px;
	margin-left: 4px;
}

.hover .round-btn:hover {
	color: #fff;
	background: #728fca;
	border-color: #728fca;
	cursor: pointer;
}

h1 .round-btn {
	vertical-align: middle;
}

@media (min-width: 676px) {

	.day-calendar .day ul {
		margin: 0px 4px;
	}

	.day-content .day:not(:first-child):after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		bottom: 10px;
		margin-left: -0.5px;
		border-left: 1px solid rgba(0, 0, 0, 0.05);
	}

	.day-calendar .day a .time-value {
		font-size: 13px;
	}

}

@media (max-width: 675px) {

	.day-calendar > h1 {
		display: none;
	}

	.day-calendar .day.selected {
		background-color: rgba(53, 155, 247, 0.1);
	}

	.day-calendar .day.day-past.selected {
		background: rgba(0, 0, 0, 0.1);
	}

	.day-header .day.selected {
		border-radius: 5px 5px 0 0;
	}

	.day-content .day.selected {
		border-radius: 5px;
		width: 100%;
		padding: 10px 16px 6px;
		box-sizing: border-box;
	}

	.day-content .day.selected:first-child {
		border-radius: 0 5px 5px 5px;
	}

	.day-content .day.selected:last-child {
		border-radius: 5px 0 5px 5px;
	}

	.day-content .day.selected:first-child:last-child {
		border-radius: 0 0 5px 5px;
	}

	.day-content .day.selected.empty {
		padding: 36px 16px;
	}

	.day-content .day:not(.selected) {
		display: none;
	}

	.resources .selector .date h3,
	.day-calendar .day h3 {
		display: none;
	}

	.resources .selector .date h3.short,
	.day-calendar .day h3.short {
		display: block;
	}

	.hover .day-calendar .day h3:hover {
		cursor: pointer;
	}

}

/* @end */

/* @group courses */

.courses {
	padding-top: 30px;

}

.courses .course .users-icon {
	opacity: 0.5;
	font-size: 20px;
	border: 1px solid;
	width: 32px;
	height: 32px;
	text-align: center;
	line-height: 32px;
	border-radius: 18px;
	position: absolute;
	margin-top: 17px;
	left: 11px;
}

.courses .course {
	display: block;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
	color: #333;
	font-weight: 400;
	min-height: 50px;
	line-height: 50px;
	padding-bottom: 52px;
}

.courses .course:last-child {
	border: none;
}

.courses .course .date {
	font-size: 13px;
	font-weight: 400;
	overflow: visible;
	margin-top: -22px;
}

.courses .course .from {
	top: 15px;
}

.courses .course .to {
	top: 40px;
}

.courses .course .spacer {
	top: 28px;
	margin-left: 78px;
}

.courses .course .name {
	font-size: 22px;
	font-weight: 200;
	margin-top: 8px;
}

.courses .course .display-bookings-count-true {
	margin-left: 130px;
}

.courses .course .display-bookings-count-false {
	margin-left: 70px;
}

.courses .course .description {
	position: relative;
	margin: -10px 30px 10px 0;
	font-weight: 200;
	line-height: 1.5;
}

.courses .course .book {
	position: relative;
	text-align: right;
	font-size: 18px;
	margin: -20px 30px 30px 0;
}

.courses .course .users {
	font-size: 18px;
	font-weight: 100;
	overflow: visible;
	line-height: normal;
}

.courses .course .users-icon {
	opacity: 0.5;
	font-size: 20px;
	border: 1px solid;
	width: 32px;
	height: 32px;
	text-align: center;
	line-height: 32px;
	border-radius: 18px;
}

.courses .course .users_count {
	position: absolute;
	margin-top: -67px;
	margin-left: -130px;
}

.courses .course .users-bookings-count {
	font-size: 14px;
	margin: 0 0 16px;
}

.courses .course a.book-course {
	padding: 0 4px;
	display: inline-block;
	width: 100px;
	height: 30px;
	line-height: 30px;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
	color: #fff;
	border-radius: 4px;
	text-align: center;
	text-shadow: rgba(0, 0, 0, 0.1) 0px 1px 1px;
	transition: all 0.2s ease-in-out;
	margin: 10px 0 20px;
	position: absolute;
	right: 26px;
}

.courses .course a.book-course.course-full {
	pointer-events: none;
	background-color: #f83b47;
}

@media (max-width: 675px) {
	.courses .course .users_count {
		position: relative;
		margin: -22px 0 0 -12px;
	}

	.courses .course .users-icon {
		width: 17px;
		height: 17px;
		font-size: 10px;
		line-height: 17px;
		font-weight: 300;
		display: inline-block;
		top: -2px;
	}

	.courses .course .users {
		font-size: 14px;
		margin-left: 36px;
		font-weight: 300;
		display: inline-block;
	}

	.courses .course .description {
		margin: -5px 30px 10px 0;
	}

	.courses .course .display-bookings-count-true {
		margin-left: 30px;
	}

	.courses .course .display-bookings-count-false {
		margin-left: 30px;
	}

}

@media (min-width: 676px) {
	.courses .course .users-icon {
		display: inline-block;
	}

	.courses .course .users {
		display: inline-block;
		margin-left: 55px;
		margin-top: 20px;
		font-size: 22px;
	}

	.justify-inline-text {
		display: inline;
		font-size: 14px;
		vertical-align: top;
		margin-left: 8px;
	}

	.el-inline {
		display: inline;
	}
}

/* @group top message */

.message-top {
}

.message-top p {
	margin: 0px auto;
	color: #fff;
	text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
	line-height: 18px;
	padding: 6px 10px;
	font-size: 12px;
}

.message-top p b {
	font-size: 13px;
}

.message-top p a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px dotted #ddd;
}

.hover .message-top p a:hover {
	border-bottom: 1px solid #ddd;
}

/* @end */

/* @group facebook-connect */

.fb-connect {
	margin-top: 40px;
	text-align: center;
}

.fb-connect > p {
	margin: 20px 0 10px;
}

.fb-connect .fb-info {
	display: inline-block;
}

/* @end */

/* @group booking's rating */

.booking-rating a {
	display: inline-block;
	height: 84px;
	width: 100px;
}

.hover .booking-rating a:hover {
	cursor: pointer;
}

.booking-rating a.on i {
	color: #fee54d;
}

.booking-rating a i {
	color: #eee;
	height: 82px;
	width: 82px;
	line-height: 82px;
	text-align: center;
	font-size: 84px;
	margin-top: -8px;
	margin-left: -2px;
	text-shadow: #aaa 0px 1px 2px;
}

.booking-rating .send-rating.hidden {
	display: none;
}

.booking-rating .send-button {
	margin: 50px auto 30px auto;
	width: 100%;
	max-width: 300px;
}

.booking-rating .rating-email-link, .booking-rating .rating-google-link {
	width: 100%;
	height: 100%;
	max-width: 300px;
	border-radius: 30px;
}

.booking-rating .send-text {
	width: 100%;
	max-width: 450px;
	text-align: left;
	margin: 0px auto 0px auto;
}

.booking-rating .send-text p {
	font-size: 17px;
}

.booking-rating .send-rating-max.hidden {
	display: none;
}

@media (max-width: 675px) {

	.booking-rating a {
		width: calc(100% / 4);
		max-width: 100px;
	}

	.booking-rating a i {
		width: 64px;
		font-size: 64px;
	}

	.justify-inline-text {
		display: none;
	}
}

.vismapay-banner {
	background-image: url("../img/payform_row.png");
	background-repeat: no-repeat;
	background-size: contain;
	max-width: 100%;
	width: 100%;
	height: 0;
	padding-top: 19%;
	margin: 20px 0 10px 0;
}

/* @end */

/* @group klaro consent mode template */

#klaro #id-cookie-notice span {
	color: #fff;
}

#klaro #id-cookie-notice strong {
	font-weight: bold;
}

#klaro .cm-header .title {
	margin-bottom: 20px;
}

#klaro .cm-header .title span {
	color: #fff;
	font-size: 20px;
}

#klaro .cm-header p span {
	color: #fff;
}

#klaro .cm-list-title {
	color: #fff;
}

#klaro .cm-list-description span {
	color: #fff;
}

#klaro .cm-caret a span {
	color: #1a936f;
}

#klaro .cm-powered-by a {
	display: none;
}

/* @end */

