
header.masthead {
  padding-top: 10.5rem;
  padding-bottom: 6rem;
  text-align: center;
   color: #f9f9f9;
  background: #0d6efd;  /* fallback colour. Make sure this is just one solid colour. */
  background: -webkit-linear-gradient(rgba(35,31,32, 0.5), rgba(0,0,0, 0.2)), url("/assets/img/glastonbury-tor-somerset.webp"); /* For Safari 5.1 to 6.0 */
  background: linear-gradient(rgba(35,31,32, 0.5), rgba(0,0,0, 0.2)), url("/assets/img/glastonbury-tor-somerset.webp"); /* The least supported option. */
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
  header.masthead {
    background-attachment: scroll;
  }
}


#mc-shopcart {
  position: fixed;
  top: 120px;
  right: 137.5px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
color: rgb(255, 255, 255);
background-color: rgb(35, 31, 32);
}

#mc-shopcart::before {
  content: "CART"; /* shopping cart */
  font-family: "";
  font-weight: 900; /* REQUIRED for solid icons */
  font-size: 18px;
  color: #fff;
}

#mc-shopcart-qty {
  position: absolute;
  top: -5px;
  right: -5px;

  min-width: 20px;
  height: 20px;
  padding: 2px 6px;

  border-radius: 50%;
  background-color: #f97352;
  color: #fff;

  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

img.img-responsive{
float:right;
margin: 0 0 10px 10px;
width: 50%;
height: auto;
}

.image-container {
    position: relative;
    width: 70px;
    height: 33px;
}
.image-container .after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgb(0, 0, 0, 0.1);
}
.image-container:hover .after {
    display: block;
    background: rgba(0, 0, 0, .5);
}

.cookiealert {
			position: fixed;
			bottom: 0;
			width: 100%;
			padding: 20px;
			margin: 0 !important;
			z-index: 999;
			opacity: 0;
			border-radius: 10px 0 0 0;
			background-color: #231f20;
			transform: translateY(100%);
			transition: all 0.5s ease-out;
			color: #f5f5f5;
			text-align: center;
		}
		
		.cookiealert.show {
			opacity: 0.8;
			transform: translateY(0);
			transition-delay: 1s;
		}
		
		.cookiealert a {
			text-decoration: none;
			color: #fff !important;
		}
		
		.cookiealert .acceptcookies {
			margin-left: 10px;
			border-radius: 5px;
			vertical-align: baseline;
		        
		} 

