/* colors
------------------------------------------------------------- */
/* white, background-color */
/* josfritz blue */
/* black, textcolor */
/* red, a:hover */
/* grey */
/* grey-blue */
/* grey-menu font color */
/* grey-menu background color */
/* grey-menu-top background color */
/* light blue headline border / a in layout blue */
/* error */
/* navbar-sm background-color */
/* mixins
------------------------------------------------------------- */
.no-border {
  border: none !important;
}
.no-border-radius {
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
}
.no-margin {
  margin: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.shadow {
  -webkit-box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.6);
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.6);
}
img {
  border: none;
}
.fr {
  float: right;
}
.fl {
  float: left;
}
.cb {
  clear: both;
}
.vam {
  vertical-align: middle;
}
.emphasized {
  font-weight: bold;
}
object {
  outline: none;
}
/* carousel
------------------------------------------------------------- */
/* ------------------------------------------------------------------
owl pagination
------------------------------------------------------------------- */
.owl-carousel .owl-pagination .active span {
  background-color: #000000;
}
/* ------------------------------------------------------------------
owl sliders
------------------------------------------------------------------- */
.owl-item {
  background-color: #dedede;
}
.owl-item .cont-pad {
  padding-right: 30px;
}
.owl-carousel .owl-controls .owl-buttons .owl-prev,
.owl-carousel .owl-controls .owl-buttons .owl-next {
  position: absolute;
  background: #fff;
  display: block;
  /*height: 40px;
	width: 40px;*/
  height: 120px;
  width: 30px;
  top: 50%;
  margin: -70px 0px 0;
  padding: 0;
  opacity: 0;
  text-align: center;
  line-height: 40px;
  font-size: 17px;
  color: #111;
  background-repeat: no-repeat;
  background-position: 0 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.owl-carousel .owl-controls .owl-buttons .owl-prev {
  left: 0px;
  background-image: url(/pictures/navigation/button_slider_01_back.png);
}
.owl-carousel .owl-controls .owl-buttons .owl-next {
  right: 0px;
  background-image: url(/pictures/navigation/button_slider_01_forward.png);
}
.owl-carousel:hover .owl-controls .owl-buttons .owl-prev {
  opacity: 0.5;
  left: 0px;
}
.owl-carousel:hover .owl-controls .owl-buttons .owl-next {
  opacity: 0.5;
  right: 0px;
}
