:root {
	--color-primary: #ffe100;
	--color-primary-alt: #009443;
	--color-secondary: #009443;
	--color-secondary-rgb: #ffe100;
	--color-secondary-alt: rgb(53, 40, 141);
	--color-tertiary: rgb(183, 101, 165);
	--color-tertiary-alt: rgb(184, 70, 159);
}

body{
	font-size:.9rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: #333;
	overflow-x:hidden;
	background-color: #f2f2f2;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

.main-content {
	background: #1d1d1b ;
	flex: 1;
}

@media (max-width: 575px) {
	.main-content {
		padding-top: 2.2rem;
	}	
}

.bg-dark {
	background: #1d1d1d !important;
}

img {
	max-width: 100%;
}


p {
	color: white;
}

.pageTitle{
	color:rgb(124, 124, 124);
}
a.overlay{
   position: absolute;
   top:0px;
   left:0px;
   height:100%;
   width:100%; 
}

a:hover {
	text-decoration: none;
}

.container{
   max-width:1200px;
}
/*  ----------------------------------------------------------	*/
/*  					Sticky Footer 	 						*/
/*  ----------------------------------------------------------	*/




/* ---------------------------------------------------- */
/* 						Styling							*/
/* ---------------------------------------------------- */
.error, .hasError{
	border: 1px solid #db2b25;
}

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


.btn{
	border-radius: 25px;
	padding-left:25px;
	padding-right:25px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	-webkit-transition: .4s;
	transition: .4s;
	position: relative;
	font-size: .9rem;
}

.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{
	
}

.btn-lg{
	font-size: 1.3rem;
}

/* Green */
.btn-primary{
	background: var(--color-primary);
	border: none;
	color: #1d1d1d;
}

.btn-primary:hover, .btn-primary:active {
	background: linear-gradient(40deg, rgba(0,148,67,1) 0%, rgba(255,226,0,1) 100%);
	border: none;
	color: #fff !important;
}

.btn-primary.active {
	background-color: #fff !important;
	color:#92C13B !important;
}

/* Red */
.btn-secondary{
	background-color:  var(--color-secondary);
	border: none;
	color: #FFFFFF;
}

.btn-secondary:hover, .btn-secondary:active {
	background-color: #7C0C57 !important;
	border: none;
	color:#FFFFFF;
}

.btn-secondary.active {
	background-color: #fff !important;
	color:#7C0C57 !important;
}

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

/* Purple */
.btn-tertiary{
	background-color: var(--color-tertiary);
	border-color: var(--color-tertiary);
	color: #FFFFFF;
}

.btn-tertiary:hover, .btn-tertiary:active {
	background-color: var(--color-tertiary-alt);
	border-color: var(--color-tertiary-alt);
	color:#FFFFFF;
}

.btn-tertiary.active {
	background-color: #fff !important;
	border-color: var(--color-tertiary) !important;
	color:var(--color-tertiary) !important;
}



.btn-outline-secondary{
	color: var(--color-secondary);
	border-color:  var(--color-secondary);
    box-shadow: none;
    text-shadow: none;
}

.btn-outline-secondary:hover{
    border-color: #35A7FF;
    background-color: #35A7FF;
    color: #fff;
}

/* Other */
.btn-book {
	border-radius: 0;
	background: linear-gradient(40deg, rgba(0,148,67,1) 0%, rgba(255,226,0,1) 100%);
	color: #fff;
	border: none;
}

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

/* .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);
} */


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-secondary);
}

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

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%;
} 


/* ---------------------------------------------------- */
/* 					Activity location page	 			*/
/* ---------------------------------------------------- */
.location-box {
	position: relative;
	cursor: pointer;
	transition: .2s all ease-in-out;
	height: 0;
	padding-bottom: 100%;
}

.location-box__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.location-box__name {
	background-color: #1d1d1d;
	color: #fff;
	padding: .5rem 1rem;
	font-size: 1.3rem;
	width: 70%;
	text-align: center;
	transition: .3s all;
	margin: 0;
}

@media (max-width: 991px) {
	.location-box__name {
		width: 85%;
	}
}
/* 
.location-box:hover .location-box__name {
	width: 100%;
} */

