@font-face {
    font-family: 'bluu';
    src: url('/assets/fonts/bluunext-bold-webfont.woff2') format('woff2'),
         url('/assets/fonts/bluunext-bold-webfont.woff') format('woff'),
         url('/assets/fonts/bluunext-bold.ttf') format('truetype'),
         url('/assets/fonts/bluunext-bold-webfont.svg#bluu_nextbold') format('svg');
    font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* @font-face {
    font-family: 'bluu';
    src: url('/assets/fonts/bluunext-bolditalic-webfont.woff2') format('woff2'),
         url('/assets/fonts/bluunext-bolditalic-webfont.woff') format('woff'),
         url('/assets/fonts/bluunext-bolditalic.ttf') format('truetype'),
         url('/assets/fonts/bluunext-bolditalic-webfont.svg#bluu_nextbold_italic') format('svg');
    font-weight: normal;
}

@font-face {
    font-family: 'bluu_nexttitling';
    src: url('/assets/fonts/BluuNext-Titling.ttf') format('truetype'),
        url('/assets/fonts/bluunext-titling.woff2') format('woff2'),
        url('/assets/fonts/bluunext-titling.woff') format('woff');
    font-weight: normal;
    font-style: normal;
} */

@font-face {
    font-family: 'Andale Mono';
    src: url('/assets/fonts/AndaleMono.eot');
    src: url('/assets/fonts/AndaleMono.eot?#iefix') format('embedded-opentype'),
        url('/assets/fonts/AndaleMono.woff2') format('woff2'),
        url('/assets/fonts/AndaleMono.woff') format('woff'),
        url('/assets/fonts/AndaleMono.ttf') format('truetype'),
        url('/assets/fonts/AndaleMono.svg#AndaleMono') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
	--color-blue: #0026FF;
	--color-blue-alt: #0121d4;
	--color-white: #FFF;
	--color-grey: #A9A9A9;
	--color-black: #000000;
}

.text-blue{
	color: #0026FF;
}
body{
	font-size:.9rem;
	font-family: "Andale Mono", sans-serif;
	font-weight: 400;
	color: var(--color-white);
	overflow-x:hidden;
	background-color: var(--color-black);
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

.main-content {
	flex: 1;
	padding-top: 6.4rem;
	background: linear-gradient(0deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url('/assets/images/tickets-bg.jpg');
	/* background-image: url('/assets/images/tickets-bg.jpg'); */
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.main-content.black {
	background: var(--color-black);
}

.bg-black{
    background-color: var(--color-black);
}

#checkoutWrapper .main-content .container{
	background: black;
	margin: 25px auto;
}

@media (min-width: 400px) {
	.main-content {
		padding-top: 7.2rem;
	}
}
@media (min-width: 586px) {
	.main-content {
		padding-top: 7.9rem;
	}
}
@media (min-width: 1200px) {
	.main-content {
		padding-top: 8.7rem;
	}
}

img {
	max-width: 100%;
}

a.overlay{
   position: absolute;
   top:0px;
   left:0px;
   height:100%;
   width:100%; 
}

a {
	color: var(--color-white);
	transition: .3s all ease-in;
	font-weight: bold;
}

a:hover {
	text-decoration: none;
	color: var(--color-white);
	text-shadow: 3px 3px 5px #fff;
}

.container{
   max-width:1200px;
}

.illustration-wrapper {
	text-align: center;
}

.illustration {
	width: 9rem;
	height: auto;
	margin: 1rem 0;
}

.page-title {
	text-transform: uppercase;
	font-size: 1.6rem;
}

@media (min-width: 576px) {
	.illustration {
		width: 12rem;
		/* height: 12rem; */
	}

	.page-title {
		font-size: 2.5rem;
	}
}
@media (min-width: 768px) {
	.illustration {
		width: 15rem;
		/* height: 15rem; */
		margin: 1.5rem 0;
	}

	.page-title {
		font-size: 3.5rem;
	}
}
/*  ----------------------------------------------------------	*/
/*  					Sticky Footer 	 						*/
/*  ----------------------------------------------------------	*/




/* ---------------------------------------------------- */
/* 						Styling							*/
/* ---------------------------------------------------- */
.text-primary {
	color: var(--color-primary) !important;
}

.text-secondary {
	color: var(--color-secondary) !important;
}

.form-field-wrong {
	background-color: rgba(255, 0, 0, .06);
	border: 1px solid rgba(255, 0, 0, .3);
}
.form-field-ok {
	background-color: rgba(0, 255, 0, .07);
	border: 1px solid rgba(0, 255, 0, .3);
}

.bg-blue {
	background: #35A7FF;
}

.bg-yellow {
	background: #FFE74C;
}

.bg-red {
	background: #ff0000;
}

.error, .hasError{
	border: 1px solid #db2b25;
}

input.error, .hasError{
	border: 1px solid #db2b25;
}


.btn{
	border-radius: 0;
	font-family: "Andale Mono", sans-serif;
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: .4s;
	padding: .7rem 1rem;
	font-size: .8rem;
}

.btn.disabled, .btn:disabled {
	/* pointer-events: none; */
	background-color: rgb(133, 133, 133) !important;
	border-color: rgb(133, 133, 133) !important;
	color: #fff !important;
}

.card .btn, .modal-body .btn{
	/*box-shadow:none;*/
}

.btn:hover{
    cursor:pointer;
}
.btn-sm{
	letter-spacing: 1px;
	padding: .4rem .7rem;
	font-size: .7rem;
}

.btn-lg{
	
}

/* Green */
.btn-primary{
	background:  var(--color-blue) !important;
	border-color:  var(--color-blue);
	color:  var(--color-white);
}

.btn-primary:hover, .btn-primary:active {
	background:  var(--color-black) !important;
	border-color:   var(--color-blue) !important;
	color:  var(--color-white) !important;
}

.btn-primary.active {
	background-color: var(--color-white) !important;
	border-color:  var(--color-white) !important;
	color: var(--color-black) !important;
}

/* Red */
.btn-secondary{
	background-color:  var(--color-white);
	border-color: var(--color-white);
	color: var(--color-black);
}

.btn-outline-secondary{
	background-color:  var(--color-white);
	border-color: var(--color-black);
	color: var(--color-black);
}

.btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show > .btn-outline-secondary.dropdown-toggle{
	background:  var(--color-blue);
	border-color:  var(--color-blue);
	color:  var(--color-white);
}

.btn-secondary:hover, .btn-secondary:active {
	background-color: var(--color-black) !important;
	border-color: var(--color-white) !important;
	color: var(--color-white);
}

.btn-secondary.active {
	background-color:  var(--color-grey) !important;
	border-color: var(--color-grey) !important;
	color: var(--color-black) !important;
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
    background: var(--color-primary);
	border-color:  var(--color-primary);
	color: #fff;
}

/* Other */
.btn-unstyled {
	border: none;
	background-color: transparent;
}

.btn-link {
	color: #fff;
}
.btn-link:hover {
	text-decoration: none;
	color: #92C13B;
}

.btn.btn-order{
    background-color: #849aa5;
    border-color: #849aa5;
    color: #fff;
}

.btn-white{
	background-color: #FFFFFF;
	border-color:  #333333;
	color: #333333;
}

.btn-number{
	background: #FFF;
	text-decoration: none;
	line-height: 20px;
	border: 1px solid #333333;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: .6px;
	color: #333333;
	text-align: center;
	height: 60px;
	width: 60px;
	padding-top: 6px;
}

.btn-number.disabled{
	color: #dfe0e2;
	border: 1px solid #dfe0e2;
	pointer-events: none;
}

.btn-orange{
    background-color: #e7b255;
    border-color: #e7b255;
    color: #fff;
}

.btn-pgreen{
    color: #fff;
    background-color: #739e83;
    border-color: #739e83;
}

/***************/

/* .dropdown-toggle::after {
    display: inline-block;
	opacity:0.8;
	vertical-align:middle;
    margin-left: .5em;
    content: "";
	height: 15px;
	width: 15px;
	border:0px;
	background-repeat:no-repeat;
	background-size:contain;
	background-position:center center;
	background-image: url(/assets/images/icon-chevron-down.svg);
	filter: brightness(0.8);
}

.sticky .dropdown-toggle::after {
	filter: brightness(0.2);
} */


.alert, .list-group-item {
	border-radius: 0 !important;
}

.list-group-item {
	background-color: var(--color-black);
	color: var(--color-white);
}

/* forms */
.form-control {
	border-radius: 0;
	color: rgba(255, 255, 255, 0.8);
	background: rgb(29, 29, 29);
	border: 1px solid var(--color-white);
}

.form-control:hover {
	border-color: var(--color-blue);
}
.form-control:focus {
	background-color: rgb(58, 58, 58);
	color: rgba(255, 255, 255, 0.6);
}

select.form-control{
	position: relative;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	padding-right: 25px;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48cGF0aCBkPSJNMTYuMDAzIDE4LjYyNmw3LjA4MS03LjA4MUwyNSAxMy40NmwtOC45OTcgOC45OTgtOS4wMDMtOSAxLjkxNy0xLjkxNnoiLz48L3N2Zz4=');
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: right 5px top 50%;
}

.input-group .form-control {
	height: unset;
}

/* The switch - the box around the slider */
.toggleSwitch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

/* Hide default HTML checkbox */
.toggleSwitch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.toggleSlider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.toggleSlider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked + .toggleSlider {
	background-color: var(--color-blue);
}

input:focus + .toggleSlider {
	box-shadow: 0 0 1px var(--color-blue);
}

input:checked + .toggleSlider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.toggleSlider.round {
	border-radius: 34px;
}

.toggleSlider.round:before {
	border-radius: 50%;
} 

input.qty::-webkit-outer-spin-button,
input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input.qty[type=number] {
	-moz-appearance: textfield;
	/* width: 64px;
	flex-grow: 0; */
	line-height:40px;
	padding-top: 0px;
	padding-bottom: 0px;
	/* height: 42px; */
}

.btn.qtyminus, .btn.qtyplus{
	padding:0px;
	padding-left: 10px;
	padding-right:10px;
	min-width:40px;
	font-size:24px;
	line-height:40px;
}

.btn-disabled{
	opacity:0.5;
	cursor: default !important;
}


/* custom checkbox */
/* only change --checkbox-height variable and the rest will be adjusted automatically (font-size, line-height etc.) */
.custom-checkbox {
	--checkbox-height: 22px;
	
	display: flex;
	align-items: center;
	position: relative;
	padding-left: calc(var(--checkbox-height) + 10px);
	padding-left: max(calc(var(--checkbox-height) + 10px), 22px);
	margin-bottom: calc(var(--checkbox-height) / 2);
	margin-bottom: max(calc(var(--checkbox-height) / 2), 10px);
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.custom-checkbox__label {
	line-height: var(--checkbox-height);
	line-height: max(var(--checkbox-height), 17px);
	/* fallback font size */
	font-size: 15px;
	/* font size of label will be at least 14px or larger (if calc function calculates larger value) */
	font-size: max(calc(var(--checkbox-height) * .5), 14px);
}

.custom-checkbox__checkbox {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.custom-checkbox__tick {
	position: absolute;
	top: 0;
	left: 0;
	height: var(--checkbox-height);
	height: max(var(--checkbox-height), 17px);
	width: var(--checkbox-height);
	width: max(var(--checkbox-height), 17px);
	background-color: #000;
	border: 1px solid #fff;
	transition: .3s all cubic-bezier(.17,.67,.48,1.18);
}

.custom-checkbox:hover .custom-checkbox__checkbox ~ .custom-checkbox__tick {
	background-color: #ccc;
}
.custom-checkbox:hover .custom-checkbox__checkbox:checked ~ .custom-checkbox__tick {
	background-color: #ccc;
	border-color: #ccc;
}

.custom-checkbox__checkbox:checked ~ .custom-checkbox__tick {
	background-color: #fff;
	border-color: #fff;
}

.custom-checkbox__tick::after {
	content: "✓";
	position: absolute;
	display: flex;
	opacity: 0;
	font-weight: bold;
	/* fallback font size */
	font-size: 15px;
	/* font size of tick will be at least 15px or larger (if calc function calculates larger value) */
	font-size: max(calc(var(--checkbox-height) * .7), 15px);

	color: #000;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	transition: .2s all ease-in-out;
}

.custom-checkbox__checkbox:checked ~ .custom-checkbox__tick::after {
	opacity: 1;
}
.custom-checkbox__checkbox:not(:checked).is-invalid ~ .custom-checkbox__tick {
	border: 2px solid red;
}

@media (min-width: 576px) {
	.custom-checkbox {
		--checkbox-height: 30px;
	}
}



/* Modals */
.modal-content {
	background-color: var(--color-black);
	border: 1px solid var(--color-white);
	border-radius: 0;
}

.modal-content .close {
	color: var(--color-white);
}

/* ---------------------------------------------------- */
/* 					Activity location page	 			*/
/* ---------------------------------------------------- */
.location-card {
	position: relative;
	cursor: pointer;
	transition: .2s all ease-in-out;
}

.location-card__name {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: .2s all ease-in-out;
	text-align: center;
	width: 75%;
	padding: .5rem;
	background-color: #fff;
}

.location-card:hover .location-card__name {
	width: 100%;
}

@media (max-width: 575px) {
	.location-card {
		transform: skewX(0deg);
	}
}

.locations .location:nth-of-type(odd) {
	color: #E35C5B;
}

.locations .location:nth-of-type(even) {
	color: #4598CB;
}

/* ---------------------------------------------------- */
/* 						H Tags							*/
/* ---------------------------------------------------- */

/* h1, .h1 {
	font-family: 'bluu', serif;
	font-weight: 700;
	text-transform: uppercase;
}

h2, h3, h4, h5, h6, .h2, .h3, .h4, .h5, .h6{
	font-family: "Andale Mono", sans-serif;
	font-weight: 400;
	letter-spacing: 2px;
} */

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: 'bluu', serif;
	font-weight: 700;
}

h1:not(.text-default-case),
h2:not(.text-default-case),
h3:not(.text-default-case),
h4:not(.text-default-case),
h5:not(.text-default-case),
h6:not(.text-default-case),
.h1:not(.text-default-case),
.h2:not(.text-default-case),
.h3:not(.text-default-case),
.h4:not(.text-default-case),
.h5:not(.text-default-case),
.h6:not(.text-default-case) {
	text-transform: uppercase;
}

h1, .h1{
	font-size: 28px;
}

h2, .h2{
	font-size: 23px;
}

h3, .h3{
	font-size: 20px;
}

h4, .h4{
	font-size: 17px;
}

h5, .h5{
	font-size: 15px;
}

h6, .h6{
	font-size: 13px;
}

@media (min-width: 576px) {
	h1, .h1{
		font-size: 30px;
	}
	
	h2, .h2{
		font-size: 25px;
	}
	
	h3, .h3{
		font-size: 22px;
	}
	
	h4, .h4{
		font-size: 19px;
	}
	
	h5, .h5{
		font-size: 17px;
	}
	
	h6, .h6{
		font-size: 15px;
	}
}

@media (min-width: 768px) {
	h1, .h1{
		font-size: 32px;
	}
	
	h2, .h2{
		font-size: 27px;
	}
	
	h3, .h3{
		font-size: 24px;
	}
	
	h4, .h4{
		font-size: 22px;
	}
	
	h5, .h5{
		font-size: 20px;
	}
}

@media (min-width: 1024px) {
	h1, .h1{
		font-size: 35px;
	}
	
	h2, .h2{
		font-size: 31px;
	}
}

/*  ----------------------------------------------------------	*/
/*  						Banners 	  						*/
/*  ----------------------------------------------------------	*/


/*  ----------------------------------------------------------	*/
/*  						Categories 	  						*/
/*  ----------------------------------------------------------	*/
.card {
	background-color: var(--color-black);
	color: var(--color-white);
	border: 1px solid var(--color-white);
	border-radius: 0;
}

.main-content.black .card {
	border: 1px solid var(--color-black);
}

.catItem {
	text-align: center;
	padding: 1.2rem;
}

.catItem__body {
	display: flex;
	flex-direction: column;
}

.catItem__name {
	font-size: 1.4rem;
	text-transform: uppercase;
	font-family: 'bluu', serif;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

#divGroupedProducts .list-group-item-action:focus,
#divGroupedProducts .list-group-item-action:hover,
#divMemberProducts .list-group-item-action:focus,
#divMemberProducts .list-group-item-action:hover{
    background-color: transparent;
    color: #fff;
}

@media (min-width: 768px) {
	.catItem__name {
		font-size: 1.8rem;
	}
}

.catItem.card:hover{
	transition: all  .5s;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

.catItem .catDesc{
	font-size:90%;
	font-weight:300;
}

.catItem__btn {
	margin-top: auto;
}
/*  ----------------------------------------------------------	*/
/*  			Date selection (category page)  	 			*/
/*  ----------------------------------------------------------	*/
.dateSelectionLabel {
	margin-bottom: 0;
	width: 100%;
	padding: .3rem .6rem;
	background-color:  var(--color-secondary);
	border-color: var(--color-secondary);
	color: #FFFFFF;
	cursor: pointer;

	display: flex;
	justify-content: center;
	align-items: center;

	transition: .1s all ease-in-out;
}

.dateSelectionRadio {
	display: none;
}

.dateSelectionRadio:checked + .dateSelectionLabel {
	background-color:  var(--color-primary);
	border-color: var(--color-primary);
	color: #FFFFFF;
}

/*  ----------------------------------------------------------	*/
/*  						Products  	  						*/
/*  ----------------------------------------------------------	*/
.prodItem {
	transition: all .5s;
	position: relative;
	/* border: none; */
}

.prodItem:hover {
	/* border: none; */
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

.prodItem.unavailable {
	transform: scale(.98);
	pointer-events: none;
	user-select: none;
}

.prodItem.unavailable .prodItem__unavailable-cross {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 7rem;
	height: 7rem;
}

.prodItem__unavailable-notice {
	display: none;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.5);
}

.prodItem.unavailable .prodItem__unavailable-notice {
	display: block;
}

.prodItem__unavailable-cross::before, .prodItem__unavailable-cross::after {
	content: "";
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
}

.prodItem__unavailable-cross::before {
	transform: translate(-50%, -50%) rotate(-45deg);
	border: 1px solid var(--color-primary);
	background-color: var(--color-primary);
}

.prodItem__unavailable-cross::after {
	transform: translate(-50%, -50%) rotate(45deg);
	border: 1px solid var(--color-secondary);
	background-color: var(--color-secondary);
}

.prodItem.card .card-image{
	overflow:hidden;
}

.prodItem.card .card-img-top{ transition: all .5s ease-in-out; }
.prodItem.card:hover .card-img-top { transform: scale(1.05); }

.prodItem .card-footer{
	background:  transparent;
	border-top:0px;
	font-size:85%;
}

.prodItem .card-footer form{
	margin-bottom: 0px;
}

.prodItem{
	
}

/*  ----------------------------------------------------------	*/
/*  						Pagination  	  						*/
/*  ----------------------------------------------------------	*/
.page-item.active .page-link {
    z-index: 1;
	color: #000;
	font-weight: bold;
    background-color: #ffd100;
    border-color: #ffd100;
}


/*  ----------------------------------------------------------	*/
/*  						Breadcrumb  	  						*/
/*  ----------------------------------------------------------	*/
.breadcrumbWrap{
	/*background: #333333;*/
	background: var(--color-black);
	/* background: center / cover no-repeat url(/assets/images/bg-stars-blue.jpg); */
	border-top: 2px solid rgba(255, 255, 255, .2);
	color: var(--color-white);
	text-align:center;
}

.breadcrumb{
	background: transparent;
	margin: 0;
}

.breadcrumbWrap .breadcrumb p{
	margin-bottom: 0px;
	display: none;
}

.breadcrumbWrap .breadcrumb .active p{
	display:block;
}

.breadcrumbWrap.custom .breadcrumb-item + .breadcrumb-item::before{
	display:none;
}

.breadcrumbWrap:not(.custom) .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(255,255,255,.7);
	padding-left: .5rem;
}

.breadcrumbWrap:not(.standard) .breadcrumb-item{
	opacity: 0.6;
}
.breadcrumbWrap .number{
	/*background: #fff;*/
	background: var(--color-blue);
	/* box-shadow: 2px 2px 0px #000; */
	/*color: #333333;*/
    color: #fff;
	display:inline-block;
	height: 25px;
	width: 25px;
	text-align:center;
	line-height: 25px;
	border-radius: 50%;
	margin-bottom: 5px;
	margin-top:10px;
	margin-bottom:15px;
	font-weight:600;
	font-size:0.8rem;
}

.breadcrumbWrap .breadcrumb-item a {
	color: #fff;
}

.breadcrumbWrap .breadcrumb-item.active {
    color: #fff;
	opacity: 1;
	font-weight: bold;
}

.breadcrumbWrap .breadcrumb-item.active .number{
	opacity: 1;
	height: 40px;
	width:40px;
	margin-top:0px;
	margin-bottom: 10px;
	line-height: 40px;
	font-size:1rem;
}

.breadcrumbWrap .breadcrumb-item + .breadcrumb-item {
    padding-left: 0rem;
}

.breadcrumbNumber::after {
    position: absolute;
    top: 0;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(20px);
    content: "";
    width: 160%;
    right: 0px;
    margin-right: -184%;
    height: 1px;
    background-color: #c1c1c1;
    display: block;
    z-index: 0;
    color: #f4f6f7;
}

.breadcrumbNumber.last::after{
    content: '';
    display: none;
}

@media only screen and (max-width: 1081px){
    .breadcrumbNumber::after{
        margin-right: -170%;
    }
}

@media only screen and (max-width: 992px){
    .breadcrumbNumber::after {
        margin-right: -150%;
    }
}

@media only screen and (max-width: 850px){
    .breadcrumbNumber::after {
        margin-right: -140%;
    }
}

@media only screen and (max-width: 800px){
    .breadcrumbNumber::after {
        margin-right: -120%;
        width: 130%;
    }
}

@media only screen and (max-width: 768px){
    .breadcrumbNumber::after {
        margin-right: -110%;
        width: 120%;
    }
}

@media only screen and (max-width: 720px){
    .breadcrumbNumber::after {
        margin-right: -95%;
        width: 110%;
    }
}

@media only screen and (max-width: 650px){
    .breadcrumbNumber::after {
        margin-right: -80%;
        width: 95%;
    }
}

@media only screen and (max-width: 590px){
    .breadcrumbNumber::after {
        margin-right: -60%;
        width: 75%;
    }
}

@media only screen and (max-width: 576px){
    .breadcrumbNumber::after {
        display: none;
    }
}

@media (min-width: 576px) {
	.breadcrumbWrap .breadcrumb p{
		display: block;
		min-width:120px;
	}
}



.home__main-heading {
	font-size: 2.7rem;
	color: var(--color-primary);
	text-transform: uppercase;
}
.home__main-heading span {
	font-size: 3.8rem;
}

@media (max-width: 991px) {
	.home__main-heading {
		font-size: 2.1rem;
		color: var(--color-primary);
		text-transform: uppercase;
	}
	.home__main-heading span {
		font-size: 2.9rem;
	}
}
@media (max-width: 575px) {
	.home__main-heading {
		font-size: 1.6rem;
		color: var(--color-primary);
		text-transform: uppercase;
	}
	.home__main-heading span {
		font-size: 2.4rem;
	}
}

/*  ----------------------------------------------------------	*/
/*  						HOME - BANNER 						*/
/*  ----------------------------------------------------------	*/
.home__slider .owl-image {
	padding-bottom: 40%;
	height: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

@media (min-width: 576px) {
	.home__slider .owl-image {
		padding-bottom: 27.16%;
	}
}
@media (min-width: 1200px) {
	.home__slider .owl-image {
		padding-bottom: 22%;
	}
}
@media (min-width: 1600px) {
	.home__slider .owl-image {
		padding-bottom: 20%;
	}
}

.home__slider .owl-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	margin: 0 !important;

	display: flex;
	justify-content: space-between;
}

.home__slider .owl-nav .owl-prev, .home__slider .owl-nav .owl-next {
	z-index: 2;
	position: absolute;
}

.home__slider .owl-nav .owl-prev {
	top: 50%;
	transform: translateY(-50%);
	left: 1%;
}

.home__slider .owl-nav .owl-next {
	top: 50%;
	transform: translateY(-50%);
	right: 1%;
}

.home__slider .owl-nav [class*=owl-]:hover {
    background: transparent !important;
	text-decoration: none;
}

.home__slider .owl-dots {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}

.home__slider .owl-dot span {
	width: 13px !important;
	height: 13px !important;
	border: 2px solid #fff;
	background: var(--color-primary) !important;
	transition: .2s all !important;
}

.home__slider .owl-dot.active span {
	background-color: var(--color-primary) !important;
	border-color: var(--color-primary);
}

.home__slider .owl-dot span:hover {
	background: #fff !important;
}
/*  ----------------------------------------------------------	*/
/*  			HOME - NEWS ARTICLES 	 						*/
/*  ----------------------------------------------------------	*/
.home__news-section {
	background-color: #F7F7F7;
	padding: 3rem 0 2rem 0;
}

.articleCard {
	color: #666666;
	background-color: #fff;
	border: none;
}

.articleCard:hover {
	box-shadow: 0 1px 2px rgba(0,0,0,0.02), 
	0 2px 4px rgba(0,0,0,0.02), 
	0 4px 8px rgba(0,0,0,0.02), 
	0 8px 16px rgba(0,0,0,0.02),
	0 16px 32px rgba(0,0,0,0.02), 
	0 32px 64px rgba(0,0,0,0.02);
}

.articleCard__card-body {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.articleCard__title {
	color: var(--color-secondary);
	text-transform: uppercase;
	font-size: 20px;
	margin-bottom: 5px;
}

.articleCard__date {
	font-weight: bold;
	display: block;
	margin-bottom: 15px;
}

.articleCard__read-more {
	font-weight: bold;
	color: var(--color-secondary);
	margin-top: auto;
	align-self: flex-end;
}

@media (min-width: 768px) {
	.articleCard__title {
		font-size: 26px;
	}
}

/*  ----------------------------------------------------------	*/
/*  			HOME - partners 	 						*/
/*  ----------------------------------------------------------	*/
.partners {
	padding: 1rem 0;

	box-shadow: 0 0px 3.6px rgba(0, 0, 0, 0.024),
	0 -0.1px 10px rgba(0, 0, 0, 0.035),
	0 -0.3px 24.1px rgba(0, 0, 0, 0.046),
	0 -1px 80px rgba(0, 0, 0, 0.07);
}

.partners__item {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: .5rem 0;
}

.partners__image {
	max-height: 130px;
	width: auto;
	filter: grayscale(100%);
	transition: .2s all;
	
	backface-visibility: hidden;
}

.partners__item:hover .partners__image {
	filter: grayscale(0%);
	transform: scale(1.02);
}

/*  ----------------------------------------------------------	*/
/*  			HOME - NEWS ARTICLES 	 						*/
/*  ----------------------------------------------------------	*/
.blog-post {

}

.blog-post__header {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;

	height: 0;
	padding-bottom: 31.25%;
	position: relative;
}

.blog-post__header-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(2,0,36,0.25) 0%, rgba(0,0,0,0.40) 47%, rgba(0,0,0,0.15) 100%);
	color: #fff;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 1rem;
}

.blog-post__header-content::before, .blog-post__header-content::after {
	display: flex;
    flex: 1;
    content: "";
    border-top: .1rem solid #fff;
    margin: 0 1rem;
    /* transform: translateY(-1rem); */
	
}

.blog-post__date-container {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background-color: var(--color-secondary);
	color: #fff;
	font-weight: bold;
	padding: .6rem 1rem;
}

.blog-post__date {
	display: block;
}

.blog-post__content {
	margin-top: 1rem;
}

@media (max-width: 1240px) {
	.blog-post__header-content {
		overflow: hidden;
	}
}

@media (max-width: 768px) {
	.blog-post__header {
		padding-bottom: 43.75%;
	}
}

@media (max-width: 576px) {
	.blog-post__header {
		padding-bottom: 50%;
	}
}

/*  ----------------------------------------------------------	*/
/*  					Time slots 	 						*/
/*  ----------------------------------------------------------	*/

.time-slot{
	display:block;
	font-weight: 400;
	text-align:center;
	background: var(--color-black);
	color: var(--color-white);
	font-size:1.2rem;
	padding: 10px;
	line-height: 30px;
	transition: all .5s ease;
	backface-visibility: hidden;
	transform: translate3d(0,0,0);
	cursor:pointer;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.time-slot:hover{
	transform: translate3d(0,0,0) scale(1.02);
	text-decoration: none;
	color: var(--color-black);
	background: var(--color-white);
}


.pricingType_Saver, .pricingType_Peak, .pricingType_Peak_Plus, .pricingType_Peak_Plus_Party{
    width: 100px;
    /*color: #222d5b;*/
}

@media only screen and (max-width: 800px){
	.time-slot{
		font-size: 1rem;
		padding: 4px;
	}
}

.time-slot.sold-out {
    background: #adadad;
    color: #fff;
    cursor: default;
    border: 1px solid #adadad;
    text-decoration: line-through;
    font-size: 85%;
	pointer-events: none;
}
.time-slot.sold-out > * {
    line-height: normal;
} 




/*  ----------------------------------------------------------	*/
/*  						MY ACCOUNT 	 						*/
/*  ----------------------------------------------------------	*/
#navbarMyAccount {
	background-color: var(--color-black);
	border: 1px solid var(--color-white);
}

#navbarMyAccount .list-group-item{
	padding: .6rem 1rem;
	border: 0px;
	border-radius: 0;
	background: none;
	position: relative;
}
#navbarMyAccount .list-group-item:hover{
	text-shadow: none;
	color: var(--color-grey) !important;
}

#navbarMyAccount .list-group-item.active{
	color: #fff;
	font-weight: bold;
	background-color: var(--color-blue);
	/* transform: rotate(-1deg); */
	/* border-color:  #4598CB; */
}


