.toggleHeader{
	cursor: pointer;
}
.toggleContent{
}

.hidden{
	display: none !important;
}

.carousel {
	height: 200px;
/* 	background-color: #efefef; */
/* 	display: flex; */
/*     width: 98%; */
}

.blur {
	filter: blur(5px);
}

.slick-next:before, .slick-prev:before {
    color: #f00 !important;
}

.carousel-box {

/* 	background-color: #949494; */
	margin:10px;
/* 	display: inline-block; */
}

.slick-slide .carousel-box-image {
	
	width: 180px;
	height: 101.25px;
	margin: auto;
	margin-top: 10px;
}

.slick-slide:not(.slick-center) .carousel-box-image{
	background-color: #949494;
}

.carousel-box-label{
/* 	background-color: white; */
	text-align: center;
	margin-top: 5px;
	margin-bottom: 5px;	 
}
.carousel-box-label-title{
	width: 180px; 
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	display: inline-block;
}

.slick-center.carousel-box{
/* 	background-color: #3c3c3c; */
/* 	border: solid red 2px; */
	box-shadow: 1px 1px 9px 1px #a90000;
}
.carousel:not(.loaded) .slick-center.carousel-box{
background-color: #3c3c3c;
}
.carousel-load{
	position: absolute;
	margin:auto;
	top: 50%; left: 50%;
	-webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.centred {
	position: absolute;
	margin: auto;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.carousel-load > button{
	box-shadow: 1px 1px 21px 1px #444444;
	box-shadow: 1px 1px 77px 1px #0000ff;
}

.spinner {
  margin: 10px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}