.location-box:hover {
	transform: scale(1.06);
}

.locations .location:nth-of-type(1) .location-box {
	background: linear-gradient(180deg, rgba(255,225,0,1) 0%, rgba(255,3,41,1) 100%);
}

.locations .location:nth-of-type(2) .location-box {
	background: linear-gradient(180deg, rgba(253,130,139,1) 0%, rgba(174,24,98,1) 46%, rgba(49,0,51,1) 100%);
}

.locations .location:nth-of-type(3) .location-box {
	background: linear-gradient(180deg, rgba(29,166,179,1) 0%, rgba(24,105,192,1) 46%, rgba(7,8,35,1) 100%);
}

.locations .location:nth-of-type(4) .location-box {
	background: linear-gradient(180deg, rgba(253,226,2,1) 0%, rgba(2,164,72,1) 100%);
}

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

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	font-style: normal;
}

#orderWrap, #orderWrap h3{
	color: #fff;
}

h1, .h1{
	font-size: 26px;
	color: #fff;
}

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: 768px) {
	h1, .h1{
		font-size: 28px;
	}
	
	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: 1024px) {
	h1, .h1{
		font-size: 33px;
	}
	
	h2, .h2{
		font-size: 27px;
	}
	
	h3, .h3{
		font-size: 23px;
	}
	
	h4, .h4{
		font-size: 20px;
	}
	
	h5, .h5{
		font-size: 18px;
	}
	
	h6, .h6{
		font-size: 16px;
	}
}
@media (min-width: 1440px) {
	h1, .h1{
		font-size: 37px;
	}
	
	h2, .h2{
		font-size: 30px;
	}
	
	h3, .h3{
		font-size: 27px;
	}
	
	h4, .h4{
		font-size: 22px;	
	}
	
	h5, .h5{
		font-size: 20px;	
	}
	
	h6, .h6{
		font-size: 18px;
	}
}

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


/*  ----------------------------------------------------------	*/
/*  						Categories 	  						*/
/*  ----------------------------------------------------------	*/
.card{
	transition: all .5s;
	border-radius: 0px;
}

.card-img-top{
	border-radius:0px;
}

.catItem,
.prodItem--new {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border: none;
	padding: 4rem 1rem;
}

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

.catItem.card .card-image,
.prodItem--new .card-image{
	overflow:hidden;
}

.catItem.card .card-img-top,
.prodItem--new .card-img-top{ 
	transition: all .5s ease-in-out; 
}

.catItem.card:hover .card-img-top,
.prodItem--new .card-img-top{ 
	transform: scale(1.05); 
}

.catItem.card .card-body,
.prodItem--new .card-body{
	border-color: transparent;
	color: #fff;
}

.catItem.card .card-footer,
.prodItem--new .card-footer,
.prodItem--new .card-footer p{
	border-color: transparent;
	background-color:transparent;
	color: #fff;
	font-weight: 700;
	font-size: 1.2rem;
}

.catItem .catName,
.prodItem--new h4 {
	font-size: 35px;
	text-align: center;
	color: #fff;
}


/* @media (min-width: 576px) and (max-width: 767px) { */
@media (min-width: 576px) {
	.catItem .catName,
	.prodItem--new h4{
		font-size: 40px;
	}
}

@media (min-width: 767px) and (max-width: 991px) {
	.catItem .catName,
	.prodItem--new h4 {
		font-size: 30px;
	}
}



.catItem .catDesc,
.prodItem--new .product-description{
	font-size:90%;
	font-weight:300;
}
.catItem.card .card-footer .fa,
.prodItem--new .card-footer .fa{
	font-size:12px;
}

.prodItem--new a{
	color: #000;
}

@media only screen and (max-width: 391px){
	.card-footer{
		font-size: 14px;
	}
}

/*  ----------------------------------------------------------	*/
/*  					Category-group page 	  				*/
/*  ----------------------------------------------------------	*/
.category-group {
	background: linear-gradient(90deg, rgba(255,17,17,1) 0%, rgba(255,125,0,1) 65%, rgba(255,195,0,1) 100%);
	color: #fff;
	padding: 2.5rem 0;
}

