ul.discs > li::before {
	content: "•";
	font-weight: bold;
	color: #3ba8e2;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

span.special {
	font-weight: bold;
	color: #3ba8e2;
}

span.blue {
	color: #3ba8e2;
}

/* HERO */
.background-image-holder,
.foreground-image-holder {
  background-size: cover !important;	/* war contain */
}

.hero-slider .slides li, .hero-slider iframe {
  background: #E1F1FB;
  height: auto;
}





/* ANGEBOT */
.w_table-highlight {
	background: #3ba8e2;
}
	
.w_table-highlight ul li,
.w_table-highlight .price,
.w_table-highlight h2 {
	color: #fff;
}

@media screen and (max-width: 991px) {
	.w_hack {
		margin-top: 48px;
	}
}


/* MISC */
.w_top h4,
.w_top p {
  margin-top: 48px;
}

.w_bottom {
  margin-bottom: 24px;
}

/*hack*/
.btn:focus,
.btn-sm:focus {
	color:#fff;
}
.btn-white:focus {
	color:#3ba8e2;
}

/* fix device devider on smaller res */
@media screen and (min-width: 768px) and (max-width: 991px) {
	.device-divider-1 .row {
		height: 740px;
	}
	
	/* override this stuff from theme */
	.device-divider-1 .row div[class*="col-"]:nth-child(2) {
		height: 740px;
	}
	
	.device-divider-1 .row #myCarousel {
		margin-top: 140px;
	}
}


/* make bootstrap carousel slider work as crossfader */
.carousel.fade {
	opacity: 1;
}
.carousel.fade .item {
	transition: opacity ease-out .7s;
	left: 0;
	opacity: 0; /* hide all slides */
	top: 0;
	position: absolute;
	width: 100%;
	display: block;
}
.carousel.fade .item:first-child {
	top: auto;
	opacity: 1; /* show first slide */
	position: relative;
}
.carousel.fade .item.active {
	opacity: 1;
}

/* Spinner */
.spinner {
	margin: 0 auto;
	width: 70px;
	text-align: center;
	
	/* custom */
	float: right;
	margin-top: 10px;
}
.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #3ba8e2;

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