#navbarMyAccount .list-group-item.list-group-item-parent {
	cursor: auto;
	user-select: none;
	border-top: 1px solid var(--color-white);
}
#navbarMyAccount .list-group-item:not(.list-group-item-parent) {
	padding-left: 1.8rem;
}

@media (min-width: 576px) {
	.collapse-sm-none:not(.show) {
		display: block;
	}
	
	.w-sm-auto{
		width: auto !important;
	}
}

@media (min-width: 768px) {
	.collapse-md-none:not(.show) {
		display: block;
	}
	.w-md-auto{
		width: auto !important;
	}
}

@media (min-width: 992px) {
	.collapse-lg-none:not(.show) {
		display: block;
	}
	.w-lg-auto{
		width: auto !important;
	}
}

@media (min-width: 1200px) { 
	.collapse-xl-none:not(.show) {
		display: block;
	}
	.w-xl-auto{
		width: auto !important;
	}
	
}

.dashboard-box {
	height: 0;
	overflow: hidden;
	padding-top: 75%;
	background: white;
	position: relative;
	background-color: var(--color-black);
	border: 1px solid var(--color-white);
	transition: .3s all ease-in-out;
}

.dashboard-box:hover {
	box-shadow: 0 1px 2px rgba(0,0,0,0.02), 
	0 2px 4px rgba(0,0,0,0.02), 
	0 4px 8px rgba(0,0,0,0.02), 
	0 8px 16px rgba(0,0,0,0.02),
	0 16px 32px rgba(0,0,0,0.02), 
	0 32px 64px rgba(0,0,0,0.02);
}