.category-group__title {
	font-size: 3.3rem;
	text-align: center;
}

#divGroupedProductsTotal{
    background-color: rgba(255,255,255, .4);
}

@media (max-width: 767px) {
	.category-group {
		padding: 1.2rem 0;
	}
	
	.category-group__title {
		font-size: 2.3rem;
	}	
}

.category-group__product-name {
	font-size: 1.1rem;
	border-top: 1px solid #fff;
	/* border-bottom: 1px solid #fff; */
}

.category-group__product-name > *{
    color: #fff;
}

.category-group .qty {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

.category-group .qtyminus {
	/* border-top-left-radius: 50%;
	border-bottom-left-radius: 50%; */
}
.category-group .qtyplus {
	/* border-top-right-radius: 50%;
	border-bottom-right-radius: 50%; */
}

.category-group__totals {
	background-color: rgba(255,255,255,.4);
	border: none;
}

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: 50px;
	flex-grow: 0;
	line-height:40px;
	padding-top: 0px;
	padding-bottom: 0px;
	height: 42px;
}

.btn.qtyminus, .btn.qtyplus,
.btn.qtyIncrement{
	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;
}

/* .category-group #productList .productItem:last-child .category-group__product-name,
.category-group #productListMember .productItem:last-child .category-group__product-name {
	border-bottom: none;
} */

/*  ----------------------------------------------------------	*/
/*  			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: linear-gradient(90deg, rgba(53,0,58,1) 10%, rgba(150,16,97,1) 60%, rgba(249,122,135,1) 100%);
	/* background: center / cover no-repeat url(/assets/images/bg-stars-blue.jpg); */

	color: rgba(255, 255, 255, 0.664);
	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: #fff;
	/* box-shadow: 2px 2px 0px #000; */
	/*color: #333333;*/
    color: #1d1d1d;
	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 - GRID			 				*/
/*  ----------------------------------------------------------	*/
.home__experience {
	position: relative;
}
.home__experience-content {
	background-color: rgba(var(--color-secondary-rgb), .7);
	text-align: center;
	padding: 2rem 1rem;

	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.home__experience-heading {
	color: #fff;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.home__experience-heading span {
	display: block;
	font-size: 3.5rem;
}

@media (max-width: 767px) {
	.home__experience-heading span {
		font-size: 3rem;
	}
}

@media (max-width: 575px) {
	.home__experience-content {
		padding: 1.3rem .6rem;
	}

	.home__experience-heading span {
		font-size: 2.3rem;
	}
}

/*  ----------------------------------------------------------	*/
/*  						HOME - BANNER 						*/
/*  ----------------------------------------------------------	*/
.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-nav button {
	width: 4rem;
	height: 4rem;
	border-radius: 50% !important;
	background-color: #fff !important;
	color: #000 !important;
	
	display: flex;
	justify-content: center;
	alig
	
	



/*  ----------------------------------------------------------	*/
/*  					HOME - CATEGORIES 						*/
/*  ----------------------------------------------------------	*/
.home__categories {
	margin: 4rem 0;
}

.home-category {
	position: relative;
	clip-path: polygon(100% 0, 100% 85%, 85% 100%, 0 100%, 0 0);
	cursor: pointer;
}

.home-category__content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(39, 28, 115, .75);
	color: #fff;
	padding: 2rem 1rem;
}

@media (min-width: 576px) and (max-width: 991px) {
	.home-category__content {
		padding: 1.5rem 1rem;
	}	
}

.home-category__content::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 0, 0, .6);
	transition: .3s;
}

.home-category__name {
	position: relative;
	z-index: 1;
}

.home-category:hover .home-category__content::after {
	top: 0;
}

.home-category__name {
	text-transform: uppercase;
	text-align: center;
	margin: 0;
}

.featured-section__featured-item {
	height: 100%;
	background-color: #fff;
	border: none;
	box-shadow:
		0 1.1px 5.8px rgba(0, 0, 0, 0.014),
		0 2.5px 14px rgba(0, 0, 0, 0.02),
		0 4.8px 26.3px rgba(0, 0, 0, 0.025),
		0 8.5px 46.9px rgba(0, 0, 0, 0.03),
		0 15.9px 87.7px rgba(0, 0, 0, 0.036),
		0 38px 210px rgba(0, 0, 0, 0.05);
	transition: .3s all ease-in-out;
}

