div.clear{
	clear: both;
}

div.divMessage{
	padding: 15px;
	margin-bottom: 20px;
	color: white;
	font-weight: bold;
	text-align: center;
	line-height: 1.3em;
}

div.divMessage_confirm{
	background-color: green;
}

div.divMessage_error{
	background-color: #e2001a;
}


.width150{
	min-width:150px;
}



#spnEmailError{
	background-color: #e2001a;
	color:white;
	line-height:40px;
	display: inline-block;
	padding:0 20px;
}

#spnEmailError a{
	color:white;
	text-decoration: underline;
}

/** Header **/

header {
	/* background-color: #242424; */
	background-color: white;
	max-width: 1440px;
	margin: auto;
	box-shadow: 0 5px 15px 0 rgb(0 0 0 / 25%);
	position: relative;
	z-index: 2000;
}

.divHeaderContainer {
	display: flex;
}

.divHeaderMenu {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.headerRightTop {
	display: flex;
	height: 100%;
	border-bottom: 1px solid #4d4d4d;
}

#aHeaderTitleImg img {
	margin: 16px;
}

.divHeaderTop {
	display: flex;
	align-items: center;
}


#divToolsStrap {
	flex-grow: 1;
}

.divToolsStrapContainer a {
	width: 100%;
	height: 100%;
	border-left: 1px solid #4d4d4d;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: black;
	text-transform: uppercase;
	font-weight: bold;
	
	transition: background-color .5s ease-out;
}


.divToolsStrapContainer a:hover {
	background-color: #e2001a
}

.divToolsStrapContainer i {
	font-size: 18px;
}

#spnHeaderTitleTxt {
	color: #4d4d4d;
	font-weight: bold;
	display:flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 16px;
}


.mobileMenu {
	position: relative;
}

#divMobileMenuCtr {
	background-color: white;
	position: absolute;
	width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
	max-height: 50vh;
	overflow-y: scroll;
	box-shadow: 0 5px 15px 0 rgb(0 0 0 / 25%);
}

#ulMobileMenu {
	border-top: 1px solid #4d4d4d;
	display: flex;
	justify-content: space-between;
}

.menuNavContainer {
	margin: 32px;
    width: 250px;
    padding-top: 10px;
}

.menuNavContainer a {
	color: rgb(128, 123, 123);
	text-decoration: none;
	font-weight: bold;
}

.menuNavContainer a:hover {
	color: #e2001a;
}

.navHeading {
	display: inline;
	padding: 8px;
	background-color: #242424;
	color: white;
	text-transform: uppercase;
	font-weight: bold;
	box-sizing: border-box;
}

.catContainer {
	margin: 32px;
	text-align: center;
}

.catInnerContainer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 32px;
}

.catInnerContainer a {
	text-decoration: none;
	color: black;
	font-weight: bold;
}

.catInnerContainer a:hover {
	color: #e2001a;
}

.cat {
	box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
	margin: 8px;
	transform: translateZ(0);
    transition: .3s;
	display: flex;
	align-self: center;
	width: 300px;
}

.cat:hover {
	box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    transform: translateY(-2px);
}

.cat span {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 16px;
}

.nav {
	margin-top: 32px;
}

/** Burger menu **/

.burgerMenu {
	background-color: #e2001a;
}