.dashboard-box__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px;
}

.dashboard-box__icon {
	font-size: 40px;
	margin-bottom: 20px;
}


/* FAQS */
.faq__wrapper {

}

.faq__header {
	background-color: #e0e0e0;
	border: none;
	color: var(--color-secondary);
	transition: .1s all ease-in-out;

	display: flex;
	justify-content: space-between;
}
.faq__header:not(.collapsed) {
	background-color: var(--color-secondary);
	color: #fff;
}

.faq__question {
	/* color: #fff; */
}

.faq__arrow {
	transition: .1s transform ease-in-out;
}

.faq__header:not(.collapsed) .faq__arrow {
	transform: rotate(90deg);
}

.faq__body {
	
}

.faq__answer {
	border: 1px solid #e8e8e8;
}

.table {
	color: white!important;
}

#frmSurvey  select {
	appearance: auto;
	background-image: none !important;
}
#frmSurvey  .form-control{
	color: #fff !important;
}

.navPillCustom {
	border:1px solid #007bff;
	background:#000;
}

#availableProductsDatepicker{
	font-family:'bluu'!important;
}

.dateSelectCustomImage {
 display: none !important;
}

input {
	font-family:'bluu'!important;
}

.ui-datepicker-title {
	font-family:'bluu'!important;
}

th {
	font-family:'bluu'!important;
}

#ui-datepicker-div {
	width:35%!important;
}

.dateSelectCustomImage {
	width:268px;
	height:auto;
	
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #007bff!important;
	font-family:'bluu'!important;
}

@media(max-width:768px){
.main-nav__book-btn-wrapper {
	display:none!important;
}
}
@media(max-width:768px){
.main-nav__logo {
	margin-right:auto;
	margin-left:auto;
}
}

@media(max-width:768px){
	.justify{
		justify-content:center!important;
	}
}

.justify {
	justify-content:space-between;
}

@media(min-width:768px){
.footerBtnRedeem {
	display:none!important;
}
}

#basketUpdateAlert {
	background-color: #000 !important;
	border: 1px solid white !important;
}