.featured-section__featured-item:hover {
	box-shadow:
		0 0.2px 7px -20px rgba(0, 0, 0, 0.014),
		0 0.5px 16.8px -20px rgba(0, 0, 0, 0.02),
		0 0.9px 31.7px -20px rgba(0, 0, 0, 0.025),
		0 1.6px 56.5px -20px rgba(0, 0, 0, 0.03),
		0 2.9px 105.7px -20px rgba(0, 0, 0, 0.036),
		0 7px 253px -20px rgba(0, 0, 0, 0.05);
}

.featured-item__body {
	display: flex;
	flex-direction: column;
}


.featured-item__name {
	color: #16A5DC;
}

.featured-item__name-link {
	color: #16A5DC;
}

.featured-item__text {
	color: #666;
}

.featured-item__link {
	color: #16A5DC;
	font-weight: bold;
	margin-top: auto;
}

/*  ----------------------------------------------------------	*/
/*  			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;
}

.articleCard__title {
	color: #16A5DC;
	text-transform: uppercase;
	font-size: 28px;
	margin-bottom: 5px;
}

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

.articleCard__read-more {
	font-weight: bold;
	color: #16A5DC;
	margin-top: auto;
}

/*  ----------------------------------------------------------	*/
/*  			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: #ffd100;
	color: #000;
	font-weight: bold;
	padding: .6rem 1rem;
	transform: skewX(-10deg);
}

.blog-post__date {
	display: block;
	transform: skewX(10deg);
}

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

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

	.blog-post__date-container {
		right: -.5rem;
		padding-right: 1.5rem;
	}
}

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

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

	.blog-post__date-container {
		top: 0;
		font-size: 12px;
		padding: .2rem .6rem;
		padding-right: 1.5rem;
	}
}

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

.time-slot{
	display:block;
	font-weight: 400;
	text-align:center;
	background: rgba(150,16,97,1); 
	/* background: linear-gradient(to right, var(--color-primary), var(--color-secondary)); */
	/* border: 1px solid #35A7FF; */
	color: #fff;
	font-size:1.2rem;
	padding: 10px;
	line-height: 30px;
	transition: all .5s ease;
	backface-visibility: hidden;
	transform: translate3d(0,0,0);
	cursor:pointer;
	backface-visibility: hidden;

	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: #fff;
}


.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 .list-group-item{
	padding: 5px 10px;
	border: 0px;
	border-radius: 0;
	background: none;
	position: relative;
}

#navbarMyAccount .list-group-item.active{
	color: #fff;
	font-weight: bold;
	/* background-color: #4598CB; */
	background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
	/* transform: rotate(-1deg); */
	/* border-color:  #4598CB; */
}


#navbarMyAccount .list-group-item.list-group-item-parent{
	margin-top:15px;
}

@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: #F7F8F7;
	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;
}

#divGroupedProducts .list-group-item-action{
    background-color: transparent;
    border: none;
}

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

.form-field-ok {
	border: 1px solid transparent;
}

.form-field-wrong {
	border: 1px solid red;
}

/* MODAL  */
.bearInMindModal{
	max-width: 800px;
}
.bearInMindModalFade{
	background: rgba(0, 0, 0, 0.575);
}
.modal-content {
    max-height: 800px !important;
    overflow: auto;
}

/* 18/11/2021 Beatrix - changing background in account menu items and sidebar */
#my_account_navigation{
	color:#333;
	background-color:#f2f2f2;
}

.top-bar__nav-link{
	border-radius:0;
	height:2rem;
}

.redeemMultiVouchers.card{
	color: white;
  	background-image: linear-gradient(90deg,#004742,#009d47);
}

#redeemMultiVouchersSection h1, #redeemMultiVouchersSection p{
	color: white;
}

#basket h1 span {
	color: white;

}

.card h1, .modal p, .modal a  {
	color: #333 !important;
}

#register-form {
	color: white;
}