.hamburger {
	border-radius: 0;
	height: 100%;
	padding: 15px 15px;
	display: flex;
    justify-content: center;
    align-items: center;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible; }
	.hamburger:hover {
	  opacity: 0.7; }
	.hamburger.is-active:hover {
	  opacity: 0.7;
		background-color: #e2001a;
	}
	.hamburger.is-active .hamburger-inner,
	.hamburger.is-active .hamburger-inner::before,
	.hamburger.is-active .hamburger-inner::after {
	  background-color: #fff; }
  
.hamburger-box {
width: 40px;
height: 24px;
display: inline-block;
position: relative; }

.hamburger-inner {
display: block;
top: 50%;
margin-top: -2px; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	width: 40px;
	height: 4px;
	background-color: #fff;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease; }
.hamburger-inner::before, .hamburger-inner::after {
	content: "";
	display: block; }
.hamburger-inner::before {
	top: -10px; }
.hamburger-inner::after {
	bottom: -10px; }

	.hamburger--collapse .hamburger-inner {
		top: auto;
		bottom: 0;
		transition-duration: 0.13s;
		transition-delay: 0.13s;
		transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
		.hamburger--collapse .hamburger-inner::after {
		  top: -20px;
		  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
		.hamburger--collapse .hamburger-inner::before {
		  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
	  
	  .hamburger--collapse.is-active .hamburger-inner {
		transform: translate3d(0, -10px, 0) rotate(-45deg);
		transition-delay: 0.22s;
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
		.hamburger--collapse.is-active .hamburger-inner::after {
		  top: 0;
		  opacity: 0;
		  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
		.hamburger--collapse.is-active .hamburger-inner::before {
		  top: 0;
		  transform: rotate(-90deg);
		  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }


/****MAIN CONTENT***/


.divPageWidth{
	max-width:1440px;
	margin:auto;
	position:relative;
}

#divContentContainer{
	display: flex;
	width: 100%;
}
#divContentLeft{
	margin: 16px;
	width: 250px;
	padding-top:10px;
}

#divContentRight{
	flex: 1;
	margin-bottom: 16px;
}

.text_grey_padded{
	background-color:#f3f3f3;
	padding:20px;
}

.sy-box{
	margin-bottom:20px;
	position: relative;
}

.sy-pager {
	position: absolute;
	left: 87px;
	bottom: 20px;
	z-index: 10;
	width: auto !important;
}

.sy-pager li a {
	transform: scale(0.7);
	transition: 0.3 linear;
}

.sy-pager li.sy-active a {
	transform: scale(0.9);
    background-color: #fff !important;
}



#divWelcomeName{
	font-size:16px;
	vertical-align: middle;
	position:absolute;
	left:10px;
}

#spnFreephone{
	float:left;
	margin-left:180px;
	color:#e2001a;
	font-size:16px;
}

.spnTextFull{
	margin-left:5px;
	font-size: 14px;
}

#spnBasketCountSmall, #spnBasketCountTiny {
	font-size: 14px;
	display: none;
}



#divToolsStrap > div {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
}

.spnQty, .spnQty_disabled{
	display:inline-block;
	line-height:30px;
	width:30px;
	padding:0px;
	background-color:#eeeeee;
	margin:0 10px;
}

.spnQty_disabled{
	background-color:#f9f9f9;
	color:#ccc;
}

.spnQty:hover{
	background-color:#ccc;
	cursor:pointer;
}

.spnRemove{
	font-size:12px;
	color:#e2001a;
	cursor:pointer;
}
.spnRemove:hover{
	text-decoration:underline;
}

.txtSmall{
	font-size:12px;
}

#divEmulateStrap{
	background-color:orange;
	padding:20px;
	color:white;
	position:fixed;
	z-index:10;
	width:100%;
	bottom:0px;
	box-shadow: #e2001a 0px  0px  10px;
}


#divEmulateStrap a{
	color:green;

}

/*CAT NAVIGATION*/

#ulCatNavigation li{
	margin:20px

}

#ulCatNavigation li a{
	text-decoration:none;
	font-size: 11px;
	font-weight: 700;
	color: rgb(128, 123, 123);
	padding: 20px;
}

#ulCatNavigation li a:hover{
	/* text-decoration:underline; */
	color:#e2001a;
}


/*LISTINGS*/

#content{
	/* padding:20px 0; */
	background-color: #fff;
}

.categoriesContainer, .productsContainer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}


.aBlockLink{
	display: block;
	width:300px;
	height: 340px;
	margin:8px;
	box-shadow: 0 10px 15px -4px rgb(0 0 0 / 20%);
    transform: translateZ(0);
    transition: .3s;
	text-align:center;
	justify-content: center;
	align-items: center;
	background-size:100%;
	background-position:TOP center;
	position:relative;
	background-repeat: no-repeat;
}

.divFader {
	position: absolute;
    height: 100%;
    width: 100%;
	z-index: 2;
	transition: background-color 0.2s linear;
}

.divArrow {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MiIgaGVpZ2h0PSI1MiIgdmlld0JveD0iMCAwIDUyIDUyIj48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMzAuNCAyMC4ydjguNkwyMSAxOS41IDE5LjUgMjFsOS42IDkuNGgtOXYyLjFoMTIuNFYyMC4yeiIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
	position: absolute;
	z-index: 10;
	right: 0;
	top: 0;
    content: "";
    width: 52px;
    height: 52px;
    background-size: 52px 52px;
    background-color: #e2001a;
    transform: rotate(-90deg);
	opacity: 0;
	transition: opacity 0.2s linear;
}

.aBlockLink:hover .divFader {
	background-color: rgba(36,36,36,.4);
}

.aBlockLink:hover .divArrow {
	opacity: 1;
}

.aBlockLink:hover{
	box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    transform: translateY(-4px);
    cursor: pointer;
}



.divBlockLinkTitle{
	background-color: #e2001a;
	position:absolute;
	bottom:0px;
	padding:10px;
	display: block;
	width:100%;
	height: auto;
	color:white;
	line-height:20px;
	display:flex;
	flex-direction: column;
	align-items: center;
	transition: background-color 0.2 linear;
	z-index: 10;
}

.divBlockLinkRef{
	font-size:11px;

}


.divPrices{
	font-size:13px;
}


/*PRODUCT*/

.divAvailableNew{
	padding:10px;
	background-color:#e2001a;
	color:white;
}

#divTitleMobile{
	display: none;
}

#divProductImagery,#divProductDetails{
	width:48%;
	display:inline-block;
	vertical-align:top;
}

#divProductDetails{
	padding:0 20px;
}

#imgProductMain{
	width:100%;
}

.imgProductThumbs{
	text-align: left;
	padding-top:40px;
}

.imgProductThumbs img{
	width:100px;
	height:100px;
	margin:0 10px 10px 0;
	border:1px solid #eeeeee;
	padding:10px;
	cursor: pointer;
}

#divStockSelector{

	padding:20px 0;
	border-top:1px solid #eeeeee;
	text-align: right;
}



#divProductPrice{
	padding:10px 0px;
	border-top:1px solid #eeeeee;
	font-size:30px;
	text-align:right;
}

#divProductPriceWas{
	padding:10px 0px;
	font-size:16px;
	text-align:right;
	color:#e2001a;
}

#divProductPriceGross{
	text-align:right;
	font-size:20px;
color: #999;
	font-style: italic ;

}

.divProductMemberPrice{
	color:yellow;
}

#divProductAdd{
	padding:10px 0px;
	text-align:right;
}

#divProductTemplate{
	margin:30px 0px;
	background-color:#f3f3f3;
	padding:20px;
}

#divProductTemplate .divInput{
	margin:5px 0;
	text-align:center;
}

#divProductTemplate input[type=text],#divProductTemplate textarea{
	width:80%;
	border-radius:5px;
}

.divProductRef{
	margin-bottom:20px;
	color:#333;
}

#btnProductBuy{
	display: none;
}
#spnOutOfStock{
	display: none;
	color:#e2001a;
}



.divEventNotAvailable{
	color:#e2001a;
	text-align:center;
}

.divProdNotBooked{
	text-align:center;
	padding:20px;
	background-color:#eeeeee;
	margin-bottom:20px;

}

.divProdBooked{
	text-align:center;
	padding:20px;
	background-color:#2ca02c;
	color:white;
	margin-bottom:20px;
}

.divTicketsInBasket, .btnEventAddToBasket{
	display:none;
}

.divEventAddWaiting{
	text-align:center;
	padding:20px;
	background-color:#e2001a;
	color:#fff;
	margin-bottom:20px;
	cursor: pointer;
}

.divEventAddWaiting:hover{
	background-color:#f60;
}

.divWaitingAdd{
	background-color:#eee;
	padding:30px;
	margin-top:20px;
}

.divWaitingAdd label{
	cursor: pointer;
}


.divWaitingAdded{
	background-color:#f90;
	padding:30px;
	margin-top:20px;
	text-align:center;
	color:white;
}

/*CHECKOUT*/

#divDonationSuggestionGA{
	padding:20px;
	border:5px solid #ccc;
	background-color: #eeeeee;
}

#divDonationSuggestion{
	background-color: #ff0099;
	color:white;
	line-height:25px;
	font-weight:700;
	text-align: center;
	padding:10px;
}

#suggestedDonation{
	text-align:center;
}
#divDonationSuggestion div{
	padding:10px;
}


#spnDonationReject{
	color:white;
	cursor:pointer;

}

#divDonationSuggestion input, #divDonationSuggestion button{
	border-radius: 20px;
}

#spnGiftAid{
	color:white;
	cursor:pointer;
	text-decoration: underline;

}

/*BASKET TABLE*/

.divTable{
	display:table;
	width:100%;
	margin-bottom:20px;
}

.divTableRow{
	display:table-row;
}

.divTableCell{
	display:table-cell;
	vertical-align: middle;
	padding:15px;
	line-height:24px;
	border-bottom:1px solid #eeeeee;
}


.divTable .divTableRow:last-child .divTableCell{

	border:none !important;
}

.divTableCell div{
	line-height:24px;
}

.divTableRowHeader {
	background-color:#eeeeee;
}

.divTableRowHeader .divTableCell{
	font-weight:700;
}

.divTableCell.highlight {
	font-weight:700;
}


.valign_top{
	vertical-align: top;
}


.imgBasketThumb{
	width:100px;
	cursor:pointer;
	border:1px solid #eeeeee;
}

.imgBasketThumb:hover{
	border:1px solid #ccc;
}

.divCheckoutActions{
	background-color:#f3f3f3;
	padding:10px;
	margin-top:50px;
	min-height:60px;
}

/* ACCOUNT */

.aAccountIcon{
	display:inline-block;
	width:150px;
	height:150px;
	text-align:center;
	margin:30px;
	text-decoration: none;
	border: 1px solid rgb(239, 240, 240);
	color:#e2001a;
	font-weight: bold;
	box-shadow: 0 3px 8px -4px rgb(0 0 0 / 10%);
    transform: translateZ(0);
    transition: .3s;

}

.aAccountIcon:hover{
	box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    transform: translateY(-2px);
    cursor: pointer;
}

.aAccountIcon img{
	width:50px;
	margin:30px 0 20px;
}



.divCustomDetails{
	font-size:12px;
	background-color:#f3f3f3;
	padding:10px;
}

/*BRANCH RESERVATION*/



.rowSelected{
	background-color:#ccffcc !important;
}

/* Footer */

footer {
	background-color: white;
	padding-bottom: 64px;
}

footer > div {
	display: flex;
	padding: 64px 20px;
}

.divFooterInfo {
	flex-grow: 1;
}

.divFooterCopyright {
	align-self: center;
	margin-right: 16px;
}

.copyright {
	display: block;
	text-align: center;
	color: rgba(0, 0, 0, 0.6);
}

.divFooterInfo ul {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
}

.divFooterInfo ul li {
	margin: 16px;
}

.divFooterInfo ul li a {
	letter-spacing: 2px;
	color: #4d4d4d;
	text-decoration: none;
}
.divFooterInfo ul li:hover a {
	color: #e2001a;
}